/* ===== BabyVista — design system ===== */
:root {
  --teal: #2C8C99;
  --teal-dark: #1F6770;
  --teal-soft: #E5F2F3;
  --orange: #EF7B52;
  --orange-dark: #D9603A;
  --orange-soft: #FCEAE2;
  --ink: #243137;
  --ink-soft: #51636B;
  --cream: #FBF7F1;
  --surface: #FFFFFF;
  --surface-alt: #F4EEE5;
  --line: #E7DECF;
  --star: #F4B740;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(36, 49, 55, 0.06);
  --shadow: 0 14px 34px rgba(36, 49, 55, 0.10);
  --shadow-clay: 8px 8px 20px rgba(31, 103, 112, 0.12), -6px -6px 16px rgba(255, 255, 255, 0.7);
  --maxw: 1160px;
  --font-head: "Baloo 2", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--orange-dark); }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; color: var(--ink); margin: 0 0 .5em; }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.container--narrow { max-width: 760px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 200;
  background: var(--teal); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 10px;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 6px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 13px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center; white-space: normal;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--orange-dark); color: #fff; box-shadow: var(--shadow); }
.btn--accent { background: var(--teal); color: #fff; }
.btn--accent:hover { background: var(--teal-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn--ghost:hover { background: var(--teal-soft); color: var(--teal-dark); }
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }

.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; font-size: .8rem;
  color: var(--orange-dark); background: var(--orange-soft);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 1rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 241, 0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow .2s, background .2s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(251, 247, 241, 0.97); }
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .5rem; }
.brand__icon { flex: none; }
.brand__mark { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--ink); }
.site-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.site-nav a { color: var(--ink); font-weight: 600; font-size: .98rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--orange-dark); }
.site-header__cta { margin-left: .5rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  margin-left: auto; background: none; border: 0; cursor: pointer; padding: 10px;
}
.nav-toggle span { height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--surface);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px 20px; margin: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  }
  .site-nav.is-open { max-height: 380px; padding: 12px 20px 20px; }
  .site-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
}

/* ===== Sections ===== */
.section { padding: clamp(48px, 7vw, 86px) 0; }
.section--alt { background: var(--surface-alt); }
.section__head { max-width: 720px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section__subtitle { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ===== Hero ===== */
.hero { padding: clamp(40px, 6vw, 80px) 0 clamp(36px, 5vw, 64px); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero__title { font-size: clamp(2rem, 5vw, 3.3rem); font-weight: 800; }
.hero__subtitle { font-size: 1.15rem; color: var(--ink-soft); max-width: 56ch; }
.hero__bullets { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .85rem; }
.hero__bullets li { display: flex; gap: .65rem; align-items: flex-start; font-weight: 600; }
.hero__bullets svg { flex: none; margin-top: 2px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1rem; }
@media (max-width: 480px) { .hero__actions .btn { flex: 1 1 100%; } }
.hero__note { font-size: .95rem; color: var(--ink-soft); background: var(--teal-soft); padding: 12px 16px; border-radius: var(--radius-sm); border-left: 4px solid var(--teal); }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 1 / 1; }
.hero__stat-chip {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--surface); border-radius: var(--radius); padding: 12px 18px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.hero__stat-chip strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--orange-dark); }
.hero__stat-chip span { font-size: .85rem; color: var(--ink-soft); }

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

