/* ============================================================
   Linar Fatkhiev — Landing styles
   Built on the Linar Fatkhiev Design System tokens.
   ============================================================ */

/* ---------- Manrope ---------- */
@font-face { font-family: "Manrope"; src: url("fonts/Manrope-ExtraLight.woff2") format("woff2"); font-weight: 200; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/Manrope-Light.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/Manrope-Regular.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/Manrope-Medium.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/Manrope-SemiBold.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/Manrope-Bold.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/Manrope-ExtraBold.woff2") format("woff2"); font-weight: 800; font-display: swap; }

:root {
  /* Neutrals */
  --ink:       #0A0A0B;
  --ink-soft:  #1A1A1D;
  --graphite:  #4A4A52;
  --slate:     #8A8A95;
  --silver:    #C8C8D0;
  --mist:      #F0F0F5;
  --paper:     #F7F7F9;
  --bone:      #FBFBFC;
  --white:     #FFFFFF;
  --border-2:  #E4E4EA;

  /* Accent — used sparingly as signal */
  --accent:      #FF5A1F;
  --accent-soft: #FFE9DF;
  --accent-ink:  #B33910;

  /* Type */
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Radii — "corners around 30" */
  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 40px;
  --r-2xl: 56px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(10,10,11,0.04), 0 1px 1px rgba(10,10,11,0.03);
  --shadow-2: 0 4px 12px rgba(10,10,11,0.06), 0 1px 2px rgba(10,10,11,0.04);
  --shadow-3: 0 12px 28px rgba(10,10,11,0.08), 0 4px 8px rgba(10,10,11,0.04);
  --shadow-4: 0 24px 56px rgba(10,10,11,0.12), 0 8px 16px rgba(10,10,11,0.06);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 140ms;
  --dur-base: 220ms;
  --dur-slow: 420ms;

  /* Layout */
  --container: 1320px;
  --pad: 32px;
  --gap: 14px;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02", "cv11";
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
picture{display:contents}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ LAYOUT ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 28px 0; }
.section:first-of-type { padding-top: 0; }

/* ============ TYPE ============ */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; }
.h-1 { font-size: clamp(36px, 4vw, 64px); letter-spacing: -0.03em; line-height: 1.05; font-weight: 700; }
.h-2 { font-size: clamp(28px, 2.8vw, 44px); letter-spacing: -0.025em; line-height: 1.1; font-weight: 700; }
.h-3 { font-size: clamp(22px, 1.8vw, 28px); letter-spacing: -0.02em; font-weight: 600; }

.lead {
  font-size: clamp(17px, 1.2vw, 20px);
  color: var(--graphite);
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.tnum { font-variant-numeric: tabular-nums; }

/* Eyebrow — uppercase, tracked wide */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate);
}
.eyebrow .mk {
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
  border-radius: 50%; background: var(--mist);
}
.eyebrow .mk svg { width: 14px; height: 14px; }
.eyebrow.dark { color: rgba(255,255,255,0.6); }
.eyebrow.dark .mk { background: rgba(255,255,255,0.08); }
.eyebrow.dark .mk svg circle { fill: rgba(255,255,255,0.08); }

/* Section header */
.section-head {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end;
  margin-bottom: 32px;
}
.section-head .right { color: var(--graphite); max-width: 380px; font-size: 14.5px; line-height: 1.55; }
.section-num {
  font-family: var(--font-mono);
  color: var(--slate);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  font-weight: 500;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-std),
              background var(--dur-base) var(--ease-std),
              color var(--dur-base) var(--ease-std),
              border-color var(--dur-base) var(--ease-std),
              opacity var(--dur-base) var(--ease-std);
  white-space: nowrap;
}
.btn:hover { opacity: 0.92; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-soft); opacity: 1; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--silver); }
.btn-ghost:hover { border-color: var(--ink); opacity: 1; }
.btn-soft { background: var(--mist); color: var(--ink); }
.btn-soft:hover { background: var(--border-2); opacity: 1; }
.btn-on-dark { background: #fff; color: var(--ink); }
.btn-on-dark:hover { background: var(--mist); opacity: 1; }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.16); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.06); opacity: 1; }
.btn-lg { padding: 20px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn .arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn svg { width: 18px; height: 18px; }

/* Dot */
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); display: inline-block; }
.dot-accent { background: var(--accent); }

