/* =============================================
   ROOT & RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:          #080C14;
    --bg-card:     rgba(255,255,255,0.03);
    --bg-hover:    rgba(255,255,255,0.06);
    --border:      rgba(255,255,255,0.08);
    --border-gold: rgba(212,160,23,0.35);
    --gold:        #D4A017;
    --gold-l:      #F5C518;
    --gold-dim:    rgba(212,160,23,0.12);
    --white:       #FFFFFF;
    --muted:       #6B7280;
    --muted-l:     #9CA3AF;
    --wa:          #25D366;
    --r:           16px;
    --r-lg:        24px;
    --ease:        cubic-bezier(0.4,0,0.2,1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* =============================================
   TYPOGRAPHY UTILS
============================================= */
.gradient-text {
    background: linear-gradient(135deg, #fff 20%, var(--gold-l) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   LAYOUT
============================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.section { padding: 100px 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* =============================================
   SECTION HEADERS
============================================= */
.eyebrow-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header { margin-bottom: 60px; }

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted-l);
    max-width: 540px;
    line-height: 1.75;
}

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

@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.25; }
}
@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

/* =============================================
   BUTTONS
============================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-primary:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212,160,23,0.38);
}
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.btn-ghost:hover {
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: padding 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.navbar.scrolled {
    background: rgba(8,12,20,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--white);
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
    color: var(--muted-l);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
    background: var(--gold) !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.83rem !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
    background: var(--gold-l) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212,160,23,0.3);
}

.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--white); padding: 4px; }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed; inset: 0;
    background: rgba(8,12,20,0.97);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.mobile-close {
    position: absolute; top: 28px; right: 28px;
    background: none; border: none;
    color: var(--white); cursor: pointer;
}

/* =============================================
   HERO
============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 90px;
    overflow: hidden;
}

/* Dot grid background */
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
}

