/* ═══════════════════════════════════════════════════════════════
   VEHODO — Landing Page Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --orange:     #FF6B1A;
  --orange-dim: rgba(255, 107, 26, 0.12);
  --orange-glow:rgba(255, 107, 26, 0.25);
  --bg:         #0E0E12;
  --surface:    #16161D;
  --surface2:   #1E1E28;
  --border:     rgba(255,255,255,0.07);
  --text:       #E8E8EF;
  --muted:      #6E6E82;
  --muted2:     #9494A8;
  --white:      #FFFFFF;
  --green:      #22C55E;
  --yellow:     #EAB308;
  --red:        #EF4444;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.5);
  --font-head:  'Syne', system-ui, sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
  --max-w:      1180px;
  --transition: 0.2s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utilities ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,26,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--muted2);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 0 0 transparent;
}
.btn--orange:hover { background: #ff7d34; box-shadow: 0 4px 20px var(--orange-glow); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--full { width: 100%; }

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay  { transition-delay: 0.1s; }
.reveal--delay2 { transition-delay: 0.2s; }

/* ═══════════════════════════════════════════════════════ NAV ══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-svg {
  height: 28px;
  width: auto;
}
.nav__brand {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted2);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-toggle {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted2);
  transition: color var(--transition), border-color var(--transition);
}
.lang-toggle:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(14,14,18,0.97);
  border-top: 1px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav__mobile a:hover { background: var(--surface); color: var(--white); }
.nav__mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.nav__mobile-actions .btn { flex: 1; }

/* ════════════════════════════════════════════════ HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
}
.hero__glow {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 560px; }
.hero__content .tag { margin-bottom: 24px; }
.hero__h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero__h1-muted  { color: var(--muted2); }
.hero__h1-orange { color: var(--orange); font-size: clamp(52px, 7vw, 80px); }
.hero__sub {
  font-size: 18px;
  color: var(--muted2);
  line-height: 1.65;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 480px;
}
.hero__cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted2);
  font-weight: 400;
}
.stat__icon {
  color: var(--orange);
  font-size: 16px;
  font-style: normal;
}

/* Phone mockup */
.hero__phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  position: relative;
  width: 280px;
  background: #1A1A24;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  padding: 0;
}
.phone-mockup__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  z-index: 10;
}
.phone-mockup__screen {
  padding: 28px 16px 24px;
}
.app-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.app-logo { height: 20px; width: auto; }
.app-bar__name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}
.app-bar__bell { font-size: 16px; }