/* ============ NAV ============ */
.nav-wrap {
  position: sticky; top: 0; z-index: 30;
  padding-top: 18px; padding-bottom: 18px;
  background: linear-gradient(to bottom, rgba(247,247,249,0.95) 60%, rgba(247,247,249,0));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav {
  display: flex; align-items: center; gap: 24px;
  padding: 10px 10px 10px 22px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; letter-spacing: -0.015em; }
.nav-logo .mark { width: 30px; height: 30px; display: grid; place-items: center; }
.nav-logo .mark svg { width: 30px; height: 30px; }
.nav-links { display: flex; gap: 4px; flex: 1; margin-left: 16px; }
.nav-link {
  padding: 8px 14px; border-radius: 999px; font-size: 14px; color: var(--graphite);
  transition: background var(--dur-base) var(--ease-std), color var(--dur-base) var(--ease-std);
}
.nav-link:hover { background: var(--mist); color: var(--ink); }
.nav-cta { display: flex; gap: 8px; }

/* ============ HERO ============ */
.hero { padding-top: 8px; }
.hero-card {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-2);
  overflow: hidden;
  min-height: 660px;
}
.hero-photo {
  background: var(--mist);
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-photo .badge-floating {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(10,10,11,0.04);
}
.hero-photo .badge-floating .green-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2BB673; box-shadow: 0 0 0 3px rgba(43,182,115,0.18);
}
.hero-content { padding: 48px 52px 40px; display: flex; flex-direction: column; gap: 22px; }
.hero-h {
  font-size: clamp(36px, 3.4vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.hero-h em { font-style: normal; color: var(--slate); }
.hero-sub { color: var(--graphite); font-size: clamp(15px, 1.1vw, 17.5px); max-width: 540px; line-height: 1.55; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-2);
}
.hero-stat { padding: 14px 0; position: relative; }
.hero-stat + .hero-stat { border-left: 1px solid var(--border-2); padding-left: 22px; }
.hero-stat .num { font-size: 32px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.hero-stat .num .unit { color: var(--slate); font-weight: 500; font-size: 18px; margin-left: 3px; }
.hero-stat .lbl { color: var(--slate); font-size: 12px; line-height: 1.4; margin-top: 8px; }
.hero-cta { display: flex; flex-direction: column; gap: 10px; }
.hero-cta-row { display: flex; gap: 10px; }
.hero-cta .micro { color: var(--slate); font-size: 12.5px; padding-left: 4px; }

/* ============ BENEFITS ============ */
.bens { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.ben {
  padding: 30px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--border-2);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 230px;
  transition: border-color var(--dur-base) var(--ease-std), box-shadow var(--dur-base) var(--ease-std);
}
.ben:hover { border-color: transparent; box-shadow: var(--shadow-3); }
.ben .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--mist);
  display: grid; place-items: center; color: var(--ink);
}
.ben .ic.accent { background: var(--accent-soft); color: var(--accent); }
.ben .ic.dark { background: var(--ink); color: #fff; }
.ben .ic svg { width: 20px; height: 20px; }
.ben h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
.ben p { color: var(--graphite); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* ============ PAIN (dark) ============ */
.pain-card {
  background: var(--ink); color: #fff;
  border-radius: var(--r-xl);
  padding: 64px 60px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
}
.pain-card h2 { font-size: clamp(32px, 3.4vw, 52px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 700; }
.pain-card .pain-body { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.6; }
.pain-list { display: grid; gap: 0; }
.pain-li {
  display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.pain-li:first-child { border-top: none; padding-top: 0; }
.pain-li .nm { color: var(--accent); font-family: var(--font-mono); font-size: 12px; padding-top: 4px; letter-spacing: 0.05em; }
.pain-li .tx { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.55; }
.pain-li .tx b { color: #fff; font-weight: 600; }

/* ============ TRAPS ============ */
.traps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.trap {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 340px;
  transition: border-color var(--dur-base) var(--ease-std), box-shadow var(--dur-base) var(--ease-std);
}
.trap:hover { border-color: transparent; box-shadow: var(--shadow-3); }
.trap-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trap h3 { font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 600; }
.trap p { color: var(--graphite); font-size: 14.5px; margin: 0; line-height: 1.55; }
.trap .trap-foot {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-2);
  display: flex; align-items: center; gap: 10px;
}
.trap .trap-foot .cross {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
}
.trap .trap-foot .cross svg { width: 12px; height: 12px; }
.trap .trap-foot .lbl { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }

/* ============ FUNNEL ============ */
.funnel-card {
  background: var(--ink); color: #fff;
  border-radius: var(--r-xl);
  padding: 60px;
}
.funnel-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: stretch; }
.funnel-stages { display: flex; flex-direction: column; gap: 8px; }
.funnel-stage {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-std), border-color var(--dur-base) var(--ease-std);
}
.funnel-stage:hover { background: rgba(255,255,255,0.08); }
.funnel-stage.active {
  background: rgba(255,90,31,0.10);
  border-color: rgba(255,90,31,0.45);
}
.funnel-stage .lbl { display: flex; align-items: center; gap: 16px; }
.funnel-stage .lbl .n {
  font-family: var(--font-mono); color: var(--slate); font-size: 11px;
  min-width: 28px; letter-spacing: 0.05em;
}
.funnel-stage .lbl .nm { font-size: 15px; font-weight: 500; }
.funnel-stage .lbl .nm .sub { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 12.5px; margin-top: 2px; }
.funnel-stage .val { display: flex; align-items: center; gap: 14px; }
.funnel-stage .val .count {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 15px;
}
.funnel-stage .val .bar { width: 80px; height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.funnel-stage .val .bar > i {
  display: block; height: 100%; background: #fff; border-radius: 99px;
  transition: width 0.8s cubic-bezier(0.2,0.7,0.1,1);
}
.funnel-stage.active .val .bar > i { background: var(--accent); }
.funnel-detail {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 32px;
  min-height: 280px;
  display: flex; flex-direction: column; gap: 16px;
}
.funnel-detail .ttl { display: flex; align-items: baseline; gap: 14px; }
.funnel-detail .ttl .big { font-size: 60px; letter-spacing: -0.03em; font-weight: 700; line-height: 1; }
.funnel-detail .ttl .sm { color: rgba(255,255,255,0.55); font-size: 14px; }
.funnel-detail h4 { font-size: 22px; letter-spacing: -0.02em; font-weight: 600; }
.funnel-detail p { color: rgba(255,255,255,0.75); font-size: 14.5px; margin: 0; line-height: 1.55; }
.funnel-detail .loss {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: rgba(255,90,31,0.10);
  border: 1px solid rgba(255,90,31,0.20);
  border-radius: var(--r-sm);
  color: #FFD1BD;
  font-size: 13.5px;
}
.funnel-detail .loss svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }

/* ============ STEPS PROGRESS ============ */
.steps-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 24px; }
.step-pill {
  padding: 20px 20px 22px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-std);
  display: flex; flex-direction: column; gap: 6px;
}
.step-pill .n { font-family: var(--font-mono); font-size: 11px; color: var(--slate); letter-spacing: 0.08em; text-transform: uppercase; }
.step-pill .nm { font-size: 15px; font-weight: 500; line-height: 1.25; }
.step-pill .bar { height: 3px; background: var(--border-2); border-radius: 99px; overflow: hidden; margin-top: 10px; }
.step-pill .bar > i { display: block; height: 100%; width: 0; background: var(--ink); border-radius: 99px; transition: width var(--dur-slow) var(--ease-out); }
.step-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.step-pill.active .n { color: rgba(255,255,255,0.55); }
.step-pill.active .bar { background: rgba(255,255,255,0.16); }
.step-pill.active .bar > i { width: 100%; background: var(--accent); }
.step-pill.done .bar > i { width: 100%; }

