/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #4361EE;
  --purple:      #6C63FF;
  --grad:        linear-gradient(135deg, #4361EE, #6C63FF);
  --grad-rev:    linear-gradient(135deg, #6C63FF, #4361EE);
  --dark-text:   #111827;
  --mid-text:    #374151;
  --muted:       #6b7280;
  --light-muted: #9ca3af;
  --bg:          #f8f9fb;
  --card-bg:     #fff;
  --border:      #e5e7eb;
  --border-soft: #f0f1f3;
  --green:       #059669;
  --green-light: #d1fae5;
  --amber:       #d97706;
  --amber-light: #fef3c7;
  --r-card:      14px;
  --r-btn:       12px;
  --r-pill:      9999px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --shadow-blue: 0 8px 32px rgba(67,97,238,.30);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark-text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--card-bg); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(67,97,238,.08);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--r-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(67,97,238,.38);
}
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: rgba(67,97,238,.06);
}
.btn-sm  { font-size: .85rem; padding: 8px 18px; }
.btn-lg  { font-size: 1rem;   padding: 14px 28px; }
.btn-xl  { font-size: 1.1rem; padding: 18px 40px; border-radius: 14px; }
.btn-full { width: 100%; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,26,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; color: #fff;
}
.logo-mark-sm {
  width: 26px; height: 26px;
  border-radius: 6px;
  font-size: .75rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0a0a1a 0%, #0d0e1f 50%, #111827 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(67,97,238,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(108,99,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 80px 0 80px;
}
.hero-text {
  flex: 1;
  min-width: 0;
  max-width: 560px;
}
.hero-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-footnote {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ─── Phone Mockup ─── */
.phone-wrap {
  flex-shrink: 0;
  position: relative;
}
.phone-mockup {
  width: 270px;
  height: 540px;
  background: #1a1a2e;
  border-radius: 40px;
  border: 8px solid #2a2a45;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 40px 80px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 100px; height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  z-index: 2;
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  border: 2px solid #2a2a45;
  border-top: none;
}
.phone-screen {
  flex: 1;
  background: #fff;
  margin: 8px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-home-bar {
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-home-bar::after {
  content: '';
  width: 80px; height: 4px;
  background: #444;
  border-radius: 2px;
}

/* App content inside phone */
.app-header {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 12px 10px;
  border-bottom: 1px solid #f0f1f3;
  background: #fff;
}
.app-back { font-size: .65rem; color: #4361EE; font-weight: 600; background: none; border: none; cursor: default; }
.app-title { font-size: .75rem; font-weight: 700; color: #111827; }

.app-mic-area {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px;
  position: relative;
  min-height: 0;
}
.mic-glow-ring {
  position: absolute;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(67,97,238,.15);
  animation: heroGlow 2.5s ease-in-out infinite;
}
.ring-1 { width: 84px;  height: 84px;  animation-delay: 0s; }
.ring-2 { width: 112px; height: 112px; animation-delay: .4s; opacity: .7; }
.ring-3 { width: 140px; height: 140px; animation-delay: .8s; opacity: .4; }

@keyframes heroGlow {
  0%, 100% { opacity: var(--base-opacity, .15); transform: scale(1); }
  50% { opacity: calc(var(--base-opacity, .15) * 2.5); transform: scale(1.04); }
}

.app-mic-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: default;
  box-shadow: 0 6px 20px rgba(67,97,238,.4);
  animation: micPulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.app-mic-btn svg { width: 28px; height: 28px; }

@keyframes micPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(67,97,238,.4); }
  50%       { box-shadow: 0 6px 20px rgba(67,97,238,.4), 0 0 0 10px rgba(67,97,238,.08); }
}

.app-hint { font-size: .6rem; color: #9ca3af; margin-top: 8px; text-align: center; }

.app-chips {
  display: flex; gap: 5px; padding: 0 10px 8px; justify-content: center;
}
.app-chip {
  font-size: .55rem; font-weight: 600; padding: 3px 9px;
  border-radius: 99px; background: #f0f1f3; color: #6b7280; border: 1px solid #e5e7eb;
}
.app-chip.active { background: #4361EE; color: #fff; border-color: #4361EE; }

.app-tips {
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 0 10px 10px; justify-content: center;
}
.app-tip {
  font-size: .5rem; color: #9ca3af;
  background: #f8f9fb; border: 1px solid #f0f1f3; border-radius: 99px;
  padding: 2px 7px;
}

.app-input-row {
  display: flex; align-items: center; gap: 6px;
  margin: auto 10px 10px;
  background: #f8f9fb; border: 1px solid #e5e7eb; border-radius: 18px;
  padding: 5px 5px 5px 10px;
}
.app-input-placeholder { font-size: .6rem; color: #c0c6d0; flex: 1; }
.app-send-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: #4361EE;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Float card */
.float-card {
  position: absolute;
  bottom: -20px; right: -40px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  border: 1px solid #f0f1f3;
  min-width: 180px;
  animation: floatBob 4s ease-in-out infinite;
}
.float-card-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}
.float-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: #d1fae5; color: #059669;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; flex-shrink: 0;
}
.float-card strong { font-size: .8rem; color: #111827; }
.float-card p { font-size: .7rem; color: #6b7280; line-height: 1.5; }
.float-amount { color: #059669; font-weight: 700; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ─────────────────────────────────────────
   PROOF STRIP
───────────────────────────────────────── */
.proof-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
}
.proof-num {
  font-size: 2rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.proof-label {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   HOW IT WORKS — STEPS
───────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 80px; }

.step {
  display: flex;
  align-items: center;
  gap: 64px;
}
.step-reverse { flex-direction: row-reverse; }

/* Step mini phone */
.step-phone {
  flex-shrink: 0;
}
.step-phone-inner {
  width: 200px;
  height: 380px;
  background: #1a1a2e;
  border-radius: 30px;
  border: 6px solid #2a2a45;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.step-phone-notch {
  width: 70px; height: 18px;
  background: #1a1a2e;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  border: 1.5px solid #2a2a45; border-top: none;
  z-index: 2;
}
.step-phone-screen {
  flex: 1;
  background: #fff;
  margin: 6px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
}
.step-screen-header {
  display: flex; align-items: center; gap: 6px;
  padding: 0 10px 8px;
  border-bottom: 1px solid #f0f1f3;
}
.step-back { font-size: .55rem; color: #4361EE; font-weight: 600; }
.step-title { font-size: .6rem; font-weight: 700; color: #111827; }

/* Step 1 — recording */
.step-mic-area {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; position: relative;
}
.step-mic-ring {
  position: absolute; border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(67,97,238,.2);
}
.step-ring-1 { width: 64px; height: 64px; animation: heroGlow 2s ease-in-out infinite; }
.step-ring-2 { width: 88px; height: 88px; animation: heroGlow 2s ease-in-out infinite .4s; }
.step-mic-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step-mic-btn.recording {
  background: #ef4444;
  box-shadow: 0 4px 16px rgba(239,68,68,.4);
  animation: recPulse 1s ease-in-out infinite;
}
@keyframes recPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(239,68,68,.4); }
  50%       { box-shadow: 0 4px 16px rgba(239,68,68,.4), 0 0 0 8px rgba(239,68,68,.1); }
}
.step-rec-dot {
  width: 18px; height: 18px;
  background: #fff; border-radius: 3px;
}
.step-recording-time {
  font-size: .75rem; font-weight: 700; color: #111827; font-variant-numeric: tabular-nums;
}
.step-listening { font-size: .6rem; color: #9ca3af; }

.step-wave {
  display: flex; align-items: center; gap: 3px; padding-bottom: 12px;
}
.step-wave-bar {
  width: 3px; border-radius: 2px; background: #ef4444;
  animation: waveAnim 1.2s ease-in-out infinite;
}
.step-wave-bar:nth-child(1) { animation-delay: 0s; }
.step-wave-bar:nth-child(2) { animation-delay: .15s; }
.step-wave-bar:nth-child(3) { animation-delay: .3s; }
.step-wave-bar:nth-child(4) { animation-delay: .45s; }
.step-wave-bar:nth-child(5) { animation-delay: .6s; }
@keyframes waveAnim {
  0%, 100% { height: 6px; opacity: .4; }
  50%       { height: 24px; opacity: 1; }
}

/* Step 2 — processing */
.step-processing {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 10px;
}
.step-spinner {
  width: 32px; height: 32px;
  border: 3px solid #f0f1f3;
  border-top-color: #4361EE;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.step-process-text { font-size: .6rem; color: #6b7280; font-weight: 500; }
.step-process-items { width: 100%; display: flex; flex-direction: column; gap: 5px; }
.step-process-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .58rem; color: #9ca3af; padding: 4px 6px;
  border-radius: 6px;
}
.step-process-item.done { color: #059669; }
.step-process-item.active { color: #4361EE; background: rgba(67,97,238,.05); }
.step-process-check {
  width: 14px; height: 14px; border-radius: 50%; background: #d1fae5; color: #059669;
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 700; flex-shrink: 0;
}
.step-process-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid #4361EE; border-top-color: transparent;
  animation: spin .6s linear infinite; flex-shrink: 0;
}
.step-process-circle {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid #d1d5db; flex-shrink: 0;
}

/* Step 3 — result */
.step-job-card {
  margin: 8px; padding: 8px;
  background: #f8f9fb; border: 1px solid #e5e7eb; border-radius: 10px;
  border-left: 3px solid #059669;
}
.step-job-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 4px;
}
.step-job-customer { font-size: .65rem; font-weight: 700; color: #111827; }
.step-job-type     { font-size: .55rem; color: #6b7280; }
.step-job-amount   { font-size: .7rem; font-weight: 800; color: #059669; }
.step-job-addr     { font-size: .55rem; color: #9ca3af; margin-bottom: 5px; }
.step-job-tags     { display: flex; gap: 4px; }
.step-tag {
  font-size: .5rem; font-weight: 600; padding: 2px 6px; border-radius: 99px;
}
.step-tag.green { background: #d1fae5; color: #059669; }
.step-tag.blue  { background: rgba(67,97,238,.1); color: #4361EE; }

.step-mini-invoice {
  margin: 0 8px 8px; padding: 8px;
  background: #fff; border: 1px solid #f0f1f3; border-radius: 8px;
}
.step-inv-label { font-size: .55rem; font-weight: 700; color: #111827; margin-bottom: 4px; }
.step-inv-row {
  display: flex; justify-content: space-between;
  font-size: .55rem; color: #6b7280; padding: 2px 0;
}
.step-inv-row.total {
  border-top: 1px solid #f0f1f3; margin-top: 3px; padding-top: 4px;
  font-weight: 700; color: #111827;
}

/* Step content */
.step-content { flex: 1; min-width: 0; }
.step-num {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  color: var(--blue); opacity: .5; margin-bottom: 10px;
}
.step-content h3 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.step-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-quote {
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  padding: 14px 16px;
}
.step-quote-wave {
  display: flex; align-items: center; gap: 2px; margin-bottom: 8px;
  height: 20px; /* fixed height — bars scale inside, no layout shift */
}
.step-quote-wave span {
  display: block; width: 3px; height: 20px; border-radius: 2px; background: var(--blue);
  transform-origin: center;
  animation: waveScaleY 1.4s ease-in-out infinite;
}
.step-quote-wave span:nth-child(1) { animation-delay: 0s; }
.step-quote-wave span:nth-child(2) { animation-delay: .2s; }
.step-quote-wave span:nth-child(3) { animation-delay: .4s; }
.step-quote-wave span:nth-child(4) { animation-delay: .2s; }
.step-quote-wave span:nth-child(5) { animation-delay: 0s; }
@keyframes waveScaleY {
  0%, 100% { transform: scaleY(.2); opacity: .35; }
  50%       { transform: scaleY(1);  opacity: 1; }
}
.step-quote p {
  font-size: .9rem; color: var(--mid-text); font-style: italic; margin: 0; line-height: 1.6;
}

.step-bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.step-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; color: var(--mid-text);
}
.step-bullets li::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.step-outcomes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.step-outcome {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: #f8f9fb; border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .9rem; color: var(--mid-text); font-weight: 500;
}
.outcome-icon { font-size: 1.2rem; }

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card-large { grid-column: span 1; }

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 24px;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(67,97,238,.2);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(67,97,238,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark-text); margin-bottom: 8px;
}
.feature-card p {
  font-size: .9rem; color: var(--muted); line-height: 1.6;
}
.feature-tag {
  display: inline-block; margin-top: 14px;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue); background: rgba(67,97,238,.08);
  padding: 3px 10px; border-radius: var(--r-pill);
}

/* ─────────────────────────────────────────
   TRADES
───────────────────────────────────────── */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.trade-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px 20px;
  text-align: center;
  transition: all .2s;
}
.trade-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.trade-icon { font-size: 2rem; margin-bottom: 10px; }
.trade-card h4 {
  font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 6px;
}
.trade-card p { font-size: .85rem; color: var(--muted); line-height: 1.5; }

.trades-quote {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 36px 40px;
  text-align: center;
  position: relative;
}
.tq-icon {
  font-size: 2rem; margin-bottom: 14px;
}
.trades-quote blockquote {
  font-size: 1.1rem; color: var(--mid-text);
  font-style: italic; line-height: 1.7;
  max-width: 680px; margin: 0 auto 14px;
}
.trades-quote cite {
  font-size: .85rem; color: var(--light-muted); font-style: normal; font-weight: 600;
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 36px 32px;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(67,97,238,.15), var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 4px 16px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-tier {
  font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.pricing-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px;
}
.price-amount {
  font-size: 2.5rem; font-weight: 900; color: var(--dark-text); line-height: 1;
}
.price-period {
  font-size: .9rem; color: var(--muted); font-weight: 500;
}
.pricing-desc {
  font-size: .9rem; color: var(--muted); margin-bottom: 24px; line-height: 1.6;
}
.pricing-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--mid-text);
}
.pf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pf-no    { color: var(--light-muted) !important; }
.pf-x     { color: #d1d5db; flex-shrink: 0; }
.pricing-note {
  font-size: .75rem; color: var(--light-muted);
  text-align: center; margin-top: 12px;
}

/* ─────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────── */
.cta-section {
  position: relative;
  background: linear-gradient(160deg, #0a0a1a 0%, #111827 100%);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(67,97,238,.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1;
  max-width: 560px; margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.cta-content p {
  font-size: 1.1rem; color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 36px;
}
.cta-footnote {
  font-size: .8rem; color: rgba(255,255,255,.35); margin-top: 16px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: #0a0a1a;
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: 1rem;
  margin-bottom: 12px;
}
.footer-brand p { font-size: .85rem; line-height: 1.6; }
.footer-links-group h5 {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links-group a {
  font-size: .85rem; color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-links-group a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: .8rem;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trades-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 64px 0 96px;
    gap: 48px;
  }
  .hero-text { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-sub  { margin: 0 auto 36px; }

  .phone-wrap { order: -1; }
  .float-card { right: -16px; bottom: -16px; }

  .proof-item { padding: 8px 20px; }
  .proof-divider { display: none; }

  .step, .step-reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .step-outcomes { justify-items: center; }
  .step-quote { text-align: left; }

  .features-grid { grid-template-columns: 1fr; }
  .trades-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; }

  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .trades-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .proof-items { gap: 4px; }
  .proof-item  { padding: 8px 12px; }

  .trades-quote { padding: 24px 20px; }
  .trades-quote blockquote { font-size: .95rem; }
}
