/* ============================================================
   Impact Finance — premium finance landing
   Pure CSS. Calm, ordered, trustworthy.
   ============================================================ */

:root {
  --bg: #F4F7FA;
  --surface: #FFFFFF;
  --surface-soft: #F8FAFC;
  --ink: #0B1220;
  --navy: #10243E;
  --blue-muted: #2F5F8F;
  --blue-soft: #DCE8F5;
  --steel: #6B7C8F;
  --line: #D8E1EA;
  --gold-muted: #C8A96A;
  --green-muted: #5F8F78;
  --red-muted: #A85D5D;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(16,36,62,.04), 0 4px 14px rgba(16,36,62,.05);
  --shadow-md: 0 6px 24px rgba(16,36,62,.07), 0 2px 6px rgba(16,36,62,.04);
  --shadow-lg: 0 24px 60px rgba(16,36,62,.12), 0 8px 24px rgba(16,36,62,.08);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select { font-family: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- typography ---------- */
h1, h2, h3 { color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }
h1 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
h3 { font-size: 1.18rem; line-height: 1.3; letter-spacing: -0.015em; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-muted);
  background: rgba(220, 232, 245, 0.45);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 22px rgba(47, 95, 143, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 16px;
}
.kicker--light { color: var(--gold-muted); }
.lead, .section-text {
  color: var(--steel);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
  max-width: 60ch;
}
.section-text + .section-text { margin-top: 16px; }
.on-dark { color: #fff; }
.on-dark-soft { color: rgba(255,255,255,.72); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .9rem;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 22px rgba(16,36,62,.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16,36,62,.28); background: #0c1d33; }
.btn-ghost {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--surface);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--blue-muted); box-shadow: var(--shadow-sm); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 250;
  background: rgba(244,247,250,.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(244,247,250,.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; font-size: 1.12rem; color: var(--navy); }
.brand-mark { width: 30px; height: 30px; color: var(--navy); }
.brand-mark svg { width: 100%; height: 100%; }

.nav { display: flex; gap: 34px; }
.nav a {
  font-size: .98rem; font-weight: 500; color: var(--steel);
  position: relative; transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold-muted); transition: width .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.nav-cta, .nav-contacts { display: none; }

/* backdrop behind mobile glass menu */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(8,18,32,.45);
  -webkit-backdrop-filter: blur(10px) saturate(120%); backdrop-filter: blur(10px) saturate(120%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.nav-backdrop.open { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(72px, 9vw, 130px) 0; }
.section--soft { background: var(--surface-soft); }
.section--navy { background: var(--navy); }
.section--cta { background: linear-gradient(160deg, #10243E 0%, #0B1A2E 100%); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head--wide { max-width: 860px; }

/* ============================================================
   HERO
   ============================================================ */
/* clean white hero — no section-wide tint */
.hero { padding: clamp(40px, 5vw, 72px) 0 clamp(40px, 5vw, 72px); position: relative; background: #fff; }
/* top row: text (left) + big expert (right) */
.hero-top {
  display: grid; grid-template-columns: 44% 56%; gap: 32px; align-items: center;
  min-height: clamp(460px, 44vw, 600px);
}
.hero-copy { max-width: 560px; align-self: center; position: relative; z-index: 2; }
.hero-copy .lead { margin-top: 24px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.trust-line { display: flex; align-items: center; gap: 14px; margin-top: 40px; }
.trust-line p { font-size: .95rem; color: var(--steel); }
.trust-line strong { color: var(--ink); font-weight: 700; }
.trust-avatars { display: inline-flex; }
.trust-avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg);
  margin-left: -10px; background: linear-gradient(135deg, var(--blue-soft), var(--blue-muted));
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-avatars span:nth-child(2){ background: linear-gradient(135deg,#e7d9bd,var(--gold-muted)); }
.trust-avatars span:nth-child(3){ background: linear-gradient(135deg,#cfe0d8,var(--green-muted)); }
.trust-avatars span:nth-child(4){ background: linear-gradient(135deg,var(--blue-soft),var(--navy)); }

/* ---------- DASHBOARD PROOF SECTION (below hero) ---------- */
.dash-section { background: var(--surface-soft); padding-top: clamp(36px, 5vw, 72px); }

/* connector arrow spanning hero → dashboard (from binders to the chart) */
.hero-flow { position: relative; }
.flow-arrow {
  position: absolute; z-index: 6; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
  filter: drop-shadow(0 4px 12px rgba(200,169,106,.4));
}
.flow-arrow-path {
  fill: none; stroke: url(#arrowGrad); stroke-width: 2.4;
  stroke-linecap: round; stroke-dasharray: 5 7; vector-effect: non-scaling-stroke;
}
/* small fixed-size tip pointing down at the panel (doesn't overlap it) */
.flow-tip {
  position: absolute; z-index: 6; left: 50%; top: 56%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--gold-muted);
  filter: drop-shadow(0 3px 6px rgba(200,169,106,.45));
  opacity: .92;
  pointer-events: none;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.dash { position: relative; z-index: 1; width: 100%; max-width: 1080px; margin: 0 auto; }
/* wide layout: 4 KPIs in a row */
.dash-section .kpi-grid { grid-template-columns: repeat(4, 1fr); }
.dash-glow {
  position: absolute; inset: -8% 0 -12% 0;
  background: radial-gradient(60% 60% at 60% 40%, rgba(47,95,143,.18), transparent 72%);
  filter: blur(18px); z-index: 0;
}
.dash-panel {
  position: relative; z-index: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 22px;
}
.dash-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.dash-title { display: block; font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; color: var(--ink); }
.dash-sub { display: block; font-size: .78rem; color: var(--steel); margin-top: 2px; }
.dash-tabs { display: inline-flex; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 100px; padding: 4px; gap: 2px; }
.dash-tab { font-size: .78rem; font-weight: 600; color: var(--steel); padding: 6px 12px; border-radius: 100px; transition: all .2s var(--ease); }
.dash-tab.is-active { background: var(--navy); color: #fff; }

.kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.kpi {
  background: var(--surface-soft); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 14px 15px;
}
.kpi-label { display: block; font-size: .76rem; color: var(--steel); font-weight: 500; }
.kpi-value { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); margin: 6px 0 4px; }
.kpi-trend { font-size: .74rem; font-weight: 600; }
.kpi-trend.up { color: var(--green-muted); }
.kpi-trend.down { color: var(--red-muted); }
.kpi-trend.gold { color: var(--gold-muted); }
.kpi--accent { background: linear-gradient(155deg, rgba(200,169,106,.12), rgba(200,169,106,.04)); border-color: rgba(200,169,106,.4); }

.chart-card { background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px; }
.chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; min-height: 20px; }
.chart-title { font-size: .82rem; font-weight: 600; color: var(--ink); transition: opacity .25s var(--ease); }
.chart-legend { display: flex; gap: 14px; }
.lg { font-size: .72rem; color: var(--steel); display: inline-flex; align-items: center; gap: 6px; }
.lg::before { content: ""; width: 14px; height: 3px; border-radius: 3px; }
.lg-in::before { background: var(--blue-muted); }
.lg-out::before { background: var(--steel); opacity: .5; }
.lg-profit::before { background: var(--gold-muted); }

#kpiGrid, #chartBody { transition: opacity .25s var(--ease); }
.chart-body { min-height: 154px; }
.chart { width: 100%; height: 130px; }

/* bars view (ОПиУ) */
.chart--bars .bars rect { fill: var(--blue-soft); transition: transform .6s var(--ease); }
.chart--bars .bars rect.bar-accent { fill: var(--gold-muted); }

/* balance view */
.bal-rows { display: flex; flex-direction: column; gap: 16px; padding: 14px 2px 8px; }
.bal-top { display: flex; justify-content: space-between; margin-bottom: 9px; }
.bal-top span:first-child { font-size: .82rem; color: var(--steel); font-weight: 500; }
.bal-top span:last-child { font-size: .86rem; color: var(--ink); font-weight: 700; }
.bal-track { height: 12px; border-radius: 8px; background: var(--line); overflow: hidden; }
.bal-track i { display: block; height: 100%; width: 0; border-radius: 8px;
  transform: scaleX(0); transform-origin: left center;
  background: linear-gradient(90deg, var(--blue-muted), var(--navy));
  transition: transform 1.1s var(--ease); }
.bal-row:nth-child(2) .bal-track i { background: linear-gradient(90deg, #d3bd8d, var(--gold-muted)); }
.bal-row:nth-child(3) .bal-track i { background: linear-gradient(90deg, #8fb3a3, var(--green-muted)); }
.grid-lines line { stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 5; }
.area { opacity: 0; transition: opacity 1s ease .4s; }
.line-in, .line-out { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.line-in { stroke: var(--blue-muted); stroke-width: 2.6; }
.line-out { stroke: var(--steel); stroke-width: 2; opacity: .45; stroke-dasharray: 4 6; }
.cf-dot { fill: var(--blue-muted); stroke: #fff; stroke-width: 2.5; opacity: 0; transition: opacity .4s ease 1.5s; }
.is-drawn .area { opacity: 1; }
.is-drawn .cf-dot { opacity: 1; }
.chart-axis { display: flex; justify-content: space-between; margin-top: 8px; }
.chart-axis span { font-size: .68rem; color: var(--steel); }

.float-label {
  position: absolute; z-index: 3;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 100px; padding: 9px 15px;
  font-size: .8rem; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  animation: float 5s ease-in-out infinite;
}
.float-label--a { top: -18px; left: -14px; }
.float-label--b { bottom: 40px; right: -22px; animation-delay: 1.4s; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: var(--green-muted); }
.dot-gold { background: var(--gold-muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- HERO PERSON ---------- */
/* composition wrapper: offset card(0) < tilted card(1) < photo(2) < cards(3) */
.hero-expert {
  position: relative; z-index: 1;
  justify-self: end; align-self: end;
  width: clamp(440px, 46vw, 640px); max-width: 100%;
  margin: 0; line-height: 0;
}
/* pale offset card behind (depth) */
.hero-expert::after {
  content: ""; position: absolute; z-index: 0;
  inset: 7% 2% 1% 9%;
  background: #EAF2F8;
  border-radius: 40px;
}
/* main brand-blue card the expert stands on (swap gradient for red if needed) */
.hero-expert::before {
  content: ""; position: absolute; z-index: 1;
  inset: 2% 4% 0 2%;
  background: linear-gradient(150deg, #DCE8F5 0%, #C4D7EC 55%, #AFC9E6 100%);
  border-radius: 44px;
  box-shadow: 0 34px 70px rgba(47,95,143,.20);
}
.expert-photo {
  position: relative; z-index: 2; width: 100%; height: auto; max-height: 660px;
  object-fit: contain; object-position: bottom; display: block;
  filter: drop-shadow(0 18px 36px rgba(16,36,62,.16));
}

/* floating finance UI cards around the expert */
.fin-card {
  position: absolute; z-index: 3; line-height: 1.25;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 18px; padding: 10px 14px;
  box-shadow: 0 16px 36px rgba(16,36,62,.12);
  animation: float 6s ease-in-out infinite;
}
.fin-dot { flex: none; width: 18px; height: 18px; border-radius: 6px; }
.fin-dot--blue { background: var(--blue-muted); }
.fin-dot--green { background: var(--green-muted); }
.fin-dot--gold { background: var(--gold-muted); }
.fin-text { display: flex; flex-direction: column; }
.fin-text b { font-size: .86rem; font-weight: 700; letter-spacing: -0.01em; color: var(--navy); }
.fin-text i { font-style: normal; font-size: .7rem; color: var(--steel); white-space: nowrap; }
.fin-card--a { top: 22%; left: -6%; }
.fin-card--b { top: 6%; right: 2%; animation-delay: 1.1s; }
.fin-card--c { top: 46%; right: -4%; animation-delay: 2.1s; }
.fin-card--d { bottom: 18%; left: -2%; animation-delay: 1.6s; }

/* hero composition — tablet & below: single column */
@media (max-width: 1024px) {
  .hero-top {
    grid-template-columns: 1fr; gap: 28px; align-items: center; min-height: 0;
  }
  .hero-copy { max-width: 100%; }
  .hero-expert {
    justify-self: center; align-self: center;
    width: min(80%, 440px);
  }
  .dash-section .kpi-grid { grid-template-columns: 1fr 1fr; }
  /* keep the header from overflowing in the tablet range */
  .header-actions .btn-sm { display: none; }
  .nav { gap: 22px; }
  .nav a { font-size: .92rem; }
}

@media (max-width: 1024px) {
  .flow-arrow { display: none; }
}
@media (max-width: 760px) {
  .hero-expert { width: min(86%, 380px); }
  /* keep only two cards on phones, snug to the photo */
  .fin-card--b, .fin-card--d { display: none; }
  .fin-card { padding: 8px 12px; border-radius: 16px; max-width: 60vw; }
  .fin-text i { white-space: normal; }
  .fin-card--a { top: 18%; left: 0; }
  .fin-card--c { top: 50%; right: 0; }
  .fin-text b { font-size: .8rem; }
  .fin-text i { font-size: .66rem; }
}
@media (max-width: 420px) {
  .hero-expert { width: 92%; }
}

/* ---------- VIDEO SECTION ---------- */
.video-section { background: #fff; }
.video-frame {
  position: relative; max-width: 920px; margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: #0B1220;
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
/* click-to-play facade */
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%;
  padding: 0; border: 0; cursor: pointer; display: block; background: #0B1220;
}
.video-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 16px 40px rgba(16,36,62,.35);
  color: var(--navy);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.video-play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: 40px; align-items: start; }
.problem-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.problem-cards .stmt:first-child { grid-column: 1 / -1; }
.stmt {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.stmt:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-soft); }
.stmt-no { font-size: .78rem; font-weight: 700; color: var(--gold-muted); letter-spacing: .1em; }
.stmt h3 { margin: 12px 0 8px; }
.stmt p { color: var(--steel); font-size: .98rem; }

/* dark before panel */
.before-panel {
  position: sticky; top: 96px;
  background: var(--navy); color: #fff;
  border-radius: var(--r-xl); padding: 28px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.before-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; position: relative; z-index: 2; }
.before-tag { font-weight: 700; letter-spacing: -0.02em; font-size: 1.05rem; }
.before-status { font-size: .74rem; color: var(--red-muted); background: rgba(168,93,93,.16); padding: 5px 12px; border-radius: 100px; font-weight: 600; }
.before-lines { display: flex; flex-direction: column; gap: 2px; position: relative; z-index: 2; }
.before-lines li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
}
.before-lines li span:first-child { color: rgba(255,255,255,.78); }
.before-lines .mix { color: #fff; opacity: .55; }
.before-lines .unknown { color: var(--gold-muted); }
.before-lines .rise { color: var(--red-muted); }
.before-lines .none { color: var(--red-muted); font-weight: 600; }
.before-noise { position: absolute; inset: 0; z-index: 1; opacity: .5; }
.before-noise span {
  position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(47,95,143,.5), transparent);
  animation: drift 7s linear infinite;
}
.before-noise span:nth-child(1){ top:18%; left:-20%; width:60%; animation-delay:0s; }
.before-noise span:nth-child(2){ top:34%; left:-30%; width:80%; animation-delay:1.2s; }
.before-noise span:nth-child(3){ top:52%; left:-10%; width:50%; animation-delay:2.4s; }
.before-noise span:nth-child(4){ top:68%; left:-40%; width:90%; animation-delay:.6s; }
.before-noise span:nth-child(5){ top:80%; left:-20%; width:70%; animation-delay:1.8s; }
.before-noise span:nth-child(6){ top:92%; left:-25%; width:65%; animation-delay:3s; }
@keyframes drift { to { transform: translateX(160%); } }

/* ============================================================
   SOLUTION / LAYERS
   ============================================================ */
.layers { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.layer {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.layer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.layer-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.layer-abbr {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; color: var(--navy);
  padding-right: 12px; border-right: 1px solid var(--line);
}
.layer-name { font-size: .92rem; font-weight: 600; color: var(--steel); }
.layer p { color: var(--steel); font-size: 1rem; min-height: 52px; }
.layer-graph { width: 100%; height: 64px; margin-top: 18px; }
.layer-graph polyline { stroke: var(--blue-muted); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.layer-graph .g-soft { stroke: var(--steel); opacity: .35; stroke-width: 1.8; }
.layer-graph--bars rect { fill: var(--blue-soft); rx: 3; }
.layer-graph--bars .bar-accent { fill: var(--gold-muted); }
.layer-graph--donut { width: 64px; height: 64px; margin: 18px auto 0; }
.ring-bg { fill: none; stroke: var(--line); stroke-width: 8; }
.ring-fg { fill: none; stroke: var(--blue-muted); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 163; stroke-dashoffset: 60; transform: rotate(-90deg); transform-origin: center; }
.ring-fg2 { fill: none; stroke: var(--gold-muted); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 163; stroke-dashoffset: 130; transform: rotate(-90deg); transform-origin: center; }

/* ============================================================
   RESULTS
   ============================================================ */
.results-grid { display: grid; grid-template-columns: 1.1fr .95fr; gap: 48px; align-items: start; }
.results-list { display: flex; flex-direction: column; gap: 4px; }
.results-list li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.results-list li:last-child { border-bottom: none; }
.r-ico {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-size: .85rem; font-weight: 700;
  background: rgba(95,143,120,.14); color: var(--green-muted);
}
.results-list h3 { margin-bottom: 4px; }
.results-list p { color: var(--steel); font-size: .98rem; }

.compare {
  position: sticky; top: 96px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 26px 22px; box-shadow: var(--shadow-md);
}
.compare-col { padding: 8px; }
.compare-tag { display: inline-block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.compare-before .compare-tag { color: var(--red-muted); }
.compare-after .compare-tag { color: var(--green-muted); }
.compare-col ul { display: flex; flex-direction: column; gap: 10px; }
.compare-col li { font-size: .92rem; padding-left: 18px; position: relative; color: var(--ink); }
.compare-before li { color: var(--steel); }
.compare-before li::before { content: "—"; position: absolute; left: 0; color: var(--red-muted); }
.compare-after li::before { content: "✓"; position: absolute; left: 0; color: var(--green-muted); font-weight: 700; }
.compare-arrow { color: var(--steel); width: 34px; }
.compare-arrow svg { width: 100%; }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.aud {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 26px;
  color: rgba(255,255,255,.9); font-size: 1.05rem; line-height: 1.45;
  position: relative; padding-left: 56px;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.aud::before {
  content: "✓"; position: absolute; left: 22px; top: 26px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(200,169,106,.18); color: var(--gold-muted);
  display: grid; place-items: center; font-size: .72rem; font-weight: 700;
}
.aud:hover { background: rgba(255,255,255,.07); border-color: rgba(200,169,106,.4); }

/* ============================================================
   PROGRAM / TIMELINE
   ============================================================ */
.timeline { position: relative; display: flex; flex-direction: column; gap: 22px; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 24px; bottom: 24px; width: 2px;
  background: linear-gradient(var(--line), var(--blue-soft), var(--gold-muted));
}
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; position: relative; }
.tl-marker {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--blue-muted);
  display: grid; place-items: center; z-index: 2; box-shadow: var(--shadow-sm);
}
.tl-marker span { font-weight: 800; font-size: 1.2rem; color: var(--navy); }
.tl-marker--gold { border-color: var(--gold-muted); background: linear-gradient(155deg,#fff,rgba(200,169,106,.12)); }
.tl-body {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 28px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tl-body:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.tl-month { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-muted); }
.tl-body h3 { font-size: 1.4rem; margin: 6px 0 18px; }
.tl-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tl-label { display: block; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--steel); margin-bottom: 10px; }
.tl-cols ul { display: flex; flex-direction: column; gap: 8px; }
.tl-cols li { position: relative; padding-left: 18px; font-size: .96rem; color: var(--ink); }
.tl-cols li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-muted); }
.tl-result { background: var(--surface-soft); border-radius: var(--r-md); padding: 16px 18px; border: 1px solid var(--line); }
.tl-result p { color: var(--steel); font-size: .95rem; }

/* ============================================================
   TRUST + STATS
   ============================================================ */
.trust-block { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-num { display: block; font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; letter-spacing: -0.04em; color: var(--navy); line-height: 1; }
.stat-cap { display: block; margin-top: 10px; color: var(--steel); font-size: .95rem; }
.stat:nth-child(1) .stat-num { color: var(--blue-muted); }
.stat:nth-child(4) .stat-num { color: var(--gold-muted); }

/* ============================================================
   WHY IT WORKS
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.why {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 34px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-no { font-size: 1.6rem; font-weight: 800; color: var(--blue-soft); letter-spacing: -0.03em; }
.why h3 { margin: 8px 0 10px; font-size: 1.3rem; }
.why p { color: var(--steel); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.case {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-head { display: flex; gap: 14px; align-items: center; }
.case-avatar {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem; color: #fff;
  background: linear-gradient(140deg, var(--blue-muted), var(--navy));
}
.case-name { font-weight: 700; letter-spacing: -0.01em; }
.case-result { display: block; font-size: .82rem; color: var(--gold-muted); margin-top: 3px; line-height: 1.35; }
.case blockquote { color: var(--ink); font-size: 1.02rem; line-height: 1.6; position: relative; }
.case blockquote::before { content: "“"; position: absolute; top: -22px; left: -4px; font-size: 3rem; color: var(--blue-soft); font-weight: 800; line-height: 1; }

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */
.cta-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cta-bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.cta-bullets li { color: rgba(255,255,255,.82); padding-left: 28px; position: relative; }
.cta-bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 50%; background: rgba(200,169,106,.2); color: var(--gold-muted);
  display: grid; place-items: center; font-size: .65rem; font-weight: 700;
}
.contact-card {
  background: var(--surface); border-radius: var(--r-xl); padding: 34px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
}
.contact-title { font-size: 1.4rem; margin-bottom: 8px; }
.contact-sub { color: var(--steel); font-size: .98rem; margin-bottom: 24px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border-radius: var(--r-md);
  background: var(--surface-soft); border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.contact-btn:hover { transform: translateY(-2px); border-color: var(--blue-soft); box-shadow: var(--shadow-md); background: var(--surface); }
.cb-ico {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(140deg, var(--blue-muted), var(--navy));
}
.cb-ico svg { width: 22px; height: 22px; }
.contact-btn:nth-child(3) .cb-ico { background: linear-gradient(140deg, #d3bd8d, var(--gold-muted)); }
.cb-text { display: flex; flex-direction: column; line-height: 1.3; }
.cb-text strong { font-size: 1.02rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.cb-text em { font-style: normal; font-size: .86rem; color: var(--steel); }
.cb-arrow { margin-left: auto; font-size: 1.1rem; color: var(--steel); transition: transform .25s var(--ease), color .25s var(--ease); }
.contact-btn:hover .cb-arrow { transform: translateX(4px); color: var(--blue-muted); }
.contact-micro { margin-top: 22px; font-size: .85rem; color: var(--steel); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand--footer { color: #fff; }
.brand--footer .brand-mark { color: var(--gold-muted); }
.footer-brand p { margin-top: 16px; max-width: 34ch; font-size: .95rem; color: rgba(255,255,255,.6); }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links-title { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.footer-links a { font-size: .98rem; color: rgba(255,255,255,.72); transition: color .2s var(--ease), transform .2s var(--ease); display: inline-flex; align-items: center; gap: 12px; }
.footer-links a:hover { color: var(--gold-muted); transform: translateX(3px); }
.fl-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--gold-muted); transition: background .2s var(--ease); }
.fl-ico svg { width: 18px; height: 18px; }
.footer-links a:hover .fl-ico { background: rgba(200,169,106,.16); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 24px; font-size: .85rem; color: rgba(255,255,255,.45); }
.footer-made { display: inline-flex; align-items: center; gap: 5px; }
.footer-made a { color: rgba(255,255,255,.7); font-weight: 600; transition: color .2s var(--ease); }
.footer-made a:hover { color: var(--gold-muted); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-label, .before-noise span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .problem-grid, .results-grid, .trust-block, .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .before-panel, .compare { position: static; }
  .layers, .audience-grid, .reviews { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  /* Apple-glass near-fullscreen menu */
  .nav {
    position: fixed; top: 12px; right: 12px; left: 12px; bottom: auto;
    width: auto; height: calc(100dvh - 24px); max-height: calc(100dvh - 24px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255,255,255,.82);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 28px;
    padding: 86px 24px 26px;
    box-shadow: 0 30px 90px rgba(8,18,32,.30), inset 0 1px 0 rgba(255,255,255,.6);
    opacity: 0; visibility: hidden; transform: scale(.985) translateY(-6px);
    transform-origin: top center;
    transition: opacity .32s var(--ease), transform .4s var(--ease), visibility .32s;
    z-index: 200; overflow-y: auto;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav > a {
    padding: 17px 14px; border-radius: 16px; border-bottom: none;
    font-size: 1.32rem; font-weight: 600; letter-spacing: -0.01em; color: var(--navy);
    opacity: 0; transform: translateY(8px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), background .2s var(--ease);
  }
  .nav > a::after, .nav > a::before { content: none; display: none; }
  .nav > a:hover, .nav > a:active { background: rgba(16,36,62,.06); color: var(--ink); }
  .nav.open > a { opacity: 1; transform: none; }
  .nav.open > a:nth-child(1) { transition-delay: .06s; }
  .nav.open > a:nth-child(2) { transition-delay: .10s; }
  .nav.open > a:nth-child(3) { transition-delay: .14s; }
  .nav.open > a:nth-child(4) { transition-delay: .18s; }
  .nav.open > a:nth-child(5) { transition-delay: .22s; }
  .nav .nav-cta {
    display: flex; justify-content: center; margin-top: 18px; color: #fff;
    font-size: 1.02rem; padding: 16px 24px; border-radius: 100px;
    box-shadow: 0 12px 28px rgba(16,36,62,.28);
    transform: translateY(10px); transition-delay: .26s;
  }
  .nav .nav-cta:hover { color: #fff; background: #0c1d33; }
  .nav.open .nav-cta { transform: none; }
  .nav-contacts {
    display: flex; flex-direction: column; gap: 2px; margin-top: 20px;
    background: rgba(16,36,62,.04); border: 1px solid rgba(16,36,62,.07);
    border-radius: 18px; padding: 6px;
    opacity: 0; transform: translateY(10px);
    transition: opacity .4s var(--ease) .30s, transform .4s var(--ease) .30s;
  }
  .nav.open .nav-contacts { opacity: 1; transform: none; }
  .nav-contacts a {
    font-size: 1.02rem; color: var(--navy); font-weight: 500;
    padding: 13px 14px; border-radius: 12px;
    transition: background .2s var(--ease);
  }
  .nav-contacts a:hover { background: rgba(255,255,255,.7); }
  .nav-contacts a:first-of-type { color: var(--blue-muted); font-weight: 600; }
  .nav-toggle { display: flex; position: relative; z-index: 260; }
  .nav-toggle:focus { outline: none; }
  .nav-toggle:focus-visible { outline: 2px solid rgba(47,95,143,.55); outline-offset: 3px; border-radius: 12px; }
  .header-actions .btn-sm { display: none; }
  body.nav-open { overflow: hidden; }

  /* more air on mobile: two cards per row, generous spacing */
  .section { padding: 84px 0; }
  .section-head { margin-bottom: 44px; }
  .problem-cards { grid-template-columns: 1fr 1fr; gap: 16px; }
  .audience-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .layers { grid-template-columns: 1fr; gap: 18px; }
  .reviews { grid-template-columns: 1fr; gap: 18px; }
  .timeline { gap: 28px; }
  .tl-cols { grid-template-columns: 1fr; gap: 18px; }
  .tl-step { grid-template-columns: 44px 1fr; gap: 16px; }
  .timeline::before { left: 21px; }
  .tl-marker { width: 44px; height: 44px; }
  .tl-marker span { font-size: 1rem; }
  .tl-body { padding: 22px; }

  /* roomy cards in 2-up layout */
  .stmt { padding: 24px 20px; border-radius: var(--r-lg); }
  .stmt h3 { font-size: 1.04rem; margin: 10px 0 8px; }
  .stmt p { font-size: .9rem; }
  .problem-cards .stmt:first-child { grid-column: 1 / -1; }

  .aud { padding: 24px 20px; font-size: .95rem; border-radius: var(--r-lg); }
  .aud::before { position: static; display: inline-grid; margin-bottom: 14px; }

  .why { padding: 26px 22px; border-radius: var(--r-lg); }
  .why h3 { font-size: 1.12rem; }
  .why p { font-size: .92rem; }
  .why-no { font-size: 1.4rem; }

  .stat { padding: 28px 22px; border-radius: var(--r-lg); }
  .stat-cap { font-size: .88rem; }

  .compare { grid-template-columns: 1fr; gap: 20px; }
  .compare-arrow { transform: rotate(90deg); margin: 0 auto; }

  .float-label--a { top: -14px; left: 0; }
  .float-label--b { bottom: 20px; right: 0; }
  .kpi-value { font-size: 1.3rem; }

  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .kpi { padding: 11px 12px; }
  .kpi-value { font-size: 1.15rem; }
  .dash-panel { padding: 14px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .float-label { font-size: .7rem; padding: 6px 11px; }
  .stmt p, .why p, .aud { font-size: .86rem; }
  .tl-body { padding: 18px 16px; }
  .case { padding: 24px 22px; }
}

/* ============================================================
   APPLE-LIKE GLASS REFINEMENT + AIR  (appended, intentional override)
   ============================================================ */

/* light glass — decorative cards */
.stmt, .layer, .why, .stat, .case {
  background: linear-gradient(158deg, rgba(255,255,255,.80), rgba(255,255,255,.60));
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7),
              0 16px 38px rgba(16,36,62,.09),
              0 0 0 1px rgba(16,36,62,.035);
}

/* light glass — data / hero / forms (more opaque for legibility) */
.dash-panel, .contact-card {
  background: linear-gradient(158deg, rgba(255,255,255,.90), rgba(255,255,255,.78));
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  backdrop-filter: blur(26px) saturate(150%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85),
              0 26px 60px rgba(16,36,62,.14),
              0 0 0 1px rgba(16,36,62,.04);
}
.tl-body {
  background: linear-gradient(158deg, rgba(255,255,255,.82), rgba(255,255,255,.64));
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7),
              0 14px 34px rgba(16,36,62,.08),
              0 0 0 1px rgba(16,36,62,.035);
}

/* floating glass chips */
.float-label {
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 24px rgba(16,36,62,.12);
}
.dash-tabs {
  background: rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.6);
}

/* dark glass — audience cards on navy */
.aud {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-radius: 22px;
  line-height: 1.5;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              box-shadow .3s var(--ease), transform .3s var(--ease);
}
.aud:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(200,169,106,.4);
  box-shadow: 0 14px 40px rgba(200,169,106,.14);
  transform: translateY(-3px);
}

/* desktop diagnostics — more air between columns + roomier card */
.cta-grid { gap: 72px; }
.contact-card { padding: 38px; border-radius: 30px; }
.contact-btn { padding: 18px 20px; }

/* ---------- MOBILE: more air, glass-friendly spacing ---------- */
@media (max-width: 760px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }

  /* audience — premium navy block with room to breathe */
  .section--navy { padding: 92px 0; }
  .audience-grid { gap: 16px; }
  .aud { padding: 24px 20px; line-height: 1.5; }

  /* program timeline */
  .timeline { gap: 30px; }
  .tl-body { padding: 24px 22px; }

  /* reviews */
  .reviews { gap: 20px; }
  .case { padding: 28px 24px; }

  /* diagnostics — air between text and card, roomier form */
  .section--cta { padding: 88px 0; }
  .cta-grid { gap: 40px; }
  .contact-card { padding: 30px 22px; border-radius: 26px; }
  .contact-actions { gap: 14px; }
  .contact-btn { padding: 18px 18px; }
  .cb-text strong { font-size: 1.06rem; }
  .cb-text em { font-size: .9rem; }

  /* footer breathing room */
  .site-footer { padding: 76px 0 32px; }
  .footer-inner { gap: 36px; padding-bottom: 36px; }
}

@media (max-width: 420px) {
  .section { padding: 72px 0; }
  .section--navy { padding: 84px 0; }
  .section--cta { padding: 80px 0; }
  .aud { padding: 22px 18px; }
}
