/* ============================================
   STARTER LAB v3 — Finelo-Inspired Design
   Clean · Bold · Trust-First · English
   Brand: Dark Navy + Cyan/Purple Gradient
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,700;12..96,800;12..96,900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --cyan:        #00D4FF;
  --cyan-dim:    #00B8E0;
  --purple:      #7C3AED;
  --purple-light:#A78BFA;
  --grad:  linear-gradient(135deg, #00D4FF 0%, #7C3AED 100%);
  --grad2: linear-gradient(135deg, #00C4EE 0%, #6D28D9 100%);

  --black:   #05070F;
  --navy:    #080C1A;
  --surf1:   #0C1124;
  --surf2:   #111830;
  --surf3:   #161F3A;
  --card:    #0F1830;

  --text:    #F0F4FF;
  --dim:     #6B7CB4;
  --mid:     #9BACD4;

  --green:  #10D98C;
  --red:    #F4566A;
  --border: rgba(0,212,255,0.1);
  --b2:     rgba(124,58,237,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

a { text-decoration: none; }

/* ─── GRADIENT TEXT ─── */
.g { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── LAYOUT ─── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
section { padding: 96px 0; }

/* ─── LABEL ─── */
.lbl {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.lbl::before { content:''; width:18px; height:2px; background:var(--grad); border-radius:2px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

.btn-fill {
  background: var(--grad2);
  color: #fff;
  box-shadow: 0 0 24px rgba(0,196,238,0.22), 0 6px 20px rgba(0,0,0,0.35);
}
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,196,238,0.38), 0 10px 28px rgba(0,0,0,0.45); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,0.05); }

.btn-lg { padding: 17px 38px; font-size: 17px; border-radius: 14px; }

/* ─── FADE IN ─── */
.fi { opacity:0; transform:translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fi.on { opacity:1; transform:translateY(0); }

/* ════════════════════════
   NAVBAR
════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 990;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
}
.nav.stuck {
  background: rgba(5,7,15,0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  padding: 14px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 38px; height: 38px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.25);
}
.logo-img img { width:100%; height:100%; object-fit:cover; display:block; }
.logo-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--text);
}
.logo-name span { color: var(--cyan); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--mid);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta-link {
  background: var(--grad2) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 9px;
  font-weight: 700 !important;
  font-size: 14px !important;
  box-shadow: 0 0 18px rgba(0,196,238,0.25);
  transition: all 0.25s !important;
}
.nav-cta-link:hover { box-shadow: 0 0 30px rgba(0,196,238,0.4) !important; transform: translateY(-1px); color: #fff !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 992;
}
.burger span { width: 24px; height: 2px; background: var(--cyan); display: block; border-radius: 2px; transition: all 0.3s; }

/* ════════════════════════
   HERO — Finelo style: split layout, animated headline
════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

/* Gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,212,255,0.07) 0%, transparent 65%);
  top: -200px; left: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08) 0%, transparent 65%);
  bottom: -100px; right: -100px;
  pointer-events: none;
}

/* Subtle grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

/* Rotating headline (Finelo's killer feature) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(0,212,255,0.22);
  border-radius: 100px;
  background: rgba(0,212,255,0.06);
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.06em;
  margin-bottom: 26px;
}
.hero-badge .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.25;} }

.hero h1 {
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.0;
}

/* Rotating words (Finelo's "Start Trading / Grow Skills / Build Confidence") */
.hero-rotating {
  display: block;
  height: 1.1em;
  overflow: hidden;
}
.hero-rotating-inner {
  animation: rotateWords 6s ease-in-out infinite;
}
.hero-rotating-inner span {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  height: 1.1em;
  line-height: 1.1em;
}
@keyframes rotateWords {
  0%,20%    { transform: translateY(0); }
  33%,53%   { transform: translateY(-100%); }
  66%,86%   { transform: translateY(-200%); }
  100%      { transform: translateY(-300%); }
}

.hero p {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 38px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mid);
}
.trust-item .tick { color: var(--green); font-size: 13px; }

/* Hero visual */
.hero-vis {
  position: relative;
}
.hero-vis-card {
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0,212,255,0.08), 0 40px 100px rgba(0,0,0,0.5);
}
.hero-vis-card img,
.hero-vis-card svg { width:100%; display:block; }

