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

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

:root {
  --blue-900: #0c2340;
  --blue-800: #0f2d52;
  --blue-700: #1a3d6d;
  --blue-600: #1e5090;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --green-500: #10b981;
  --green-400: #34d399;
  --green-300: #6ee7b7;
  --red-400: #f87171;
  --orange-400: #fb923c;
  --yellow-400: #facc15;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --shadow-glow: 0 0 30px rgba(16,185,129,.25);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 640px; margin: 0 auto; padding: 0 20px; }

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--green-500), #059669);
  color: var(--white); font-family: var(--font);
  font-weight: 700; font-size: 1.05rem;
  padding: 16px 32px; border-radius: var(--radius-full);
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(16,185,129,.4);
  transition: var(--transition); position: relative; overflow: hidden;
  text-align: center; line-height: 1.3;
}
.cta-btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: .6s;
}
.cta-btn:hover::before { left: 100%; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(16,185,129,.5); }
.cta-btn:active { transform: translateY(0); }

.cta-btn--large { font-size: 1.1rem; padding: 18px 36px; width: 100%; }

.cta-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--gray-50) 0%, var(--white) 100%);
  color: var(--gray-900); padding: 60px 0 50px; position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,.12) 0%, transparent 70%);
  top: -100px; right: -100px; border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  bottom: -50px; left: -50px; border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3);
  color: var(--green-300); font-size: .8rem; font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 20px;
}
.hero__badge .dot { width: 6px; height: 6px; background: var(--green-400); border-radius: 50%; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title {
  font-size: clamp(1.7rem, 5vw, 2.4rem); font-weight: 800;
  line-height: 1.25; margin-bottom: 16px;
}
.hero__title .highlight { color: var(--green-500); }

.hero__subtitle {
  font-size: 1.05rem; color: var(--gray-600);
  line-height: 1.6; margin-bottom: 32px; max-width: 500px;
  margin-left: auto; margin-right: auto;
}

.hero__visual {
  margin: 32px auto 0; max-width: 800px; width: 100%; position: relative;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

/* ===== SECTION COMMON ===== */
.section { padding: 60px 0; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--gray-900); color: var(--white); }

.section__label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--blue-500); margin-bottom: 12px;
}
.section--dark .section__label { color: var(--green-400); }

.section__title {
  font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800;
  line-height: 1.3; margin-bottom: 16px;
}

.section__desc { color: var(--gray-500); font-size: .95rem; line-height: 1.7; margin-bottom: 28px; }
.section--dark .section__desc { color: rgba(255,255,255,.6); }

