/* ===== CSS VARIABLES ===== */
:root {
  --p: #7c3aed;
  --p2: #6d28d9;
  --p3: #a78bfa;
  --p4: #c4b5fd;
  --p-light: #ede9fe;
  --grad: linear-gradient(135deg, #5b21b6, #7c3aed, #a855f7);
  --hero-bg: linear-gradient(160deg, #3b0f8c 0%, #5b21b6 35%, #7c3aed 70%, #8b5cf6 100%);
  --dark: #0f0a1e;
  --text: #1e1040;
  --muted: #6b7280;
  --bg: #f5f3ff;
  --white: #fff;
  --border: #e5e7eb;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--sans); background: var(--white); color: var(--text); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.page-inner { max-width: 1200px; margin: 0 auto; width: 100%; }

/* ===== NAVBAR ===== */
.nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; }
.logo-text { font-size: 18px; font-weight: 900; color: var(--text); }
.logo-text span { color: var(--p); }
.nav-menu { display: flex; gap: 32px; }
.nav-link { font-size: 13px; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--p); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-lang {
  font-size: 12px; color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 13px; border-radius: 20px; cursor: pointer;
}
.nav-login { font-size: 13px; color: var(--p); font-weight: 700; cursor: pointer; }
.nav-cta {
  background: var(--grad); color: #fff; border: none;
  padding: 10px 24px; border-radius: 24px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: var(--sans);
}
.mobile-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); }

