/* =========================================
   ResellerAI — Landing Page Styles v2
   Design System: Bold, vibrant, photo-rich
   Inspired by Designity.com — premium + playful
   ========================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & Variables ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --primary:       #2563EB;
  --primary-light: #3B82F6;
  --primary-dark:  #1D4ED8;
  --primary-bg:    #EFF6FF;

  /* NEW: Amber/Gold accent — the energy color */
  --amber:         #F59E0B;
  --amber-dark:    #D97706;
  --amber-light:   #FCD34D;
  --amber-bg:      #FFFBEB;
  --amber-pale:    #FEF3C7;

  /* NEW: Coral/Orange accent */
  --coral:         #F97316;
  --coral-bg:      #FFF7ED;

  /* NEW: Navy for dark sections */
  --navy:          #0F172A;
  --navy-mid:      #1E293B;
  --navy-light:    #334155;

  --teal:          #0D9488;
  --teal-light:    #14B8A6;
  --teal-bg:       #F0FDFA;

  --green:         #10B981;
  --green-bg:      #ECFDF5;
  --green-dark:    #059669;

  --purple:        #7C3AED;
  --purple-bg:     #F5F3FF;

  --red:           #EF4444;
  --red-bg:        #FEF2F2;

  /* Backgrounds */
  --bg:            #FFFFFF;
  --bg-soft:       #F8FAFC;
  --bg-card:       #FFFFFF;
  --bg-section:    #F1F5F9;

  /* Text */
  --text:          #0F172A;
  --text-muted:    #64748B;
  --text-dim:      #94A3B8;
  --text-white:    #FFFFFF;

  /* Borders & Surfaces */
  --border:        #E2E8F0;
  --border-2:      #CBD5E1;
  --surface:       #F8FAFC;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:        0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:     0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);

  /* Radius */
  --radius:        20px;
  --radius-sm:     12px;
  --radius-xs:     8px;
  --radius-full:   9999px;

  /* Layout */
  --max-w:         1200px;
  --transition:    0.2s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.hidden { display: none !important; }

.money { color: var(--green-dark); font-weight: 700; }
.warn  { color: var(--red); }

.gradient-text {
  background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(245,158,11,0); }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
}

.fade-in-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-loaded .fade-in-up {
  opacity: 0;
  transform: translateY(24px);
}
.js-loaded .fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.98);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.logo-icon { font-size: 22px; }
.logo-text { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-link.active {
  color: var(--primary);
  background: var(--primary-bg);
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.2px;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  box-shadow: 0 4px 18px rgba(245,158,11,0.4);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,158,11,0.5);
}
.btn-blue {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-blue:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(15,23,42,0.25);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.35);
}
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-arrow { font-size: 16px; transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }


/* ══════════════════════════════════════
   HERO SECTION — BOLD, IMAGE-DRIVEN
══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 100px 0 0;
  overflow: hidden;
  background: #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-pale);
  border: 2px solid var(--amber-light);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-dark);
  margin-bottom: 28px;
  animation: badgePulse 3s ease infinite;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-subtitle strong { color: var(--text); font-weight: 700; }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-dot {
  color: var(--border-2);
  font-size: 16px;
}

/* Hero Image Side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.hero-photo {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 480px;
  display: block;
  box-shadow: var(--shadow-xl);
}

/* Floating cards on hero image */
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  animation: float 5s ease-in-out infinite;
  white-space: nowrap;
  z-index: 3;
}
.hero-float-card.card-1 {
  top: 8%;
  left: -12%;
  animation-delay: 0s;
}
.hero-float-card.card-2 {
  bottom: 18%;
  left: -10%;
  animation-delay: 1.5s;
  background: var(--navy);
  color: #fff;
}
.hero-float-card.card-3 {
  top: 30%;
  right: -8%;
  animation-delay: 0.8s;
  background: var(--amber);
  color: var(--navy);
}

.float-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.float-text { display: flex; flex-direction: column; gap: 1px; }
.float-main { font-size: 14px; font-weight: 800; line-height: 1.2; }
.float-sub  { font-size: 11px; font-weight: 500; opacity: 0.75; }