/* ===== Stats bar ===== */
.stats-bar { background: var(--teal); color: #fff; padding: 26px 0; }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 1.7rem; }
.stat span { font-size: .9rem; opacity: .88; }
@media (max-width: 620px) { .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }

/* ===== Products grid ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.product-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__media { position: relative; background: var(--surface-alt); }
.product-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px; font-family: var(--font-head);
  font-weight: 600; font-size: .78rem; padding: 4px 12px; border-radius: 999px; color: #fff;
}
.product-card__badge--top { background: var(--orange); }
.product-card__badge--new { background: var(--teal); }
.product-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-size: 1.25rem; margin-bottom: .5rem; }
.product-card__rating { display: flex; align-items: center; gap: .4rem; margin-bottom: .7rem; font-size: .9rem; }
.product-card__rating-num { font-weight: 700; color: var(--ink); }
.product-card__rating-count { color: var(--ink-soft); }
.product-card__rating--new { color: var(--teal-dark); font-weight: 700; font-size: .9rem; }
.product-card__desc { color: var(--ink-soft); font-size: .98rem; }
.product-card__specs { list-style: none; padding: 0; margin: .4rem 0 1.1rem; display: grid; gap: .35rem; }
.product-card__specs li { position: relative; padding-left: 1.3rem; font-size: .92rem; }
.product-card__specs li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.product-card__cta { margin-top: auto; width: 100%; }

/* Stars */
.stars { --rating: 0; display: inline-block; width: 92px; height: 17px; position: relative; font-size: 17px; line-height: 1; }
.stars::before {
  content: "★★★★★"; letter-spacing: 1px; color: var(--line);
}
.stars::after {
  content: "★★★★★"; letter-spacing: 1px; color: var(--star);
  position: absolute; left: 0; top: 0; overflow: hidden;
  width: calc(var(--rating) / 5 * 100%); white-space: nowrap;
}

/* ===== Benefits ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.benefit-card {
  background: var(--surface); border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.benefit-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 16px; background: var(--teal-soft);
  margin-bottom: 14px;
}
.benefit-card h3 { font-size: 1.2rem; }
.benefit-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ===== Steps ===== */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; counter-reset: step; }
.step { background: var(--surface); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--orange);
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; margin-bottom: 12px;
}
.step h3 { font-size: 1.15rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ===== Feature rows ===== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; margin-bottom: clamp(40px, 6vw, 72px); }
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__media { order: 2; }
.feature-row__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.feature-row__copy h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.feature-row__bullets { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .6rem; }
.feature-row__bullets li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.feature-row__bullets li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse .feature-row__media { order: -1; }
  .feature-row__media { order: -1; }
}

/* ===== About brief / story ===== */
.about-brief__inner, .about-story__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.about-brief__media img, .about-story__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 1 / 1; object-fit: cover; }
.about-brief__copy h2, .about-story__copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about-story__copy p { color: var(--ink-soft); }
.about-story__cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 760px) {
  .about-brief__inner, .about-story__inner { grid-template-columns: 1fr; }
  .about-brief__media, .about-story__media { order: -1; }
}

/* ===== Compare table ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: var(--surface); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
.compare-table thead th { background: var(--teal); color: #fff; font-family: var(--font-head); }
.compare-table__brand { background: var(--orange-soft); font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table td:first-child, .compare-table th:first-child { font-weight: 600; }

/* ===== Timeline ===== */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.timeline__item { background: var(--surface); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); border-top: 4px solid var(--teal); }
.timeline__when { display: inline-block; font-family: var(--font-head); font-weight: 700; color: var(--orange-dark); margin-bottom: 8px; }
.timeline__item h3 { font-size: 1.15rem; }
.timeline__item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ===== Personas ===== */
.persona-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-bottom: 32px; }
.persona-card { background: var(--surface); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.persona-card__icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 14px; background: var(--teal-soft); margin-bottom: 12px; }
.persona-card h3 { font-size: 1.12rem; }
.persona-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.not-for { background: var(--surface); border: 1px dashed var(--orange); border-radius: var(--radius); padding: 24px 28px; }
.not-for__title { font-family: var(--font-head); font-weight: 700; color: var(--orange-dark); margin-bottom: 10px; }
.not-for ul { margin: 0; padding-left: 1.2rem; color: var(--ink-soft); display: grid; gap: .5rem; }

