/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; transition: height .25s ease; }
.site-header.is-stuck .site-header__inner { height: 58px; }
.site-header.is-stuck { box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 9px; background: #0a0a0a; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.logo__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-primary); margin-right: 2px; }
.logo__word { font-family: var(--font-display); font-weight: 500; font-size: 21px; letter-spacing: -0.02em; color: #0a0a0a; }
.logo__word span { color: var(--brand-primary); font-weight: 600; }
.site-nav { display: flex; gap: 30px; }
.site-nav a { font-family: var(--font-body); font-size: 15px; color: #525252; font-weight: 500; transition: color .15s; }
.site-nav a:hover { color: #0a0a0a; }
.site-header__cta { display: flex; align-items: center; gap: 18px; }
.nav-ghost { font-family: var(--font-body); font-size: 15px; color: #0a0a0a; font-weight: 500; }
/* compact header button: 131 x 38 per design */
.site-header__cta .btn { height: 38px; padding: 0 17px; font-size: 14.5px; font-weight: 500; }
@media (max-width: 820px) { .site-nav, .nav-ghost { display: none; } }

/* ============ 01 HERO ============ */
.hero { position: relative; overflow: clip; padding-block: 80px 100px; }

.hero__bg { position: absolute; inset: 0; overflow: clip; pointer-events: none; z-index: 0; }
.hero__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(20px); }
.hero__glow--green { top: -200px; right: -200px;
  background: radial-gradient(circle at center, rgba(16,163,127,.10), rgba(16,163,127,0) 60%); }
.hero__glow--cyan { bottom: -300px; left: -100px;
  background: radial-gradient(circle at center, rgba(14,165,233,.08), rgba(14,165,233,0) 60%); }

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr);
  gap: 72px; align-items: start;
}
.hero__left { display: flex; flex-direction: column; gap: 14px; padding-top: 5px; }
.hero__right { padding-top: 52px; }

/* eyebrow (plain dot + mono label, no pill) */
.hero__eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 3px; background: var(--brand-primary);
  box-shadow: 0 0 0 4px #ecfdf5;
}
.hero__eyebrow span {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .96px;
  text-transform: uppercase; color: #737373;
}

.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 54px; line-height: 63.36px; letter-spacing: -0.01em; color: #0a0a0a;
  max-width: 480px; /* match the design's column width (4-line wrap) */
}
.hero h1 .accent { color: var(--brand-primary); font-weight: 700; }