/* ===== MASALAH TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
.timeline__item {
  display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; position: relative;
}
.timeline__icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  position: relative; z-index: 1;
}
.timeline__item:not(:last-child)::after {
  content: ''; position: absolute; left: 21px; top: 56px; width: 2px;
  height: calc(100% - 44px); background: var(--gray-200);
}
.timeline__icon--green { background: rgba(16,185,129,.12); }
.timeline__icon--yellow { background: rgba(250,204,21,.12); }
.timeline__icon--orange { background: rgba(251,146,60,.12); }
.timeline__icon--red { background: rgba(248,113,113,.12); }

.timeline__content h4 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.timeline__content p { font-size: .85rem; color: var(--gray-500); }

.callout-box {
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(16,185,129,.06));
  border-left: 4px solid var(--blue-500);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 12px; font-size: .95rem; font-weight: 600; line-height: 1.5;
}

/* ===== KEBOCORAN CARDS ===== */
.leak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.leak-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 20px 16px; text-align: center;
  transition: var(--transition);
}
.leak-card:hover { border-color: var(--blue-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.leak-card__icon { font-size: 1.8rem; margin-bottom: 8px; }
.leak-card__title { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.leak-card__desc { font-size: .78rem; color: var(--gray-500); }

/* ===== SOLUSI ===== */
.benefit-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(16,185,129,.05); border: 1px solid rgba(16,185,129,.15);
  border-radius: var(--radius-sm); padding: 18px;
}
.benefit-item__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green-500), #059669);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.benefit-item__text h4 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.benefit-item__text p { font-size: .85rem; color: var(--gray-500); }

/* ===== CARA KERJA ===== */
.steps { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; counter-reset: step; }
.step {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px; counter-increment: step;
  transition: var(--transition);
}
.step:hover { border-color: var(--blue-400); box-shadow: var(--shadow-md); }
.step__number {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step__text h4 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.step__text p { font-size: .85rem; color: var(--gray-500); }

/* ===== COMPARISON ===== */
.compare-grid { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.compare-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; border-radius: var(--radius-sm);
}
.compare-item--fail {
  background: rgba(248,113,113,.06); border: 1px solid rgba(248,113,113,.2);
}
.compare-item--success {
  background: rgba(16,185,129,.06); border: 1px solid rgba(16,185,129,.2);
}
.compare-item__icon { font-size: 1.5rem; flex-shrink: 0; }
.compare-item__text h4 { font-size: .9rem; font-weight: 700; }
.compare-item__text p { font-size: .8rem; color: var(--gray-500); }

/* ===== PRICING ===== */
.pricing-card {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-800));
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  position: relative; overflow: hidden; color: var(--white);
  box-shadow: 0 20px 60px rgba(12,35,64,.4);
}
.pricing-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(16,185,129,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.pricing-badge {
  display: inline-block; background: linear-gradient(135deg, var(--orange-400), #ea580c);
  color: var(--white); font-size: .75rem; font-weight: 700;
  padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
  animation: badge-pulse 2s infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,146,60,.4); }
  50% { box-shadow: 0 0 0 8px rgba(251,146,60,0); }
}
.pricing-card__label {
  font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.pricing-card__title {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 20px;
}
.pricing-card__price {
  font-size: 3rem; font-weight: 800; line-height: 1;
  margin-bottom: 4px; position: relative; z-index: 1;
}
.pricing-card__price span { font-size: 1.2rem; font-weight: 600; }
.pricing-card__period {
  font-size: .85rem; color: var(--green-400); font-weight: 600; margin-bottom: 4px;
}
.pricing-card__after {
  font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 24px;
}
.pricing-card__after s { color: rgba(255,255,255,.3); }

.slot-indicator {
  background: rgba(255,255,255,.08); border-radius: var(--radius-sm);
  padding: 16px; margin: 20px 0;
}
.slot-indicator__label { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.slot-bar {
  height: 8px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden;
}
.slot-bar__fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  transition: width 1.5s ease-out;
}
.slot-indicator__text {
  font-size: .9rem; font-weight: 700; margin-top: 8px;
  color: var(--green-400);
}

/* ===== TESTIMONIAL ===== */
.testimonials { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px; transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-card__stars { color: var(--yellow-400); font-size: .9rem; margin-bottom: 10px; }
.testi-card__text { font-size: .9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.testi-card__author { display: flex; align-items: center; gap: 10px; }
.testi-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--green-500));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .8rem;
}
.testi-card__name { font-size: .85rem; font-weight: 700; }
.testi-card__role { font-size: .75rem; color: var(--gray-400); }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-800));
  color: var(--white); padding: 60px 0; text-align: center;
}
.final-cta__title {
  font-size: clamp(1.3rem, 4vw, 1.8rem); font-weight: 800;
  line-height: 1.3; margin-bottom: 12px;
}
.final-cta__desc { color: rgba(255,255,255,.6); margin-bottom: 28px; font-size: .95rem; }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--gray-200); padding: 12px 16px;
  transform: translateY(100%); transition: var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .cta-btn { width: 100%; font-size: .95rem; padding: 14px 24px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900); color: rgba(255,255,255,.4);
  text-align: center; padding: 24px 16px 80px; font-size: .8rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .container { max-width: 720px; padding: 0 32px; }
  .section { padding: 80px 0; }
  .hero { padding: 80px 0 60px; }
  .leak-grid { grid-template-columns: repeat(4, 1fr); }
  .footer { padding-bottom: 24px; }
  .sticky-cta { display: none; }
  .cocok-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== COCOK UNTUK KAMU ===== */