/* Floating info cards on visual */
.f-badge {
  position: absolute;
  background: rgba(8,12,26,0.92);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 18px;
  backdrop-filter: blur(12px);
  min-width: 140px;
}
.f-badge.tl { top: -18px; left: -18px; animation: lev 4s ease-in-out infinite; }
.f-badge.br { bottom: -18px; right: -18px; animation: lev 5s ease-in-out infinite 1.2s; }
.f-badge .fb-l { font-size: 10px; color: var(--dim); margin-bottom: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.f-badge .fb-v { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@keyframes lev { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }

/* ════════════════════════
   TICKER
════════════════════════ */
.ticker {
  background: var(--surf1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
}
.t-track {
  display: flex;
  gap: 56px;
  animation: scroll 30s linear infinite;
  width: max-content;
  align-items: center;
}
@keyframes scroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }
.t-item { display:flex; align-items:center; gap:8px; white-space:nowrap; font-size:13px; }
.t-sym { color:var(--cyan); font-family:'Bricolage Grotesque',sans-serif; font-weight:700; }
.t-pr  { color:var(--mid); }
.t-up  { color:var(--green); }
.t-dn  { color:var(--red); }
.t-div { width:1px; height:16px; background:rgba(255,255,255,0.07); }

/* ════════════════════════
   SOCIAL PROOF BAND (Finelo style: "Trusted by X million")
════════════════════════ */
.proof-band {
  background: var(--surf2);
  padding: 64px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.proof-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.proof-band p { font-size: 16px; color: var(--dim); margin-bottom: 44px; }
.proof-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.ps-item { text-align: center; }
.ps-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.ps-lbl { font-size: 14px; color: var(--dim); }

/* ════════════════════════
   CHALLENGES / PRODUCTS (Finelo's core section)
════════════════════════ */
.challenges { background: var(--black); }

.ch-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.ch-header h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; margin-bottom: 16px; }
.ch-header p { font-size: 17px; color: var(--mid); line-height: 1.7; }

.ch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ch-card {
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.32s ease;
  position: relative;
}
.ch-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,212,255,0.06); border-color: rgba(0,212,255,0.22); }

.ch-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--surf2);
  position: relative;
}
.ch-img img, .ch-img svg { max-height: 170px; width: 100%; object-fit: contain; }

.ch-body { padding: 26px 26px 30px; }
.ch-body h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.ch-body p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 22px; }

/* ════════════════════════
   HOW IT WORKS (numbered steps — Finelo style)
════════════════════════ */
.how { background: var(--surf2); }

.how-list { margin-top: 64px; }

.how-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.how-item:last-child { border-bottom: none; }
.how-item.flip { direction: rtl; }
.how-item.flip > * { direction: ltr; }

.how-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 80px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  line-height: 1;
  margin-bottom: -10px;
}
.how-title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin-bottom: 18px; color: var(--text); }
.how-sub { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 28px; }
.how-list-items { list-style: none; }
.how-list-items li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 15px;
  color: var(--mid);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.how-list-items li:last-child { border: none; }
.how-list-items li::before { content:'→'; color: var(--cyan); flex-shrink:0; margin-top:2px; font-size:14px; }

.how-vis {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surf1);
}
.how-vis img, .how-vis svg { width:100%; display:block; }

/* ════════════════════════
   28-DAY CHALLENGE BANNER (Finelo's "1-Minute Quiz" section)
════════════════════════ */
.challenge-banner {
  background: linear-gradient(135deg, var(--surf1) 0%, var(--surf3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.challenge-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(0,212,255,0.05) 0%, transparent 65%);
}
.challenge-banner .quiz-pill {
  display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.challenge-banner h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.challenge-banner p {
  font-size: 17px;
  color: var(--mid);
  max-width: 480px;
  margin: 0 auto 38px;
  position: relative;
  z-index: 1;
}
.challenge-banner .sub-note {
  font-size: 13px;
  color: var(--dim);
  margin-top: 16px;
}

/* ════════════════════════
   PRICING
════════════════════════ */
.pricing { background: var(--black); }
.pricing-center { text-align: center; margin-bottom: 58px; }
.pricing-center h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 900; margin-bottom: 14px; }
.pricing-center p { font-size: 16px; color: var(--mid); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.p-card {
  background: var(--surf1);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 38px 32px;
  position: relative;
  transition: all 0.3s;
}
.p-card:hover { transform: translateY(-4px); }
.p-card.hot {
  border-color: rgba(0,212,255,0.35);
  background: var(--surf2);
  box-shadow: 0 0 60px rgba(0,212,255,0.08), 0 24px 64px rgba(0,0,0,0.5);
}
.p-card.hot::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 23px;
  background: var(--grad);
  z-index: -1;
  opacity: 0.12;
}

.p-hot-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.p-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.p-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 54px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin: 20px 0 4px;
}
.p-price sup { font-size: 22px; vertical-align: top; margin-top: 12px; display: inline-block; }
.p-price sub { font-size: 16px; font-weight: 400; color: var(--dim); vertical-align: baseline; }
.p-per { font-size: 13px; color: var(--dim); margin-bottom: 28px; }
.p-feats { list-style: none; margin-bottom: 32px; }
.p-feats li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.p-feats li .y { color: var(--green); font-size: 13px; }
.p-feats li .n { color: rgba(255,255,255,0.15); font-size: 13px; }