.hero__sub {
  font-family: var(--font-display); font-weight: 400;
  font-size: 20px; line-height: 30px; color: #525252; max-width: 592px;
  margin-top: 8px;
}
.hero__sub strong { color: #0a0a0a; font-weight: 500; }

/* hero CTA (green pill) */
.hero__cta {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-top: 10px;
  background: var(--brand-primary); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  height: 38px; padding: 0 20px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.hero__cta:hover { transform: translateY(-1px); background: #0e9472; box-shadow: 0 10px 24px rgba(16,163,127,.25); }

/* visibility checker form */
.hero__form {
  display: flex; align-items: stretch; gap: 0;
  background: #fff; border: 1px solid #d4d4d4; border-radius: 14px;
  padding: 7px; max-width: 520px; width: 100%; margin-top: 6px;
  box-shadow: 0 1px 1px rgba(10,10,10,.04), 0 1px 0 rgba(10,10,10,.02);
}
.hero__form input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font-family: var(--font-body); font-size: 15px; color: #0a0a0a; padding: 14px;
}
.hero__form input::placeholder { color: #a3a3a3; }
.hero__form button {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0a0a0a; color: #fff; border: 0; border-radius: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 14.5px;
  padding: 0 18px; cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.hero__form button:hover { background: #1f1f1f; transform: translateY(-1px); }

.hero__micro {
  display: flex; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .42px; color: #737373;
}
.hero__note { font-family: var(--font-mono); font-size: 11px; color: var(--brand-primary); margin-top: 2px; min-height: 16px; }

/* chat demo card */
.demo {
  background: #0d0d0d; border: 1px solid #1f1f1f; border-radius: 18px; overflow: clip;
  box-shadow: 0 32px 80px -24px rgba(10,10,10,.45), 0 12px 30px -12px rgba(10,10,10,.25);
}
.demo__bar {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px 15px;
  background: linear-gradient(180deg, #131313, #0d0d0d); border-bottom: 1px solid #1f1f1f;
}
.demo__dots { display: flex; gap: 6px; }
.demo__dots i { width: 11px; height: 11px; border-radius: 5.5px; background: #2a2a2a; display: block; }
.demo__dots i:first-child { background: #3a3a3a; }
.demo__url { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .23px; color: #888; white-space: nowrap; }
.demo__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,163,127,.08); border: 1px solid #1f3d31; border-radius: 999px; padding: 4px 10px;
}
.demo__live .dot { width: 6px; height: 6px; border-radius: 3px; background: var(--brand-primary); }
.demo__live span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .23px; color: var(--brand-primary); }

.demo__body { min-height: 300px; padding: 18px; display: flex; justify-content: flex-end; align-items: flex-start; }
.demo__msg {
  display: inline-flex; align-items: flex-end; gap: 2px; max-width: 366px;
  background: #1d1d1d; border: 1px solid #2a2a2a;
  border-radius: 14px 14px 4px 14px; padding: 11px 15px;
  font-family: var(--font-body); font-size: 14.5px; color: #ededed; line-height: 21.75px;
}
.demo__caret { display: inline-block; width: 7px; height: 16px; background: #888; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.demo__foot {
  display: flex; gap: 14px; align-items: center; padding: 13px 18px 12px;
  background: #0a0a0a; border-top: 1px solid #1f1f1f;
}
.pill-platform {
  display: inline-flex; align-items: center; gap: 8px; padding: 5px 11px; border-radius: 999px;
  border: 1px solid transparent; font-family: var(--font-mono); font-size: 11px; color: #666;
}
.pill-platform .dot { width: 6px; height: 6px; border-radius: 3px; background: #3a3a3a; }
.pill-platform.is-active { background: rgba(16,163,127,.06); border-color: rgba(16,163,127,.3); color: var(--brand-primary); }
.pill-platform.is-active .dot { background: var(--brand-primary); }

/* niche toggle under the card */
.hero__niches { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.pill-niche {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .44px; text-transform: uppercase;
  padding: 8px 13px; border-radius: 999px; background: #fff; border: 1px solid #d4d4d4; color: #525252;
}
.pill-niche.is-active { background: #0a0a0a; border-color: #0a0a0a; color: #fff; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__right { padding-top: 0; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.1; }
  .hero__sub { font-size: 18px; }
}

/* ============ 02 CASE STUDIES ============ */
.section-head { margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--font-display); font-weight: 500;          /* DS: H2 = Google Sans Flex Medium 500 */
  font-size: clamp(2.2rem, 4.6vw, 54px); line-height: 1.11; letter-spacing: -0.02em;  /* DS: 54 / 60 */
  color: #0a0a0a; margin: 20px 0 18px;
}
.section-head h2 .accent { color: var(--brand-primary); }
.section-head .sub {
  font-family: var(--font-display); font-weight: 400;
  font-size: 20px; line-height: 30px; color: var(--text-secondary); max-width: 760px;
}

/* solid green eyebrow variant */
.eyebrow--solid { background: var(--brand-primary); border-color: transparent; color: #fff; }
.eyebrow--solid .ico { display: inline-flex; }

.cases { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 48px; align-items: stretch; }
.case-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: 24px;
  padding: 36px 40px; display: flex; flex-direction: column;
}
.case-card__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.case-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--brand-primary);
}
.case-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-primary); }
.case-badge {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .03em; white-space: nowrap;
  color: var(--brand-dark); background: var(--brand-subtle); border: 1px solid #bdeeda;
  padding: 6px 12px; border-radius: 999px;
}
.case-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: #0a0a0a; margin-top: 30px; }
.case-meta { font-family: var(--font-display); font-size: 16px; color: var(--text-tertiary); margin-top: 8px; }
.case-body { font-family: var(--font-display); font-size: 17px; line-height: 28px; color: var(--text-secondary); margin-top: 28px; }

.case-visual { border: 1px solid var(--border-light); border-radius: 24px; overflow: clip; background: var(--bg-soft); display: flex; }
.case-visual img { width: 100%; height: auto; object-fit: contain; display: block; align-self: center; }
.case-visual--placeholder {
  min-height: 440px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px;
  color: var(--text-tertiary); font-family: var(--font-mono); font-size: 12px; line-height: 1.6;
}

@media (max-width: 900px) { .cases { grid-template-columns: 1fr; } }

/* coded analytics dashboard (no image asset) */
.dash { background: var(--bg-soft); border: 1px solid var(--border-light); border-radius: 24px; padding: 16px; display: grid; gap: 12px; align-content: start; }
.dash__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.stat { background: #fff; border: 1px solid var(--border-light); border-radius: 12px; padding: 11px 12px; }
.stat__top { display: flex; align-items: center; gap: 6px; color: var(--text-tertiary); font-family: var(--font-body); font-size: 11px; }
.stat__top svg { width: 13px; height: 13px; color: #9a9a9a; }
.stat__top .dots { margin-left: auto; color: #c8c8c8; font-weight: 700; letter-spacing: 1px; }
.stat__row { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: #0a0a0a; letter-spacing: -0.01em; }
.badge-up, .badge-down { font-family: var(--font-mono); font-size: 10.5px; padding: 2px 6px; border-radius: 6px; display: inline-flex; align-items: center; gap: 2px; white-space: nowrap; }
.badge-up { background: #dcfce7; color: #15a34a; }
.badge-down { background: #fee2e2; color: #e0524d; }

.dash__main { display: grid; grid-template-columns: 1.55fr 1fr; gap: 12px; }
.dash-card { background: #fff; border: 1px solid var(--border-light); border-radius: 14px; padding: 15px; }
.dash__side { display: grid; gap: 12px; align-content: normal; }
.dc-label { font-family: var(--font-body); font-size: 12px; color: var(--text-tertiary); display: flex; align-items: center; gap: 5px; }
.dc-label svg { width: 13px; height: 13px; }
.dc-row { display: flex; align-items: center; gap: 8px; margin-top: 3px; }
.dc-num { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: #0a0a0a; letter-spacing: -0.01em; }
.dc-num--lg { font-size: 24px; }
.dc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.dc-legend { display: flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 11.5px; color: var(--text-tertiary); }
.dc-legend i { width: 7px; height: 7px; border-radius: 50%; display: inline-block; margin-right: 5px; vertical-align: middle; }
.dc-pill { font-family: var(--font-body); font-size: 11.5px; color: #444; border: 1px solid var(--border-light); border-radius: 8px; padding: 6px 10px; display: inline-flex; align-items: center; gap: 6px; }
.dc-chart { position: relative; margin-top: 10px; }
.dc-chart svg { width: 100%; height: auto; display: block; }
.dc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; font-family: var(--font-body); font-size: 11.5px; color: var(--text-tertiary); }
.dc-foot a { color: var(--brand-primary); font-weight: 500; }
.dc-live { background: #dcfce7; color: #15a34a; border-radius: 6px; padding: 2px 7px; font-size: 10.5px; }
.dc-tip {
  position: absolute; left: 34%; top: 30%; background: #fff; border: 1px solid var(--border-light);
  border-radius: 10px; padding: 8px 11px; box-shadow: var(--shadow-md); font-family: var(--font-body);
}
.dc-tip__row { display: flex; align-items: center; gap: 7px; }
.dc-tip__val { font-weight: 600; font-size: 14px; color: #0a0a0a; }
.dc-tip__date { font-size: 10.5px; color: var(--text-tertiary); margin-top: 2px; }

@media (max-width: 1100px) { .dash__stats { grid-template-columns: repeat(2, 1fr); } .dash__main { grid-template-columns: 1fr; } }

/* case card: AI Visibility Score before/after (fills the card bottom) */
.case-score { margin-top: auto; padding-top: 36px; }
.case-score__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 14px; }
.case-score__track { position: relative; height: 8px; border-radius: 999px; background: #eef0f2; }
.case-score__fill { height: 100%; width: 43%; border-radius: 999px; background: var(--grad-brand); }
.case-score__base { position: absolute; top: 50%; left: 18%; transform: translate(-50%, -50%); width: 11px; height: 11px; border-radius: 50%; background: #fff; border: 2px solid #c9cdd2; }
.case-score__nums { display: flex; justify-content: space-between; margin-top: 12px; font-family: var(--font-mono); font-size: 12.5px; }
.case-score__nums .from { color: var(--text-tertiary); }
.case-score__nums .to { color: var(--brand-primary); font-weight: 600; }

/* revenue card: 'revenue by source' breakdown fills the card under the chart */
.dc-breakdown { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 11px; }
.dc-brk-head { display: flex; justify-content: space-between; font-family: var(--font-body); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-tertiary); }
.dc-brk-row { display: grid; grid-template-columns: 104px 1fr 34px; align-items: center; gap: 12px; }
.dc-brk-name { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 12.5px; color: var(--text-primary); white-space: nowrap; }
.dc-brk-name i { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.dc-brk-bar { height: 6px; border-radius: 999px; background: #f0f1f3; overflow: hidden; }
.dc-brk-bar b { display: block; height: 100%; border-radius: 999px; }
.dc-brk-val { font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--text-secondary); text-align: right; }

/* ============ 03 NUMBERS / THE REALITY (dark) ============ */
.stats { position: relative; overflow: clip; background: #0a0a0a; }
.stats__glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; filter: blur(50px); pointer-events: none; }
.stats__glow--green { bottom: -160px; left: -120px; background: radial-gradient(circle, rgba(16,163,127,.14), transparent 60%); }
.stats__glow--blue { top: -160px; right: -80px; background: radial-gradient(circle, rgba(14,165,233,.10), transparent 60%); }
.stats .container { position: relative; z-index: 1; }
.stats .section-head { margin-bottom: 0; }
.stats .section-head h2 { color: #fff; }
.stats .section-head h2 .accent { color: var(--brand-primary); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.10); border-bottom: 1px solid rgba(255,255,255,.10); margin-top: 44px; }
.stat-big { padding: 52px 44px 48px; border-left: 1px solid rgba(255,255,255,.10); }
.stat-big:first-child { border-left: 0; padding-left: 0; }
.stat-big .num {
  font-family: var(--font-display); font-weight: 500; line-height: 1; letter-spacing: -0.02em;
  font-size: clamp(3.25rem, 6vw, 5rem); color: #fff;
}
.stat-big p { font-family: var(--font-display); font-size: 16px; line-height: 1.5; color: var(--text-on-dark-muted); margin-top: 26px; max-width: 290px; }

@media (max-width: 760px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat-big { border-left: 0; padding: 36px 0 6px; border-top: 1px solid rgba(255,255,255,.10); }
  .stat-big:first-child { border-top: 0; }
}

/* dot pulse (live/status dots) */
@keyframes dot-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.4); } }
.hero__eyebrow .dot, .case-tag .dot, .demo__live .dot { animation: dot-pulse 1.8s ease-in-out infinite; transform-origin: center; }
/* pulse the inner dot of the ring/scope icon used in eyebrows */
.eyebrow .ico circle + circle { animation: dot-pulse 1.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow .dot, .case-tag .dot, .demo__live .dot, .eyebrow .ico circle + circle { animation: none; }
}
@media (prefers-reduced-motion: reduce) { .hero__eyebrow .dot, .case-tag .dot, .demo__live .dot { animation: none; } }

/* stats glow tuning (match Figma) */
.stats__glow--green { bottom: -120px; left: -80px; background: radial-gradient(circle, rgba(16,163,127,.22), transparent 62%); }
.stats__glow--blue { top: -120px; right: -20px; background: radial-gradient(circle, rgba(14,165,233,.13), transparent 62%); }

/* ============ 04 FROM INVISIBLE TO RECOMMENDED ============ */
.section-head--center { text-align: center; }
.section-head--center .eyebrow { margin: 0 auto; }
.section-head--center h2 { margin-inline: auto; }
.section-head--center .sub { margin-inline: auto; }

.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; align-items: stretch; }
.ba-card { border-radius: 24px; padding: 44px 46px; }
.ba-card--bad { background: #fdf1f1; border: 1px solid #f6dada; }
.ba-card--good { background: #effaf4; border: 1px solid #bfeeda; box-shadow: 0 22px 54px -26px rgba(16,163,127,.40); }
.ba-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 500; font-size: 13px; line-height: 17px; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.ba-pill--bad { background: #fff; border: 1px solid #f1caca; color: #d4514c; }
.ba-pill--good { background: var(--brand-primary); color: #fff; }
.ba-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; margin-top: 28px; }
.ba-card--bad h3 { color: #a4243b; }
.ba-card--good h3 { color: #0e8a6b; }
.ba-list { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 26px; }
.ba-list li { display: flex; align-items: flex-start; gap: 13px; font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.5; }
.ba-card--bad .ba-list li { color: #9f3a48; }
.ba-card--good .ba-list li { color: #1c6b52; }
.ba-ico { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; line-height: 1; margin-top: 1px; }
.ba-ico--bad { background: #fbdada; color: #d4514c; }
.ba-ico--good { background: var(--brand-primary); color: #fff; }

@media (max-width: 820px) { .ba { grid-template-columns: 1fr; } }

/* ============ 05 THE FINDME METHOD (timeline) ============ */
.section-head h2 .muted-word { color: var(--text-tertiary); }

.timeline { position: relative; margin-top: 56px; }
/* base line = neutral hairline; the green fill below tracks scroll progress */
.timeline::before { content: ""; position: absolute; left: 50%; top: 12px; bottom: 12px; width: 2px; transform: translateX(-50%); background: #e7e5e4; }
.timeline__fill {
  position: absolute; left: 50%; top: 12px; width: 2px; height: 0; transform: translateX(-50%);
  background: var(--brand-primary); border-radius: 2px; z-index: 0; transition: height .12s linear;
  /* soft fade at the top and bottom tips (matches Figma) */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14px, #000 calc(100% - 10px), transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 14px, #000 calc(100% - 10px), transparent 100%);
}
.tl-step { position: relative; display: grid; grid-template-columns: 1fr 84px 1fr; align-items: center; column-gap: 24px; padding: 18px 0; }
.tl-num {
  justify-self: center; z-index: 1; width: 64px; height: 64px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: -0.34px;
  background: #fff; border: 1px solid var(--border-light); color: var(--text-tertiary); box-shadow: 0 0 0 6px #fff;
  transition: background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.tl-num.is-active { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; box-shadow: 0 12px 40px -12px rgba(16,163,127,.35), 0 0 0 6px #fff; }

.tl-text { max-width: 430px; }
.tl-side--left .tl-text { margin-left: auto; text-align: right; }
.tl-side--right .tl-text { text-align: left; }
.tl-label { font-family: var(--font-body); font-weight: 400; font-size: 11.5px; line-height: 17.25px; letter-spacing: 0.92px; text-transform: uppercase; color: var(--brand-primary); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.tl-side--left .tl-label { justify-content: flex-end; }
.tl-sig { color: var(--brand-primary); background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 999px; padding: 3px 9px; font-size: 10px; line-height: 15px; letter-spacing: 0.92px; }
.tl-text h3 { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 34.5px; letter-spacing: -0.6px; color: #0a0a0a; }
.tl-text p { font-family: var(--font-body); font-weight: 400; font-size: 15.5px; line-height: 24px; color: #525252; margin-top: 7px; max-width: 387px; }
.tl-side--left .tl-text p { margin-left: auto; }

/* media frame (16:10) holds the per-phase animated SVG; later swap for Lottie/video */
.tl-media { aspect-ratio: 16 / 10; border: 1px solid #e7e5e4; border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 1px 2px rgba(10,10,10,.04); }
.tl-media__svg { width: 100%; height: 100%; display: block; border: 0; pointer-events: none; }

@media (max-width: 820px) {
  .timeline::before, .timeline__fill { left: 27px; }
  .tl-step { grid-template-columns: 54px 1fr; column-gap: 16px; padding: 14px 0; }
  .tl-num { grid-row: 1; grid-column: 1; width: 54px; height: 54px; font-size: 15px; }
  .tl-side { grid-column: 2; }
  .tl-side--left .tl-text, .tl-side--right .tl-text { text-align: left; margin-left: 0; max-width: none; }
  .tl-side--left .tl-text p, .tl-side--right .tl-text p { margin-left: 0; max-width: none; }
  .tl-side--left .tl-label { justify-content: flex-start; }
  .tl-media { margin-top: 14px; }
}

/* ============ 06 PIPELINE CALCULATOR ============ */
.calc { background: rgba(16, 163, 127, 0.07); padding-block: 80px; }
.calc .section-head h2 { max-width: 690px; }   /* DS: H2 box 687px → wraps after "visibility" */
.section-head .calc__sub { max-width: 652px; }  /* DS: sub box ~657px → wraps after "numbers" */

.calc-card {
  display: flex; gap: 42px; align-items: stretch;
  background: #fff; border: 1px solid #e7e5e4; border-radius: 28px; padding: 41px;
  box-shadow: 0 8px 24px -8px rgba(10,10,10,.08), 0 2px 6px rgba(10,10,10,.04);
}

/* left: inputs */
.calc-controls { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.calc-field__label { font-family: var(--font-body); font-weight: 400; font-size: 13.5px; line-height: 20.25px; color: #525252; }
.calc-field__val { font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 24px; letter-spacing: -0.16px; color: #0a0a0a; white-space: nowrap; }

.calc-range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; margin: 12px 0;
  border-radius: 999px; background: #e7e5e4;
  background-image: linear-gradient(#0a0a0a, #0a0a0a); background-repeat: no-repeat;
  background-size: var(--fill, 10%) 100%; cursor: pointer;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 2px solid #0a0a0a; box-shadow: 0 2px 6px rgba(0,0,0,.12); cursor: pointer;
}
.calc-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; box-sizing: border-box;
  background: #fff; border: 2px solid #0a0a0a; box-shadow: 0 2px 6px rgba(0,0,0,.12); cursor: pointer;
}
.calc-range::-moz-range-progress { height: 4px; border-radius: 999px; background: #0a0a0a; }
.calc-range:focus-visible { outline: none; }
.calc-range:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(16,163,127,.25); }

.calc-note { font-family: var(--font-body); font-weight: 400; font-size: 11px; line-height: 16.5px; letter-spacing: 0.44px; color: #a3a3a3; }

/* right: dark outcome card */
.calc-out {
  flex: 1 1 0; min-width: 0; position: relative; overflow: hidden;
  background: #0a0a0a; border-radius: 20px; padding: 32px; color: #fff;
  display: flex; flex-direction: column; gap: 18px;
}
.calc-out__glow {
  position: absolute; top: -55px; right: -45px; width: 200px; height: 200px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(16,163,127,.45), rgba(16,163,127,0)); filter: blur(10px);
}
.calc-out > *:not(.calc-out__glow) { position: relative; }
.calc-out__label { font-family: var(--font-body); font-weight: 400; font-size: 11px; line-height: 16.5px; letter-spacing: 0.88px; text-transform: uppercase; color: #a3a3a3; }
.calc-out__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.calc-out__row > span:first-child { font-family: var(--font-body); font-weight: 400; font-size: 13.5px; line-height: 20.25px; color: #a3a3a3; }
.calc-out__v { font-family: var(--font-display); font-weight: 500; font-size: 18px; line-height: 27px; letter-spacing: -0.45px; color: #fff; white-space: nowrap; }
.calc-out__row--hero { border-bottom: 1px solid #2a2a2a; padding-bottom: 15px; }
.calc-out__row--hero > span:first-child { font-size: 14px; line-height: 21px; }
.calc-out__big {
  font-family: var(--font-display); font-weight: 500; font-size: 36px; line-height: 54px; letter-spacing: -0.9px; white-space: nowrap;
  background: linear-gradient(124deg, #10A37F 0%, #0EA5E9 100%); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.calc-out__row--roi { border-top: 1px solid #2a2a2a; padding-top: 19px; }
.calc-out__roi { font-family: var(--font-display); font-weight: 500; font-size: 17px; line-height: 25.5px; color: var(--brand-primary); white-space: nowrap; }
.calc-out__cta { width: 100%; height: 46px; padding: 0 21px; font-size: 16px; line-height: 22.5px; letter-spacing: 0.16px; margin-top: 2px; }

@media (max-width: 900px) {
  .calc-card { flex-direction: column; gap: 24px; padding: 28px; }
}

/* ============ 07 CLIENTS / BUILT FOR YOUR INDUSTRY ============ */
.clients-tabs { display: inline-flex; flex-wrap: wrap; gap: 8px; padding: 7px; margin-bottom: 32px; background: #fafaf9; border: 1px solid #e7e5e4; border-radius: 999px; }
.ctab { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; font-family: var(--font-body); font-weight: 400; font-size: 18px; line-height: 1; color: var(--text-secondary); transition: background .2s ease, color .2s ease, box-shadow .2s ease; }
.ctab__dot { width: 8px; height: 8px; border-radius: 3px; background: #a3a3a3; flex-shrink: 0; transition: background .2s ease; }
.ctab:hover { color: var(--text-primary); }
.ctab.is-active { background: #fff; color: #0a0a0a; box-shadow: 0 1px 1px rgba(10,10,10,.04), 0 1px 0 rgba(10,10,10,.02); }
.ctab.is-active .ctab__dot { background: var(--brand-primary); }

.cpanel { display: none; }
.cpanel.is-active { display: grid; grid-template-columns: 1fr minmax(0, 520px); gap: 42px; align-items: center; animation: cpanel-in .85s cubic-bezier(.16,1,.3,1); }
@keyframes cpanel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.cpanel__left { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cp-label { font-family: var(--font-body); font-weight: 400; font-size: 11.5px; line-height: 17.25px; letter-spacing: 0.92px; text-transform: uppercase; color: var(--brand-primary); }
.cpanel__left h3 { font-family: var(--font-display); font-weight: 500; font-size: 32px; line-height: 1.4; letter-spacing: -0.52px; color: #0a0a0a; max-width: 320px; }
.cp-body { font-family: var(--font-body); font-weight: 400; font-size: 15.5px; line-height: 24px; color: #525252; max-width: 430px; }
.cp-fact { width: 100%; max-width: 460px; background: rgba(167,243,208,0.09); border: 1px dashed #92e7c0; border-radius: 12px; padding: 16px; }
.cp-fact__label { font-family: var(--font-body); font-weight: 500; font-size: 10.5px; letter-spacing: 0.84px; text-transform: uppercase; color: #0c0c0c; margin-bottom: 8px; }
.cp-fact p { font-family: var(--font-body); font-size: 14px; line-height: 1.35; color: #065f46; margin: 0; }

.cpanel__right { display: flex; flex-direction: column; gap: 12px; }
.cp-qlabel { font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 16px; letter-spacing: .02em; text-transform: uppercase; color: var(--text-tertiary); }
.cp-stage { position: relative; min-height: 345px; }
.cp-stage__bg {
  position: absolute; inset: 0; border-radius: 12px; overflow: hidden; border: 1px solid #e7e5e4;
  background-image: linear-gradient(180deg, rgba(10,10,10,.04) 0%, rgba(10,10,10,.12) 100%), url("../assets/clients/queries-bg.jpg");
  background-size: cover; background-position: center;
}
.cp-chip {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px; max-width: 92%;
  background: var(--brand-primary); color: #fff; padding: 9px 13px; border: 1px solid rgba(231,229,228,.4); border-radius: 13px;
  box-shadow: 0 4px 10px -2px rgba(10,10,10,.18); font-family: var(--font-body); font-weight: 500; font-size: 14px;
}
.cp-chip i { font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cp-chip__ico { width: 24px; height: 24px; border-radius: 12px; background: #fff; color: var(--brand-primary); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.cp-chip--1 { top: 9%; left: -4%; animation: chip-float 5s ease-in-out infinite; }
.cp-chip--2 { top: 43%; right: -4%; animation: chip-float 5.6s ease-in-out infinite .5s; }
.cp-chip--3 { bottom: 10%; left: 7%; animation: chip-float 5.2s ease-in-out infinite .9s; }
@keyframes chip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (max-width: 900px) {
  .cpanel.is-active { grid-template-columns: 1fr; gap: 28px; }
  .cp-chip { position: static; max-width: 100%; margin-bottom: 10px; animation: none; }
  .cp-chip i { white-space: normal; }
  .cp-stage { min-height: 0; }
  .cp-stage__bg { display: none; }
  .cp-stage { display: flex; flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) { .cp-chip { animation: none; } }

/* ============ 08 COMPARISON ============ */
.cmp-wrap { width: 100%; overflow-x: auto; background: #fff; border: 1px solid #e7e5e4; border-radius: 28px; }
.cmp { width: 100%; min-width: 720px; border-collapse: collapse; font-family: var(--font-body); }
.cmp th, .cmp td { padding: 17px 22px; text-align: center; vertical-align: middle; border-bottom: 1px solid #e7e5e4; }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp thead th { background: #fafaf9; font-family: var(--font-display); font-weight: 500; font-size: 14px; line-height: 21px; color: #525252; }

/* feature (first) column */
.cmp .cmp-feat { text-align: left; width: 39%; padding-left: 34px; }
.cmp thead .cmp-feat { font-size: 12px; letter-spacing: .72px; text-transform: uppercase; color: #737373; }
.cmp tbody .cmp-feat { font-family: var(--font-body); font-weight: 400; font-size: 14.5px; line-height: 21.75px; color: #1c1c1c; }
.cmp tbody td:not(.cmp-feat):not(.cmp-us) { font-size: 14.5px; line-height: 21.75px; color: #1c1c1c; }

/* highlighted FindMeGPT column */
.cmp .cmp-us { width: 18%; background: #ecfdf5; border-left: 1px solid #a7f3d0; border-right: 1px solid #a7f3d0; }
.cmp thead .cmp-us { border-top: 2px solid #10a37f; border-left-color: #10a37f; border-right-color: #10a37f; }
.cmp-us__name { display: block; font-family: var(--font-display); font-weight: 500; font-size: 16px; line-height: 24px; color: #0a0a0a; }
.cmp-us__tag { display: block; margin-top: 2px; font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .84px; color: var(--brand-primary); }
.cmp-price { font-family: var(--font-display); font-weight: 500; font-size: 14.5px; color: var(--brand-primary); }

/* status markers */
.cmp-yes { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--brand-primary); color: #fff; font-size: 13px; line-height: 1; }
.cmp-yes--muted { background: #fafaf9; color: #525252; }
.cmp-part { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.cmp-part__ico { width: 22px; height: 22px; border-radius: 50%; background: #fafaf9; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; color: #737373; }
.cmp-part__lbl { font-size: 10px; letter-spacing: .4px; color: #a3a3a3; }
.cmp-dash { color: #a3a3a3; font-size: 18px; }

/* ============ 09 PRICING ============ */
.pricing { background: #fafaf9; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; margin-top: 32px; }
.price-card { position: relative; background: #fff; border: 1px solid #e7e5e4; border-radius: 28px; padding: 33px; display: flex; flex-direction: column; gap: 18px; box-shadow: 0 1px 1px rgba(10,10,10,.04), 0 1px 0 rgba(10,10,10,.02); }
.price-card--featured { border-color: var(--brand-primary); box-shadow: 0 24px 60px -20px rgba(16,163,127,.35), 0 8px 24px -12px rgba(10,10,10,.06); }
/* tiers 1 & 3 share one (taller) height; the featured middle tier stays tallest */
.price-card:not(.price-card--featured) { min-height: 700px; }

.pc-head { display: flex; flex-direction: column; gap: 7px; }
.pc-label { font-family: var(--font-body); font-weight: 400; font-size: 12px; line-height: 16px; text-transform: uppercase; letter-spacing: .02em; color: #737373; }
.price-card--featured .pc-label { color: var(--brand-primary); }
.pc-name { font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 26.4px; letter-spacing: -0.44px; color: #0a0a0a; }

.pc-price { display: flex; align-items: baseline; gap: 6px; }
.pc-price .cur { font-family: var(--font-body); font-size: 14px; color: #737373; }
.pc-price .amt { font-family: var(--font-display); font-weight: 500; font-size: 48px; line-height: 48px; color: #0a0a0a; }
.pc-price .per { font-family: var(--font-body); font-size: 14px; color: #737373; }

.pc-list { list-style: none; display: flex; flex-direction: column; gap: 14px; padding-left: 14px; }
.pc-list li { display: flex; gap: 8px; font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 20.3px; color: #1c1c1c; }
.pc-list .check { color: var(--brand-primary); font-size: 14px; line-height: 20px; flex-shrink: 0; }
.pc-list .check--star { font-size: 15px; }
.pc-list .pc-more { font-weight: 500; font-size: 14px; color: #737373; }
.pc-list .pc-star { font-weight: 500; }

.pc-promise { margin-top: auto; border: 1px dashed #d4d4d4; background: #fafaf9; border-radius: 10px; padding: 12px 15px; font-family: var(--font-body); font-style: italic; font-size: 13px; line-height: 18.2px; color: #525252; }
.price-card--featured .pc-promise { background: #fff; }

.pc-guarantee { display: flex; gap: 10px; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 10px; padding: 13px 15px; }
.pc-guarantee .g-ico { width: 18px; height: 18px; border-radius: 9px; background: var(--brand-primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.pc-guarantee p { font-family: var(--font-body); font-size: 12.5px; line-height: 18.13px; color: #0d8f6e; margin: 0; }
.pc-guarantee strong { font-weight: 700; color: #0d8f6e; }

.pc-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #0a0a0a; color: #fff; border-radius: 999px; padding: 6px 14px; font-family: var(--font-body); font-weight: 400; font-size: 11px; letter-spacing: .88px; white-space: nowrap; }

.pc-cta { height: 46px; width: 100%; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-weight: 500; font-size: 15px; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.pc-cta--ghost { background: #fff; border: 1px solid #d4d4d4; color: #0a0a0a; }
.pc-cta--ghost:hover { border-color: #b8b8b8; }
.pc-cta--brand { background: var(--brand-primary); border: 1px solid transparent; color: #fff; }
.pc-cta--brand:hover { box-shadow: 0 8px 20px -6px rgba(16,163,127,.5); }

.price-foot { text-align: center; display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.price-foot h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: #0a0a0a; }
.price-foot p { font-family: var(--font-body); font-size: 18px; line-height: 32px; color: #525252; }
.price-foot p strong { color: #0a0a0a; font-weight: 600; }
.price-foot a { color: var(--brand-primary); text-decoration: underline; font-weight: 500; }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .price-card:not(.price-card--featured) { min-height: 0; }
}

/* ============ 10 FAQ ============ */
.faq__title { max-width: 733px; }
.faq-acc { max-width: 900px; margin: 56px auto 0; background: #fff; border: 1px solid #e7e5e4; border-radius: 20px; overflow: hidden; }
.faq-item { border-bottom: 1px solid #e7e5e4; transition: background .25s ease; }
.faq-item:last-child { border-bottom: 0; }
.faq-item.is-open { background: #eef8f6; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: transparent; border: 0; cursor: pointer; text-align: left; font-family: var(--font-display); font-weight: 500; font-size: 16.5px; letter-spacing: -0.165px; color: #0a0a0a; }
.faq-ico { flex-shrink: 0; width: 28px; height: 28px; border-radius: 14px; border: 1px solid #d4d4d4; background: #fff; color: #525252; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 16.5px; line-height: 0; transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease; }
.faq-item.is-open .faq-ico { background: #0a0a0a; color: #fff; border-color: #0a0a0a; transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer__inner { overflow: hidden; }
.faq-answer p { padding: 0 24px 22px; max-width: 640px; font-family: var(--font-body); font-weight: 400; font-size: 15px; line-height: 24px; color: #525252; margin: 0; }

/* ============ 11 FINAL CTA ============ */
.cta { position: relative; overflow: clip; background: #0a0a0a; text-align: center; padding-block: 92px 124px; }
.cta__glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(20px); pointer-events: none; }
.cta__glow--green { top: 134px; left: 144px; background: radial-gradient(closest-side, rgba(16,163,127,.18), transparent 70%); }
.cta__glow--cyan { bottom: 67px; right: 72px; background: radial-gradient(closest-side, rgba(14,165,233,.15), transparent 70%); }
.cta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 21px; }
.cta h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 4.6vw, 54px); line-height: 1.11; letter-spacing: -0.02em; color: #fff; max-width: 840px; }
.cta h2 .accent { color: var(--brand-primary); }
.cta__sub { font-family: var(--font-body); font-weight: 400; font-size: 22px; line-height: 31.9px; color: rgba(255,255,255,.7); max-width: 700px; }
.cta__sub strong { color: #fff; font-weight: 500; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 20px; }
.cta-btn { height: 54px; padding: 0 27px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-weight: 500; font-size: 16px; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease; }
.cta-btn:hover { transform: translateY(-1px); }
.cta-btn--brand { background: var(--brand-primary); color: #fff; box-shadow: 0 12px 40px -12px rgba(16,163,127,.45); }
.cta-btn--white { background: #fff; color: #0a0a0a; }
.cta__fine { font-family: var(--font-body); font-weight: 400; font-size: 13px; line-height: 19.5px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ============ 12 FOOTER ============ */
.site-footer { background: #fafaf9; border-top: 1px solid #e7e5e4; padding: 57px 0 40px; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-tagline { max-width: 230px; font-family: var(--font-body); font-weight: 500; font-size: 15px; line-height: 21.75px; color: #525252; }
.footer-tagline .accent { color: var(--brand-primary); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social { width: 38px; height: 38px; border-radius: 9px; border: 1px solid #e7e5e4; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: #0a0a0a; transition: border-color .2s ease, color .2s ease; }
.social svg { width: 17px; height: 17px; }
.social:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.footer-col h4 { font-family: var(--font-body); font-weight: 400; font-size: 11px; letter-spacing: .88px; text-transform: uppercase; color: #737373; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 400; font-size: 14px; line-height: 21px; color: #1c1c1c; }
.footer-col a { color: inherit; }
.footer-col a:hover { color: var(--brand-primary); }
.foot-na { color: #1c1c1c; }
.foot-soon { font-family: var(--font-body); font-weight: 500; font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-primary); background: #ecfdf5; border: 1px solid #c8f2e2; border-radius: 999px; padding: 1px 7px; line-height: 1.5; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; border-top: 1px solid #e7e5e4; margin-top: 40px; padding-top: 25px; }
.footer-bottom span { font-family: var(--font-body); font-weight: 400; font-size: 13px; line-height: 19.5px; color: #737373; }
.footer-domain { letter-spacing: .06em; }

@media (max-width: 860px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