.step-detail-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 44px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px;
  min-height: 360px;
}
.step-detail-card .lead-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--slate); }
.step-detail-card h3 { font-size: clamp(28px, 2.6vw, 40px); letter-spacing: -0.025em; margin-top: 10px; font-weight: 700; }
.step-detail-card p { color: var(--graphite); font-size: 15px; line-height: 1.6; }
.step-detail-card .checks { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.step-detail-card .checks .c { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: 14.5px; color: var(--ink-soft); align-items: start; }
.step-detail-card .checks .c .mk {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-top: 2px;
}
.step-detail-card .checks .c .mk svg { width: 11px; height: 11px; }
.step-side {
  background: var(--mist);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.step-side .label { font-size: 12px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.step-side .meta { display: flex; gap: 28px; }
.step-side .meta .m { display: flex; flex-direction: column; gap: 4px; }
.step-side .meta .m .k { color: var(--slate); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.step-side .meta .m .v { font-weight: 600; font-size: 14px; }

/* ============ CALL TIMELINE ============ */
.call-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.call-block {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 290px;
}
.call-block .head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.call-block .mins {
  font-family: var(--font-mono); font-size: 12px; color: var(--graphite);
  padding: 4px 10px; border-radius: 99px; background: var(--mist);
}
.call-block .ic { width: 36px; height: 36px; border-radius: 50%; background: var(--mist); display: grid; place-items: center; }
.call-block .ic svg { width: 18px; height: 18px; color: var(--ink); }
.call-block h4 { font-size: 19px; letter-spacing: -0.015em; font-weight: 600; }
.call-block p { color: var(--graphite); font-size: 14px; margin: 0; line-height: 1.5; }
.call-block ul { padding-left: 18px; margin: 0; color: var(--graphite); font-size: 14px; }
.call-block ul li { margin: 4px 0; }

/* ============ TARIFFS ============ */
.tariffs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.tariff {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 44px;
  display: flex; flex-direction: column; gap: 22px;
}
.tariff.dark { background: var(--ink); color: #fff; border-color: transparent; }
.tariff .label {
  font-family: var(--font-mono); font-size: 12px; color: var(--slate);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.tariff.dark .label { color: rgba(255,255,255,0.55); }
.tariff h3 { font-size: clamp(28px, 2.6vw, 38px); letter-spacing: -0.025em; font-weight: 700; }
.tariff .price {
  display: flex; align-items: baseline; gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}
.tariff.dark .price { border-color: rgba(255,255,255,0.10); }
.tariff .price .big { font-size: 36px; font-weight: 700; letter-spacing: -0.025em; }
.tariff .price .sm { color: var(--slate); font-size: 14px; }
.tariff.dark .price .sm { color: rgba(255,255,255,0.55); }
.tariff .for { color: var(--graphite); font-size: 14.5px; line-height: 1.55; }
.tariff.dark .for { color: rgba(255,255,255,0.7); }
.tariff .features { display: flex; flex-direction: column; gap: 12px; }
.tariff .features .f {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  font-size: 14.5px; align-items: start;
}
.tariff .features .f .mk {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-top: 2px;
}
.tariff.dark .features .f .mk { background: rgba(255,90,31,0.20); color: #FFB897; }
.tariff .features .f .mk svg { width: 11px; height: 11px; }
.tariff .outcome {
  margin-top: auto; padding: 18px; border-radius: var(--r-sm);
  background: var(--mist); font-size: 14px; color: var(--ink-soft);
  line-height: 1.55;
}
.tariff.dark .outcome { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }

/* ============ CASES (case studies) ============ */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.case-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 22px;
  transition: border-color var(--dur-base) var(--ease-std), box-shadow var(--dur-base) var(--ease-std);
}
.case-card:hover { border-color: transparent; box-shadow: var(--shadow-3); }
.case-card .case-cover {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--mist);
  margin-bottom: 4px;
}
.case-card .case-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.case-card h3 {
  font-size: 28px; line-height: 1.1;
  letter-spacing: -0.025em; font-weight: 700;
}
.case-card h3 .alt { color: var(--slate); }
.case-card .case-desc {
  color: var(--graphite);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.case-card .case-checks {
  background: var(--bone);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.case-card .case-checks .c {
  display: grid; grid-template-columns: 18px 1fr; gap: 12px;
  align-items: center;
  font-size: 14.5px; color: var(--ink-soft);
}
.case-card .case-checks .c .mk {
  color: var(--graphite);
  display: inline-flex; align-items: center; justify-content: center;
}
.case-foot { display: flex; align-items: center; gap: 10px; }
.case-foot .metric {
  flex: 1;
  background: var(--mist);
  border-radius: var(--r-pill);
  padding: 16px 22px;
  font-size: 14.5px;
  color: var(--ink-soft);
  display: inline-flex; align-items: baseline; gap: 6px;
}
.case-foot .metric .v {
  font-weight: 700; font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: -0.01em;
}
.case-foot .btn-detail {
  background: var(--ink); color: #fff;
  padding: 16px 22px;
  border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 500;
  display: inline-flex; gap: 10px; align-items: center;
  transition: background var(--dur-base) var(--ease-std), transform var(--dur-base) var(--ease-out);
}
.case-foot .btn-detail:hover { background: var(--ink-soft); transform: translateY(-1px); }
.case-foot .btn-detail .circle-arrow {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.4px solid currentColor;
  display: inline-grid; place-items: center;
}
.case-foot .btn-detail .circle-arrow svg { width: 10px; height: 10px; }
.case-card .case-discuss {
  background: var(--mist);
  border-radius: var(--r-pill);
  padding: 18px 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  transition: background var(--dur-base) var(--ease-std);
}
.case-card .case-discuss:hover { background: var(--border-2); }
.case-card .case-discuss svg { width: 16px; height: 16px; color: var(--graphite); }

.guarantees { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.gtee {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 32px;
  min-height: 280px;
  display: flex; flex-direction: column; gap: 18px;
}
.gtee .shield {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--mist);
  display: grid; place-items: center;
}
.gtee .shield svg { width: 22px; height: 22px; color: var(--ink); }
.gtee h3 { font-size: 20px; letter-spacing: -0.018em; font-weight: 600; }
.gtee p { color: var(--graphite); font-size: 14.5px; margin: 0; line-height: 1.55; }

/* ============ NOT-FOR-YOU ============ */
.nofit-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 52px;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px;
}
.nofit-head h2 { font-size: clamp(28px, 2.6vw, 40px); font-weight: 700; }
.nofit-head p { color: var(--graphite); font-size: 15px; margin-top: 16px; line-height: 1.6; }
.nofit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nofit-item {
  background: var(--mist);
  border-radius: var(--r-md);
  padding: 24px;
}
.nofit-item .n {
  font-family: var(--font-mono); font-size: 11px; color: var(--slate);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nofit-item h4 { font-size: 17px; margin: 10px 0 8px; letter-spacing: -0.012em; font-weight: 600; }
.nofit-item p { color: var(--graphite); font-size: 13.5px; margin: 0; line-height: 1.55; }

/* ============ TESTIMONIALS ============ */
.tests { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.test {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.test .quote { font-size: 16px; line-height: 1.55; color: var(--ink-soft); flex: 1; }
.test .quote-mark {
  display: inline-block;
  font-family: var(--font-sans);
  color: var(--accent);
  font-size: 32px;
  line-height: 0;
  vertical-align: -6px;
  margin-right: 4px;
  font-weight: 700;
}
.test .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--border-2);
}
.test .av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--mist);
  display: grid; place-items: center; font-weight: 600;
  font-size: 15px;
}
.test .who .nm { font-size: 14.5px; font-weight: 600; }
.test .who .role { font-size: 12.5px; color: var(--slate); margin-top: 2px; }
.test .result {
  padding: 14px 16px;
  background: var(--mist);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--ink-soft);
  display: flex; justify-content: space-between; align-items: center;
}
.test .result .v { font-weight: 600; font-family: var(--font-mono); }

/* ============ BONUSES ============ */
.bonuses { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.bonus {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 32px;
  display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start;
}
.bonus .doc {
  aspect-ratio: 3/4;
  background: var(--mist);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.bonus .doc img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.bonus .body .label {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.bonus h3 { font-size: 22px; letter-spacing: -0.02em; margin-top: 10px; font-weight: 700; }
.bonus p { color: var(--graphite); font-size: 14px; line-height: 1.55; }
.bonus ul { padding-left: 18px; color: var(--graphite); font-size: 14px; margin: 10px 0 0; }
.bonus ul li { margin: 5px 0; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-std);
}
.faq-item.open { border-color: var(--ink); }
.faq-q {
  padding: 24px 28px;
  display: grid; grid-template-columns: 1fr 36px; align-items: center; gap: 16px;
  cursor: pointer; font-size: 17px; font-weight: 500;
  letter-spacing: -0.012em;
}
.faq-q .ic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--mist);
  display: grid; place-items: center;
  transition: transform var(--dur-slow) var(--ease-out), background var(--dur-base) var(--ease-std), color var(--dur-base) var(--ease-std);
}
.faq-q .ic svg { width: 16px; height: 16px; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--ink); color: #fff; }
.faq-a {
  padding: 0 28px; max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out), padding var(--dur-slow) var(--ease-out);
  color: var(--graphite); font-size: 14.5px; line-height: 1.6;
}
.faq-item.open .faq-a { padding: 0 28px 26px; max-height: 400px; }

/* ============ FORM ============ */
.form-card {
  background: var(--ink); color: #fff;
  border-radius: var(--r-xl);
  padding: 60px;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px;
}
.form-card h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  letter-spacing: -0.03em; line-height: 1.04;
  font-weight: 700;
}
.form-card .accent { color: var(--accent); }
.form-card .lead { color: rgba(255,255,255,0.7); }
.form-card .perks { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.form-card .perks .p {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px;
  color: rgba(255,255,255,0.85); font-size: 14.5px;
  align-items: start;
}
.form-card .perks .p .mk {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,90,31,0.20); color: #FFB897;
  display: grid; place-items: center;
  margin-top: 2px;
}
.form-card .perks .p .mk svg { width: 11px; height: 11px; }

.form .row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.form label {
  font-size: 11px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}
.form input, .form select, .form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--dur-base) var(--ease-std), background var(--dur-base) var(--ease-std);
}
.form input::placeholder, .form textarea::placeholder { color: rgba(255,255,255,0.35); }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,90,31,0.06);
}
.form input.err, .form select.err, .form textarea.err { border-color: #E5484D; }
.form .err-msg { color: #FFB1B4; font-size: 12px; }
.form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form .submit { margin-top: 8px; }
.form .legal { color: rgba(255,255,255,0.55); font-size: 12px; margin-top: 12px; line-height: 1.55; }
.form .legal a { text-decoration: underline; }
.form .legal b { color: #fff; font-weight: 600; }

.form-success {
  padding: 44px; text-align: center;
  border-radius: var(--r-md);
  background: rgba(255,90,31,0.10);
  border: 1px solid rgba(255,90,31,0.30);
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.form-success .ic {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff;
}
.form-success .ic svg { width: 26px; height: 26px; }
.form-success h3 { font-size: 22px; font-weight: 700; }
.form-success p { color: rgba(255,255,255,0.75); font-size: 14.5px; max-width: 360px; line-height: 1.55; }

/* ============ ABOUT (Linar) ============ */
.about-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  overflow: hidden;
}
.about-photo {
  background: var(--ink);
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02);
}
.about-photo .chips {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  display: flex; gap: 8px;
}
.about-photo .chip {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.about-photo .chip svg { width: 14px; height: 14px; }
.about-content {
  padding: 56px;
  display: flex; flex-direction: column; gap: 22px;
}
.about-content h2 { font-size: clamp(28px, 2.6vw, 40px); font-weight: 700; }
.about-content p { color: var(--graphite); font-size: 15.5px; line-height: 1.6; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--border-2);
  margin-top: 8px;
}
.about-stats .s .n { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.about-stats .s .k { font-size: 12px; color: var(--slate); margin-top: 8px; line-height: 1.4; }

/* ============ FOOTER ============ */
.footer { padding: 56px 0 64px; }
.footer-card {
  background: var(--ink); color: #fff;
  border-radius: var(--r-xl);
  padding: 60px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
}
.footer-card h3 {
  font-size: clamp(24px, 2vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 700;
}
.footer-card .col h4 {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-card .col a {
  display: block; padding: 6px 0;
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  transition: color var(--dur-base) var(--ease-std);
}
.footer-card .col a:hover { color: #fff; }
.footer-meta {
  display: flex; justify-content: space-between;
  padding-top: 32px; margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  grid-column: 1 / -1;
}

/* ============ FLOATING TELEGRAM ============ */
.float-tg {
  position: fixed; bottom: 26px; right: 26px; z-index: 40;
  background: var(--ink); color: #fff;
  padding: 14px 22px 14px 16px; border-radius: 99px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14.5px; font-weight: 500;
  box-shadow: var(--shadow-4);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-std);
}
.float-tg:hover { background: var(--ink-soft); transform: translateY(-2px); }
.float-tg .tg-ic {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff;
}
.float-tg .tg-ic svg { width: 14px; height: 14px; }

/* ============ Icon utility ============ */
.ic-stroke svg, svg.ic-stroke {
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   RESPONSIVE
   1200 — laptop / smaller desktop
   960  — tablet landscape
   720  — tablet portrait / large phone
   480  — phone
   ============================================================ */

@media (max-width: 1200px) {
  :root { --pad: 24px; --container: 1100px; }

  .hero-card { grid-template-columns: 1fr 1.15fr; min-height: 580px; }
  .hero-content { padding: 36px 36px 32px; }
  .hero-stat .num { font-size: 26px; }

  .pain-card, .funnel-card, .form-card, .footer-card { padding: 48px; gap: 40px; }
  .step-detail-card { padding: 36px; gap: 40px; }
  .nofit-card, .about-card { padding: 0; }
  .nofit-card { padding: 40px; gap: 40px; }
  .about-content { padding: 44px; }
  .tariff { padding: 36px; }

  .bens, .traps, .guarantees, .tests, .cases { gap: 12px; }
  .ben, .trap, .gtee, .test, .case-card { padding: 28px; }
  .case-card { padding: 28px; }
}@media (max-width: 960px){
  :root { --pad: 20px; }

  /* Section spacing tighter */
  .section { padding: 20px 0; }

  /* Nav — keep logo + primary CTA, hide secondary links */
  .nav-links { display: none; }
  .nav { padding: 8px 8px 8px 16px; }
  .nav-logo span:not(.mark) { display: none; }

  /* Type — pull down headline scales a bit */
  .h-1 { font-size: clamp(30px, 5.4vw, 44px); }
  .h-2 { font-size: clamp(26px, 4.4vw, 36px); }

  /* Section header stacks */
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 24px;
  }
  .section-head .right { max-width: 100%; }

  /* Hero stacks; photo first, then text */
  .hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-photo { min-height: 380px; max-height: 460px; }
  .hero-photo img { object-position: center top; }
  .hero-content { padding: 36px 32px 36px; gap: 20px; }
  .hero-h { font-size: clamp(30px, 5.6vw, 48px); }
  .hero-stat .num { font-size: 22px; }
  .hero-stat .num .unit { font-size: 14px; }
  .hero-stat .lbl { font-size: 11.5px; }
  .hero-stat + .hero-stat { padding-left: 16px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta .btn { width: 100%; }

  /* Dark / large polotno cards */
  .pain-card,
  .funnel-card,
  .step-detail-card,
  .nofit-card,
  .form-card,
  .footer-card {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 32px;
  }
  .pain-card h2 { font-size: clamp(28px, 4.8vw, 40px); }
  .funnel-card { padding: 36px; }
  .funnel-grid { grid-template-columns: 1fr; gap: 28px; }
  .funnel-detail { padding: 24px; min-height: 0; }
  .funnel-detail .ttl .big { font-size: 44px; }

  /* About */
  .about-card { grid-template-columns: 1fr; padding: 0; gap: 0; }
  .about-photo { min-height: 360px; max-height: 480px; }
  .about-photo img { object-position: center top; }
  .about-content { padding: 36px; }

  /* Tariffs */
  .tariffs { grid-template-columns: 1fr; gap: 12px; }
  .tariff { padding: 32px; }
  .tariff .price .big { font-size: 30px; }

  /* 3-col → 2-col */
  .bens, .traps, .guarantees, .tests, .cases {
    grid-template-columns: 1fr 1fr;
  }

  /* 4-col → 2-col */
  .call-timeline { grid-template-columns: 1fr 1fr; }

  /* Steps progress: 5 → wraps via fr columns */
  .steps-track { grid-template-columns: repeat(3, 1fr); }
  .step-pill { padding: 16px 14px 18px; }
  .step-pill .nm { font-size: 14px; }

  /* Not-for-you list */
  .nofit-list { grid-template-columns: 1fr 1fr; }

  /* Bonuses */
  .bonuses { grid-template-columns: 1fr; gap: 12px; }
  .bonus { grid-template-columns: 200px 1fr; gap: 28px; padding: 28px; }

  /* Form */
  .form-card { padding: 36px; }
  .form .form-row-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 32px 0 48px; }
  .footer-card {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 36px;
  }
  .footer-card > div:first-child { grid-column: 1 / -1; }
  .footer-meta { flex-direction: column; gap: 10px; }

  /* Section nav case footer wraps */
  .case-foot { flex-direction: column; align-items: stretch; }
  .case-foot .metric { justify-content: center; }
  .case-foot .btn-detail { justify-content: center; }

  /* FAQ */
  .faq-q { padding: 20px 22px; font-size: 16px; }
  .faq-item.open .faq-a { padding: 0 22px 22px; }}
@media (max-width: 720px){
  :root { --pad: 16px; --gap: 12px; }

  .nav-wrap { padding-top: 12px; padding-bottom: 12px; }
  .nav { padding: 6px 6px 6px 14px; gap: 12px; }
  .nav-logo .mark { width: 26px; height: 26px; }
  .nav-logo .mark svg { width: 26px; height: 26px; }
  .nav-cta .btn { padding: 12px 16px; font-size: 14px; }

  /* Larger touch targets */
  .btn { padding: 14px 20px; }
  .btn-lg { padding: 16px 22px; font-size: 15px; }

  /* All 3-col → 1-col */
  .bens, .traps, .guarantees, .tests, .cases {
    grid-template-columns: 1fr;
  }
  .call-timeline { grid-template-columns: 1fr; }
  .nofit-list { grid-template-columns: 1fr; }

  /* Hero */
  .hero-content { padding: 28px 22px 28px; }
  .hero-photo { min-height: 320px; max-height: 380px; }
  .hero-photo img { object-position: center top; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat + .hero-stat {
    border-left: none;
    border-top: 1px solid var(--border-2);
    padding-left: 0;
    padding-top: 14px;
    margin-top: 4px;
  }

  /* Pain / Funnel / Step / Form / NoFit padding */
  .pain-card,
  .funnel-card,
  .step-detail-card,
  .nofit-card,
  .form-card {
    padding: 28px 22px;
    border-radius: var(--r-lg);
  }
  .funnel-stage { padding: 12px 14px; }
  .funnel-stage .val .bar { width: 56px; }
  .funnel-detail .ttl .big { font-size: 36px; }

  /* About */
  .about-photo { min-height: 320px; max-height: 400px; }
  .about-photo img { object-position: center top; }
  .about-photo .chips { left: 14px; right: 14px; bottom: 14px; flex-wrap: wrap; }
  .about-content { padding: 28px 22px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .about-stats .s:nth-child(3) { grid-column: 1 / -1; }

  /* Tariff */
  .tariff { padding: 28px 22px; }

  /* Steps */
  .steps-track { grid-template-columns: 1fr 1fr; }
  .step-pill { padding: 14px 14px 16px; min-height: 0; }
  .step-detail-card .checks .c { font-size: 13.5px; }
  .step-side { padding: 22px; }
  .step-side .meta { flex-direction: column; gap: 12px; }

  /* Bonus image stacks above text */
  .bonus { grid-template-columns: 1fr; gap: 22px; padding: 24px; }
  .bonus .doc { max-width: 280px; }

  /* Cards */
  .ben, .trap, .gtee, .test, .case-card { padding: 24px; min-height: 0; }
  .case-card .case-cover { aspect-ratio: 16 / 10; }
  .case-card h3 { font-size: 22px; }

  /* Pain list two columns of arrow text -> one col */
  .pain-card { gap: 28px; }
  .pain-card h2 { font-size: clamp(26px, 6.4vw, 34px); }

  /* Footer */
  .footer { padding: 24px 0 36px; }
  .footer-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 28px;
  }
  .footer-card h3 { font-size: 22px; }

  /* Floating TG */
  .float-tg {
    bottom: 14px; right: 14px;
    padding: 10px 16px 10px 12px;
    font-size: 13.5px;
  }
  .float-tg .tg-ic { width: 26px; height: 26px; }

  /* Section header — section-num + heading tightening */
  .section-num { font-size: 11px; }}
@media (max-width: 480px){
  .nav-cta .btn span.arrow { display: none; }
  .nav-cta .btn { padding: 11px 14px; font-size: 13.5px; }
  .badge-floating { font-size: 11.5px; padding: 8px 12px; }
  .form .form-card h2 { font-size: 28px; }
  .step-pill .nm { font-size: 13px; }

  /* Inline width overrides from direct-edits should not override at mobile */
  .case-card { width: auto !important; }
  .case-card h3 { width: auto !important; max-width: 100%; }
  .case-card .metric .v { width: auto !important; }}


/* ============ QUIZ ============ */
.quiz-section {
  padding: 24px 0;
}

.quiz-wrapper {
  display: flex;
  justify-content: center;
}

.quiz-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 900px;
  padding: 32px 40px;
  background: #F0F0F5;
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
  transition: all 0.3s var(--ease-std);
}

.quiz-card:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(255, 90, 31, 0.12);
  transform: translateY(-2px);
}

.quiz-icon-wrapper {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.quiz-icon {
  width: 36px;
  height: 36px;
}

.quiz-text {
  flex: 1;
}

.quiz-heading {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
  color: var(--ink);
}

.quiz-description {
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.5;
  margin: 0;
}

.quiz-card .btn {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 600;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: var(--r-lg);
  transition: all 0.3s var(--ease-std);
  white-space: nowrap;
}

.quiz-card .btn:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 1024px) {
  .quiz-card {
    gap: 24px;
    padding: 28px 32px;
  }

  .quiz-heading {
    font-size: 22px;
  }

  .quiz-description {
    font-size: 14px;
  }

  .quiz-card .btn {
    padding: 11px 24px;
    font-size: 15px;
  }
}

/* Medium tablets */
@media (max-width: 768px) {
  .quiz-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 28px;
  }

  .quiz-icon-wrapper {
    margin: 0 auto;
  }

  .quiz-text {
    text-align: center;
  }

  .quiz-heading {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .quiz-description {
    font-size: 14px;
  }

  .quiz-card .btn {
    margin: 0 auto;
    padding: 11px 24px;
    font-size: 15px;
  }
}

/* Small phones */
@media (max-width: 640px) {
  .quiz-section {
    padding: 20px 0;
  }

  .quiz-card {
    gap: 16px;
    padding: 20px 20px;
    border-radius: var(--r-lg);
  }

  .quiz-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .quiz-icon {
    width: 32px;
    height: 32px;
  }

  .quiz-heading {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .quiz-description {
    font-size: 13px;
    line-height: 1.4;
  }

  .quiz-card .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .quiz-card {
    gap: 12px;
    padding: 16px 16px;
  }

  .quiz-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .quiz-icon {
    width: 28px;
    height: 28px;
  }

  .quiz-heading {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .quiz-description {
    font-size: 12px;
    line-height: 1.3;
  }

  .quiz-card .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ============ QUIZ MODAL ============ */
.quiz-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 11, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.quiz-modal {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 680px;
  padding: 0;
  position: relative;
  box-shadow: var(--shadow-4);
  animation: slideUp 0.3s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-modal-header {
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--graphite) 100%);
  padding: 32px 40px;
  position: relative;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.quiz-progress-wrap {
  flex: 1;
}

.quiz-close {
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s var(--ease-std);
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
  margin-left: 12px;
}

.quiz-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-fill {
  height: 100%;
  background: var(--white);
  transition: width 0.4s var(--ease-std);
  border-radius: var(--r-pill);
}

.quiz-modal-body {
  padding: 40px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(90vh - 200px);
}

.quiz-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  line-height: 1.3;
  color: var(--ink);
}

.quiz-options {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.quiz-options.multi {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-md);
  background: var(--white);
  transition: all 0.2s var(--ease-std);
  cursor: pointer;
  text-align: left;
  position: relative;
  min-height: 48px;
}

.quiz-option:hover {
  border-color: var(--graphite);
  background: var(--mist);
}

.quiz-option.selected {
  border-color: var(--ink);
  background: var(--mist);
  box-shadow: 0 0 0 4px rgba(10, 10, 11, 0.08);
}

.option-radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--silver);
  border-radius: 50%;
  transition: all 0.2s var(--ease-std);
  position: relative;
  background: var(--white);
}

.quiz-option:hover .option-radio {
  border-color: var(--graphite);
}

.quiz-option.selected .option-radio {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 0 0 0 3px var(--white);
}

.quiz-option.selected .option-radio::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -2px;
}

.option-label {
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
  font-weight: 500;
}

.quiz-modal-footer {
  padding: 20px 40px;
  border-top: 1px solid var(--border-2);
  display: flex;
  gap: 12px;
}

.quiz-modal-footer .btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
}

.quiz-modal-footer .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--mist);
  border-color: var(--graphite);
}

