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

/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
    --primary:            #2563eb;
    --primary-dark:       #1d4ed8;
    --primary-glow:       rgba(37, 99, 235, 0.4);
    --primary-glow-soft:  rgba(37, 99, 235, 0.12);
    --secondary:          #3b82f6;
    --secondary-dark:     #1e40af;
    --teal-alt:           #4f46e5;
    --teal-price:         #6366f1;
    --teal-glow:          rgba(99, 102, 241, 0.35);
    --pastel-green:       #dbeafe;
    --coral:              #ff5c5c;
    --purple-accent:      #8456b8;
    --purple-glow:        rgba(132, 86, 184, 0.3);
    --accent-yellow:      #ffd900;

    --body:               #0f172a;
    --background:         #f8fafc;
    --bg-dark:            #0a0f1e;
    --border:             #e2e8f0;
    --border-glow:        rgba(37, 99, 235, 0.3);
    --muted:              #f1f5f9;
    --muted-foreground:   #64748b;
    --muted-foreground-2: #94a3b8;
    --card:               #ffffff;
    --glass:              rgba(255, 255, 255, 0.7);
    --glass-dark:         rgba(15, 23, 42, 0.6);

    --font-sans: 'Poppins', ui-sans-serif, system-ui, sans-serif;
    --ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:  cubic-bezier(0, 0, 0.2, 1);
    --spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
    --fast:      0.15s;
    --normal:    0.3s;
    --slow:      0.6s;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; }
::selection { background: rgba(37, 99, 235,.2); color: var(--primary-dark); }

/* SVG defaults */
svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    overflow: visible;
}

/* ==========================================================================
   GLOBAL SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-2.5rem);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transition: opacity .7s var(--ease-out);
}
.reveal-right.visible { opacity: 1; }
.reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s var(--ease-out), transform .6s var(--spring);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ==========================================================================
   BACKGROUND ORBS (decorative blobs)
   ========================================================================== */
.orb-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    animation: orb-float 8s ease-in-out infinite;
}
.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -15%; left: -10%;
    animation-delay: 0s;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--teal-price), transparent 70%);
    top: 40%; right: -8%;
    animation-delay: -3s;
}
.orb-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--purple-accent), transparent 70%);
    bottom: 10%; left: 20%;
    animation-delay: -5s;
    opacity: .2;
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0) scale(1); }
    33%       { transform: translateY(-30px) scale(1.04); }
    66%       { transform: translateY(20px) scale(.97); }
}

/* ==========================================================================
   GRID PATTERN OVERLAY
   ========================================================================== */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235,.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.relative   { position: relative; }
.absolute   { position: absolute; }
.fixed      { position: fixed; }
.inset-0    { inset: 0; }
.z-0        { z-index: 0; }
.z-1        { z-index: 1; }
.z-10       { z-index: 10; }
.z-20       { z-index: 20; }
.z-100      { z-index: 100; }
.overflow-hidden { overflow: hidden; }
.pointer-events-none { pointer-events: none; }
.science-svg-floating {
    pointer-events: none;
    z-index: 1;
}

