/* ═══ RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #07111E;
  --bg-mid:   #0D1E35;
  --navy:     #0D2240;
  --gold:     #C8A84B;
  --gold-lt:  #E0C060;
  --cyan:     #22D3EE;
  --white:    #FFFFFF;
  --lgray:    #94A3B8;
  --dgray:    #475569;
  --border:   rgba(255,255,255,0.08);
  --font:     'Inter', sans-serif;
  --cond:     'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--white); overflow-x: hidden; }

/* ═══ NAV */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(7,17,30,0.96);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.nav-logo-img {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex; align-items: baseline; gap: 0;
}
.logo-v {
  font-family: var(--cond); font-size: 28px; font-weight: 900;
  color: var(--gold); letter-spacing: -1px;
}
.logo-rest {
  font-family: var(--cond); font-size: 28px; font-weight: 900;
  color: var(--white); letter-spacing: -1px;
}
.logo-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--lgray); text-transform: uppercase; margin-left: 4px;
  display: none;
}
@media (min-width: 900px) { .logo-tag { display: inline; } }

.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important; color: var(--bg) !important;
  padding: 10px 22px !important; border-radius: 4px;
  font-weight: 700 !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; flex-direction: column; background: rgba(7,17,30,0.98); padding: 20px 40px; gap: 16px; border-top: 1px solid var(--border); }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.mobile-menu.open { display: flex; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══ SHARED */
.section-inner { max-width: 1280px; margin: 0 auto; padding: 100px 40px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--lgray); text-transform: uppercase; margin-bottom: 16px; }
.gold-label { color: var(--gold); }
.section-title { font-family: var(--cond); font-size: clamp(36px, 4vw, 54px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: var(--white); }
.section-sub { font-size: 17px; line-height: 1.75; max-width: 640px; margin-bottom: 40px; color: var(--lgray); }
.gold-text { color: var(--gold); font-weight: 700; }

.btn-primary { display: inline-block; background: var(--gold); color: var(--bg); padding: 14px 32px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-decoration: none; border-radius: 4px; border: 2px solid var(--gold); transition: background 0.2s; cursor: pointer; font-family: var(--font); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-primary.full-width { width: 100%; text-align: center; display: block; }
.btn-ghost { display: inline-block; background: transparent; color: var(--white); padding: 14px 32px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; text-decoration: none; border-radius: 4px; border: 2px solid rgba(255,255,255,0.2); transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { display: block; background: transparent; color: var(--gold); padding: 14px 32px; font-size: 14px; font-weight: 700; text-decoration: none; border-radius: 4px; border: 2px solid var(--gold); transition: background 0.2s, color 0.2s; text-align: center; cursor: pointer; }
.btn-outline:hover { background: var(--gold); color: var(--bg); }

/* ═══ HERO */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 0;
}
.hero-glow {
  position: absolute; top: -200px; left: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column;
  padding: 140px 40px 100px;
  padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--cyan); text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-headline { font-family: var(--cond); font-size: clamp(56px, 8vw, 96px); font-weight: 900; line-height: 0.95; letter-spacing: -2px; color: var(--white); margin-bottom: 28px; }
.hero-headline .gold { color: var(--gold); }
.hero-sub { font-size: 18px; color: var(--lgray); line-height: 1.7; max-width: 560px; margin-bottom: 40px; }
.hero-sub strong { color: var(--white); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-proof { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.proof-item { display: flex; flex-direction: column; gap: 4px; }
.proof-num { font-family: var(--cond); font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.proof-label { font-size: 12px; color: var(--lgray); }
.proof-divider { width: 1px; height: 40px; background: var(--border); }

/* Dashboard mockup */
.hero-visual {
  flex: 0 0 52%;
  display: flex; align-items: center;
  padding: 120px 40px 100px 20px;
  pointer-events: none;
}
.dashboard-mockup {
  width: 100%; background: rgba(13,34,64,0.7);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: 12px; overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,168,75,0.1);
  pointer-events: auto;
}
.mock-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--border); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #FF5F56; }
.mock-dot.yellow { background: #FFBD2E; }
.mock-dot.green { background: #27C93F; }
.mock-title { font-size: 12px; color: var(--lgray); font-weight: 600; margin-left: 6px; letter-spacing: 0.5px; }
.mock-body { padding: 16px; }
.mock-row { display: grid; grid-template-columns: 2fr 1fr 1fr 60px; gap: 8px; padding: 10px 8px; border-radius: 6px; align-items: center; font-size: 12px; }
.header-row { color: var(--lgray); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding-bottom: 6px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.mock-row:not(.header-row) { transition: background 0.2s; }
.mock-row:not(.header-row):hover { background: rgba(255,255,255,0.04); }
.mock-opp { color: var(--white); font-weight: 500; font-size: 12px; }
.mock-agency { color: var(--lgray); font-size: 11px; }
.mock-val { color: var(--white); font-weight: 600; font-family: var(--cond); font-size: 13px; }
.mock-score { width: 36px; height: 36px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; font-family: var(--cond); }
.mock-score.high { background: rgba(34,197,94,0.15); color: #4ADE80; border: 1px solid rgba(34,197,94,0.25); }
.mock-score.med { background: rgba(234,179,8,0.12); color: #FCD34D; border: 1px solid rgba(234,179,8,0.2); }
.mock-footer { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 8px 4px; border-top: 1px solid var(--border); margin-top: 8px; }
.mock-tag { font-size: 10px; font-weight: 600; color: var(--cyan); background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.15); border-radius: 4px; padding: 4px 10px; letter-spacing: 0.3px; }

/* ═══ TRUTH SECTION */
#truth { background: var(--bg-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.truth-inner { max-width: 1280px; margin: 0 auto; padding: 100px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.truth-right { display: flex; flex-direction: column; gap: 4px; }
.truth-stat { padding: 28px; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; transition: border-color 0.2s; }
.truth-stat:hover { border-color: rgba(200,168,75,0.3); }
.truth-stat.accent { border-color: rgba(200,168,75,0.2); background: rgba(200,168,75,0.04); }
.tstat-num { font-family: var(--cond); font-size: 42px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.tstat-num.gold { color: var(--gold); font-size: 36px; }
.tstat-label { font-size: 13px; color: var(--lgray); line-height: 1.5; }

/* ═══ HOW IT WORKS */
#how { background: var(--bg); }
#how .section-title { color: var(--white); }
#how .section-sub { color: var(--lgray); }
.how-grid { display: flex; align-items: flex-start; gap: 0; margin-top: 60px; }
.how-step { flex: 1; padding: 40px 32px; background: var(--bg-mid); border: 1px solid var(--border); border-radius: 12px; position: relative; transition: border-color 0.2s; }
.how-step:hover { border-color: rgba(200,168,75,0.3); }
.step-num { font-family: var(--cond); font-size: 11px; font-weight: 800; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; }
.step-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.how-step h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.how-step p { font-size: 14px; color: var(--lgray); line-height: 1.75; }
.how-connector { display: flex; align-items: center; justify-content: center; padding: 0 12px; font-size: 24px; color: var(--gold); align-self: center; flex-shrink: 0; }

/* ═══ PLATFORM */
#platform { position: relative; overflow: hidden; }
.platform-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--bg) 100%); }
.platform-bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(200,168,75,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,168,75,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.platform-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.platform-features { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.platform-features li { display: flex; gap: 14px; align-items: flex-start; }
.feat-check { color: var(--gold); font-size: 16px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.platform-features strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.platform-features p { font-size: 13px; color: var(--lgray); line-height: 1.6; }
.platform-right { position: sticky; top: 100px; }
.platform-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(200,168,75,0.2); border-top: 3px solid var(--gold); border-radius: 12px; padding: 32px; }
.pcard-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.pcard-opp { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 16px; margin-bottom: 20px; }
.popp-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.popp-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.popp-meta span { font-size: 11px; background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.15); color: var(--cyan); padding: 3px 10px; border-radius: 4px; font-weight: 600; }
.pcard-score-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.pscore-block { text-align: center; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 14px 8px; }
.pscore-label { font-size: 10px; color: var(--lgray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.pscore-num { font-family: var(--cond); font-size: 24px; font-weight: 800; color: var(--white); }
.pscore-num.low { color: #4ADE80; font-size: 18px; }
.pcard-section-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--lgray); text-transform: uppercase; margin-bottom: 10px; margin-top: 16px; }
.pcard-analysis { font-size: 13px; color: var(--lgray); line-height: 1.7; }
.rec-tag { display: inline-block; margin-top: 10px; background: rgba(34,197,94,0.1); color: #4ADE80; border: 1px solid rgba(34,197,94,0.2); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 4px; }
.pcard-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pcard-bullets li { font-size: 13px; color: var(--lgray); padding-left: 16px; position: relative; line-height: 1.5; }
.pcard-bullets li::before { content: '▸'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 2px; }

/* ═══ PRICING */
#pricing { background: var(--bg-mid); }
#pricing .section-title { color: var(--white); }
#pricing .section-sub { color: var(--lgray); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.price-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 40px 32px; position: relative; transition: border-color 0.2s, transform 0.2s; }
.price-card:hover { border-color: rgba(200,168,75,0.3); transform: translateY(-4px); }
.price-card.featured { background: var(--navy); border-color: var(--gold); box-shadow: 0 0 40px rgba(200,168,75,0.15); }
.price-badge { display: inline-block; background: var(--gold); color: var(--bg); font-size: 9px; font-weight: 800; letter-spacing: 2px; padding: 4px 12px; border-radius: 2px; margin-bottom: 16px; }
.price-tier { font-family: var(--cond); font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: 1px; margin-bottom: 8px; }
.price-amount { font-family: var(--cond); font-size: 52px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.price-amount span { font-size: 20px; color: var(--lgray); }
.price-tagline { font-size: 13px; color: var(--lgray); margin-bottom: 28px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.price-features li { font-size: 13px; color: var(--lgray); padding-left: 20px; position: relative; line-height: 1.4; }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 12px; }
.price-features li.muted { color: rgba(148,163,184,0.4); }
.price-features li.muted::before { content: '–'; color: rgba(148,163,184,0.3); }
.growth-share-block { background: rgba(200,168,75,0.06); border: 1px solid rgba(200,168,75,0.2); border-radius: 12px; padding: 32px 40px; display: flex; gap: 24px; align-items: flex-start; }
.gs-icon { font-size: 36px; flex-shrink: 0; }
.gs-title { font-size: 20px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.gs-desc { font-size: 14px; color: var(--lgray); line-height: 1.75; }

/* ═══ MISSION */
#mission { position: relative; overflow: hidden; }
.mission-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #07111E 0%, #0D2240 100%); }
.mission-bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(200,168,75,0.06) 1px, transparent 1px); background-size: 40px 40px; }
.mission-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-eagle { font-size: 64px; text-align: center; margin-bottom: 24px; }
.wqw-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,168,75,0.2); border-top: 3px solid var(--gold); border-radius: 10px; padding: 28px; }
.wqw-logo { font-family: var(--cond); font-size: 18px; font-weight: 800; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.5px; }
.wqw-desc { font-size: 13px; color: var(--lgray); line-height: 1.7; margin-bottom: 14px; }
.wqw-stat { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; }
.founder-block { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding: 20px; background: rgba(255,255,255,0.04); border-radius: 8px; border: 1px solid var(--border); }
.founder-avatar { width: 52px; height: 52px; background: var(--gold); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--cond); font-size: 18px; font-weight: 800; flex-shrink: 0; }
.founder-name { font-size: 15px; font-weight: 700; color: var(--white); }
.founder-title { font-size: 12px; color: var(--lgray); margin-top: 2px; }

/* ═══ TESTIMONIALS */
#testimonials { background: var(--bg); }
#testimonials .section-title { color: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 20px; }
.testimonial-card { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: border-color 0.2s; }
.testimonial-card:hover { border-color: rgba(200,168,75,0.3); }
.t-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.t-quote { font-size: 14px; color: var(--lgray); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; background: var(--navy); color: var(--lgray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.t-name { font-size: 14px; font-weight: 700; color: var(--white); }
.t-company { font-size: 12px; color: var(--lgray); margin-top: 2px; }
.testimonial-note { font-size: 12px; color: var(--dgray); text-align: center; }

/* ═══ SIGNUP */
#signup { position: relative; overflow: hidden; }
.signup-bg { position: absolute; inset: 0; background: var(--bg-mid); }
.signup-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.signup-checklist { display: flex; flex-direction: column; gap: 12px; }
.sc-item { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--lgray); }
.sc-item span { color: var(--gold); font-weight: 700; font-size: 16px; }
.signup-form { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-top: 3px solid var(--gold); border-radius: 12px; padding: 40px; }
.form-title { font-family: var(--cond); font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--lgray); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 12px 16px; color: var(--white); font-size: 14px; font-family: var(--font); width: 100%; transition: border-color 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-note { font-size: 12px; color: var(--lgray); text-align: center; margin-top: 12px; }

/* ═══ FORM MESSAGES */
.form-message { border-radius: 6px; padding: 14px 20px; font-size: 14px; font-weight: 500; margin-top: 12px; text-align: center; line-height: 1.5; }
.form-message--success { background: rgba(34,197,94,0.1); color: #4ADE80; border: 1px solid rgba(34,197,94,0.2); }
.form-message--error { background: rgba(239,68,68,0.1); color: #F87171; border: 1px solid rgba(239,68,68,0.2); }

/* ═══ FOOTER */
footer { background: #040C18; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 60px 40px 32px; }
.footer-top { display: flex; gap: 80px; margin-bottom: 48px; }
.footer-brand { flex: 1; }
.footer-logo { display: flex; align-items: baseline; gap: 2px; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: var(--lgray); letter-spacing: 1px; margin-bottom: 12px; }
.footer-sdvosb { font-size: 9px; font-weight: 800; letter-spacing: 2px; color: var(--gold); border: 1px solid rgba(200,168,75,0.25); display: inline-block; padding: 5px 10px; border-radius: 2px; margin-bottom: 12px; }
.footer-wqw { font-size: 12px; color: var(--lgray); margin-top: 4px; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.footer-col a { color: var(--lgray); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 24px; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-vet { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ═══ FADE-IN ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ═══ RESPONSIVE */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .hero-inner { max-width: 100%; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .truth-inner, .platform-inner, .mission-inner, .signup-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .how-grid { flex-direction: column; }
  .how-connector { transform: rotate(90deg); align-self: center; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-inner { padding: 60px 24px; }
  .truth-inner { padding: 60px 24px; }
  .platform-right { position: static; }
  .growth-share-block { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-inner { padding: 120px 24px 80px; }
  .hero-headline { font-size: 52px; letter-spacing: -1px; }
  .form-row { grid-template-columns: 1fr; }
  .pcard-score-row { grid-template-columns: repeat(3,1fr); }
}