/* ════════════════════════
   REVIEWS / TESTIMONIALS
════════════════════════ */
.reviews { background: var(--surf1); }
.rev-center { text-align: center; margin-bottom: 56px; }
.rev-center h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; margin-bottom: 12px; }
.rev-center p { font-size: 16px; color: var(--mid); }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev-card {
  background: var(--surf2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s;
}
.rev-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-3px); }
.rev-stars {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rev-card blockquote {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.rev-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); }
.rev-role { font-size: 12px; color: var(--dim); }

/* ════════════════════════
   FAQ (Finelo style accordion)
════════════════════════ */
.faq { background: var(--black); }
.faq-center { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.faq-center h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; margin-bottom: 14px; }
.faq-center p { font-size: 16px; color: var(--mid); }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
  gap: 14px;
}
.faq-q:hover { color: var(--cyan); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--mid);
  flex-shrink: 0;
  transition: all 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { border-color: var(--cyan); color: var(--cyan); transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.72;
  padding: 0 4px 22px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ════════════════════════
   FINAL CTA (Finelo bottom CTA)
════════════════════════ */
.final-cta {
  background: var(--surf1);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta::before {
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,255,0.05) 0%, transparent 65%);
}
.final-cta .cta-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}
.final-cta h2 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; color: var(--text); margin-bottom: 18px; position:relative;z-index:1; }
.final-cta p { font-size:17px; color:var(--mid); max-width:460px; margin:0 auto 40px; position:relative;z-index:1; line-height:1.7; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative;z-index:1; }

/* ════════════════════════
   FOOTER
════════════════════════ */
footer {
  background: var(--surf2);
  border-top: 1px solid var(--border);
  padding: 70px 40px 36px;
}
.ft-grid {
  max-width: 1160px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}
.ft-brand p { font-size: 14px; color: var(--dim); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.ft-col h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 18px; letter-spacing: 0.04em; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 10px; }
.ft-col ul li a { font-size: 14px; color: var(--dim); transition: color 0.2s; }
.ft-col ul li a:hover { color: var(--cyan); }

.ft-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.ft-bottom p { font-size: 13px; color: var(--dim); }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a { font-size: 13px; color: var(--dim); transition: color 0.2s; }
.ft-legal a:hover { color: var(--cyan); }

/* DISCLAIMER — moved to bottom (Finelo style) */
.ft-disclaimer {
  max-width: 1160px;
  margin: 22px auto 0;
  padding: 20px 24px;
  background: rgba(244,86,106,0.04);
  border: 1px solid rgba(244,86,106,0.1);
  border-radius: 10px;
  font-size: 12px;
  color: rgba(244,86,106,0.55);
  line-height: 1.65;
}
.ft-disclaimer strong { color: rgba(244,86,106,0.75); }

/* ════════════════════════
   LEGAL PAGES
════════════════════════ */
.legal-top {
  padding: 150px 40px 64px;
  background: var(--surf1);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.legal-top h1 { font-size: clamp(30px, 4vw, 48px); }
.legal-top p { color: var(--dim); margin-top: 12px; font-size: 14px; }

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 40px;
}
.legal-body h2 { font-size: 21px; color: var(--text); margin: 44px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 12px; }
.legal-body ul { padding-left: 18px; margin-bottom: 14px; }
.legal-body ul li { margin-bottom: 6px; }
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--cyan); }

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1020px) {
  .ch-grid { grid-template-columns: 1fr 1fr; }
  .ch-grid .ch-card:nth-child(3) { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-grid .p-card:nth-child(3) { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
  .rev-grid { grid-template-columns: 1fr 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .how-item { grid-template-columns: 1fr; gap: 36px; }
  .how-item.flip { direction: ltr; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p, .hero-cta, .hero-trust { max-width: 100%; justify-content: center; }
  .hero-vis { max-width: 480px; margin: 0 auto; }
  .nav-links { display: none; }
  .nav-links.show {
    display: flex; flex-direction: column; position: fixed;
    inset: 0; background: rgba(5,7,15,0.97); backdrop-filter: blur(20px);
    align-items: center; justify-content: center; gap: 28px; z-index: 991;
  }
  .nav-links.show a { font-size: 22px; }
  .burger { display: flex; }
  .proof-stats { gap: 40px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  section { padding: 70px 0; }
  .hero-inner { padding: 50px 20px 60px; }
  .nav { padding: 16px 20px; }
  .nav.stuck { padding: 12px 20px; }
  .ch-grid, .price-grid, .rev-grid { grid-template-columns: 1fr; }
  .ch-grid .ch-card:nth-child(3), .price-grid .p-card:nth-child(3) { max-width: 100%; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom { flex-direction: column; text-align: center; }
  footer { padding: 60px 20px 32px; }
  .how-item { padding: 44px 0; }
}
