:root {
  --bg: #0A0A0A;
  --bg-elevated: #111827;
  --bg-card: #1A1A2E;
  --fg: #f0ede8;
  --fg-muted: #8a8690;
  --accent: #1E90FF;
  --accent-dim: rgba(30, 144, 255, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0D1117;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-right {
  display: flex;
  gap: 32px;
}
.nav-right a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-right a:hover { color: #1E90FF; }

/* Section base */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 50%, rgba(30, 144, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: #E0E0E0;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 500px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  background: #1E90FF;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.phone-mockup {
  position: relative;
  width: 220px;
}
.phone-screen {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 24px;
  background: var(--bg);
  border-radius: 0 0 16px 16px;
  z-index: 1;
}
.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}
.screen-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--fg-muted);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.status-dot.connected { background: #22c55e; }
.screen-brand {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.screen-scan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}
.scan-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.15);
  animation: scan-pulse 2s infinite;
}
@keyframes scan-pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0; }
}
.scan-center { position: relative; z-index: 1; }
.scan-text {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.screen-result {
  background: var(--accent-dim);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
  border: 1px solid rgba(245, 166, 35, 0.2);
}
.result-code {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 2px;
}
.result-label {
  font-size: 10px;
  color: var(--fg-muted);
}
.screen-parts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.parts-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 4px 8px;
  background: var(--bg-card);
  border-radius: 6px;
}
.parts-name { color: var(--fg-muted); }
.parts-cost { color: #22c55e; font-weight: 600; }
.screen-cta { margin-top: 4px; }
.tutorial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #111318;
  font-size: 11px;
  font-weight: 700;
  padding: 8px;
  border-radius: 8px;
}
.scanner-dongle {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dongle-body {
  width: 48px;
  height: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dongle-label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
}
.dongle-wire {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--fg-muted) 0%, transparent 100%);
  border-radius: 1px;
  opacity: 0.4;
}