.block       { display: block; }
.inline-block{ display: inline-block; }
.inline-flex { display: inline-flex; }
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.flex-1      { flex: 1 1 0%; }
.grid        { display: grid; }
.hidden      { display: none; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.shrink-0    { flex-shrink: 0; }
.w-full      { width: 100%; }
.h-full      { height: 100%; }

/* Icon sizes */
.w-3  { width: .75rem; height: .75rem; }
.w-4  { width: 1rem;   height: 1rem; }
.w-5  { width: 1.25rem; }
.h-5  { height: 1.25rem; }
.w-6  { width: 1.5rem; }
.h-6  { height: 1.5rem; }
.w-7  { width: 1.75rem; }
.h-7  { height: 1.75rem; }

/* Gap */
.gap-1    { gap: .25rem; }
.gap-2    { gap: .5rem; }
.gap-3    { gap: .75rem; }
.gap-4    { gap: 1rem; }
.gap-6    { gap: 1.5rem; }
.gap-8    { gap: 2rem; }

/* Spacing */
.p-6   { padding: 1.5rem; }
.px-3  { padding-left: .75rem; padding-right: .75rem; }
.px-4  { padding-left: 1rem; padding-right: 1rem; }
.py-1  { padding-top: .25rem; padding-bottom: .25rem; }
.mt-1  { margin-top: .25rem; }
.mt-2  { margin-top: .5rem; }
.mt-3  { margin-top: .75rem; }
.mt-4  { margin-top: 1rem; }
.mt-5  { margin-top: 1.25rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-1  { margin-bottom: .25rem; }
.mb-2  { margin-bottom: .5rem; }
.mb-3  { margin-bottom: .75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-5  { margin-bottom: 1.25rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-3 > * + * { margin-top: .75rem; }

/* Typography */
.text-xs   { font-size: .75rem;  line-height: 1rem; }
.text-sm   { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem;    line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; }
.text-2xl  { font-size: 1.5rem; }
.text-center  { text-align: center; }
.text-balance { text-wrap: balance; }
.uppercase    { text-transform: uppercase; }
.line-through { text-decoration: line-through; }
.leading-none   { line-height: 1; }
.leading-snug   { line-height: 1.375; }
.leading-relaxed{ line-height: 1.625; }
.tracking-tight  { letter-spacing: -.025em; }
.tracking-tighter{ letter-spacing: -.05em; }
.tracking-wider  { letter-spacing: .05em; }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }
.font-bold    { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black   { font-weight: 900; }

/* Colors */
.text-white         { color: #fff; }
.text-primary       { color: var(--primary); }
.text-teal-alt      { color: var(--teal-alt); }
.text-teal-price    { color: var(--teal-price); }
.text-purple-accent { color: var(--purple-accent); }
.text-coral         { color: var(--coral); }
.text-body          { color: var(--body); }
.text-muted-foreground  { color: var(--muted-foreground); }
.text-muted-foreground-2{ color: var(--muted-foreground-2); }

.bg-background  { background-color: var(--background); }
.bg-card        { background-color: var(--card); }
.bg-muted       { background-color: var(--muted); }
.bg-primary     { background-color: var(--primary); }
.bg-pastel-green{ background-color: var(--pastel-green); }
.bg-teal-15     { background-color: rgba(29, 78, 216,.12); }
.bg-primary-15  { background-color: rgba(37, 99, 235,.12); }
.bg-muted\/30   { background-color: rgba(226,232,240,.55); }

/* Borders */
.border   { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.border-border { border-color: var(--border); }

.rounded-full { border-radius: 9999px; }
.rounded-xl   { border-radius: .75rem; }
.rounded-2xl  { border-radius: 1rem; }
.rounded-3xl  { border-radius: 1.5rem; }

/* Shadows */
.shadow-md  { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06); }
.shadow-lg  { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05); }
.shadow-xl  { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04); }

/* Max widths */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }

/* Grid cols */
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   GRADIENTS & SPECIAL EFFECTS
   ========================================================================== */
.bg-gradient-urgency {
    background: linear-gradient(90deg, #dc2626, #b91c1c, #dc2626);
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
}
.bg-gradient-premium {
    background: linear-gradient(135deg, var(--primary), var(--teal-alt));
}
.bg-gradient-to-b-subtle {
    background: linear-gradient(to bottom, var(--background), rgba(241,245,249,.6));
}

@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Gradient text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--teal-price));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* Neon glow on text */
.text-glow {
    text-shadow: 0 0 20px var(--primary-glow), 0 0 40px rgba(37, 99, 235,.2);
}

/* Glassmorphism card */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255,255,255,.6);
}

/* Shimmer/highlight sweep */
.shimmer {
    position: relative;
    overflow: hidden;
}
.shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    animation: shimmer-sweep 3s ease infinite;
    pointer-events: none;
}
@keyframes shimmer-sweep {
    0%   { left: -100%; }
    100% { left: 200%; }
}

