/* ═══════════════════════════════════════════════════════════
   BLIDX LANDING PAGE — STYLES
   Bright theme · Instrument Serif + Outfit
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Colors */
  --white:      #FFFFFF;
  --snow:       #FAFBFC;
  --mist:       #F3F4F6;
  --silver:     #E5E7EB;
  --steel:      #9CA3AF;
  --slate:      #6B7280;
  --ink:        #374151;
  --night:      #1F2937;
  --black:      #111827;

  --purple:     #534AB7;
  --purple-bg:  #EEEDFE;
  --purple-mid: #AFA9EC;
  --purple-dk:  #3C3489;

  --teal:       #0F766E;
  --teal-bg:    #E1F5EE;
  --teal-mid:   #5DCAA5;
  --teal-dk:    #085041;

  --coral:      #EF4444;
  --coral-bg:   #FEF2F2;
  --coral-mid:  #F0997B;
  --coral-dk:   #7F1D1D;

  --amber:      #D97706;
  --amber-bg:   #FAEEDA;
  --amber-mid:  #EF9F27;
  --amber-dk:   #633806;

  --blue-bg:    #E6F1FB;
  --blue-mid:   #85B7EB;
  --blue-dk:    #0C447C;

  --cta-start:  #F97316;
  --cta-end:    #EF4444;

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:      1080px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select { font-family: inherit; font-size: inherit; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.label-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.label-purple   { background: var(--purple-bg); color: var(--purple-dk); border: 1px solid var(--purple-mid); }
.label-purple .label-dot { background: var(--purple); }
.label-teal     { background: var(--teal-bg);   color: var(--teal-dk);   border: 1px solid var(--teal-mid); }
.label-coral    { background: var(--coral-bg);   color: var(--coral-dk);  border: 1px solid var(--coral-mid); }
.label-amber    { background: var(--amber-bg);   color: var(--amber-dk);  border: 1px solid var(--amber-mid); }
.label-blue     { background: var(--blue-bg);    color: var(--blue-dk);   border: 1px solid var(--blue-mid); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  box-shadow: 0 4px 20px rgba(249, 115, 22, .3);
  text-decoration: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249, 115, 22, .4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--silver);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--mist);
  border-color: var(--steel);
}
.btn-sm   { padding: 8px 16px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .6; }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ NAVIGATION ════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--silver);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 8px; }
.nav-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--purple);
  animation: pulse 2.5s ease infinite;
}
.nav-name { font-family: var(--font-display); font-size: 20px; color: var(--black); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 14px;
  font-size: 13px;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: color .15s;
}
.nav-link:hover { color: var(--black); }
.nav-mobile-toggle { display: none; }

/* ═══ HERO ══════════════════════════════════════════════════ */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--snow) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(83,74,183,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
  animation: fadeUp .6s ease;
}
.hero-h1 em {
  font-style: italic;
  color: var(--purple);
}
.hero-sub {
  font-size: 15px;
  color: var(--slate);
  max-width: 540px;
  margin: 0 auto 8px;
  line-height: 1.8;
  animation: fadeUp .6s ease .1s both;
}
.hero-emphasis {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 32px;
  animation: fadeUp .6s ease .2s both;
}
.hero-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: fadeUp .6s ease .3s both;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
  animation: fadeUp .6s ease .4s both;
}
.stat-box {
  text-align: center;
  padding: 16px 8px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
}
.stat-num {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 11px;
  color: var(--steel);
  line-height: 1.4;
}

/* ═══ SECTIONS ══════════════════════════════════════════════ */
.section { padding: 80px 0; }
.section-alt { background: var(--snow); }
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 44px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* ═══ PROBLEM ═══════════════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-top: 3px solid var(--coral);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 24px 20px;
  transition: transform .2s ease;
}
.problem-card:hover { transform: translateY(-3px); }
.problem-icon { font-size: 24px; margin-bottom: 12px; }
.problem-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.problem-card p { font-size: 13px; color: var(--slate); }