/* How it works */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr 240px;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--bg-card);
  -webkit-text-stroke: 1px rgba(240, 237, 232, 0.15);
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
}
.step-content p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}
.step-connector {
  display: flex;
  justify-content: flex-start;
  padding-left: 80px;
}
.connector-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--border), transparent);
}
/* Step visuals */
.port-illustration {
  display: flex;
  align-items: center;
  gap: 12px;
}
.port-socket {
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 6px;
  padding: 10px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.socket-pin {
  width: 8px;
  height: 14px;
  background: var(--fg-muted);
  border-radius: 2px;
  opacity: 0.3;
}
.dongle-plug {
  width: 36px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  opacity: 0.8;
}
.code-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.code-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.code-detail {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.severity-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 40px;
  margin-bottom: 8px;
}
.bar {
  flex: 1;
  height: var(--fill, 30%);
  background: rgba(240, 237, 232, 0.15);
  border-radius: 4px;
}
.bar.active { background: var(--accent); }
.severity-label {
  font-size: 11px;
  color: var(--fg-muted);
}
.parts-compare {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.part-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.part-row:last-child { border-bottom: none; }
.retailer { flex: 1; color: var(--fg-muted); }
.price { font-weight: 700; font-size: 14px; }
.tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.tag.best { background: rgba(34, 197, 94, 0.15); color: #22c55e; }

/* Features — 5-step icon row */
.features {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0A0A0A;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
}
.step-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 180px;
  gap: 12px;
}
.step-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #111827;
  border: 2px solid rgba(30, 144, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1E90FF;
}
.step-desc {
  font-size: 13px;
  color: #E0E0E0;
  line-height: 1.6;
  opacity: 0.7;
}
.step-arrow {
  font-size: 20px;
  color: #333;
  padding-top: 18px;
  flex-shrink: 0;
}

/* Legacy features grid (hidden — replaced by 5-step row) */
.features-grid { display: none; }

/* DIY section */
.diy-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.diy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.diy-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 72px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.diy-stat {
  flex: 1;
  padding: 40px 36px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.diy-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}
.diy-cta {
  max-width: 640px;
}
.diy-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  margin-bottom: 20px;
}
.diy-text p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Pricing */
.pricing-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pricing-card.pro {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #111318;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 40px;
  margin-bottom: 4px;
}
.card-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.card-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23F5A623' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Closing */
.closing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.closing-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.poster-showcase {
  margin-bottom: 56px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing p {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.app-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
}
.footer-links {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-legal {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ============================================
   APP MOCKUP SECTION
   ============================================ */
.app-mockup-section {
  padding: 80px 0;
  background: #0A0A0A;
  border-top: 1px solid var(--border);
}
.app-mockup-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Phone frame */
.mockup-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.phone-frame {
  width: 260px;
  background: #111827;
  border-radius: 40px;
  border: 2px solid #2a2a3e;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.phone-top-bar {
  background: #0d0d12;
  border-radius: 28px 28px 0 0;
  padding: 8px 16px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}
.phone-notch-bar {
  width: 80px;
  height: 20px;
  background: #0d0d12;
  border-radius: 0 0 14px 14px;
}
.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: #666;
  font-weight: 600;
}
.ph-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.ph-dot--green { background: #22c55e; box-shadow: 0 0 4px #22c55e; }
.ph-signal {
  width: 10px;
  height: 8px;
  background: linear-gradient(to right, #666 20%, transparent 20%, transparent 40%, #666 40%, #666 60%, transparent 60%, transparent 80%, #666 80%);
  opacity: 0.5;
  border-radius: 1px;
}
.phone-body {
  background: #0d0d12;
  border-radius: 24px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* App header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}
.app-header-logo {
  height: 20px;
  width: auto;
  object-fit: contain;
}
.app-header-icons {
  display: flex;
  gap: 8px;
}
.app-icon-btn {
  font-size: 12px;
  opacity: 0.5;
}

/* Check engine light card */
.app-ce-light {
  background: #1A1A2E;
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 12px;
  padding: 10px 12px;
}
.app-ce-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.app-ce-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.app-ce-badge--amber {
  background: rgba(245,166,35,0.15);
  color: #F5A623;
}
.app-ce-sev {
  font-size: 8px;
  color: #FFB300;
  font-weight: 600;
}
.app-code-display {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.app-code {
  font-family: var(--font-display);
  font-size: 20px;
  color: #F5A623;
}
.app-code-desc {
  font-size: 9px;
  color: #999;
  line-height: 1.3;
}

/* Parts list */
.app-parts-list {
  background: #1A1A2E;
  border-radius: 12px;
  overflow: hidden;
}
.app-parts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 9px;
  font-weight: 700;
  color: #E0E0E0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-parts-link { color: #1E90FF; font-weight: 500; }
.app-part-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 10px;
}
.app-part-row:last-child { border-bottom: none; }
.app-part-retailer {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  font-weight: 500;
}
.app-part-logo-placeholder {
  width: 18px;
  height: 18px;
  background: rgba(30,144,255,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #1E90FF;
}
.app-part-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.app-part-price {
  font-size: 11px;
  font-weight: 700;
  color: #E0E0E0;
}
.app-part-tag {
  font-size: 8px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: #999;
}
.app-part-tag--green {
  background: rgba(0,200,83,0.15);
  color: #00C853;
}

/* CTA */
.app-cta-row {
  padding: 0 4px;
}
.app-cta-btn {
  width: 100%;
  background: #1E90FF;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
}

/* DIY tutorial */
.app-tutorial {
  background: #1A1A2E;
  border-radius: 12px;
  padding: 10px 12px;
}
.app-tutorial-header {
  font-size: 9px;
  font-weight: 700;
  color: #E0E0E0;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.app-step {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.app-step:last-child { margin-bottom: 0; }
.app-step-num {
  width: 16px;
  height: 16px;
  background: rgba(245,166,35,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #F5A623;
  flex-shrink: 0;
}
.app-step-thumb {
  width: 28px;
  height: 20px;
  background: #0d0d12;
  border-radius: 4px;
  flex-shrink: 0;
}
.app-step-text {
  font-size: 9px;
  color: #aaa;
  line-height: 1.3;
}

/* Tab bar */
.app-tab-bar {
  display: flex;
  justify-content: space-around;
  padding: 6px 0 2px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.app-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  color: #555;
}
.app-tab--active { color: #1E90FF; }
.app-tab-icon { font-size: 12px; }

/* OBD device hand visual */
.obd-hand-visual {
  display: flex;
  justify-content: center;
  margin-top: -8px;
}
.obd-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.obd-device-body {
  width: 100px;
  height: 56px;
  background: #1A1A2E;
  border: 1px solid rgba(30,144,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.obd-device-label {
  font-family: var(--font-display);
  font-size: 11px;
  color: #1E90FF;
  letter-spacing: 0.1em;
}
.obd-device-cable {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, #2a2a3e, transparent);
  margin-top: 2px;
}
.obd-hand-text {
  font-family: var(--font-display);
  font-size: 13px;
  color: #F5A623;
  letter-spacing: 0.06em;
}

/* Testimonials col */
.testimonials-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonials-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.25;
  color: var(--fg);
  margin-top: 8px;
}
.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card {
  background: #1A1A2E;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 22px;
}
.testimonial-stars {
  font-size: 14px;
  color: #FFB300;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 12px;
}
.testimonial-author {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}

/* Savings callout */
.savings-callout {
  background: #0f1f0a;
  border: 1px solid rgba(0,200,83,0.3);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.savings-icon { margin-bottom: 8px; }
.savings-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00C853;
}
.savings-amount {
  font-family: var(--font-display);
  font-size: 44px;
  color: #00C853;
  line-height: 1;
}
.savings-sub {
  font-size: 13px;
  color: #6a9e60;
  margin-top: 4px;
}

/* Stats row */
.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mockup-stat {
  background: #1A1A2E;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.mockup-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: #F5A623;
  margin-bottom: 4px;
}
.mockup-stat-label {
  display: block;
  font-size: 10px;
  color: #666;
  line-height: 1.4;
}

/* ============================================
   BADGES SECTION
   ============================================ */
.badges-section {
  padding: 48px 0;
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.badges-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.badge-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 0;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  flex-shrink: 0;
}
.badge-icon { flex-shrink: 0; }
.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
  white-space: nowrap;
}
.badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .app-mockup-inner { grid-template-columns: 1fr; gap: 48px; }
  .mockup-col { align-items: center; }
  .badges-section .badge-bar { flex-direction: column; align-items: flex-start; }
  .badge-divider { display: none; }
  .badge-item { padding: 12px 0; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .step-number { font-size: 36px; }
  .step-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .diy-stat-row { flex-direction: column; }
  .diy-divider { width: 80px; height: 1px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero-code-demo { flex-direction: column; }
  .mockup-stats { grid-template-columns: 1fr; }
  .app-mockup-section { padding: 60px 0; }
}
