/* ============================================================
   CRM & SALES AUTOMATION PAGE
   ============================================================ */

.crm-page,
.crm-hero {
  background: #08080A;
}

.crm-hero {
  min-height: 57rem;
}

.crm-hero__inner {
  display: flex;
  width: min(100%, 80rem);
  min-height: 49rem;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 10rem) 1.25rem clamp(5rem, 9vw, 8rem);
}

.crm-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.crm-hero__eyebrow {
  margin-bottom: 1.6rem;
  color: #77777F;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.crm-hero h1 {
  max-width: 13ch;
  color: #F4F4F4;
  font-size: clamp(3.2rem, 7.3vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-wrap: balance;
}

.crm-hero__summary {
  max-width: 59rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  color: #92929A;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.55;
  text-wrap: balance;
}

.crm-hero__statement {
  max-width: 69rem;
  margin-top: 7rem;
}

.crm-hero__statement p {
  color: #A4A4AB;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.75;
}

.crm-hero__statement p + p {
  margin-top: 1.4rem;
}

.crm-included {
  position: relative;
  z-index: 6;
  padding: clamp(6rem, 10vw, 9rem) 1.25rem clamp(7rem, 11vw, 10rem);
  background: #08080A;
}

.crm-included__inner {
  width: min(100%, 112rem);
  margin: 0 auto;
}

.crm-included__title {
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
  color: #F4F4F4;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.crm-included__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 2rem);
}

.crm-included__card {
  min-height: 20rem;
  padding: clamp(1.75rem, 2.5vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 1.6rem;
  background: #141416;
}

.crm-included__card h3 {
  color: #F4F4F4;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.12;
  text-wrap: balance;
}

.crm-included__card p {
  margin-top: 1.7rem;
  color: #95959D;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .crm-included__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .crm-hero__inner {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

@media (max-width: 639px) {
  .crm-hero {
    min-height: auto;
  }

  .crm-hero__inner {
    min-height: auto;
    padding-top: 5rem;
  }

  .crm-hero__eyebrow {
    margin-bottom: 1.2rem;
    font-size: 0.68rem;
  }

  .crm-hero__statement {
    margin-top: 5.5rem;
  }

  .crm-included__grid {
    grid-template-columns: 1fr;
  }

  .crm-included__card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crm-hero__heading,
  .crm-hero__statement,
  .crm-included__title,
  .crm-included__card {
    opacity: 1;
    transform: none;
  }
}
