*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --forest: #1A3A2A;
  --forest-mid: #2B5640;
  --forest-light: #3D7357;
  --sage: #7BA899;
  --sage-light: #B8D4CE;
  --gold: #C8A96E;
  --gold-light: #E8D5A8;
  --white: #FFFFFF;
  --text-dark: #0F2219;
  --text-mid: #3A5448;
  --text-muted: #7A9690;
  --border: rgba(26,58,42,0.12);
  --ff-display: 'DM Serif Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--forest); }
.nav-links a.active { color: var(--forest); font-weight: 500; }

.nav-cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--forest-mid) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 5vw 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,168,153,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--forest);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--forest-light);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--forest);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.btn-ghost:hover { gap: 10px; }

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--forest);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-inner {
  position: relative;
}

.hero-card-main {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(26,58,42,0.12);
  position: relative;
  z-index: 2;
}

.hero-card-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 1.5rem;
}

.card-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--forest);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.hero-card-main h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.hero-card-main p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-tag {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--forest);
}

.price-tag sup {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  vertical-align: super;
}

.price-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.card-btn-sm {
  background: var(--forest);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.card-btn-sm:hover { background: var(--forest-mid); }

.hero-badge-float {
  position: absolute;
  top: -20px; left: -30px;
  background: var(--gold);
  color: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(200,169,110,0.35);
  z-index: 3;
}

.hero-badge-float .big {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  display: block;
  line-height: 1;
}

/* ── CANCEL-ANYTIME CALLOUT (shared) ── */
.cancel-callout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-pale, var(--cream-dark));
  border: 1px solid var(--gold-light);
  color: var(--forest);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 100%;
}

.cancel-callout--block {
  display: flex;
}

.cancel-callout--dark {
  background: rgba(200, 169, 110, 0.12);
  border-color: rgba(200, 169, 110, 0.35);
  color: var(--white);
}

.cancel-callout__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cancel-callout__icon svg {
  display: block;
  stroke: currentColor;
}

.cancel-callout strong {
  font-weight: 600;
}

.cancel-callout small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.cancel-callout--dark small {
  color: rgba(255, 255, 255, 0.6);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest);
  padding: 20px 5vw;
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex-wrap: wrap;
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-light);
  font-size: 13px;
  font-weight: 400;
}

.trust-bar-item svg {
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
.section {
  padding: 100px 5vw;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest);
  font-weight: 400;
  line-height: 1.15;
  max-width: 520px;
  margin-bottom: 3rem;
}

.section-title em { font-style: italic; color: var(--forest-light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}

.step-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}

.step-card:first-child { border-radius: 20px 0 0 20px; }
.step-card:last-child { border-radius: 0 20px 20px 0; }

.step-card:hover { background: var(--cream-dark); }

.step-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card:hover .step-num { color: var(--sage-light); }

.step-icon {
  width: 44px; height: 44px;
  background: var(--forest);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon svg { stroke: var(--white); }

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── PRODUCTS ── */
.products-section {
  padding: 100px 5vw;
  background: var(--forest);
}

.products-section .section-label { color: var(--sage); }
.products-section .section-title { color: var(--white); max-width: none; }
.products-section .section-title em { color: var(--gold); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 450px));
  gap: 1.5rem;
  justify-content: center;
}

.product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--forest-mid);
}

.product-card-img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b9d1cc 0%, #6d9d84 100%);
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.product-card-img-placeholder img {
  width: auto;
  height: 100%;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}

.product-price span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-gold:hover { background: var(--gold-light); }

/* ── PROOF / RESULTS ── */
.proof-section {
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.proof-lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-grid--with-copy .proof-study-copy {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.proof-study-copy p {
  font-size: 15px;
  color: #1e443c;
  line-height: 1.75;
  font-weight: 300;
}

.proof-study-copy p + p {
  margin-top: 1.1rem;
}

.stat-box {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.stat-box .num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-box .lbl {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.proof-visual {
  position: relative;
}

.proof-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.proof-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.proof-img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--forest-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.proof-quote-card {
  position: absolute;
  bottom: -30px; right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  max-width: 260px;
  box-shadow: 0 12px 40px rgba(26,58,42,0.12);
}

.proof-quote-card blockquote {
  font-size: 13px;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.proof-reviewer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviewer-avatar {
  width: 30px; height: 30px;
  background: var(--sage-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--forest);
}

.reviewer-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--forest);
}

.reviewer-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* Disclaimer below patient quotes / review grids */
p.testimonial-disclaimer {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 400;
  margin: 0.75rem 0 0;
}

.proof-quote-card p.testimonial-disclaimer {
  margin-top: 0.65rem;
}

.reviews-section p.testimonial-disclaimer {
  margin-top: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ── FAQ/TRUST ── */
.trust-section {
  background: var(--cream-dark);
  padding: 80px 5vw;
}

.trust-section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title--center {
  margin: 0 auto;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.trust-feature {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.trust-feature-icon svg {
  stroke: var(--forest);
}

.trust-feature h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
}

.trust-feature p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── HOME: CARE PLATFORM SHOWCASE ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-platform-section {
  padding: 72px 5vw 88px;
  background: var(--cream);
}

.hp-platform-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hp-platform-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.hp-platform-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hp-platform-features {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.hp-platform-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hp-platform-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.hp-platform-feature-icon svg {
  display: block;
}

.hp-platform-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hp-platform-feature-copy strong {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.hp-platform-feature-copy span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  font-weight: 300;
}

@media (max-width: 960px) {
  .hp-platform-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .hp-platform-section {
    padding: 56px 5vw 72px;
  }

  .hp-platform-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ── CTA BANNER ── */
.cta-banner {
  margin: 80px 5vw;
  background: var(--forest);
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,168,153,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cta-banner h2 em { color: var(--gold); font-style: italic; }

.cta-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  font-weight: 300;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

/* Home CTA: photo on the right + forest overlay */
.cta-banner--home > div {
  position: relative;
  z-index: 1;
}

.cta-banner--home::after {
  display: none;
}

.cta-banner__bg {
  display: none;
}

.cta-banner--home .cta-banner__bg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: url('../img/photos/cta-bg-img.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.cta-banner--home .cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--forest);
  opacity: 0.62;
}

.btn-white {
  background: var(--white);
  color: var(--forest);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}

.btn-white:hover { background: var(--cream); }

.cta-small-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 60px 5vw 40px;
  color: rgba(255,255,255,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand > .footer-brand-logo {
  height: 28px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 240px;
  color: rgba(255,255,255,0.4);
}

.footer-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1.25rem;
  max-width: 240px;
}

.footer-badges img {
  height: 75px;
  max-height: 75px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  opacity: 0.9;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom span { font-size: 12px; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .step-card:first-child, .step-card:last-child { border-radius: 20px; }
  .step-card { border-radius: 20px; }
  .proof-section { grid-template-columns: 1fr; }
  .stat-grid--with-copy {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner--home .cta-banner__bg {
    width: 100%;
    height: 100%;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center 20%;
  }

  .cta-banner--home .cta-banner__bg::after {
    opacity: 0.62;
  }
}