/* Gold radial glow */
.hero-glow {
    position: absolute;
    top: -10%; right: -5%;
    width: 60%; height: 70%;
    background: radial-gradient(ellipse, rgba(212,160,23,0.09) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 26px;
}
.eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.6rem);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted-l);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.trust-item {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

/* Phone mockup */
.phone-wrap { position: relative; display: flex; justify-content: center; }

.phone-frame {
    width: 290px;
    background: #1C1C1E;
    border-radius: 42px;
    border: 2px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone-notch {
    background: #000;
    height: 26px;
    display: flex; align-items: center; justify-content: center;
}
.phone-pill { width: 90px; height: 7px; background: #1C1C1E; border-radius: 4px; }

.wa-header {
    background: #1A1F2E;
    padding: 11px 14px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wa-avatar {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--gold), #7C3AED);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.wa-name { font-size: 0.82rem; font-weight: 600; }
.wa-status { font-size: 0.67rem; color: var(--wa); }

.wa-body {
    background: #0B141A;
    padding: 14px 11px;
    min-height: 370px;
    display: flex; flex-direction: column; gap: 7px;
}

.wa-msg {
    max-width: 78%;
    padding: 7px 11px;
    border-radius: 12px;
    font-size: 0.75rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.wa-msg.show { opacity: 1; transform: translateY(0); }
.wa-msg.received { background: #202C33; align-self: flex-start; border-bottom-left-radius: 3px; }
.wa-msg.sent     { background: #005C4B; align-self: flex-end;   border-bottom-right-radius: 3px; }
.wa-time { font-size: 0.58rem; color: rgba(233,237,239,0.45); text-align: right; margin-top: 3px; }

/* Floating badges */
.float-badge {
    position: absolute;
    background: rgba(8,12,20,0.92);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    backdrop-filter: blur(12px);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.float-top    { top: -16px; right: -44px; animation: float 3.2s ease-in-out infinite; }
.float-bottom { bottom: 24px; left: -48px; animation: float 3.2s ease-in-out infinite 1.6s; }
.badge-emoji  { font-size: 1.4rem; }
.badge-val    { font-size: 1rem; font-weight: 800; color: var(--gold); line-height: 1.2; }
.badge-lbl    { font-size: 0.68rem; color: var(--muted-l); }

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; z-index: 1;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.stat-item {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-lbl { font-size: 0.82rem; color: var(--muted); }

/* =============================================
   PROBLEM
============================================= */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 30px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.problem-card:hover {
    background: var(--bg-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
}
.problem-icon { font-size: 2.2rem; margin-bottom: 18px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.problem-card p  { font-size: 0.875rem; color: var(--muted-l); line-height: 1.65; }

/* =============================================
   VIDEO SECTION
============================================= */
.video-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(212,160,23,0.03) 50%, transparent 100%);
}
.video-outer {
    position: relative;
    border-radius: var(--r-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(212,160,23,0.2), rgba(255,255,255,0.05) 50%, rgba(212,160,23,0.1));
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.video-wrapper {
    border-radius: calc(var(--r-lg) - 2px);
    overflow: hidden;
    background: #000;
}
.video-wrapper video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* =============================================
   FEATURES GRID
============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.feature-card {
    background: var(--bg);
    padding: 40px 32px;
    transition: background 0.25s;
}
.feature-card:hover { background: var(--bg-hover); }
.feature-icon {
    width: 46px; height: 46px;
    background: var(--gold-dim);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 18px;
}
.feature-card h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 0.855rem; color: var(--muted-l); line-height: 1.65; }

/* =============================================
   FOR WHO
============================================= */
.who-section {
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent);
}
.who-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
}
.who-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px 16px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted-l);
}
.who-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-hover);
    transform: translateY(-4px);
    color: var(--white);
}
.who-emoji { font-size: 2.2rem; }

/* =============================================
   HOW IT WORKS
============================================= */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    padding-top: 10px;
}
.step { text-align: center; padding: 0 20px; }
.step-connector {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--border-gold), var(--border-gold));
    margin-top: 27px;
    opacity: 0.5;
}
.step-num {
    width: 54px; height: 54px;
    background: var(--gold);
    color: #000;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 28px rgba(212,160,23,0.35);
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p  { font-size: 0.875rem; color: var(--muted-l); line-height: 1.65; }

/* =============================================
   QR SECTION
============================================= */
.qr-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 72px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
}
.qr-glow {
    position: absolute; top: 0; right: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.qr-title {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.qr-sub { color: var(--muted-l); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
.qr-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 36px;
}
.qr-list li {
    font-size: 0.9rem;
    color: var(--muted-l);
    display: flex; align-items: center; gap: 10px;
}
.qr-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wa);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.wa-btn:hover {
    background: #20c05a;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,0.32);
}

.qr-visual {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.qr-frame {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
/* Corner decorations */
.qr-corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--gold);
    border-style: solid;
}
.qr-corner.tl { top: -1px; left: -1px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.qr-corner.tr { top: -1px; right: -1px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.qr-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.qr-corner.br { bottom: -1px; right: -1px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

.qr-hint { font-size: 0.8rem; color: var(--muted); text-align: center; }
.qr-or   { font-size: 0.75rem; color: var(--muted); }
.qr-number { font-size: 1.05rem; font-weight: 700; color: var(--muted-l); }

/* =============================================
   PRICING
============================================= */
.pricing-wrap { max-width: 480px; margin: 0 auto; }
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-lg);
    padding: 52px;
    position: relative;
    overflow: hidden;
}
.pricing-top-line {
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.pricing-badge {
    display: inline-block;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pricing-cur    { font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.pricing-num    { font-size: 4rem; font-weight: 900; letter-spacing: -3px; line-height: 1; }
.pricing-period { font-size: 1rem; color: var(--muted); margin-left: 4px; }
.pricing-desc   { font-size: 0.88rem; color: var(--muted-l); margin-bottom: 28px; }
.pricing-divider { height: 1px; background: var(--border); margin: 28px 0; }
.pricing-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 36px;
}
.pricing-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.check {
    width: 20px; height: 20px;
    background: var(--gold-dim);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}
.pricing-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 16px; }

/* =============================================
   PLANS GRID (3-column pricing)
============================================= */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

/* Base card */
.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
}
.plan-card:hover {
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Popular card */
.plan-popular {
    border-color: var(--border-gold);
    box-shadow: 0 0 0 1px rgba(212,160,23,0.15), 0 24px 60px rgba(212,160,23,0.08);
}
.plan-popular::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.plan-popular:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(212,160,23,0.3), 0 32px 70px rgba(212,160,23,0.12);
}

/* Coming soon card */
.plan-soon {
    opacity: 0.88;
    cursor: default;
}
.plan-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border);
}

/* Badge row */
.plan-badge-placeholder { height: 26px; }

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 12px;
    border-radius: 50px;
    height: 26px;
    width: fit-content;
}
.popular-badge {
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    color: var(--gold);
}
.soon-badge {
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    color: #F59E0B;
}

/* Plan name */
.plan-name {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-top: 18px;
    margin-bottom: 16px;
}

/* Price */
.plan-price-wrap { margin-bottom: 14px; }
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}
.plan-cur    { font-size: 1.3rem; font-weight: 700; color: var(--white); }
.plan-num    { font-size: 2.8rem; font-weight: 900; letter-spacing: -2px; }
.plan-period { font-size: 0.85rem; color: var(--muted); margin-left: 4px; }
.plan-price-muted .plan-cur,
.plan-price-muted .plan-num,
.plan-price-muted .plan-period { color: var(--muted); }

.plan-activation {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 5px;
}

/* Ideal & limits */
.plan-ideal {
    font-size: 0.82rem;
    color: var(--muted-l);
    margin-bottom: 6px;
}
.plan-limits {
    font-size: 0.78rem;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 10px;
    display: inline-block;
}

/* Divider */
.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