/* ═══ STEPS ═════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: transform .2s ease;
}
.step-card:hover { transform: translateY(-3px); }
.step-emoji { font-size: 26px; margin-bottom: 8px; }
.step-num { display: block; font-size: 12px; font-weight: 600; color: var(--purple); margin-bottom: 6px; }
.step-card h3 { font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--black); }
.step-card p { font-size: 12px; color: var(--slate); }

/* Orchestration card */
.orch-card {
  background: var(--snow);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.orch-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--steel);
  margin-bottom: 12px;
}
.orch-flow { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.orch-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
}
.orch-purple { background: var(--purple-bg); color: var(--purple-dk); }
.orch-teal   { background: var(--teal-bg);   color: var(--teal-dk); }
.orch-amber  { background: var(--amber-bg);  color: var(--amber-dk); }
.orch-dark   { background: var(--purple);     color: var(--purple-bg); }
.orch-arrow { font-size: 12px; color: var(--steel); }
.orch-note { font-size: 12px; color: var(--steel); margin-top: 6px; }

/* ═══ USE CASE TABS ═════════════════════════════════════════ */
.tab-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}
.tab-btn {
  padding: 10px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
}
.tab-saas { background: var(--purple-bg); color: var(--purple-dk); border-color: var(--purple-mid); }
.tab-saas.active, .tab-saas:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.tab-b2c  { background: var(--teal-bg);   color: var(--teal-dk);   border-color: var(--teal-mid); }
.tab-b2c.active, .tab-b2c:hover  { background: var(--teal);   color: #fff; border-color: var(--teal); }
.tab-d2c  { background: var(--amber-bg);  color: var(--amber-dk);  border-color: var(--amber-mid); }
.tab-d2c.active, .tab-d2c:hover  { background: var(--amber);  color: #fff; border-color: var(--amber); }

.tab-content { max-width: 680px; margin: 0 auto; }

/* Tab inner components */
.tab-tagline {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  font-size: 14px;
  font-style: italic;
  color: var(--slate);
  line-height: 1.65;
}
.tab-pain {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}
.tab-pain-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--steel);
  margin-bottom: 6px;
}
.tab-agents-panel {
  background: var(--mist);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
}
.tab-agents-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--steel);
  margin-bottom: 12px;
}
.agent-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 5px;
}
.agent-row:last-child { margin-bottom: 0; }
.agent-emoji { font-size: 18px; width: 30px; text-align: center; flex-shrink: 0; }
.agent-info { flex: 1; }
.agent-name { font-size: 13px; font-weight: 600; }
.agent-desc { font-size: 12px; color: var(--slate); }
.agent-status {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  flex-shrink: 0;
}
.signal-line {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 46px;
}
.signal-bar { flex: 1; height: 1px; background: var(--silver); }
.signal-msg { font-size: 10px; color: var(--steel); white-space: nowrap; }
.signal-arrow { font-size: 10px; color: var(--steel); }