.quiz-complete {
  padding: 60px 40px;
  text-align: center;
}

.complete-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-soft);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--accent);
  animation: scaleIn 0.4s var(--ease-out);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.complete-icon svg {
  width: 44px;
  height: 44px;
}

.quiz-complete h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  color: var(--ink);
}

.quiz-complete p {
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.quiz-complete .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}@media (max-width: 720px){
  .quiz-modal {
    max-width: 100%;
  }

  .quiz-modal-header {
    padding: 24px;
  }

  .quiz-modal-body {
    padding: 28px 24px;
  }

  .quiz-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .quiz-options.multi {
    grid-template-columns: 1fr;
  }

  .quiz-option {
    padding: 12px 14px;
    min-height: 44px;
  }

  .option-label {
    font-size: 14px;
  }

  .quiz-modal-footer {
    flex-direction: column;
    padding: 16px 24px;
  }

  .quiz-complete {
    padding: 40px 24px;
  }

  .complete-icon {
    width: 64px;
    height: 64px;
  }

  .quiz-complete h3 {
    font-size: 22px;
  }}
@media (max-width: 480px){
  .quiz-modal-header {
    padding: 20px;
    flex-direction: column;
  }

  .quiz-close {
    align-self: flex-start;
    margin-left: 0;
    margin-top: -4px;
  }

  .progress-bar {
    margin-top: 12px;
  }

  .quiz-modal-body {
    padding: 24px 16px;
  }

  .quiz-title {
    font-size: 18px;
  }

  .quiz-modal-footer {
    padding: 12px 16px;
  }}