/* Features list */
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
    margin-bottom: 28px;
}
.feat-yes, .feat-no, .feat-soon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    line-height: 1.4;
}
.feat-yes { color: var(--white); }
.feat-no  { color: var(--muted); }
.feat-soon {
    color: var(--muted);
    cursor: default;
    padding-left: 4px;
}
.feat-soon::before { content: '·'; margin-right: 6px; color: var(--muted); }

.feat-icon {
    flex-shrink: 0;
    font-weight: 700;
    width: 16px;
    text-align: center;
    margin-top: 1px;
}
.feat-yes .feat-icon { color: #22C55E; }
.feat-no  .feat-icon { color: var(--muted); font-weight: 400; }

.plan-features-muted .feat-soon { color: var(--muted); }

/* Plan CTAs */
.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--white);
    background: transparent;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    margin-top: auto;
}
.plan-cta:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}
.plan-cta-gold {
    background: var(--gold);
    color: #000;
    border-color: transparent;
}
.plan-cta-gold:hover {
    background: var(--gold-l);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}

/* Email capture (Premium) */
.email-capture { margin-top: auto; }
.email-capture-form {
    display: flex;
    gap: 8px;
}
.email-input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 11px 16px;
    color: var(--white);
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--muted); }
.email-input:focus { border-color: rgba(245,158,11,0.4); }
.email-btn {
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.35);
    color: #F59E0B;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.email-btn:hover {
    background: rgba(245,158,11,0.25);
    transform: translateY(-1px);
}
.email-confirm {
    font-size: 0.85rem;
    color: #22C55E;
    text-align: center;
    padding: 12px 0;
}

/* Global footnote */
.plans-footnote {
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 28px;
}

/* ROI comparison bar */
.roi-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.roi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}
.roi-label {
    font-size: 0.82rem;
    color: var(--muted);
}
.roi-cost {
    font-size: 1.1rem;
    font-weight: 700;
}
.roi-cost-bad  { color: #f87171; }
.roi-cost-good { color: #4ade80; }
.roi-divider {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 6px 16px;
    background: rgba(255,255,255,.04);
    border-radius: 999px;
    border: 1px solid var(--border);
}

/* Activation fee note */
.activation-note {
    margin-top: 32px;
}
.activation-note-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(212, 160, 23, 0.07);
    border: 1px solid rgba(212, 160, 23, 0.25);
    border-radius: var(--r-md);
    padding: 18px 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin-inline: auto;
}
.activation-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.activation-note-inner strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

/* Responsive pricing */
@media (max-width: 960px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .plan-soon  { order: 3; }
    .roi-bar    { flex-direction: column; gap: 16px; padding: 20px; }
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section { padding-top: 0; }
.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 72px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-box::before {
    content: '';
    position: absolute;
    bottom: -60px; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 300px;
    background: radial-gradient(circle, rgba(37,211,102,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.contact-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}
.contact-sub {
    font-size: 1rem;
    color: var(--muted-l);
    max-width: 440px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

@media (max-width: 580px) {
    .contact-box { padding: 48px 24px; }
}

/* =============================================
   FAQ
============================================= */
.faq-list {
    max-width: 720px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item.open { border-color: var(--border-gold); }
.faq-q {
    width: 100%;
    background: none; border: none; cursor: pointer;
    color: var(--white);
    padding: 22px 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.93rem; font-weight: 600;
    text-align: left; gap: 16px;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.35s var(--ease), color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 24px 24px; font-size: 0.88rem; color: var(--muted-l); line-height: 1.75; }

/* =============================================
   FOOTER
============================================= */
footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}
.footer-inner {
    display: flex; gap: 60px;
    margin-bottom: 48px;
}
.footer-brand { max-width: 240px; }
.footer-logo {
    font-size: 1.5rem; font-weight: 900;
    margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

.footer-col {
    display: flex; flex-direction: column; gap: 10px;
    flex: 1;
}
.footer-col h4 {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 6px;
}
.footer-col a {
    color: var(--muted-l); text-decoration: none;
    font-size: 0.875rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--muted);
}

/* Floating WhatsApp button */
.wa-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: var(--wa);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(37,211,102,0.4);
    z-index: 50;
    transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 14px 36px rgba(37,211,102,0.5);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .who-grid { grid-template-columns: repeat(3,1fr); }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .step-connector { display: none; }
}

@media (max-width: 860px) {
    .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .hero-subtitle { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .float-top, .float-bottom { display: none; }
    .phone-frame { width: 260px; }
    .hero-visual { order: -1; }

    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
    .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
    .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

    .problem-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .who-grid { grid-template-columns: repeat(3,1fr); }

    .qr-box { grid-template-columns: 1fr; text-align: center; padding: 48px 32px; gap: 48px; }
    .qr-list li { justify-content: center; }

    .footer-inner { flex-direction: column; gap: 36px; }
    .footer-brand { max-width: 100%; }

    .nav-links { display: none; }
    .hamburger { display: block; }
}

@media (max-width: 580px) {
    .section { padding: 72px 0; }
    .features-grid { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: repeat(2,1fr); }
    .pricing-card { padding: 36px 24px; }
    .qr-box { padding: 36px 20px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
