/* ============================================
   Pinch Training — Global Styles
   Palette: Ink Plum / Electric Violet / Fuchsia / Lime
   ============================================ */

:root {
  --ink-950: #0c0916;
  --ink-900: #120e1e;
  --ink-800: #1b1430;
  --ink-700: #271d44;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;
  --violet-100: #efe9fe;
  --fuchsia-500: #d946ef;
  --pink-500: #ec4899;
  --lime-400: #d9f44a;
  --lime-500: #c3e83a;
  --mint-400: #2dd4a8;
  --mint-100: #dcfbf1;
  --paper: #f7f5fc;
  --white: #ffffff;
  --ink: #17131f;
  --ink-soft: #56506b;
  --line: #e7e3f2;
  --grad-cta: linear-gradient(100deg, #7c3aed 0%, #d946ef 55%, #ec4899 100%);
  --grad-text: linear-gradient(100deg, #7c3aed, #d946ef);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(23, 19, 31, 0.06);
  --shadow-md: 0 12px 36px rgba(23, 19, 31, 0.1);
  --shadow-lg: 0 24px 70px rgba(23, 19, 31, 0.22);
  --glow: 0 8px 32px rgba(139, 92, 246, 0.45);
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { color: var(--ink-soft); }

a { color: var(--violet-600); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 92px 0; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--violet-600);
  background: var(--violet-100);
}

.section-head { max-width: 720px; margin-bottom: 48px; }

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p { margin-top: 16px; font-size: 1.1rem; }

/* Dark bands: kicker + text treatments */
.band-navy .kicker, .pricing-band .kicker, .hero .kicker {
  color: var(--lime-400);
  background: rgba(217, 244, 74, 0.1);
  border: 1px solid rgba(217, 244, 74, 0.25);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--grad-cta);
  color: var(--white);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 40px rgba(217, 70, 239, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-light { background: var(--white); color: var(--ink-900); }

.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-lime {
  background: var(--lime-400);
  color: var(--ink-950);
  box-shadow: 0 8px 32px rgba(217, 244, 74, 0.35);
}

.btn-lime:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn-lg { padding: 19px 42px; font-size: 1.08rem; }

.btn-note {
  display: block;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.on-dark .btn-note { color: rgba(255, 255, 255, 0.75); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 252, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none !important;
}

.logo-mark {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.nav-links a:hover { color: var(--violet-600); text-decoration: none; }

.nav-links .btn { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(124, 58, 237, 0.55), transparent 65%),
    radial-gradient(700px 420px at -5% 110%, rgba(217, 70, 239, 0.35), transparent 60%),
    var(--ink-950);
  color: var(--white);
  padding: 112px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 70%);
}

.hero .container { position: relative; z-index: 1; }

.hero h1 { color: var(--white); max-width: 800px; }

.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--lime-400), var(--mint-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lede {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 24px 0 40px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-proof { margin-top: 56px; display: flex; gap: 48px; flex-wrap: wrap; }

.proof-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(100deg, var(--lime-400), var(--mint-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof-item .label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---------- Problem section ---------- */
.pain-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }

.pain {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.pain .x {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fde8f3;
  color: var(--pink-500);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-top: 2px;
}

.pain p { margin: 0; }
.pain strong { color: var(--ink); }

/* ---------- Course cards ---------- */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.course-card-top { padding: 36px 36px 28px; color: var(--white); position: relative; overflow: hidden; }

.course-card-top.cc-navy {
  background:
    radial-gradient(420px 260px at 90% -20%, rgba(217, 70, 239, 0.5), transparent 70%),
    linear-gradient(140deg, var(--ink-800), var(--violet-600));
}

.course-card-top.cc-teal {
  background:
    radial-gradient(420px 260px at 90% -20%, rgba(236, 72, 153, 0.55), transparent 70%),
    linear-gradient(140deg, #3b0f45, #a21caf);
}

.course-card-top .audience {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime-400);
  margin-bottom: 10px;
}

.course-card-top h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 10px; }

.course-card-top p { color: rgba(255, 255, 255, 0.82); margin: 0; }

.course-card-body {
  padding: 28px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.course-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }

.chip {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--violet-100);
  color: var(--violet-600);
}

.chip.chip-coral { background: #fde8f3; color: var(--pink-500); }

.course-card-body ul { list-style: none; margin-bottom: 26px; }

.course-card-body ul li {
  padding: 7px 0 7px 30px;
  position: relative;
  color: var(--ink-soft);
}

.course-card-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-400);
  font-weight: 800;
}

.course-card-body .cta-row { margin-top: auto; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.price-line {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}

.price-line span { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }

/* ---------- Skill grid ---------- */
.skill-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet-500);
}

.skill-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.skill-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.skill-card p { font-size: 0.95rem; margin: 0; }

.skill-card.skill-new { border: 2px solid var(--mint-400); position: relative; }

.badge-new {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--mint-400);
  color: var(--ink-950);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---------- Agenda / timeline ---------- */
.agenda { display: grid; gap: 22px; }

.agenda-day {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  box-shadow: var(--shadow-sm);
}

.agenda-day .day-label .day-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.agenda-day .day-label .day-hours { font-size: 0.85rem; color: var(--ink-soft); }

.agenda-day h3 { margin-bottom: 12px; }

.agenda-day ul { list-style: none; }

.agenda-day ul li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.agenda-day ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--fuchsia-500);
  font-weight: 700;
}