/* ============ QUIZ MODAL ============ */
.quiz-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 11, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.25s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.quiz-modal {
  background: var(--white);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 680px;
  padding: 0;
  position: relative;
  box-shadow: 0 32px 80px rgba(10, 10, 11, 0.16);
  animation: slideUp 0.35s var(--ease-out);
  overflow: hidden;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-modal-header {
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--graphite) 100%);
  padding: 32px 40px;
  position: relative;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.quiz-progress-wrap {
  flex: 1;
}

.quiz-close {
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s var(--ease-std);
  cursor: pointer;
  border: none;
  padding: 0;
  flex-shrink: 0;
  margin-left: 12px;
}

.quiz-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: 16px;
}

.progress-fill {
  height: 100%;
  background: var(--white);
  transition: width 0.4s var(--ease-std);
  border-radius: var(--r-pill);
}

.progress-text {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
  font-weight: 500;
}

.quiz-modal-body {
  padding: 40px;
}

.quiz-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  line-height: 1.3;
  color: var(--ink);
}

.quiz-options {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.quiz-options.multi {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-md);
  background: var(--white);
  transition: all 0.2s var(--ease-std);
  cursor: pointer;
  text-align: left;
  position: relative;
  min-height: 48px;
}

.quiz-option:hover {
  border-color: var(--graphite);
  background: var(--mist);
}