/* Animated neon border */
.neon-border {
    position: relative;
}
.neon-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), var(--teal-price), var(--primary));
    background-size: 200% 200%;
    animation: neon-rotate 3s linear infinite;
    z-index: -1;
    filter: blur(4px);
    opacity: .7;
}
@keyframes neon-rotate {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulse ring */
.pulse-ring {
    position: relative;
}
.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
    0%   { opacity: .6; transform: scale(1); }
    100% { opacity: 0;  transform: scale(1.18); }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}
.animate-bounce-soft { animation: bounce-soft 2s ease-in-out infinite; }

@keyframes pulse { 50% { opacity: .5; } }
.animate-pulse { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33%       { transform: translateY(-12px) rotate(2deg); }
    66%       { transform: translateY(8px) rotate(-1deg); }
}
.animate-float { animation: float 6s ease-in-out infinite; }

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-18px); }
}
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.animate-spin-slow { animation: spin-slow 20s linear infinite; }

@keyframes count-up {
    from { opacity: 0; transform: translateY(1rem); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Particle dots */
@keyframes particle-move {
    0%   { transform: translateY(0) translateX(0) scale(1); opacity: .5; }
    50%  { transform: translateY(-60px) translateX(30px) scale(1.3); opacity: 1; }
    100% { transform: translateY(0) translateX(0) scale(1); opacity: .5; }
}

/* ==========================================================================
   PARTICLES CANVAS wrapper
   ========================================================================== */
#particles-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   HEADER BANNER
   ========================================================================== */
.header-banner {
    width: 100%;
    position: relative;
}
.header-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: .55rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.header-text {
    color: #fff;
    font-weight: 700;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.header-countdown-timer {
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: .1em;
    text-shadow: 0 0 10px rgba(0,0,0,.3);
}
.header-flame-icon {
    width: 1.1rem; height: 1.1rem;
    color: #fff; flex-shrink: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    width: 100%;
    background: var(--background);
    padding: 3rem 1rem 5rem;
    position: relative;
    overflow: hidden;
}
.hero-inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* BNCC Badge — glass style */
.hero-bncc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(219, 234, 254, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(29, 78, 216,.25);
    padding: .4rem 1.1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(29, 78, 216,.12);
    transition: box-shadow var(--normal) var(--ease), transform var(--normal) var(--spring);
}
.hero-bncc-badge:hover {
    box-shadow: 0 8px 24px var(--primary-glow);
    transform: translateY(-2px);
}
.hero-bncc-badge .badge-icon {
    width: 1rem; height: 1rem;
    color: var(--teal-alt); flex-shrink: 0;
}
.hero-bncc-badge span {
    color: var(--teal-alt);
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 6.5vw, 4rem);
    line-height: 1.07;
    font-weight: 900;
    letter-spacing: -.045em;
    max-width: 54rem;
    margin: 0 auto 1.5rem;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--muted-foreground);
    max-width: 42rem;
    line-height: 1.55;
    margin-bottom: 2.5rem;
}

/* Sub-CTA */
.hero-sub-cta {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--muted-foreground-2);
    margin-top: 1rem;
}
.hero-sub-cta .check-icon {
    width: 1rem; height: 1rem;
    color: var(--teal-alt); flex-shrink: 0;
}