.agenda-day .outcome {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--mint-100);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: #0b6b52;
}

.agenda-day .outcome strong { color: #07533f; }

/* ---------- Dark bands ---------- */
.band-navy, .pricing-band {
  background:
    radial-gradient(800px 420px at 90% 0%, rgba(124, 58, 237, 0.4), transparent 65%),
    radial-gradient(600px 380px at 0% 100%, rgba(217, 70, 239, 0.25), transparent 60%),
    var(--ink-950);
  color: var(--white);
}

.band-navy h2, .band-navy h3, .pricing-band h2, .pricing-band h3 { color: var(--white); }
.band-navy p, .pricing-band .section-head p { color: rgba(255, 255, 255, 0.78); }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.price-card .plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--violet-600);
  margin-bottom: 6px;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
}

.price-card .amount span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }

.price-card ul { list-style: none; margin: 24px 0 30px; }

.price-card ul li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint-400);
  font-weight: 800;
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 40px;
  background: var(--lime-400);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.band-navy .quote-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.band-navy .quote-card blockquote { color: rgba(255, 255, 255, 0.9); }
.band-navy .quote-card .who .name { color: var(--white); }
.band-navy .quote-card .who .role { color: rgba(255, 255, 255, 0.6); }

.quote-card .stars { color: var(--lime-500); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }

.quote-card blockquote {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 20px;
  flex: 1;
}

.quote-card .who { display: flex; align-items: center; gap: 12px; }

.quote-card .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.quote-card .who .name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.quote-card .who .role { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--fuchsia-500);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body { padding: 0 28px 24px; }
.faq-item .faq-body p { margin-bottom: 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Guarantee ---------- */
.guarantee {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--lime-500);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.guarantee .shield {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--lime-400);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
}

.guarantee h3 { margin-bottom: 8px; }
.guarantee p { margin: 0; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(217, 244, 74, 0.16), transparent 60%),
    var(--grad-cta);
  color: var(--white);
  text-align: center;
}

.final-cta h2 { color: var(--white); max-width: 760px; margin: 0 auto 18px; }
.final-cta p { color: rgba(255, 255, 255, 0.9); max-width: 560px; margin: 0 auto 36px; font-size: 1.15rem; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

footer .logo { color: var(--white); margin-bottom: 14px; }

footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer a { color: rgba(255, 255, 255, 0.7); }
footer a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th, .compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  font-family: var(--font-display);
  background: var(--ink-900);
  color: var(--white);
  font-size: 0.95rem;
}

.compare-table td { color: var(--ink-soft); }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }

.compare-table .yes { color: #0b9e77; font-weight: 800; }
.compare-table .no { color: var(--pink-500); font-weight: 800; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--grad-cta);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.95rem; margin: 0; }

/* ---------- Utility bands ---------- */
.band-white { background: var(--white); }

/* ---------- ROI Calculator ---------- */
.calc-band {
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(124, 58, 237, 0.45), transparent 65%),
    radial-gradient(600px 400px at 5% 95%, rgba(45, 212, 168, 0.18), transparent 60%),
    var(--ink-950);
  color: var(--white);
}

.calc-band h2 { color: var(--white); }
.calc-band .section-head p { color: rgba(255, 255, 255, 0.78); }

.calc-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.calc-inputs .calc-field { margin-bottom: 30px; }

.calc-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 12px;
  gap: 12px;
}

.calc-field label .val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lime-400);
  white-space: nowrap;
}

.calc-field .hint { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); margin-top: 8px; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--violet-500) 0%, var(--fuchsia-500) var(--fill, 50%), rgba(255, 255, 255, 0.15) var(--fill, 50%));
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime-400);
  border: 3px solid var(--ink-950);
  box-shadow: 0 0 0 2px var(--lime-400), 0 4px 14px rgba(217, 244, 74, 0.4);
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime-400);
  border: 3px solid var(--ink-950);
  box-shadow: 0 0 0 2px var(--lime-400), 0 4px 14px rgba(217, 244, 74, 0.4);
  cursor: pointer;
}

.calc-results {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-results .headline-stat { text-align: center; padding-bottom: 4px; }

.calc-results .headline-stat .big {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  background: linear-gradient(100deg, var(--lime-400), var(--mint-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.calc-results .headline-stat .cap {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.calc-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.calc-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  text-align: center;
}

.calc-stat .n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.calc-stat .c { font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); }

.calc-results .payback {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(217, 244, 74, 0.1);
  border: 1px dashed rgba(217, 244, 74, 0.4);
}

.calc-results .payback strong { color: var(--lime-400); }

.calc-results .btn { width: 100%; }

.calc-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(18, 14, 30, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 90;
}

.sticky-cta .btn { width: 100%; padding: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-2, .grid-3, .steps { grid-template-columns: 1fr; }
  .pain-list { grid-template-columns: 1fr; }
  .agenda-day { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .guarantee { grid-template-columns: 1fr; text-align: center; }
  .guarantee .shield { margin: 0 auto; }
  .calc-shell { grid-template-columns: 1fr; padding: 28px 22px; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }

  .sticky-cta { display: block; }

  body { padding-bottom: 70px; }

  section { padding: 64px 0; }

  .hero { padding: 72px 0 80px; }

  .hero-proof { gap: 28px; }

  .compare-wrap { overflow-x: auto; }
}