/* Health card */
.health-card {
  background: var(--surface2);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
}
.health-card__label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.health-card__vehicle {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  font-family: var(--font-head);
}
.health-card__sub { font-size: 10px; color: var(--muted2); }
.health-ring {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.health-ring svg { width: 60px; height: 60px; }
.health-ring__score {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
}

/* Reminder list */
.reminder-list { display: flex; flex-direction: column; gap: 8px; }
.reminder-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
}
.reminder-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.reminder-dot--good { background: var(--green); }
.reminder-dot--warn { background: var(--yellow); }
.reminder-dot--crit { background: var(--orange); box-shadow: 0 0 6px var(--orange-glow); }
.reminder-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1px;
}
.reminder-name { font-size: 11px; font-weight: 500; color: var(--text); }
.reminder-km   { font-size: 9px; color: var(--muted); }
.reminder-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.reminder-badge--good { background: rgba(34,197,94,0.15); color: var(--green); }
.reminder-badge--warn { background: rgba(234,179,8,0.15); color: var(--yellow); }
.reminder-badge--crit { background: var(--orange-dim); color: var(--orange); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════ SOCIAL PROOF ══ */
.proof {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof .container { text-align: center; }
.proof__text {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 20px;
}
.proof__brands {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof__brands span {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.proof__brands span:hover { color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════════ PAIN ══ */
.pain { padding: 96px 0; }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pain-card__bad,
.pain-card__good {
  display: flex;
  gap: 14px;
  padding: 24px;
}
.pain-card__bad { border-bottom: 1px solid var(--border); }
.pain-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.pain-card__bad .pain-icon { background: rgba(239,68,68,0.15); color: var(--red); }
.pain-card__good .pain-icon { background: rgba(255,107,26,0.15); color: var(--orange); }
.pain-card__bad p { font-size: 14px; color: var(--muted2); line-height: 1.5; }
.pain-card__good p { font-size: 14px; color: var(--text); line-height: 1.5; font-weight: 500; }

/* ══════════════════════════════════════════ FEATURES ══ */
.features { padding: 96px 0; background: var(--surface); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.feat-card:hover {
  background: var(--surface2);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.feat-card--highlight {
  border-color: rgba(255,107,26,0.3);
  background: rgba(255,107,26,0.05);
}
.feat-card--highlight:hover {
  border-color: rgba(255,107,26,0.5);
  background: rgba(255,107,26,0.08);
}
.feat-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
  border-radius: 10px;
  margin-bottom: 18px;
  color: var(--muted2);
  transition: background var(--transition), color var(--transition);
}
.feat-card__icon svg { width: 22px; height: 22px; }
.feat-card:hover .feat-card__icon { background: var(--orange-dim); color: var(--orange); }
.feat-card--highlight .feat-card__icon { background: var(--orange-dim); color: var(--orange); }
.feat-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.feat-card p { font-size: 14px; color: var(--muted2); line-height: 1.6; font-weight: 300; }

/* ═══════════════════════════════════════ HOW IT WORKS ══ */
.how { padding: 96px 0; }
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.how-step__connector {
  width: 48px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,107,26,0.2));
  align-self: center;
  position: relative;
  top: -12px;
}
.how-step__num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}
.how-step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.how-step p { font-size: 14px; color: var(--muted2); line-height: 1.6; font-weight: 300; }

/* ═══════════════════════════════════════ WORKSHOP ══ */
.workshop {
  padding: 96px 0;
  background: var(--surface);
}
.workshop__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.workshop__content .tag { margin-bottom: 20px; }
.workshop__content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.workshop__sub {
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 300;
}
.workshop__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.workshop__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.check {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-dim);
  color: var(--orange);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* QR card */
.qr-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.qr-card__titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot--red    { background: #FF5F57; }
.dot--yellow { background: #FFBD2E; }
.dot--green  { background: #27C93F; }
.qr-card__title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted2);
}
.qr-display {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.qr-svg {
  width: 140px;
  height: 140px;
  color: var(--text);
}
.qr-sub { font-size: 12px; color: var(--muted); text-align: center; }
.qr-logs { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.qr-log-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.qr-log-item:last-child { border-bottom: none; }
.qr-log-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.qr-card .btn { margin: 0 16px 16px; width: calc(100% - 32px); }

/* ══════════════════════════════════════════ PRICING ══ */
.pricing { padding: 96px 0; }
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.price-card--featured {
  border-color: rgba(255,107,26,0.4);
  background: rgba(255,107,26,0.04);
  box-shadow: 0 0 40px rgba(255,107,26,0.1);
}
.price-card__badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: flex-start;
}
.price-card__badge--neutral { background: var(--surface2); color: var(--muted2); }
.price-card__badge--orange  { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(255,107,26,0.3); }
.price-card__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.price-card__price { display: flex; align-items: baseline; gap: 6px; }
.price-card__amount {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}
.price-card__period { font-size: 14px; color: var(--muted); }
.price-card__annual { font-size: 13px; color: var(--orange); margin-top: -16px; }
.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.fi {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.fi--yes { background: var(--orange-dim); color: var(--orange); }
.fi--no  { background: rgba(239,68,68,0.12); color: var(--muted); }

/* ═════════════════════════════════════════ AFFILIATE ══ */
.affiliate { padding: 96px 0; background: var(--surface); }
.affiliate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.aff-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition);
}
.aff-card:hover { transform: translateY(-3px); }
.aff-card__tier {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 16px;
}
.aff-card__rate {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.aff-card__label {
  font-size: 13px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-bottom: 16px;
}
.aff-card__req {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  display: inline-block;
}
.aff-card--bronze .aff-card__tier { color: #CD7F32; }
.aff-card--bronze .aff-card__rate { color: #CD7F32; }
.aff-card--silver .aff-card__tier { color: #B8B8C8; }
.aff-card--silver .aff-card__rate { color: #B8B8C8; }
.aff-card--gold   .aff-card__tier { color: #F5C542; }
.aff-card--gold   .aff-card__rate { color: #F5C542; }
.affiliate__note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ═════════════════════════════════════════ DOWNLOAD ══ */
.download {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,26,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.download__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.download__logo {
  width: 100px;
  height: auto;
  opacity: 0.15;
  margin-bottom: 4px;
}
.download__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
.download__sub { font-size: 16px; color: var(--muted2); font-weight: 300; }
.download__btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  min-width: 180px;
}
.store-btn:hover {
  border-color: rgba(255,255,255,0.18);
  background: var(--surface2);
  transform: translateY(-2px);
}
.store-btn svg { width: 28px; height: 28px; color: var(--white); flex-shrink: 0; }
.store-btn__soon { display: block; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.store-btn__name { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); }

/* ════════════════════════════════════════ FOOTER ══ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand .nav__logo { margin-bottom: 12px; }
.footer__tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 200px; }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a {
  font-size: 14px;
  color: var(--muted2);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__bottom p { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════ RESPONSIVE ══ */

/* Tablet — 960px */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__h1 { align-items: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta-group { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__phone-wrap { order: -1; }
  .phone-mockup { width: 240px; }

  .pain__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .workshop__inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; }
  .affiliate__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .how__steps { flex-direction: column; }
  .how-step__connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--orange), rgba(255,107,26,0.2)); align-self: flex-start; margin-left: 48px; top: 0; }
}

/* Mobile — 640px */
@media (max-width: 640px) {
  .nav__links   { display: none; }
  .nav__actions { display: none; }
  .hamburger    { display: flex; }

  .hero { padding: 100px 0 64px; }
  .phone-mockup { width: 220px; }

  .features__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 36px; }
  .pain { padding: 64px 0; }
  .features { padding: 64px 0; }
  .how { padding: 64px 0; }
  .workshop { padding: 64px 0; }
  .pricing { padding: 64px 0; }
  .affiliate { padding: 64px 0; }
  .download { padding: 80px 0; }

  .download__btns { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 240px; }

  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero__stats { flex-direction: column; align-items: center; gap: 12px; }
  .proof__brands { gap: 20px; }
}
