.services-page{
  background: var(--white-soft);
  color: var(--text-dark);
}

/* HERO */
.services-hero{
  padding: calc(var(--header-h) + 56px) 0 54px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95) 0%, rgba(245,245,247,1) 45%, rgba(235,238,243,1) 100%);
}

.services-hero-inner{
  display: flex;
  align-items: center;
}

.services-hero-copy{
  max-width: 960px;
}

.services-kicker{
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--text-dark-faint);
}

.services-hero-copy h1{
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 760;
  max-width: 11.5ch;
}

.services-hero-copy p:not(.services-kicker){
  margin: 22px 0 0;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.76;
  color: var(--text-dark-soft);
}

.services-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  text-decoration: none;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn-primary{
  background: #111;
  color: #fff;
  box-shadow: 0 14px 30px rgba(17,17,17,.14);
}

.btn-primary:hover{
  background: #000;
}

.btn-secondary{
  background: #fff;
  color: #111;
  border: 1px solid rgba(17,17,17,.10);
}

.btn-secondary:hover{
  background: #f7f7f8;
}

.btn-ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.08);
}

.btn-ghost-dark{
  color: #111;
  border-color: rgba(17,17,17,.14);
}

.btn-ghost-dark:hover{
  background: rgba(17,17,17,.04);
}

/* OVERVIEW */
.services-overview{
  margin-top: -18px;
  padding-bottom: 34px;
}

.services-overview-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.services-overview-card{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 24px 22px;
}

.services-overview-card strong{
  display: block;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--text-dark);
}

.services-overview-card span{
  display: block;
  margin-top: 10px;
  color: var(--text-dark-soft);
  font-size: 15px;
  line-height: 1.68;
}

/* SECTION */
.services-main{
  padding: 96px 0;
}

.services-main-light{
  background: var(--white-soft);
  color: var(--text-dark);
}

.services-main-dark{
  background: #0a0a0a;
  color: #f5f5f7;
}

.section-label{
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dark-faint);
}

.services-section-head{
  max-width: 980px;
  margin-bottom: 30px;
}

.services-section-head-dark .section-label{
  color: rgba(245,245,247,.62);
}

.services-section-head h2,
.services-cta-card h2{
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 760;
}

.services-section-head p:last-child,
.services-cta-card p:not(.section-label){
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.76;
  color: var(--text-dark-soft);
}

.services-section-head-dark h2{
  color: #fff;
}

.services-section-head-dark p:last-child{
  color: rgba(245,245,247,.80);
}

/* BRAND CARDS */
.services-cards-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.service-brand-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.service-brand-top{
  margin-bottom: 14px;
}

.service-brand-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dark-faint);
}

.service-brand-card h3{
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 760;
  color: var(--text-dark);
}

.service-brand-text{
  margin: 0;
  color: var(--text-dark-soft);
  font-size: 16px;
  line-height: 1.72;
}

.service-brand-list{
  margin: 18px 0 0;
  padding: 0 0 0 18px;
  color: var(--text-dark);
}

.service-brand-list li{
  margin: 0 0 10px;
  line-height: 1.65;
}

/* VALUE GRID */
.services-value-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.services-value-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 24px;
}

.services-value-card h3{
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 760;
}

.services-value-card p{
  margin: 14px 0 0;
  color: rgba(245,245,247,.80);
  font-size: 16px;
  line-height: 1.72;
}

/* CTA */
.services-cta-wrap{
  display: block;
}

.services-cta-card{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(17,17,17,.06);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  text-align: center;
}

.services-cta-card h2{
  max-width: 14ch;
  margin-inline: auto;
}

.services-cta-card p:not(.section-label){
  max-width: 760px;
  margin-inline: auto;
}

.services-cta-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .services-cards-grid{
    grid-template-columns: 1fr;
  }

  .services-value-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px){
  .services-overview-grid{
    grid-template-columns: 1fr;
  }

  .services-hero-copy h1{
    max-width: 12ch;
    font-size: clamp(36px, 9vw, 58px);
  }

  .services-main{
    padding: 78px 0;
  }
}

@media (max-width: 640px){
  .services-hero{
    padding: calc(var(--header-h) + 34px) 0 40px;
  }

  .services-kicker,
  .section-label,
  .service-brand-kicker{
    font-size: 11px;
    letter-spacing: .16em;
  }

  .services-hero-copy p:not(.services-kicker),
  .services-overview-card span,
  .services-section-head p:last-child,
  .service-brand-text,
  .service-brand-list li,
  .services-value-card p,
  .services-cta-card p:not(.section-label){
    font-size: 16px;
    line-height: 1.68;
  }

  .services-section-head h2,
  .services-cta-card h2{
    font-size: clamp(30px, 8vw, 42px);
  }

  .service-brand-card h3{
    font-size: 24px;
  }

  .services-hero-actions,
  .services-cta-actions{
    flex-direction: column;
  }

  .services-hero-actions .btn,
  .services-cta-actions .btn{
    width: 100%;
  }

  .services-overview-card,
  .service-brand-card,
  .services-value-card,
  .services-cta-card{
    border-radius: 24px;
    padding: 22px;
  }
}