/* Journey */
.tab-journey {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}
.tab-journey-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--steel);
  margin-bottom: 14px;
}
.journey-step { display: flex; gap: 0; align-items: stretch; margin-bottom: 4px; }
.j-timeline { display: flex; flex-direction: column; align-items: center; width: 32px; flex-shrink: 0; }
.j-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.j-line { width: 2px; flex: 1; margin: 4px 0; }
.j-body { flex: 1; padding: 0 0 14px 12px; }
.j-time { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.j-title { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.j-desc { font-size: 12px; color: var(--slate); line-height: 1.55; }
.j-outcome {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 6px;
}

/* Tab outcome */
.tab-outcome {
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.tab-outcome p { font-size: 14px; font-weight: 600; margin-bottom: 12px; }

/* ═══ USP GRID ══════════════════════════════════════════════ */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.usp-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  transition: transform .2s ease;
}
.usp-card:hover { transform: translateY(-3px); }
.usp-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.usp-icon-purple { background: var(--purple-bg); }
.usp-icon-teal   { background: var(--teal-bg); }
.usp-icon-amber  { background: var(--amber-bg); }
.usp-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.usp-title-purple { color: var(--purple); }
.usp-title-teal   { color: var(--teal); }
.usp-title-amber  { color: var(--amber); }
.usp-card p { font-size: 13px; color: var(--slate); }

/* ═══ PRICING ═══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 20px;
}
.price-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.price-featured {
  border: 2px solid var(--purple);
  position: relative;
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.price-tier { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--steel); margin-bottom: 10px; }
.price-tier-purple { color: var(--purple); }
.price-num { font-size: 36px; font-weight: 600; color: var(--black); }
.price-num-purple { color: var(--purple); }
.price-period { font-size: 14px; color: var(--steel); }
.price-desc { font-size: 13px; margin: 6px 0 2px; color: var(--ink); }
.price-for { font-size: 12px; color: var(--steel); margin-bottom: 12px; }
.check-list { margin-bottom: 16px; flex: 1; }
.check-list li {
  font-size: 13px; color: var(--slate);
  padding: 5px 0;
  display: flex; gap: 8px; align-items: flex-start;
  line-height: 1.5;
}
.check-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* Founding deal card */
.founding-deal {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--purple-bg) 0%, var(--teal-bg) 100%);
  border: 2px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.deal-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.deal-info { flex: 1; }
.deal-badge { display: block; font-size: 12px; font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.deal-headline { font-size: 14px; color: var(--black); font-weight: 500; }
.deal-headline strong { color: var(--cta-start); font-weight: 700; }
.deal-price { text-align: right; flex-shrink: 0; margin-left: 16px; }
.deal-num { display: block; font-size: 26px; font-weight: 700; color: var(--purple-dk); }
.deal-sub { font-size: 11px; color: var(--steel); }
.deal-body { font-size: 13px; color: var(--slate); line-height: 1.7; margin-bottom: 14px; }

/* ═══ FOUNDING MEMBER ═══════════════════════════════════════ */
.founding-intro { font-size: 15px !important; }
.founding-benefits {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
}
.benefits-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--steel);
  margin-bottom: 16px;
}
.benefit-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.benefit-row:last-child { margin-bottom: 0; }
.benefit-row strong { font-weight: 600; color: var(--black); }
.benefit-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.benefit-icon-purple { background: var(--purple-bg); }
.benefit-icon-teal   { background: var(--teal-bg); }
.benefit-icon-amber  { background: var(--amber-bg); }

/* Form */
.founding-form-card {
  max-width: 600px;
  margin: 0 auto 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
}
.form-title { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: var(--black); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 5px;
  font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--silver);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  transition: border-color .2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(83,74,183,.08);
}
.form-group input::placeholder { color: var(--steel); }
.form-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--purple-bg);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.summary-title { display: block; font-size: 14px; font-weight: 600; color: var(--purple-dk); }
.summary-sub { display: block; font-size: 11px; color: var(--purple); }
.summary-num { font-size: 24px; font-weight: 700; color: var(--purple-dk); }
.summary-period { font-size: 12px; color: var(--steel); margin-left: 4px; }
.form-trust {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.form-trust span { font-size: 11px; color: var(--steel); }

/* Success state */
.founding-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.founding-success.show { display: block; }
.founding-form.hidden { display: none; }
.success-icon { font-size: 40px; margin-bottom: 12px; }
.founding-success h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.founding-success p { font-size: 14px; color: var(--slate); }

/* Newsletter */
.newsletter-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 24px;
  border: 1px solid var(--silver);
  border-radius: var(--radius-md);
  text-align: center;
}
.newsletter-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--black); }
.newsletter-card p { font-size: 13px; color: var(--slate); margin-bottom: 14px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 380px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--silver);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--purple); }
.nl-success {
  display: none;
  font-size: 13px;
  color: var(--teal);
  margin-top: 10px;
}
.nl-success.show { display: block; }
.newsletter-form.hidden { display: none; }

/* ═══ FOOTER ════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--silver); padding: 28px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 16px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--steel); transition: color .15s; }
.footer-links a:hover { color: var(--black); }
.footer-copy { font-size: 12px; color: var(--steel); }

/* ═══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-mobile-toggle span {
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: all .2s ease;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--silver);
    padding: 16px 24px;
    gap: 8px;
  }
  .hero { padding: 100px 0 60px; }
  .hero-h1 { font-size: clamp(26px, 6vw, 36px); }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .problem-grid { grid-template-columns: 1fr; max-width: 400px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .tab-row { flex-wrap: wrap; }
  .tab-btn { font-size: 13px; padding: 8px 16px; }
  .usp-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
  .deal-top { flex-direction: column; gap: 12px; }
  .deal-price { text-align: left; margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-cta, .btn-outline { width: 100%; }
}