.cocok-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.cocok-card {
  background: var(--white); border-radius: 16px; padding: 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.05); border: 1px solid var(--gray-100);
}
.cocok-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.cocok-card__title { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.cocok-card__desc { color: var(--gray-500); font-size: .85rem; line-height: 1.5; }

/* ===== GARANSI & EARLY ADOPTER ===== */
.garansi-card {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 16px;
  padding: 24px; text-align: center; margin-bottom: 32px;
}
.garansi-card__icon { font-size: 2.5rem; margin-bottom: 12px; }
.garansi-card__title { font-weight: 700; font-size: 1.1rem; color: #166534; margin-bottom: 8px; }
.garansi-card__desc { color: #15803d; font-size: .9rem; line-height: 1.5; }

.section--early-adopter { padding: 40px 0; }
.early-adopter-card {
  background: #fefce8; border: 1px solid #fef08a; border-radius: 16px;
  padding: 32px; text-align: center;
}
.early-adopter__icon { font-size: 3rem; margin-bottom: 16px; }
.early-adopter__title { font-weight: 800; font-size: 1.3rem; color: #854d0e; margin-bottom: 12px; }
.early-adopter__desc { color: #a16207; font-size: .95rem; line-height: 1.6; max-width: 600px; margin: 0 auto; }

/* ===== COUNTDOWN TIMER ===== */
.countdown-timer {
  font-size: 1rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 16px;
}
.countdown-timer span {
  display: inline-block; background: rgba(0,0,0,.2); padding: 4px 10px; border-radius: 6px;
  letter-spacing: 2px; font-family: monospace; font-size: 1.2rem; color: var(--yellow-400);
}

/* ===== FLOATING WA ===== */
.floating-wa {
  position: fixed; bottom: 80px; right: 20px; z-index: 99;
  width: 60px; height: 60px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white;
  box-shadow: 0 4px 14px rgba(37,211,102,.4); transition: transform .3s ease;
}
.floating-wa:hover { transform: scale(1.1); }
.floating-wa svg { width: 32px; height: 32px; }
@media (min-width: 768px) { .floating-wa { bottom: 24px; right: 24px; } }

/* ===== LIVE NOTIF ===== */
.live-notif {
  position: fixed; bottom: 80px; left: 16px; z-index: 98;
  background: white; border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1); border: 1px solid var(--gray-200);
  transform: translateX(-150%); transition: transform .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.live-notif.show { transform: translateX(0); }
.live-notif__icon { font-size: 1.5rem; }
.live-notif__text { font-size: .85rem; font-weight: 700; color: var(--gray-800); margin-bottom: 2px; }
.live-notif__time { font-size: .75rem; color: var(--gray-400); }
@media (min-width: 768px) { .live-notif { bottom: 24px; } }

/* ===== EXIT POPUP ===== */
.exit-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 20px;
}
.exit-overlay.show { opacity: 1; pointer-events: auto; }
.exit-card {
  background: white; border-radius: 20px; padding: 32px 24px; text-align: center;
  max-width: 400px; width: 100%; transform: translateY(20px); transition: transform .3s ease;
}
.exit-overlay.show .exit-card { transform: translateY(0); }
.exit-card__title { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: var(--blue-900); }
.exit-card__desc { font-size: .95rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 24px; }
.exit-card__btn-main { width: 100%; margin-bottom: 16px; }
.exit-card__btn-close {
  background: none; border: none; font-size: .85rem; color: var(--gray-400); cursor: pointer;
  text-decoration: underline; padding: 8px; width: 100%;
}

/* ===== HERO TRUST BADGES ===== */
.hero__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-top: 16px; margin-bottom: 8px;
}
.hero__trust span {
  font-size: .82rem; color: var(--gray-500); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
}
.hero__trust .check { color: var(--green-500); font-weight: 700; }

/* ===== FITUR GRID (ADD 1) ===== */
.fitur-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px;
}
.fitur-card {
  background: var(--white); border-radius: 16px; padding: 24px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.05); border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.fitur-card:hover { border-color: var(--green-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fitur-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.fitur-card__title { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.fitur-card__desc { color: var(--gray-500); font-size: .85rem; line-height: 1.5; }

/* ===== PREVIEW MOCKUP (ADD 2) ===== */
.preview-section {
  background: linear-gradient(160deg, #0c1829 0%, #0f172a 40%, #162033 100%);
  padding: 70px 0 60px; position: relative; overflow: hidden;
}
.preview-section::before {
  content: ''; position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%);
  top: -80px; left: 50%; transform: translateX(-50%); border-radius: 50%;
}
.preview-section .section__label { color: var(--green-400); }
.preview-section .section__title { color: var(--white); }
.preview-section .section__desc { color: rgba(255,255,255,.5); }

.preview-phones {
  display: flex; gap: 28px; margin-top: 36px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 10px 20px 12px; position: relative; z-index: 1;
}
.preview-phones::before,
.preview-phones::after {
  content: ''; margin: auto;
}
.phone-mockup-wrap { scroll-snap-align: center; flex-shrink: 0; }
.phone-frame {
  width: 200px; position: relative;
  background: linear-gradient(160deg, #1a1a2e, #16213e);
  border-radius: 30px; padding: 8px;
  box-shadow: 0 25px 60px rgba(0,0,0,.5), 0 0 40px rgba(16,185,129,.08);
  border: 2px solid rgba(255,255,255,.08);
  transition: transform .4s ease, box-shadow .4s ease;
}
.phone-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0,0,0,.6), 0 0 50px rgba(16,185,129,.15);
}
.phone-notch {
  width: 60px; height: 6px; background: #0f172a; border-radius: 0 0 8px 8px;
  margin: 0 auto 0; position: relative; z-index: 2;
}
.phone-screen {
  width: 100%; aspect-ratio: 9/19; border-radius: 22px; overflow: hidden;
  position: relative;
}
.phone-screen--dark {
  background: #0f172a; display: flex; flex-direction: column;
  font-family: var(--font); color: white;
  box-sizing: border-box; overflow: hidden;
}
.phone-screen--dark * {
  box-sizing: border-box;
}
.phone-caption {
  text-align: center; margin-top: 14px; font-size: .88rem;
  font-weight: 700; color: rgba(255,255,255,.8);
}

/* Mock UI Components */
.mock-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 8px 4px; font-size: .4rem;
}
.mock-hamburger { font-size: .5rem; color: rgba(255,255,255,.5); }
.mock-title-sm { font-size: .42rem; font-weight: 700; color: white; }
.mock-badge-green {
  font-size: .3rem; font-weight: 700; background: rgba(16,185,129,.2);
  color: #34d399; padding: 2px 4px; border-radius: 4px;
}
.mock-subtitle {
  font-size: .3rem; color: rgba(255,255,255,.4); padding: 0 8px 4px;
}
.mock-score-ring {
  display: flex; justify-content: center; padding: 4px 0;
}
.mock-score-ring svg { width: 64px; height: 64px; }
.mock-metrics { padding: 2px 8px; display: flex; flex-direction: column; gap: 2px; }
.mock-metric {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .32rem; padding: 3px 6px; background: rgba(255,255,255,.04);
  border-radius: 4px;
}
.mock-val { font-weight: 700; color: white; font-size: .32rem; }

/* Mock tabs & cards */
.mock-tabs {
  display: flex; gap: 4px; padding: 4px 8px; justify-content: center;
}
.mock-tab {
  font-size: .3rem; padding: 3px 6px; border-radius: 8px;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.5);
}
.mock-tab--active { background: rgba(16,185,129,.15); color: #34d399; }
.mock-tab-badge {
  font-size: .25rem; background: #10b981; color: white;
  padding: 1px 3px; border-radius: 4px; margin-left: 2px;
}
.mock-tab-badge--gray { background: rgba(255,255,255,.2); }
.mock-card-row {
  display: flex; gap: 4px; padding: 4px 8px;
}
.mock-dark-card {
  flex: 1; background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(37,99,235,.08));
  border: 1px solid rgba(255,255,255,.06); border-radius: 6px; padding: 5px;
}
.mock-dark-card__label { font-size: .22rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .2px; }
.mock-dark-card__amount { font-size: .4rem; font-weight: 800; color: white; margin: 2px 0 1px; }
.mock-dark-card__sub { font-size: .2rem; color: rgba(255,255,255,.3); }

/* Mock filters & pills */
.mock-filters, .mock-period-pills {
  display: flex; flex-wrap: wrap; gap: 3px; padding: 4px 8px;
}
.mock-pill {
  font-size: .28rem; padding: 2px 5px; border-radius: 6px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.08);
}
.mock-pill--active { background: rgba(255,255,255,.12); color: white; border-color: rgba(255,255,255,.15); }
.mock-pill--green { background: rgba(16,185,129,.3); color: #34d399; border-color: rgba(16,185,129,.4); }
.mock-list-empty {
  font-size: .28rem; color: rgba(255,255,255,.3); padding: 4px 8px;
  text-align: center;
}
.mock-fab {
  position: absolute; bottom: 25px; right: 10px;
  width: 18px; height: 18px; background: #10b981; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .45rem; font-weight: 700; color: white;
  box-shadow: 0 3px 8px rgba(16,185,129,.4);
}

/* Mock selects & buttons */
.mock-select {
  font-size: .3rem; padding: 4px 8px; margin: 2px 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px; color: white;
}
.mock-btn-green {
  margin: 4px 8px; padding: 4px; text-align: center;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 6px; font-size: .34rem; font-weight: 700; color: white;
}
.mock-summary-card {
  display: flex; align-items: center; gap: 6px; padding: 4px 8px;
  margin: 3px 8px; background: rgba(255,255,255,.04);
  border-radius: 6px;
}
.mock-summary-icon { font-size: .45rem; }
.mock-summary-amount { font-size: .36rem; font-weight: 800; }
.mock-summary-amount--green { color: #34d399; }
.mock-summary-amount--red { color: #fb923c; }
.mock-summary-label { font-size: .24rem; color: rgba(255,255,255,.4); }

/* Mock navbar */
.mock-navbar {
  margin-top: auto; display: flex; justify-content: space-around;
  padding: 4px 2px 6px; background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.05);
}
.mock-nav-item {
  display: flex; flex-direction: column; align-items: center;
  font-size: .3rem; color: rgba(255,255,255,.35); gap: 1px;
}
.mock-nav-item small { font-size: .2rem; }
.mock-nav-active { color: #34d399; }

/* ===== BONUS FOUNDERS (ADD 3) ===== */
.bonus-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 28px;
}
.bonus-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 24px; text-align: center; transition: var(--transition);
}
.bonus-card:hover { border-color: var(--green-400); box-shadow: var(--shadow-md); }
.bonus-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.bonus-card__title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.bonus-card__value { font-size: .85rem; margin-bottom: 8px; }
.bonus-card__value s { color: var(--gray-400); }
.bonus-card__value .free { color: var(--green-500); font-weight: 700; }
.bonus-card__desc { color: var(--gray-500); font-size: .82rem; line-height: 1.5; }
.bonus-highlight {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 16px;
  padding: 24px; text-align: center; margin-top: 24px; line-height: 1.8;
}
.bonus-highlight__total { font-size: 1rem; color: var(--gray-600); }
.bonus-highlight__total s { color: var(--gray-400); }
.bonus-highlight__price { font-size: 1.3rem; font-weight: 800; color: var(--green-500); }
.bonus-highlight__save { font-size: .9rem; color: #166534; font-weight: 600; }

/* ===== FAQ ACCORDION (ADD 4) ===== */
.faq-list { margin-top: 28px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; background: none; border: none; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font); font-size: .95rem;
  font-weight: 700; color: var(--gray-800); text-align: left; gap: 12px;
}
.faq-question:hover { color: var(--green-500); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; font-weight: 700;
  color: var(--gray-500); transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--green-500); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
}
.faq-answer__inner {
  padding: 0 0 18px; font-size: .88rem; color: var(--gray-600); line-height: 1.7;
}

/* ===== PRICING FIX 2 ===== */
.pricing-card__now {
  font-size: 1.05rem; font-weight: 700; color: var(--green-400); margin: 12px 0 8px;
}
.pricing-card__checklist {
  list-style: none; padding: 0; margin: 0 0 12px; text-align: left;
  display: inline-block;
}
.pricing-card__checklist li {
  font-size: .82rem; color: rgba(255,255,255,.6); padding: 2px 0;
}
.pricing-card__checklist li .ck { color: var(--green-400); margin-right: 4px; }
.pricing-card__versus {
  font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 8px;
}
.pricing-card__versus s { color: rgba(255,255,255,.3); }
.pricing-card__save-badge {
  display: inline-block; background: #dc2626; color: var(--white);
  font-size: .75rem; font-weight: 700; padding: 5px 14px;
  border-radius: var(--radius-full); margin-bottom: 16px;
}
.pricing-card__adopter {
  font-size: .82rem; color: rgba(255,255,255,.5); text-align: center;
  margin-top: 12px; line-height: 1.6;
}

/* ===== UPDATED STICKY CTA (ADD 5) ===== */
.sticky-cta-v2 {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(135deg, var(--green-500), #059669);
  padding: 0; height: 64px; display: flex; align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sticky-cta-v2.visible { transform: translateY(0); }
.sticky-cta-v2__link {
  flex: 1; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
  text-decoration: none; height: 100%; gap: 6px;
}
.sticky-cta-v2__close {
  position: absolute; top: 4px; right: 8px;
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 1.2rem; cursor: pointer; padding: 4px 8px; line-height: 1;
}
.sticky-cta-v2__close:hover { color: var(--white); }

/* ===== UPDATED EXIT POPUP (ADD 6) ===== */
.exit-v2-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 20px;
}
.exit-v2-overlay.show { opacity: 1; pointer-events: auto; }
.exit-v2-card {
  background: white; border-radius: 20px; padding: 36px 28px; text-align: center;
  max-width: 480px; width: 100%; transform: translateY(20px); transition: transform .3s ease;
  position: relative;
}
.exit-v2-overlay.show .exit-v2-card { transform: translateY(0); }
.exit-v2-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  font-size: 1.5rem; color: var(--gray-400); cursor: pointer; line-height: 1;
}
.exit-v2-close:hover { color: var(--gray-700); }
.exit-v2__headline { font-size: 1.5rem; font-weight: 800; color: var(--blue-900); margin-bottom: 8px; }
.exit-v2__subheadline { font-size: 1rem; color: var(--gray-700); font-weight: 600; margin-bottom: 16px; }
.exit-v2__body { font-size: .9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; }
.exit-v2__form { display: flex; gap: 8px; margin-bottom: 12px; }
.exit-v2__input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--gray-300); border-radius: var(--radius-full);
  font-family: var(--font); font-size: .9rem; outline: none; transition: border-color .2s;
}
.exit-v2__input:focus { border-color: var(--green-500); }
.exit-v2__submit {
  padding: 12px 20px; background: linear-gradient(135deg, var(--green-500), #059669);
  color: var(--white); border: none; border-radius: var(--radius-full);
  font-family: var(--font); font-weight: 700; font-size: .85rem; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.exit-v2__submit:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(16,185,129,.4); }
.exit-v2__footer { font-size: .75rem; color: var(--gray-400); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 767px) {
  .preview-phones { gap: 20px; justify-content: flex-start; padding: 10px 20px 8px; }
  .phone-frame { width: 175px; }
  .phone-mockup-wrap { flex-shrink: 0; }
  .exit-v2__form { flex-direction: column; }
  .exit-v2-overlay { display: none !important; }
}
@media (min-width: 768px) {
  .fitur-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .phone-frame { width: 220px; }
  .preview-phones { gap: 32px; }
  .sticky-cta-v2 { display: none !important; }
  .sticky-cta { display: none; }
}