/* Video Wrapper */
.hero-video-wrapper {
    position: relative;
    margin-top: 3.5rem;
    width: 100%;
    max-width: 460px;
    animation: float-slow 7s ease-in-out infinite;
}
.video-container {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(37, 99, 235,.2),
        0 20px 60px rgba(0,0,0,.18),
        0 0 60px rgba(37, 99, 235,.1);
    background: #000;
    transition: box-shadow var(--normal) var(--ease);
}
.video-container:hover {
    box-shadow:
        0 0 0 1px rgba(37, 99, 235,.4),
        0 24px 70px rgba(0,0,0,.22),
        0 0 80px rgba(37, 99, 235,.18);
}
.video-container video { width: 100%; display: block; }
.video-overlay {
    position: absolute; inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.42);
    cursor: pointer;
    transition: background var(--fast) var(--ease), opacity .3s ease;
    z-index: 5;
}
.video-overlay:hover { background: rgba(0,0,0,.55); }
.play-btn {
    width: 4.5rem; height: 4.5rem;
    border-radius: 50%;
    background: rgba(37, 99, 235,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 var(--primary-glow);
    margin-bottom: .75rem;
    transition: transform var(--fast) var(--spring);
    animation: pulse-glow 2s ease infinite;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 1.75rem; height: 1.75rem; fill: #fff; margin-left: 4px; }
.video-overlay span {
    color: #fff; font-weight: 700;
    font-size: .75rem; text-transform: uppercase;
    letter-spacing: .1em;
}

/* VSL */
.vsl-container { border-radius: 1rem; }
.vsl-overlay { background: rgba(0,0,0,.35); }
.vsl-overlay:hover { background: rgba(0,0,0,.48); }
.play-btn-vsl {
    width: 5.5rem; height: 5.5rem;
    margin-bottom: 0;
}
.play-btn-vsl svg { width: 2.25rem; height: 2.25rem; }
@keyframes pulse-glow {
    0%   { box-shadow: 0 0 0 0   var(--primary-glow); }
    50%  { box-shadow: 0 0 0 16px rgba(37, 99, 235,0); }
    100% { box-shadow: 0 0 0 0   var(--primary-glow); }
}

/* Rotating ring around video */
.video-ring {
    position: absolute;
    inset: -20px;
    border-radius: 1.6rem;
    border: 1px dashed rgba(37, 99, 235,.2);
    animation: spin-slow 30s linear infinite;
    pointer-events: none;
}

/* Hero Badge */
.hero-badge {
    position: absolute;
    top: -1rem; right: 0;
    background: linear-gradient(135deg, var(--primary), var(--teal-alt));
    color: #fff;
    font-weight: 900;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .45rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: rotate(6deg);
    z-index: 10;
    white-space: nowrap;
    animation: bounce-soft 3s ease-in-out infinite;
}

/* Floating dots in hero bg */
.hero-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: .15;
    pointer-events: none;
}
.hero-dot-1 { width: 8px; height: 8px; top: 15%; left: 8%;  animation: particle-move 5s ease-in-out infinite; }
.hero-dot-2 { width: 5px; height: 5px; top: 65%; left: 5%;  animation: particle-move 7s ease-in-out infinite .8s; }
.hero-dot-3 { width: 10px;height: 10px;top: 30%; right: 8%; animation: particle-move 6s ease-in-out infinite 1.5s; }
.hero-dot-4 { width: 6px; height: 6px; top: 70%; right: 12%;animation: particle-move 8s ease-in-out infinite 2s; }
.hero-dot-5 { width: 4px; height: 4px; top: 50%; left: 15%; animation: particle-move 4s ease-in-out infinite .3s; background: var(--teal-price); }

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(37, 99, 235,.03), rgba(99, 102, 241,.06), rgba(37, 99, 235,.03));
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
    z-index: 1;
}
.stat-item {
    text-align: center;
    padding: 1.25rem;
    border-radius: 1rem;
    transition: transform var(--normal) var(--spring), background var(--normal) var(--ease);
    cursor: default;
}
.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(37, 99, 235,.04);
}
.stat-value {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
}
.stat-label {
    margin-top: .5rem;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted-foreground);
}

/* ==========================================================================
   SECTIONS — Common
   ========================================================================== */
.section {
    width: 100%;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}
.section-inner {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    flex-shrink: 0;
}
.section-title {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-top: .75rem;
}
.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

/* ==========================================================================
   CARDS GRID — Glassmorphism
   ========================================================================== */