/* Stats strip below hero */
.hero-stats-strip {
  background: var(--navy);
  padding: 32px 24px;
  position: relative;
  z-index: 2;
}
.hero-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -1.5px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-align: center;
}


/* ══════════════════════════════════════
   ACTIVITY TICKER
══════════════════════════════════════ */
.activity-ticker {
  background: var(--amber-pale);
  border-top: 2px solid var(--amber-light);
  border-bottom: 2px solid var(--amber-light);
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  font-size: 13px;
  color: var(--text-muted);
}
.ticker-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--amber-dark);
  background: var(--amber-light);
  border-radius: 4px;
  padding: 3px 10px;
  flex-shrink: 0;
}
.ticker-track { flex: 1; min-width: 0; overflow: hidden; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: ticker-slide-in 0.4s ease;
}
@keyframes ticker-slide-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ticker-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.ticker-dot--green  { background: var(--green); }
.ticker-dot--cyan   { background: var(--primary); }
.ticker-dot--yellow { background: var(--amber); }
.ticker-item strong { color: var(--text); font-weight: 800; }

@media (max-width: 600px) {
  .activity-ticker { font-size: 12px; padding: 10px 16px; }
}


/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
.section { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber-dark);
  background: var(--amber-pale);
  border: 2px solid var(--amber-light);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-label-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-bg);
  border: 2px solid rgba(37,99,235,0.2);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 400;
}
.section-subtitle strong { color: var(--text); font-weight: 700; }


/* ══════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════ */
.problem {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem .section-label,
.problem .section-title { text-align: center; display: block; }
.problem .section-title { margin-bottom: 48px; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.problem-card:hover {
  border-color: var(--amber-light);
  box-shadow: 0 8px 32px rgba(245,158,11,0.12);
  transform: translateY(-6px);
}
.problem-icon {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.problem-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.problem-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.problem-stat {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--amber-pale);
  border: 2px solid var(--amber-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.problem-stat .money {
  font-size: 16px;
  font-weight: 900;
  color: var(--amber-dark);
}


/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-it-works {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.how-it-works .section-label,
.how-it-works .section-title,
.how-it-works .section-subtitle {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 24px;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}
.step-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber-light), var(--amber));
  margin-top: 30px;
  flex-shrink: 0;
  border-radius: 2px;
}


/* ══════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════ */
.features { background: var(--bg); }
.features .section-label,
.features .section-title,
.features .section-subtitle {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.features .section-title { max-width: 700px; }

/* Feature alternating blocks with photos */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 0;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:first-of-type { padding-top: 0; }
.feature-block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-block.reverse .feature-content { order: 2; }
.feature-block.reverse .feature-visual  { order: 1; }

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--amber-dark);
  background: var(--amber-pale);
  border: 2px solid var(--amber-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.feature-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}
.check {
  color: var(--navy);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 12px;
  background: var(--amber);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.x {
  color: var(--text-dim);
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}
.coming-soon {
  color: var(--teal);
  font-style: italic;
  font-weight: 500;
}

/* Feature Visual — photo + mock card combo */
.feature-visual {
  position: relative;
}

.feature-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.feature-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(15,23,42,0.85) 0%, transparent 60%);
  padding: 24px 20px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.feature-photo-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fp-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -1px;
  line-height: 1;
}
.fp-label {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  line-height: 1.3;
}


/* ══════════════════════════════════════
   MOCK UI CARDS (Feature Visuals)
══════════════════════════════════════ */
.mock-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mock-dot.green  { background: var(--green); }
.mock-dot.cyan   { background: var(--primary); }
.mock-dot.purple { background: var(--purple); }
.mock-dot.amber  { background: var(--amber); }
.mock-title {
  font-weight: 800;
  color: var(--text);
  flex: 1;
  font-size: 13px;
}
.mock-time {
  font-size: 11px;
  color: var(--text-dim);
}
.mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card);
}
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.mock-label { color: var(--text-dim); font-weight: 500; }
.mock-value { color: var(--text); font-weight: 700; }
.mock-action { margin-top: 4px; }
.mock-btn {
  background: var(--amber-pale);
  border: 2px solid var(--amber-light);
  color: var(--amber-dark);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.mock-message {
  background: var(--green-bg);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* Chat mock */
.mock-chat {
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 10px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-chat.buyer {
  background: var(--bg-soft);
  color: var(--text-muted);
  border-radius: 10px 10px 10px 2px;
}
.mock-chat.ai {
  background: var(--amber-pale);
  border: 2px solid var(--amber-light);
  color: var(--text);
  border-radius: 10px 10px 2px 10px;
}
.chat-name {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-dim);
}
.mock-badge { text-align: right; }
.badge-ai {
  display: inline-block;
  background: var(--green-bg);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Pricing mock */
.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
}
.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.price-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.price-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
}
.price-arrow {
  font-size: 16px;
  color: var(--text-dim);
}
.price-suggestion {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--amber-pale);
  border: 2px solid var(--amber-light);
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}
.suggest-icon { font-size: 15px; }
.price-suggestion strong { color: var(--text); }
.price-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 6px;
}
.pstat-n {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
}
.pstat-l {
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
  font-weight: 600;
}

