/* Sales Copy AI page */

.sca-hero {
  padding: 4.5rem 0 0;
  text-align: center;
  background: linear-gradient(1deg, #eff6ff 0%, #fefefe 100%);
}

.sca-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.375rem);
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.3;
}

.sca-hero p {
  font-size: 1.125rem;
  max-width: 40rem;
  margin: 1rem auto 1.5rem;
}

.sca-hero__visual {
  margin-top: 2rem;
}

.sca-hero__image--mobile {
  display: none;
}

@media (max-width: 899px) {
  .sca-hero {
    padding-top: 3rem;
  }

  .sca-hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  .sca-hero__image--desktop {
    display: none;
  }

  .sca-hero__image--mobile {
    display: block;
    margin-inline: auto;
  }
}

.sca-how {
  padding: 4rem 0 2rem;
  text-align: center;
  background: var(--white);
}

.sca-how h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 44rem;
  margin-inline: auto;
}

.sca-how .eyebrow {
  margin-bottom: 0.75rem;
}

.sca-steps {
  padding: 1rem 0 3rem;
}

.sca-steps__grid {
  display: grid;
  gap: 2rem;
}

.sca-steps__item {
  text-align: center;
}

.sca-steps__item img {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.sca-steps__item h2 {
  font-size: 1.1875rem;
  margin-bottom: 0.75rem;
}

.sca-steps__item p {
  font-size: 1rem;
  color: var(--text);
  max-width: 20rem;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .sca-steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sca-highlight {
  padding: 2rem 0 4rem;
  background: var(--white);
}

.sca-highlight__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .sca-highlight__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sca-highlight-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.sca-highlight-card img {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
}

.sca-highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0) 20%,
    rgb(59 130 246 / 100%) 100%
  );
  pointer-events: none;
}

.sca-highlight-card__content {
  position: absolute;
  left: 1.875rem;
  bottom: 1.875rem;
  z-index: 1;
  color: var(--white);
  text-align: left;
  max-width: calc(100% - 3.75rem);
}

.sca-highlight-card__label {
  display: inline-block;
  padding: 0.4375rem;
  border-radius: 0.3125rem;
  background: #ddfff4;
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.sca-highlight-card__quote {
  margin-top: 0.9375rem;
  font-family: var(--font-heading), "Outfit", sans-serif;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.4;
}

.sca-highlight-card__name {
  margin-top: 0.5rem;
  font-weight: 300;
}

.sca-testimonials-intro {
  padding: 4rem 0 1rem;
  text-align: center;
  background: var(--blue-light);
}

.sca-testimonials-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  max-width: 48rem;
  margin-inline: auto;
}

.sca-testimonials-intro p {
  margin-top: 0.75rem;
}

.sca-gdpr {
  padding: 4rem 0;
  background: var(--footer-bg);
  color: var(--white);
}

.sca-gdpr__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.sca-gdpr h2 {
  color: var(--white);
}

.sca-gdpr p {
  color: rgba(255, 255, 255, 0.9);
}

.sca-gdpr .check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.sca-gdpr .check-list li::before {
  color: var(--white);
}

.sca-gdpr__image--mobile {
  display: none;
}

@media (min-width: 900px) {
  .sca-gdpr__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 899px) {
  .sca-gdpr__image--desktop {
    display: none;
  }

  .sca-gdpr__image--mobile {
    display: block;
    margin-inline: auto;
  }

  .sca-gdpr {
    text-align: center;
  }
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}