.card-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.card {
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow:
        0 1px 3px rgba(0,0,0,.04),
        0 4px 16px rgba(0,0,0,.06);
    transition:
        transform var(--normal) var(--spring),
        box-shadow var(--normal) var(--ease),
        border-color var(--normal) var(--ease);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity var(--normal) var(--ease);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 40px rgba(0,0,0,.1),
        0 0 0 1px rgba(37, 99, 235,.15),
        0 0 20px rgba(37, 99, 235,.05);
    border-color: rgba(37, 99, 235,.2);
}
.card:hover::before { opacity: 1; }

/* Icon containers inside cards */
.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(37, 99, 235,.25);
    transition: transform var(--normal) var(--spring), box-shadow var(--normal) var(--ease);
}
.card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(37, 99, 235,.35);
}
.card-icon svg {
    width: 1.35rem; height: 1.35rem;
    color: #fff;
}

/* ==========================================================================
   PHONE MOCKUP
   ========================================================================== */
.phone-section {
    width: 100%;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, #ffffff, rgba(226,232,240,.5));
    position: relative;
    overflow: hidden;
}
.phone-section-inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.phone-frame {
    position: relative;
    width: 260px;
    height: 560px;
    background: linear-gradient(160deg, #1a1a2e, #16213e, #0f3460);
    border-radius: 2.75rem;
    padding: .7rem;
    box-shadow:
        0 40px 80px -12px rgba(0,0,0,.5),
        0 0 0 1px rgba(255,255,255,.08),
        inset 0 1px 0 rgba(255,255,255,.1);
    flex-shrink: 0;
    animation: float 7s ease-in-out infinite;
}
/* Glow beneath phone */
.phone-frame::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(37, 99, 235,.35), transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
}
.phone-btn {
    position: absolute;
    width: 3px;
    background: rgba(255,255,255,.15);
    border-radius: 2px;
}
.phone-btn.vol-up   { left: -3px; top: 5.5rem; height: 1.8rem; }
.phone-btn.vol-down { left: -3px; top: 8.0rem; height: 2.6rem; }
.phone-btn.silent   { left: -3px; top: 4.0rem; height: 1.2rem; }
.phone-btn.power    { right: -3px; top: 7.0rem; height: 3.5rem; }
.phone-notch {
    position: absolute;
    top: .5rem; left: 50%;
    transform: translateX(-50%);
    width: 5.5rem; height: 1.35rem;
    background: #000;
    border-radius: 9999px;
    z-index: 10;
}
.phone-screen {
    width: 100%; height: 100%;
    background: #000;
    border-radius: 2.2rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.05);
}
.phone-screen video { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   BONUS CARDS
   ========================================================================== */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.bonus-card {
    position: relative;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 99, 235,.15);
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: transform var(--normal) var(--spring), box-shadow var(--normal) var(--ease), border-color var(--normal) var(--ease);
}
.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,.12), 0 0 0 1px rgba(37, 99, 235,.2);
    border-color: rgba(37, 99, 235,.3);
}
.bonus-badge {
    position: absolute;
    top: .75rem; right: .75rem;
    z-index: 5;
    background: linear-gradient(135deg, var(--primary), var(--teal-alt));
    color: #fff;
    font-weight: 800;
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .25rem .75rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px var(--primary-glow);
}
.bonus-img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--muted);
}
.bonus-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.bonus-card:hover .bonus-img-wrap img { transform: scale(1.05); }
.bonus-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bonus-price-row {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-section {
    width: 100%;
    background: var(--background);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}
.pricing-inner {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 60rem;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .pricing-card.featured { order: -1; }
}
.pricing-card {
    position: relative;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    transition: transform var(--normal) var(--ease), box-shadow var(--normal) var(--ease);
}
.pricing-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); }
.pricing-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary), var(--teal-price)) border-box;
    box-shadow: 0 8px 32px rgba(37, 99, 235,.15), 0 24px 56px rgba(0,0,0,.08);
}
.pricing-card.featured:hover {
    box-shadow: 0 12px 40px rgba(37, 99, 235,.25), 0 32px 64px rgba(0,0,0,.1);
}