.quiz-option.selected {
  border-color: var(--ink);
  background: var(--mist);
  box-shadow: 0 0 0 4px rgba(10, 10, 11, 0.08);
}

.option-radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--silver);
  border-radius: 50%;
  transition: all 0.2s var(--ease-std);
  position: relative;
  background: var(--white);
}

.quiz-option:hover .option-radio {
  border-color: var(--graphite);
}

.quiz-option.selected .option-radio {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: inset 0 0 0 3px var(--white);
}

.quiz-option.selected .option-radio::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -2px;
}

.option-label {
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
  font-weight: 500;
}

.quiz-modal-footer {
  padding: 20px 40px;
  border-top: 1px solid var(--border-2);
  display: flex;
  gap: 12px;
}

.quiz-modal-footer .btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
}

.quiz-modal-footer .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--mist);
  border-color: var(--graphite);
}

.quiz-complete {
  padding: 60px 40px;
  text-align: center;
}

.complete-icon {
  width: 80px;
  height: 80px;
  background: var(--mist);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--ink);
  animation: scaleIn 0.4s var(--ease-out);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.complete-icon svg {
  width: 44px;
  height: 44px;
}

.quiz-complete h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  color: var(--ink);
}

.quiz-complete p {
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.quiz-complete .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}@media (max-width: 720px){
  .quiz-section {
    padding: 28px 0;
  }

  .quiz-modal {
    max-width: 100%;
  }

  .quiz-modal-header {
    padding: 24px;
  }

  .quiz-modal-body {
    padding: 28px 24px;
  }

  .quiz-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .quiz-options.multi {
    grid-template-columns: 1fr;
  }

  .quiz-option {
    padding: 12px 14px;
    min-height: 44px;
  }

  .option-label {
    font-size: 14px;
  }

  .quiz-modal-footer {
    flex-direction: column;
    padding: 16px 24px;
  }

  .quiz-complete {
    padding: 40px 24px;
  }

  .complete-icon {
    width: 64px;
    height: 64px;
  }

  .quiz-complete h3 {
    font-size: 22px;
  }}
@media (max-width: 480px){

  .quiz-modal-header {
    padding: 20px;
    flex-direction: column;
  }

  .quiz-close {
    align-self: flex-start;
    margin-left: 0;
    margin-top: -4px;
  }

  .progress-bar {
    margin-top: 12px;
  }

  .quiz-modal-body {
    padding: 24px 16px;
  }

  .quiz-title {
    font-size: 18px;
  }

  .quiz-modal-footer {
    padding: 12px 16px;
  }}
