:root {
    --primary: #007aff;
    --primary-soft: rgba(0, 122, 255, 0.1);
    --secondary: #10b981;
    --bg-light: #f5f8ff;
    --text-dark: #1d1d1f;
    --text-muted: #86868b;
    --glass-white: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 8px 32px rgba(31, 38, 135, 0.07);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-md { max-width: 900px; }
.container-sm { max-width: 640px; }
.text-center { text-align: center; }

/* ── Background Orbs ── */
.bg-orbit {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.orbit-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.o1 { width: 600px; height: 600px; background: #93c5fd; top: -10%; left: -10%; animation: floating 20s infinite alternate; }
.o2 { width: 500px; height: 500px; background: #c084fc; bottom: -5%; right: -5%; animation: floating 15s infinite alternate-reverse; }
.o3 { width: 400px; height: 400px; background: #86efac; top: 40%; left: 30%; }

@keyframes floating {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(100px, 50px) scale(1.1); }
}

/* ── Glass Utility ── */
.glass {
    background: var(--glass-white);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.shadow-soft  { box-shadow: var(--shadow-soft); }
.shadow-large { box-shadow: 0 40px 100px rgba(0, 0, 0, 0.09); }

/* ── Header ── */
.header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.brand-logo { height: 40px; }

.nav { display: flex; gap: 32px; }
.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav a:hover { color: var(--primary); }

.btn-ghost {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
}

.btn-prime {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 16px rgba(0, 122, 255, 0.2);
    transition: transform 0.3s;
}
.btn-prime:hover { transform: scale(1.05); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.mobile-menu {
    display: none;
    background: white;
    border: 1px solid var(--glass-border);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ── Hero ── */
.hero { padding: 160px 0 100px; }

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
    border: 1px solid rgba(0, 122, 255, 0.15);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.05em;
    font-weight: 900;
    line-height: 1.05;
}

.gradient-text {
    background: linear-gradient(135deg, #007aff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.pricing-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.new-price { font-size: 2.4rem; font-weight: 900; color: var(--text-dark); }
.old-price  { font-size: 1.4rem; text-decoration: line-through; color: var(--text-muted); opacity: 0.6; }

.offer-limit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fee2e2;
    color: #ef4444;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.btn-main-xl {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 20px 48px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-main-xl:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    background: #000;
}

.trust-badge {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.frame-glass {
    padding: 10px;
    border-radius: var(--radius-xl);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.12);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

.floating-chip {
    position: absolute;
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    animation: float 6s infinite ease-in-out;
    white-space: nowrap;
}

.top-left    { top: -20px; left: -20px; background: rgba(255, 255, 255, 0.92); }
.bottom-right {
    bottom: 20px; right: -20px;
    background: rgba(255, 255, 255, 0.92);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-radius: 16px;
}

.stars { color: #facc15; font-size: 1rem; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-20px); }
}

/* ── Section Shared ── */
.tag {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

.section-head { margin-bottom: 56px; }
.section-head h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}
.section-head p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ── Problem ── */
.problem { padding: 80px 0; }

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.p-card {
    padding: 52px 36px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s;
}
.p-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 0, 0, 0.08);
    background: white;
}

.p-card .icon {
    font-size: 52px;
    margin-bottom: 28px;
}

.p-card.glass:nth-child(1) .icon { color: #ef4444; filter: drop-shadow(0 10px 15px rgba(239,68,68,0.2)); }
.p-card.glass:nth-child(2) .icon { color: var(--primary); filter: drop-shadow(0 10px 15px rgba(0,122,255,0.2)); }
.p-card.glass:nth-child(3) .icon { color: var(--secondary); filter: drop-shadow(0 10px 15px rgba(16,185,129,0.2)); }

.p-card h4 { font-size: 1.6rem; margin-bottom: 14px; font-weight: 800; }
.p-card p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ── Solution Intro ── */
.solution-intro { padding: 60px 0; }

.solution-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    border-radius: var(--radius-xl);
    background: white;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.02);
    gap: 40px;
    flex-wrap: wrap;
}

.sol-text h2 { font-size: 2.4rem; margin-bottom: 16px; }
.sol-text p  { font-size: 1.1rem; color: var(--text-muted); max-width: 680px; line-height: 1.7; }

.sol-icon i {
    font-size: 72px;
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(0, 122, 255, 0.3));
}

/* ── Steps ── */
.steps { padding: 80px 0; background: rgba(255, 255, 255, 0.4); }

.steps-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-2-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glass-phone {
    background: white;
    padding: 10px;
    border-radius: 44px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.phone-img { width: 100%; border-radius: 36px; display: block; }

.steps-content h2 { font-size: 2.4rem; margin-bottom: 40px; }

.step-stack { margin-top: 0; }

.step-link {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    align-items: flex-start;
}

.s-dot {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.s-info h5 { font-size: 1.15rem; margin-bottom: 6px; }
.s-info p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ── Features ── */
.features { padding: 80px 0; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.f-item {
    padding: 44px 36px;
    border-radius: var(--radius-md);
    transition: transform 0.4s, background 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.f-item:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-8px);
}

.f-item i {
    font-size: 24px;
    color: var(--primary);
    background: var(--primary-soft);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 20px;
}

.f-item h5 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 800; }
.f-item p  { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* ── Comparison ── */
.comparison { padding: 80px 0; }

.no-gap { padding: 0 !important; overflow: hidden; border-radius: var(--radius-lg); }

.comp-header {
    padding: 36px 40px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}
.comp-header h3 { font-size: 1.8rem; }

.comp-table { width: 100%; border-collapse: collapse; }

.comp-table th,
.comp-table td {
    padding: 20px 36px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
}

.comp-table th {
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.highlight-th {
    color: var(--primary) !important;
    background: rgba(0, 122, 255, 0.03);
}

/* ── Results ── */
.results { padding: 80px 0; }

.glass-prime {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.08), rgba(255, 255, 255, 0.55));
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    padding: 80px 40px;
}

.glass-prime h2 { font-size: 2.4rem; margin-bottom: 48px; }

.results-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.r-item h3 { font-size: 3.8rem; color: var(--primary); line-height: 1; }
.r-item p  { color: var(--text-muted); font-size: 0.95rem; margin-top: 8px; }

/* ══════════════════════════════════════════
   PRICING SECTION — Redesigned
══════════════════════════════════════════ */
.pricing { padding: 80px 0 100px; }

.pricing-section-head {
    margin-bottom: 48px;
}
.pricing-section-head h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.pricing-subhead {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Outer card */
.price-card-new {
    background: #ffffff;
    border-radius: 36px;
    border: 1px solid #e8edf5;
    overflow: hidden;
}

/* Top gradient band */
.price-top-band {
    background: linear-gradient(135deg, #007aff 0%, #5b5cf6 100%);
    padding: 40px 48px;
    text-align: center;
}

.limited-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.countdown-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.ct-box {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    min-width: 68px;
}

.ct-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: white;
    display: block;
    line-height: 1;
}

.ct-lbl {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

.ct-sep {
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin-bottom: 8px;
}

/* Price Body */
.price-body {
    padding: 52px 60px 40px;
}

.savings-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #15803d;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 28px;
}

.price-display-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.old-v {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: #cbd5e1;
    text-decoration: line-through;
    font-weight: 400;
}

.new-v {
    font-family: 'Outfit', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.price-sub-note {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 420px;
}

/* CTA Button */
.cta-prime-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #007aff;
    color: #ffffff;
    padding: 24px 48px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.22);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
    margin-bottom: 32px;
}
.cta-prime-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 60px rgba(0, 122, 255, 0.3);
}

/* Perks row */
.price-perks {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.price-perks span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.price-perks i { color: var(--secondary); }

/* Divider */
.price-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 32px 0;
}

/* What's Included */
.whats-included { text-align: left; }

.included-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 20px;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}

.inc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}

.inc-item i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

/* Trust Footer Strip */
.price-trust-strip {
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    padding: 18px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.price-trust-strip span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-trust-strip i { color: var(--secondary); }

/* ── FAQ ── */
.faq { padding: 80px 0 120px; }

.faq h2 { font-size: 2.6rem; margin-bottom: 56px; }

.faq-list { margin-top: 0; }

details {
    margin-bottom: 16px;
    padding: 28px 36px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    border: 1px solid var(--glass-border);
}

details[open] {
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.05);
}

summary {
    font-weight: 700;
    font-size: 1.15rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}
summary::-webkit-details-marker { display: none; }

summary i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.4s;
    flex-shrink: 0;
    margin-left: 16px;
}

details[open] summary i { transform: rotate(180deg); }

details .content {
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.f-logo { height: 40px; }

.f-nav a {
    margin-left: 32px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.f-nav a:hover { color: var(--text-dark); }

.footer-copy {
    padding-top: 32px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ── WhatsApp Floater ── */
.wa-floater {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s;
}
/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.wa-floater:hover { transform: scale(1.1) rotate(10deg); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-layout,
    .grid-2-center { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px; 
    }

    .hero-graphics { margin-top: 20px; }

    .hero h1 { font-size: 3.2rem; }

    .hero-btns { align-items: center; }

    .pricing-hero { justify-content: center; }

    .problem-grid,
    .feature-grid { grid-template-columns: 1fr; }

    .results-grid { flex-direction: column; gap: 40px; align-items: center; }

    .solution-box { flex-direction: column; text-align: center; padding: 48px 40px; }

    .steps-visual { display: flex; justify-content: center; }

    .mobile-menu { display: flex; align-items: center; justify-content: center; }
    
    .nav { 
        display: none; 
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100dvh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1000;
    }
    .nav.active { display: flex; }
    .nav a { font-size: 1.5rem; }

    .nav-actions { display: none; }

    .comp-table { min-width: 600px; }
    .no-gap { overflow-x: auto; }

    /* Pricing responsive */
    .price-body { padding: 40px 24px 32px; }
    .price-top-band { padding: 32px 20px; }
    .new-v { font-size: clamp(3rem, 15vw, 4.5rem); }
    .cta-prime-btn { font-size: 1.1rem; padding: 18px 24px; }
    .included-grid { grid-template-columns: 1fr; gap: 10px; }
    .price-trust-strip { gap: 20px; padding: 16px 20px; }
    .price-perks { gap: 12px; }
}

@media (max-width: 640px) {
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
    .container { padding: 0 20px; }
    .section-head h2 { font-size: 1.8rem; }
    .section-head { margin-bottom: 32px; }
    
    .new-v { font-size: 3.5rem; }
    .price-display-row { gap: 12px; }
    .countdown-row { gap: 4px; }
    .ct-box { min-width: 48px; padding: 6px 8px; }
    .ct-num { font-size: 1.2rem; }
    .ct-lbl { font-size: 0.55rem; }
    
    .price-perks { flex-direction: column; align-items: center; gap: 8px; }
    .price-trust-strip { flex-direction: column; gap: 10px; text-align: center; }
    
    .comp-table th,
    .comp-table td { padding: 12px 16px; font-size: 0.85rem; }

    .wa-floater { width: 56px; height: 56px; font-size: 1.6rem; bottom: 20px; right: 20px; }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 2rem; }
    .price-top-band { padding: 24px 16px; }
    .ct-box { min-width: 44px; padding: 4px 6px; }
    .new-v { font-size: 2.8rem; }
    .cta-prime-btn { padding: 16px 20px; font-size: 1rem; }
}