.pricing-badge {
    position: absolute;
    top: -1rem; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--teal-alt));
    color: #fff;
    font-weight: 800;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .3rem .9rem;
    border-radius: 9999px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .3rem;
    box-shadow: 0 4px 16px var(--primary-glow);
}
.pricing-badge svg { width: .85rem; height: .85rem; }

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}
.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem; height: 1.25rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: .1rem;
    transition: transform var(--normal) var(--spring);
}
.feature-list li:hover .feature-check { transform: scale(1.15); }
.feature-check svg { width: .7rem; height: .7rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    background-size: 200% 200%;
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: -.02em;
    padding: 1.05rem 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow:
        0 0 0 0 rgba(37, 99, 235,.4),
        0 8px 24px rgba(37, 99, 235,.35),
        0 2px 8px rgba(0,0,0,.1);
    transition:
        background-position var(--normal) var(--ease),
        box-shadow var(--normal) var(--ease),
        transform var(--fast) var(--spring);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.12);
    opacity: 0;
    transition: opacity var(--fast) var(--ease);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
    box-shadow:
        0 0 0 6px rgba(37, 99, 235,.15),
        0 12px 32px rgba(37, 99, 235,.5),
        0 4px 12px rgba(0,0,0,.12);
    transform: translateY(-2px) scale(1.01);
    background-position: right center;
}
.btn-primary:active { transform: scale(.98); }
.btn-primary .btn-arrow {
    width: 1.5rem; height: 1.5rem;
    transition: transform .3s var(--spring);
    flex-shrink: 0;
}
.btn-primary:hover .btn-arrow { transform: translateX(6px); }

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 6px 20px var(--primary-glow), 0 2px 8px rgba(0,0,0,.08); transform: scale(1); }
    50% { box-shadow: 0 6px 30px rgba(37,99,235,.55), 0 0 0 8px rgba(37,99,235,.12); transform: scale(1.025); }
}
.btn-checkout-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--teal-alt));
    color: #fff;
    font-weight: 800;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: -.01em;
    padding: .95rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 6px 20px var(--primary-glow), 0 2px 8px rgba(0,0,0,.08);
    transition: all var(--fast) var(--spring);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: btn-pulse 2s ease-in-out infinite;
}
.btn-checkout-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 28px rgba(37, 99, 235,.45), 0 4px 12px rgba(0,0,0,.1);
    animation: none;
}
.btn-checkout-primary svg, .btn-checkout-secondary svg {
    width: 1.1rem; height: 1.1rem;
    flex-shrink: 0;
    transition: transform .3s var(--spring);
}
.btn-checkout-primary:hover svg, .btn-checkout-secondary:hover svg { transform: translateX(4px); }

.btn-checkout-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    background: transparent;
    color: #000;
    font-weight: 800;
    font-size: .875rem;
    text-transform: uppercase;
    padding: .95rem 1.5rem;
    border-radius: 9999px;
    border: 2px solid #000;
    transition: all var(--fast) var(--ease);
    cursor: pointer;
}
.btn-checkout-secondary:hover {
    background: rgba(0,0,0,.06);
    color: #000;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.star-row { display: flex; gap: 2px; margin-bottom: 1rem; }
.star-icon {
    width: 1.1rem; height: 1.1rem;
    fill: var(--accent-yellow);
    color: var(--accent-yellow);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(255,217,0,.5));
}
.testimonial-avatar {
    width: 3rem; height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-yellow);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255,217,0,.3));
}

/* ==========================================================================
   AUTHOR SECTION
   ========================================================================== */
.author-section {
    width: 100%;
    background: var(--background);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}