/* Sync mock */
.sync-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.sync-item.sold { opacity: 0.55; }
.sync-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sync-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.sync-platforms {
  font-size: 11px;
  color: var(--text-dim);
}
.sync-status {
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.sold-badge {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.2);
  text-decoration: line-through;
}
.active-badge {
  background: var(--green-bg);
  color: var(--green-dark);
  border: 1px solid rgba(16,185,129,0.25);
}
.sync-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--primary);
  padding: 6px 0;
  font-weight: 700;
}
.sync-icon { font-size: 14px; }
.sync-time {
  margin-left: auto;
  color: var(--green-dark);
  font-weight: 900;
}


/* ══════════════════════════════════════
   PROOF / STATS SECTION
   — amber background, bold numbers
══════════════════════════════════════ */
.proof {
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof .section-label,
.proof .section-title,
.proof .section-subtitle {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.proof .section-title { max-width: 680px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.stat-card {
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--amber);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.stat-number {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 8px;
  color: var(--amber);
  line-height: 1;
}
.stat-number.money { color: var(--amber); }
.stat-label {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.stat-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Testimonial with photo */
.testimonial-wrapper {
  max-width: 780px;
  margin: 0 auto 48px;
}
.testimonial {
  background: var(--amber-pale);
  border: 3px solid var(--amber-light);
  border-radius: var(--radius);
  padding: 40px;
  text-align: left;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--amber);
  box-shadow: 0 4px 16px rgba(245,158,11,0.25);
}
.testimonial-body {
  flex: 1;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 28px;
  font-size: 80px;
  color: rgba(245,158,11,0.2);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial footer {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.testimonial footer strong {
  color: var(--text);
  font-weight: 800;
}

/* Marketplace logos bar */
.marketplace-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0;
}
.marketplace-logos span {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  margin-right: 4px;
}
.marketplace-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.marketplace-badge:hover {
  border-color: var(--amber-light);
  color: var(--amber-dark);
  box-shadow: 0 4px 16px rgba(245,158,11,0.15);
  transform: translateY(-2px);
}
.marketplace-badge .logo-emoji { font-size: 18px; }


/* ══════════════════════════════════════
   COMPARISON TABLE SECTION
   — new section, clean formatting
══════════════════════════════════════ */
.comparison {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.comparison .section-label,
.comparison .section-title {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.comparison .section-title { margin-bottom: 48px; }

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.comparison-table th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.comparison-table th:first-child {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  text-align: left;
  width: 40%;
}
.comparison-table th.col-us {
  background: var(--amber);
  color: var(--navy);
  font-size: 15px;
}
.comparison-table th.col-them {
  background: #e2e8f0;
  color: var(--text-muted);
}
.comparison-table td {
  padding: 16px 24px;
  font-size: 15px;
  border-top: 1px solid rgba(0,0,0,0.06);
  vertical-align: middle;
}
.comparison-table td:first-child {
  font-weight: 700;
  color: var(--text);
  background: #fff;
  text-align: left;
}
.comparison-table td.col-us {
  background: #FFFBEB;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
}
.comparison-table td.col-them {
  background: #f8fafc;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}
.comparison-table tr:last-child td:first-child {
  border-radius: 0 0 0 var(--radius);
}
.comparison-table tr:last-child td:last-child {
  border-radius: 0 0 var(--radius) 0;
}
.comp-check { color: var(--green-dark); font-size: 18px; font-weight: 900; }
.comp-cross { color: var(--text-dim); font-size: 18px; }
.comp-partial { color: var(--amber-dark); font-size: 13px; font-weight: 700; }


/* ══════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════ */
.pricing {
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.pricing .section-label,
.pricing .section-title,
.pricing .section-subtitle {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}
.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  border-color: var(--amber-light);
  box-shadow: 0 8px 32px rgba(245,158,11,0.12);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.12), var(--shadow-lg);
  background: var(--amber-pale);
}
.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.18), var(--shadow-xl);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.plan-name {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.plan-price { margin-bottom: 8px; }
.price-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}
.price-period {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
}
.plan-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.pricing-card.featured .plan-description {
  border-bottom-color: var(--amber-light);
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}
.plan-features li.muted {
  color: var(--text-dim);
  font-weight: 400;
}

/* ROI Calculator */
.roi-calculator {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  color: #fff;
}
.roi-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.roi-icon { font-size: 40px; flex-shrink: 0; }
.roi-header h3 {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}
.roi-subhead {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.roi-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.roi-input-group label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.roi-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.roi-slider {
  -webkit-appearance: none;
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.25);
  transition: box-shadow var(--transition);
}
.roi-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(245,158,11,0.2);
}
.roi-slider-val {
  min-width: 56px;
  font-size: 20px;
  font-weight: 900;
  color: var(--amber);
  text-align: right;
}
.roi-output {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.roi-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
}
.roi-stat.featured {
  background: var(--amber);
  border-color: var(--amber);
}
.roi-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
}
.roi-stat.featured .roi-stat-label { color: var(--navy); opacity: 0.7; }
.roi-stat-value {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.roi-stat.featured .roi-stat-value { color: var(--navy); }
.roi-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-style: italic;
}


/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.faq {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.faq .section-label,
.faq .section-title {
  text-align: center;
  display: block;
}
.faq-grid {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 2px solid var(--border);
  background: #fff;
}
.faq-item:first-child {
  border-top: 2px solid var(--border);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.faq-item:last-child {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  transition: color var(--transition);
  letter-spacing: -0.2px;
}
.faq-q:hover { color: var(--amber-dark); }
.faq-q[aria-expanded="true"] { color: var(--amber-dark); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--amber);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--amber-dark);
}
.faq-a {
  display: none;
  padding: 0 24px 24px;
}
.faq-a.open { display: block; }
.faq-a p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.faq-a p + p { margin-top: 12px; }
.faq-a strong { color: var(--text); font-weight: 700; }

#faq { scroll-margin-top: 80px; }


/* ══════════════════════════════════════
   WAITLIST SECTION
   — dark navy, bold CTA like Designity
══════════════════════════════════════ */
.waitlist {
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.waitlist::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.waitlist-inner {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  z-index: 1;
}

.waitlist .section-label {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.4);
  color: var(--amber-light);
}
.waitlist .section-title {
  color: #fff;
}
.waitlist .section-title .gradient-text {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.waitlist .section-subtitle {
  color: rgba(255,255,255,0.7);
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.waitlist .section-subtitle strong {
  color: #fff;
}

.waitlist-perks {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  background: rgba(245,158,11,0.15);
  border: 2px solid rgba(245,158,11,0.35);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
}
.perk-icon { font-size: 18px; }

/* Waitlist Form */
.waitlist-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  text-align: left;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--amber-light);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.2px;
}
.label-optional {
  color: var(--text-dim);
  font-weight: 400;
}
.form-group input,
.form-group select {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.12);
}
.form-group input::placeholder {
  color: var(--text-dim);
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}
.field-error {
  display: block;
  font-size: 12px;
  color: var(--red);
  margin-top: 2px;
  min-height: 16px;
  font-weight: 600;
}
.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 64px 40px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--amber-light);
}
.success-icon { font-size: 56px; margin-bottom: 20px; }
.form-success h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.form-success p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}
.success-share {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.success-share a {
  color: var(--amber-dark);
  text-decoration: none;
  font-weight: 700;
}
.success-share a:hover { text-decoration: underline; }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .nav-logo .logo-text { color: var(--amber); }
.footer .nav-logo { color: #fff; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover {
  color: var(--amber);
  border-color: var(--amber-light);
  background: rgba(245,158,11,0.12);
  transform: translateY(-2px);
}
.footer-links-col h4 {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}
.footer-links-col ul a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-note { font-style: italic; }


/* ══════════════════════════════════════
   SCROLL TO TOP BUTTON
══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--amber);
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(245,158,11,0.45);
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--amber-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.55);
}


/* ══════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════ */
.lp-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  font-size: 14px;
  color: #fff;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  border-left: 4px solid var(--amber);
}
.lp-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ══════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(245,158,11,0.2);
  color: var(--text);
}