/* ===== Fears ===== */
.fears-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.fear-card { background: var(--surface); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.fear-card__stat { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--teal-dark); background: var(--teal-soft); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.fear-card h3 { font-size: 1.15rem; }
.fear-card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ===== Values / mission ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.value-card { background: var(--surface); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.value-card h3 { font-size: 1.18rem; color: var(--teal-dark); }
.value-card p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* ===== Expert ===== */
.expert { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 4vw, 48px); align-items: center; background: var(--surface); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.expert__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 1 / 1; object-fit: cover; }
.expert__name { font-family: var(--font-head); font-weight: 700; color: var(--orange-dark); margin-bottom: 10px; }
.expert__quote { font-size: 1.2rem; font-style: italic; border-left: 4px solid var(--teal); padding-left: 18px; margin: 0 0 16px; color: var(--ink); }
.expert__tips { margin: 0 0 14px; padding-left: 1.2rem; color: var(--ink-soft); display: grid; gap: .5rem; }
.expert__disclosure { font-size: .85rem; color: var(--ink-soft); font-style: italic; margin: 0; }
@media (max-width: 720px) { .expert { grid-template-columns: 1fr; } .expert__media { max-width: 260px; } }

/* ===== Use cases ===== */
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.usecase-card { background: var(--surface); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); border-left: 4px solid var(--orange); }
.usecase-card h3 { font-size: 1.12rem; }
.usecase-card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ===== Newsletter ===== */
.newsletter { background: var(--teal); color: #fff; padding: clamp(40px, 6vw, 70px) 0; }
.newsletter__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.newsletter__copy h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.newsletter__copy p { color: rgba(255,255,255,.9); margin: 0; }
.newsletter__form { display: flex; flex-wrap: wrap; gap: .7rem; }
.newsletter__form input {
  flex: 1 1 220px; padding: 14px 18px; border-radius: 999px; border: 2px solid transparent;
  font-size: 1rem; font-family: var(--font-body); background: #fff; color: var(--ink);
}
.newsletter__form input:focus-visible { outline-color: var(--orange); }
.newsletter__msg { flex-basis: 100%; margin: 0; font-size: .92rem; min-height: 1.2em; color: #fff; }
.newsletter__msg.is-error { color: #FFE0D4; font-weight: 700; }
.newsletter__msg.is-success { color: #DDF3F0; font-weight: 700; }
@media (max-width: 760px) { .newsletter__inner { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 52px 18px 22px; position: relative;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--teal); transition: transform .2s; font-family: var(--font-head);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body { padding: 0 22px 20px; color: var(--ink-soft); }
.faq-item__body p { margin: 0; }

/* ===== Page hero (subpages) ===== */
.page-hero { background: var(--surface-alt); padding: clamp(48px, 7vw, 92px) 0 clamp(36px, 5vw, 60px); text-align: center; }
.page-hero__title { font-size: clamp(2rem, 4.5vw, 3rem); }
.page-hero__subtitle { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; margin-inline: auto; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 2px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: var(--surface); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field textarea { resize: vertical; }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--orange-dark); background: var(--orange-soft); }
.field__error { color: var(--orange-dark); font-size: .85rem; font-weight: 700; min-height: 1em; }
.contact-form__status { margin: 0; font-weight: 700; min-height: 1.2em; }
.contact-form__status.is-success { color: var(--teal-dark); }
.contact-form__status.is-error { color: var(--orange-dark); }
.contact-info { background: var(--surface); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.contact-info__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 18px; }
.contact-info__label { display: block; font-family: var(--font-head); font-weight: 700; color: var(--teal-dark); font-size: .9rem; margin-bottom: 2px; }
.contact-info__cta { border-top: 1px solid var(--line); padding-top: 18px; }
.contact-info__cta p { font-size: .95rem; color: var(--ink-soft); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== Legal ===== */
.legal__body h2 { font-size: 1.4rem; margin-top: 1.8rem; }
.legal__body h2:first-child { margin-top: 0; }
.legal__body ul { padding-left: 1.3rem; color: var(--ink-soft); }
.legal__body p { color: var(--ink-soft); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #D5DDE0; padding: clamp(44px, 6vw, 64px) 0 28px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.site-footer .brand__mark { color: #fff; font-size: 1.5rem; display: inline-block; margin-bottom: 10px; }
.site-footer__brand p { color: #A9B6BB; font-size: .95rem; max-width: 38ch; }
.site-footer__col h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.site-footer__col a { display: block; color: #C3CCD0; padding: 5px 0; font-size: .95rem; }
.site-footer__col a:hover { color: var(--orange); }
.social { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 14px; }
.social a { color: #C3CCD0; font-size: .9rem; font-weight: 600; }
.social a:hover { color: var(--orange); }
.site-footer__bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #9CABB0; }
.site-footer__bottom a { color: #C3CCD0; }
@media (max-width: 700px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } .site-footer__brand { grid-column: 1 / -1; } }

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  background: rgba(36, 49, 55, 0.97); backdrop-filter: blur(8px); color: #fff;
  padding: 12px 20px; box-shadow: 0 -6px 20px rgba(0,0,0,.15);
  transform: translateY(110%); transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { font-weight: 600; font-size: .95rem; }
@media (max-width: 480px) { .sticky-cta__text { font-size: .82rem; flex-basis: 100%; text-align: center; } .sticky-cta { padding: 10px 16px; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