/* ===== HERO ===== */
.hero {
  background: var(--hero-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 0;
  position: relative;
  overflow: hidden;
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-1 { top: -120px; right: -80px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(167,139,250,.25), transparent 70%); }
.hero-glow-2 { bottom: 200px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(99,102,241,.2), transparent 70%); }
.hero-glow-3 { top: 30%; left: 30%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(167,139,250,.15), transparent 70%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 14px; font-weight: 600;
  padding: 8px 22px; border-radius: 32px; margin-bottom: 36px;
}
.badge-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; }
.hero h1 {
  font-size: 80px; font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px;
}
.grad-text {
  background: linear-gradient(135deg, #c4b5fd 0%, #818cf8 40%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px; color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 44px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; margin-bottom: 16px; }
.hbtn-primary {
  background: rgba(20,10,50,.6); color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 15px 36px; border-radius: 36px;
  font-size: 15px; font-weight: 800; cursor: pointer;
  font-family: var(--sans); backdrop-filter: blur(8px);
}
.hbtn-secondary {
  background: rgba(20,10,50,.4); color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.15);
  padding: 15px 36px; border-radius: 36px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: var(--sans); backdrop-filter: blur(8px);
}
.hero-note { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 56px; }

/* ===== DASHBOARD MOCKUP ===== */
.dash-wrap {
  position: relative; z-index: 2;
  width: 100%; max-width: 1000px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.dash-topbar {
  background: rgba(0,0,0,.25);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
}
.dash-dot { width: 12px; height: 12px; border-radius: 50%; }
.dash-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.dash-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.dash-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 18px;
}
.dc-label { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.dc-num { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.dc-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 12px; }
.dc-green { background: rgba(74,222,128,.15); color: #4ade80; }
.dc-amber { background: rgba(251,191,36,.15); color: #fbbf24; }
.dash-chart {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 16px;
}
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; }
.bar {
  background: linear-gradient(to top, rgba(124,58,237,.5), rgba(167,139,250,.8));
  border-radius: 6px 6px 0 0; flex: 1;
}

/* ===== TRUSTED ===== */
.trusted {
  padding: 40px; text-align: center;
  background: #fff; border-bottom: 1px solid var(--border);
}
.trusted-label {
  font-size: 11px; font-weight: 700; color: var(--muted);
  letter-spacing: 3px; margin-bottom: 24px;
}
.trusted-states { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.trusted-states span { font-size: 17px; font-weight: 700; color: #d1c4f7; }

/* ===== STATS ===== */
.stats-wrapper {
  background: #fff; border-bottom: 1px solid var(--border);
}
.stats-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 42px; font-weight: 900; color: var(--p); line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.4; }
.scroll-indicator { display: flex; justify-content: center; padding: 24px 0; background: #fff; }
.scroll-circle {
  width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.scroll-circle svg { width: 18px; height: 18px; }

/* ===== PAIN POINTS ===== */
.pain-section { padding: 80px 40px; background: var(--bg); }
.pain-tag { background: #fee2e2; color: #ef4444; border: 1px solid #fecaca; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pain-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.05); }
.pain-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: #fff1f2; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; border: 1px solid #ffe4e6;
}
.pain-card h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.pain-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== ONE THING ===== */
.one-thing-section { padding: 120px 40px; background: #fff; text-align: center; }
.one-thing-content { max-width: 720px; margin: 0 auto; position: relative; }
.one-thing-content h2 { font-size: 32px; font-weight: 800; color: var(--text); line-height: 1.3; }
.huge-text { 
  font-size: 120px; font-weight: 900; 
  background: linear-gradient(135deg, var(--p), #6366f1, #38bdf8); 
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; 
  line-height: 1; letter-spacing: -4px; margin: 12px 0 24px; position: relative; z-index: 2;
}
.one-thing-content p { font-size: 18px; color: var(--muted); line-height: 1.7; font-weight: 500; }

/* ===== MONTHLY STRIP ===== */
.monthly-wrapper {
  background: var(--p2);
  padding: 18px 40px;
}
.monthly-strip {
  display: flex; align-items: center; gap: 16px;
}
.monthly-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 5px 16px; border-radius: 20px; letter-spacing: 1px;
  white-space: nowrap;
}
.monthly-strip p { font-size: 14px; color: rgba(255,255,255,.7); }

/* ===== SERVICE SECTIONS ===== */
.service-section { padding: 80px 40px; background: #fff; }
.service-section.service-alt { background: var(--bg); }
.service-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.service-reverse { direction: rtl; }
.service-reverse > * { direction: ltr; }
.service-num { font-size: 11px; font-weight: 800; color: var(--p3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.service-content h2 { font-size: 34px; font-weight: 900; color: var(--text); line-height: 1.2; margin-bottom: 14px; }
.service-content p { font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 22px; }
.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted);
  padding: 9px 0; border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.check-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--p-light); color: var(--p);
  font-size: 11px; font-weight: 900; flex-shrink: 0;
  margin-top: 1px;
}
.check-icon::after { content: '✓'; }
.service-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #fff; border: none;
  padding: 13px 28px; border-radius: 28px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: var(--sans);
}

/* IG MOCK */
.ig-mock {
  background: linear-gradient(135deg, #f5f3ff, #fce7f3);
  border-radius: 20px; padding: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.ig-card { background: #fff; border-radius: 14px; padding: 16px; border: 1px solid var(--border); }
.ig-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ig-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 12px; font-weight: 800;
}
.ig-name { font-size: 13px; font-weight: 700; color: var(--text); }
.ig-handle { font-size: 11px; color: var(--muted); }
.ig-img-placeholder {
  height: 130px; border-radius: 10px;
  background: linear-gradient(135deg, #ddd6fe, #fce7f3);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: 2px; color: var(--p); font-weight: 700;
}
.ig-stats { display: flex; gap: 14px; }
.ig-stats span { font-size: 11px; color: var(--muted); }
.ig-stats strong { color: var(--text); font-weight: 700; }
.ig-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ig-mini-card {
  background: #fff; border-radius: 12px; padding: 14px;
  border: 1px solid var(--border); text-align: center;
}
.ig-mini-num { font-size: 20px; font-weight: 800; color: var(--p); }
.ig-mini-label { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ADS VISUAL */
.ads-visual {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 16px;
}
.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.platform-card {
  background: #f8fafc; border: none;
  border-radius: 14px; padding: 20px 12px; text-align: center;
}
.platform-icon {
  width: 44px; height: 44px; border-radius: 12px;
  margin: 0 auto 12px; display: flex;
  align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900;
}
.p-fb { background: #1877f2; color: #fff; }
.p-gg { background: #fff; border: 1px solid #ddd; color: #4285f4; }
.p-tk { background: #000; color: #fff; }
.platform-name { font-size: 12px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.platform-desc { font-size: 10px; color: var(--muted); line-height: 1.5; }
.roas-bar {
  background: var(--grad); border-radius: 16px;
  padding: 28px 24px; margin-top: 4px;
  display: grid; grid-template-columns: repeat(3,1fr);
  align-items: center;
}
.roas-item { text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.roas-item:last-child { border-right: none; }
.roas-num { font-size: 28px; font-weight: 900; color: #fff; }
.roas-label { font-size: 10px; color: rgba(255,255,255,.5); margin-top: 3px; }

/* GOOGLE GRID */
.google-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.google-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.google-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.google-icon svg { width: 18px; height: 18px; }
.google-card h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.google-card p { font-size: 11px; color: var(--muted); line-height: 1.6; }

/* GO GRID */
.go-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.go-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 20px;
  position: relative; overflow: hidden;
}
.go-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--grad);
}
.go-num { font-size: 10px; font-weight: 800; color: var(--p3); letter-spacing: 1.5px; margin-bottom: 8px; }
.go-card h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.go-card p { font-size: 11px; color: var(--muted); line-height: 1.6; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--p-light); color: var(--p);
  font-size: 11px; font-weight: 700; padding: 6px 18px;
  border-radius: 20px; margin-bottom: 16px; letter-spacing: .5px;
}
.section-header h2 { font-size: 48px; font-weight: 900; color: var(--text); margin-bottom: 12px; line-height: 1.1; letter-spacing: -.5px; }
.section-header p { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 80px 40px; background: var(--bg); }
.how-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  position: relative; max-width: 1200px; margin: 0 auto;
}
.how-steps::before {
  content: ''; position: absolute; top: 36px;
  left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--p), var(--p3)); z-index: 0;
}
.how-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad); color: #fff;
  font-size: 24px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.how-step h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.how-step p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-section { padding: 80px 40px; background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.price-card { border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; position: relative; background: #fff; }
.price-card-featured { border-color: var(--p); background: linear-gradient(135deg, #faf5ff, #f3e8ff); }
.price-popular {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 12px; font-weight: 700;
  padding: 5px 20px; border-radius: 20px; white-space: nowrap;
}
.price-plan { font-size: 12px; font-weight: 800; color: var(--muted); letter-spacing: 2px; margin-bottom: 10px; }
.price-amount { font-size: 52px; font-weight: 900; color: var(--text); line-height: 1; }
.price-amount span { font-size: 18px; color: var(--muted); font-weight: 500; }
.price-desc { font-size: 13px; color: var(--muted); margin: 8px 0 22px; line-height: 1.4; }
.price-btn {
  width: 100%; padding: 14px; border-radius: 28px;
  font-size: 14px; font-weight: 800; cursor: pointer;
  margin-bottom: 24px; font-family: var(--sans);
}
.price-btn-outline { background: transparent; color: var(--p); border: 2px solid var(--p); }
.price-btn-fill { background: var(--p); color: #fff; border: 2px solid var(--p); }
.price-features { list-style: none; }
.price-features li {
  font-size: 13px; color: var(--muted);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.price-features li:last-child { border-bottom: none; }

/* ===== TESTIMONIALS ===== */
.testi-section { padding: 80px 40px; background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px; }
.testi-stars { color: #f59e0b; font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-card p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.av-1 { background: var(--grad); }
.av-2 { background: linear-gradient(135deg, #ec4899, #f97316); }
.av-3 { background: linear-gradient(135deg, #06b6d4, #7c3aed); }
.testi-name { font-size: 14px; font-weight: 800; color: var(--text); }
.testi-loc { font-size: 12px; color: var(--muted); }

/* ===== AUTO SOCIAL ===== */
.auto-section { background: var(--dark); padding: 80px 40px; position: relative; overflow: hidden; }
.auto-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.auto-glow-1 { top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(167,139,250,.2), transparent 70%); }
.auto-glow-2 { bottom: -60px; left: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(6,182,212,.12), transparent 70%); }
.auto-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.auto-header { text-align: center; margin-bottom: 52px; }
.auto-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,181,253,.1); border: 1px solid rgba(196,181,253,.2);
  color: var(--p4); font-size: 11px; font-weight: 700;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 16px;
}
.auto-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.auto-header h2 { font-size: 40px; font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.auto-header h2 span {
  background: linear-gradient(135deg, #c4b5fd, #67e8f9);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.auto-header p { font-size: 15px; color: rgba(255,255,255,.45); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.auto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.auto-price-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 28px; margin-bottom: 24px;
}
.apb-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.apb-label { font-size: 12px; color: rgba(255,255,255,.4); }
.apb-price { font-size: 32px; font-weight: 900; color: #fff; }
.apb-monthly {
  font-size: 26px; font-weight: 900;
  background: linear-gradient(135deg, #c4b5fd, #67e8f9);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.apb-sub { font-size: 12px; color: rgba(255,255,255,.35); }
.apb-divider { height: 1px; background: rgba(255,255,255,.07); margin: 14px 0; }
.auto-btn {
  background: var(--grad); color: #fff; border: none;
  padding: 14px 30px; border-radius: 28px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--sans); display: inline-flex;
  align-items: center; gap: 8px; margin-bottom: 24px;
}
.auto-feature-list { list-style: none; }
.auto-feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.5);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.auto-feature-list li:last-child { border-bottom: none; }
.auto-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(196,181,253,.1); color: var(--p4);
  font-size: 11px; flex-shrink: 0;
}
.auto-check::after { content: '✓'; }
.auto-flow-box {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 28px; margin-bottom: 16px;
}
.auto-flow-box h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.auto-flow-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.auto-flow-step:last-child { margin-bottom: 0; }
.flow-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad); display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.auto-flow-step strong { font-size: 13px; color: #fff; display: block; margin-bottom: 3px; }
.auto-flow-step p { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.5; }
.auto-mini-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.auto-mini-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 16px; text-align: center;
}
.auto-mini-card h5 { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.auto-mini-card p { font-size: 10px; color: rgba(255,255,255,.35); line-height: 1.5; }

/* ===== CTA ===== */
.cta-section {
  background: var(--hero-bg); padding: 80px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-glow-1 { top: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(167,139,250,.3), transparent 70%); }
.cta-glow-2 { bottom: -40px; left: -40px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(6,182,212,.2), transparent 70%); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 44px; font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.cta-content h2 span {
  background: linear-gradient(135deg, #c4b5fd, #67e8f9);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-content p { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; }
.cta-btn-primary {
  background: rgba(20,10,50,.6); color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 14px 36px; border-radius: 32px;
  font-size: 14px; font-weight: 800; cursor: pointer;
  font-family: var(--sans); backdrop-filter: blur(8px);
}
.cta-btn-secondary {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 14px 36px; border-radius: 32px;
  font-size: 14px; font-weight: 600; cursor: pointer;
}
.cta-note { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 16px; }

/* ===== CONTACT FORM ===== */
.contact-section { padding: 100px 40px; background: #fff; border-top: 1px solid var(--border); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; }
.contact-text h2 { font-size: 36px; font-weight: 800; color: var(--text); margin: 16px 0; line-height: 1.2; }
.contact-text p { font-size: 16px; color: var(--muted); line-height: 1.8; }
.contact-form-box { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.06); border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-group input { width: 100%; padding: 14px 16px; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 14px; outline: none; transition: all 0.3s ease; font-family: var(--sans); }
.form-group input:focus { border-color: var(--p); box-shadow: 0 0 0 4px rgba(124,58,237,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== VIDEO MODAL ===== */
.video-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(4px); cursor: pointer; }
.modal-content { position: relative; width: 100%; max-width: 900px; z-index: 2; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); background: #000; animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.iframe-container { position: relative; padding-bottom: 56.25%; height: 0; }
.iframe-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.modal-close { position: absolute; top: -40px; right: 0; background: transparent; border: none; color: #fff; font-size: 28px; cursor: pointer; opacity: 0.7; transition: opacity 0.3s; z-index: 3; }
.modal-close:hover { opacity: 1; }
@keyframes modalPop { 0% { opacity: 0; transform: scale(0.95) translateY(20px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 56px 40px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-size: 16px; font-weight: 900; color: #fff;
}
.footer-brand p { font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.9; }
.footer h4 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer a { display: block; font-size: 13px; color: rgba(255,255,255,.3); line-height: 2.6; }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-reverse { direction: ltr; }
  .dash-cards { grid-template-columns: repeat(2,1fr); }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .auto-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .how-steps::before { display: none; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 20px 40px; border-bottom: 1px solid var(--border); gap: 16px; z-index: 999; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-close { top: -36px; right: 0; font-size: 24px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .one-thing-section { padding: 80px 40px; }
  .huge-text { font-size: 72px; letter-spacing: -2px; }
  .trusted-states { gap: 24px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .google-grid, .go-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