#features, #proof, #pricing, #waitlist, #problem, #faq, #comparison {
  scroll-margin-top: 80px;
}


/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .hero-float-card.card-1 { left: -4%; }
  .hero-float-card.card-2 { left: -4%; }
  .hero-float-card.card-3 { right: -4%; }

  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat { border-top: 1px solid rgba(255,255,255,0.08); }

  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-block.reverse .feature-content { order: 0; }
  .feature-block.reverse .feature-visual  { order: 0; }

  .problem-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row      { grid-template-columns: 1fr; }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--amber-light), var(--amber));
    margin-top: 0;
  }

  .testimonial {
    flex-direction: column;
    align-items: flex-start;
  }

  .comparison-table th, .comparison-table td { padding: 14px 16px; font-size: 13px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section   { padding: 72px 0; }

  .hero { padding: 90px 0 0; }
  .hero-inner { padding: 0 16px 48px; }
  .hero-headline { letter-spacing: -1.5px; }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-cta .btn { text-align: center; }
  .hero-photo { height: 300px; }
  .hero-float-card { display: none; }

  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-number { font-size: 28px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card  { padding: 24px 16px; }
  .stat-number { font-size: 32px; }

  .waitlist-form { padding: 28px 20px; }
  .waitlist-perks { gap: 10px; flex-direction: column; align-items: center; }
  .perk { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-tagline { max-width: 100%; }

  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 28px 20px; }
  .price-amount { font-size: 44px; }

  .section-title { letter-spacing: -1px; }

  .feature-block {
    padding: 56px 0;
    gap: 28px;
  }
  .feature-title { font-size: 26px; }
  .feature-desc  { font-size: 15px; }
  .feature-photo { height: 240px; }

  .mock-card {
    font-size: 12px;
    animation: none;
  }
  .mock-body { padding: 14px; gap: 8px; }
  .mock-header { padding: 12px 14px; }

  .testimonial { padding: 24px 20px; gap: 16px; }
  .testimonial p { font-size: 15px; }
  .testimonial::before { font-size: 56px; }
  .testimonial-avatar { width: 56px; height: 56px; }

  .problem-card { padding: 28px 20px; max-width: 100%; }
  .problem-grid { max-width: 100%; }

  .roi-calculator { padding: 28px 20px; }
  .roi-inputs { grid-template-columns: 1fr; }
  .roi-output { grid-template-columns: 1fr; }

  .faq-q { font-size: 15px; padding: 18px 16px; }
  .faq-a { padding: 0 16px 20px; }
  .faq-a p { font-size: 14px; }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .marketplace-logos { gap: 8px; }
  .section-label { font-size: 11px; }

  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 12px 10px; }
}

/* ══════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════ */
@media print {
  .nav, .scroll-top, .activity-ticker { display: none; }
  body { background: white; color: black; }
}

/* ══════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .mock-card { animation: none; }
  .hero-float-card { animation: none; }
}