.author-inner {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.author-photo-wrap { display: flex; justify-content: center; }
.author-photo-frame {
    position: relative;
    width: 100%;
    max-width: 280px;
}
.author-photo-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--teal-price));
    border-radius: 1.5rem;
    transform: rotate(3deg);
    opacity: .18;
    filter: blur(2px);
}
.author-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 1.5rem;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 16px 48px rgba(0,0,0,.14), 0 0 0 1px rgba(37, 99, 235,.1);
    border: 1px solid rgba(255,255,255,.8);
    transition: box-shadow var(--normal) var(--ease), transform var(--normal) var(--spring);
}
.author-photo:hover {
    box-shadow: 0 24px 64px rgba(0,0,0,.18), 0 0 30px rgba(37, 99, 235,.1);
    transform: scale(1.01);
}
.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.author-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
}
.author-stat-label {
    margin-top: .25rem;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted-foreground);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
    width: 100%;
    background: rgba(226,232,240,.45);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}
.faq-inner { max-width: 48rem; margin: 0 auto; position: relative; z-index: 2; }
.faq-list  { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color var(--normal) var(--ease), box-shadow var(--normal) var(--ease), transform var(--normal) var(--spring);
}
.faq-item:hover:not(.open) {
    transform: translateX(4px);
    border-color: rgba(37, 99, 235,.25);
}
.faq-item.open {
    border-color: rgba(37, 99, 235,.4);
    box-shadow: 0 4px 24px rgba(37, 99, 235,.08), 0 0 0 1px rgba(37, 99, 235,.1);
}
.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-sans);
}
.faq-question {
    font-weight: 700;
    font-size: .9rem;
    color: var(--body);
    transition: color var(--normal) var(--ease);
    flex: 1;
}
.faq-item.open .faq-question, .faq-btn:hover .faq-question { color: var(--primary); }
.faq-icon-wrap {
    width: 2rem; height: 2rem;
    border-radius: 50%;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--normal) var(--ease), transform var(--normal) var(--spring), box-shadow var(--normal) var(--ease);
}
.faq-item.open .faq-icon-wrap {
    background: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
    transform: rotate(45deg);
}
.faq-plus-icon {
    width: .9rem; height: .9rem;
    color: var(--muted-foreground);
    transition: color var(--normal) var(--ease);
}
.faq-item.open .faq-plus-icon { color: #fff; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0,1,0,1);
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted-foreground);
    font-size: .9rem;
    line-height: 1.75;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.cta-section {
    width: 100%;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0a0f1e, #0f172a, #1a1a2e);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-orb-1 {
    position: absolute;
    width: 600px; height: 600px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(37, 99, 235,.12), transparent 60%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}
.cta-orb-2 {
    position: absolute;
    width: 300px; height: 300px;
    top: -5%; left: 5%;
    background: radial-gradient(circle, rgba(99, 102, 241,.1), transparent 70%);
    pointer-events: none;
    animation: orb-float 6s ease-in-out infinite;
}
.cta-orb-3 {
    position: absolute;
    width: 250px; height: 250px;
    bottom: -5%; right: 5%;
    background: radial-gradient(circle, rgba(132,86,184,.1), transparent 70%);
    pointer-events: none;
    animation: orb-float 8s ease-in-out infinite reverse;
}
.cta-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235,.06) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.cta-inner {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: 1.25rem;
    color: #fff;
}
.cta-title .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--teal-price));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    max-width: 38rem;
    margin: 0 auto 2.75rem;
    line-height: 1.65;
}
.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    font-weight: 500;
    margin-top: 1.5rem;
}
.cta-guarantee svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    width: 100%;
    background: #0a0f1e;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 3rem 1rem;
    text-align: center;
    color: rgba(255,255,255,.6);
}
.footer-logo {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: .75rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    list-style: none;
}
.footer-links a {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    transition: color var(--fast) var(--ease);
}
.footer-links a:hover { color: var(--primary); }

/* ==========================================================================
   EXIT INTENT MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--normal) var(--ease), visibility 0s var(--normal);
    visibility: hidden;
}
.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    backdrop-filter: blur(8px);
    transition: opacity var(--normal) var(--ease), visibility 0s;
}
.modal-box {
    position: relative;
    width: 100%;
    max-width: 28rem;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(37, 99, 235,.2);
    transform: scale(.92) translateY(20px);
    opacity: 0;
    transition: all var(--normal) var(--spring);
}
.modal-overlay.show .modal-box { transform: scale(1) translateY(0); opacity: 1; }
.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--teal-alt));
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.modal-header-text {
    color: #fff;
    font-weight: 900;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.modal-header-text svg { width: .85rem; height: .85rem; fill: #fff; flex-shrink: 0; }
.modal-close {
    position: absolute;
    right: .75rem; top: 50%;
    transform: translateY(-50%);
    width: 1.75rem; height: 1.75rem;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background var(--fast) var(--ease), transform var(--fast) var(--spring);
}
.modal-close:hover { background: rgba(255,255,255,.35); transform: translateY(-50%) scale(1.1); }
.modal-close svg { width: .9rem; height: .9rem; stroke-width: 2.5; }
.modal-body { padding: 1.5rem; }
.modal-countdown-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #fff1f1;
    border: 1.5px solid #fca5a5;
    border-radius: .5rem;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    font-size: .85rem;
    font-weight: 700;
    color: #b91c1c;
}
.modal-countdown-timer {
    font-size: 1.2rem;
    font-weight: 900;
    color: #dc2626;
    letter-spacing: .05em;
}
.modal-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--body);
    line-height: 1.25;
    margin-bottom: .5rem;
}
.modal-title span { color: var(--primary); }
.modal-subtitle {
    font-size: .875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.modal-feature-box {
    border: 2px solid var(--primary);
    border-radius: .75rem;
    padding: .9rem 1rem;
    margin-bottom: 1.25rem;
    background: rgba(37, 99, 235,.03);
}
.modal-feature-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.modal-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--body);
}
.modal-feature-list li svg { width: .85rem; height: .85rem; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.modal-price-block { text-align: center; margin-bottom: 1.25rem; }
.modal-old-price { font-size: .8rem; color: var(--muted-foreground-2); text-decoration: line-through; margin-bottom: .15rem; }
.modal-new-price { font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; letter-spacing: -.04em; }
.modal-new-price small { font-size: 1rem; vertical-align: top; margin-top: .4rem; display: inline-block; }
.btn-modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--teal-alt));
    color: #fff;
    font-weight: 900;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: -.01em;
    padding: .9rem 1rem;
    border-radius: .75rem;
    box-shadow: 0 6px 20px var(--primary-glow);
    transition: all var(--fast) var(--spring);
    text-decoration: none;
    text-align: center;
    margin-bottom: .9rem;
}
.btn-modal-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 99, 235,.5); }
.btn-modal-cta svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
.modal-decline {
    display: block;
    text-align: center;
    font-size: .75rem;
    color: var(--muted-foreground-2);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color var(--fast) var(--ease);
}
.modal-decline:hover { color: var(--muted-foreground); }

/* ==========================================================================
   MOBILE — ordem dos planos
   ========================================================================== */
@media (max-width: 767px) {
    .pricing-card.featured { order: -1; }
}

/* ==========================================================================
   RESPONSIVE — 768px+
   ========================================================================== */
@media (min-width: 768px) {
    .section { padding: 7rem 2rem; }
    .phone-section  { padding: 7rem 2rem; }
    .faq-section    { padding: 7rem 2rem; }
    .author-section { padding: 7rem 2rem; }
    .pricing-section{ padding: 7rem 2rem; }
    .cta-section    { padding: 7rem 2rem; }
    .hero-section   { padding: 5rem 2rem 7rem; }

    .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .bonus-grid  { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid{ grid-template-columns: repeat(2, 1fr); align-items: start; }

    .author-inner { grid-template-columns: 2fr 3fr; gap: 4rem; }

    .pricing-card.featured {
        transform: scale(1.02);
        z-index: 1;
    }
    .pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }
}

/* ==========================================================================
   RESPONSIVE — 1024px+
   ========================================================================== */
@media (min-width: 1024px) {
    .bonus-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { padding: 4rem 2rem; }
}
