/* ============================================================
   NDTVerify — Master Stylesheet
   Petronas Green + Blue | Neon Glow | Glassmorphism | 3D
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --bg:           #030810;
    --bg2:          #050C14;
    --bg3:          #080F1A;
    --orange:       #F97316;
    --orange-light: #FB923C;
    --amber:        #F59E0B;
    --amber-light:  #FCD34D;
    --deep-orange:  #EA580C;
    --blue:         #3B82F6;
    --blue-light:   #60A5FA;
    /* legacy aliases so existing rules don't break */
    --green:        #F97316;
    --green-light:  #FB923C;
    --cyan:         #FCD34D;
    --cyan-dim:     rgba(252,211,77,0.55);
    --cyan-faint:   rgba(249,115,22,0.07);
    --text:         #FEF3E2;
    --text-dim:     rgba(254,243,226,0.72);
    --text-muted:   rgba(254,243,226,0.38);
    --glass:        rgba(249,115,22,0.07);
    --glass-hover:  rgba(249,115,22,0.13);
    --glass-border: rgba(249,115,22,0.22);
    --glass-border-hover: rgba(251,146,60,0.50);
    --glow-green:   0 1px 0 rgba(255,255,255,0.15), 0 2px 8px rgba(249,115,22,0.30);
    --glow-cyan:    0 1px 0 rgba(255,255,255,0.15), 0 2px 8px rgba(252,211,77,0.30);
    --glow-blue:    0 1px 0 rgba(255,255,255,0.12), 0 2px 8px rgba(59,130,246,0.30);
    --glow-text:    0 1px 0 rgba(255,255,255,0.20), 0 2px 6px rgba(249,115,22,0.25);
    --radius:       16px;
    --radius-sm:    10px;
    --radius-lg:    24px;
    --transition:   all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--green) var(--bg2);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.65;
}

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
    font-family: 'Inter', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 700;
}

/* Glossy accent — gradient clip, no blur */
.glow-text {
    background: linear-gradient(180deg, #FFE08A 0%, #F97316 60%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.40));
}

.gradient-text {
    background: linear-gradient(180deg, #FFE08A 0%, #F97316 55%, #C2410C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.40));
}

/* ── Scan Grid Overlay ──────────────────────────────────────── */
.scan-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0,255,229,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,229,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.8; }
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5,10,14,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.7rem 2rem;
    background: rgba(5,10,14,0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 1px rgba(0,255,229,0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #EA580C, #F97316, #FB923C);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-green);
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text);
    letter-spacing: -0.03em;
}

.nav-logo-text span {
    background: linear-gradient(180deg, #FFD580 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

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

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #EA580C, #F97316, #FB923C);
    color: #fff;
    box-shadow: 0 4px 20px rgba(249,115,22,0.40);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(249,115,22,0.65), var(--glow-green);
    filter: brightness(1.08);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0,255,229,0.15);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.btn-outline-cyan {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    box-shadow: 0 0 10px rgba(0,255,229,0.1);
}

.btn-outline-cyan:hover {
    background: rgba(0,255,229,0.08);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1rem;
    border-radius: var(--radius);
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0,161,156,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 100% 100%, rgba(0,93,170,0.15) 0%, transparent 60%),
                linear-gradient(180deg, rgba(5,10,14,0.3) 0%, rgba(5,10,14,0.7) 80%, var(--bg) 100%);
    z-index: 1;
}

#particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(0,255,229,0.08);
    border: 1px solid rgba(0,255,229,0.2);
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: var(--glow-cyan);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.hero-title .highlight {
    display: block;
    white-space: nowrap;
    background: linear-gradient(180deg, #FFE08A 0%, #F97316 60%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-cta-row2 {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(249,115,22,0.15);
    border-radius: 10px;
    padding: 0.45rem 1rem;
}
.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}
.mini-val {
    font-size: 0.95rem;
    font-weight: 800;
    background: linear-gradient(180deg,#FFE08A 0%,#F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mini-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.mini-divider {
    width: 1px;
    height: 28px;
    background: rgba(249,115,22,0.2);
}

/* ── Cube bottom stats ───────────────────────────────────────── */
.cube-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(10,12,20,0.6);
    border: 1px solid rgba(249,115,22,0.15);
    border-radius: 14px;
    backdrop-filter: blur(14px);
}
.cube-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
    text-align: center;
}
.cube-stat-val {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #FFE08A 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.cube-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.cube-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(249,115,22,0.2);
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .value {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(180deg, #FFE08A 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── Hero Right Panel ────────────────────────────────────────── */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* ── Workflow Animation ──────────────────────────────────────── */
.hero-workflow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10,12,20,0.7);
    border: 1px solid rgba(249,115,22,0.18);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    backdrop-filter: blur(16px);
    width: 100%;
}
.wf-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    text-align: center;
}
.wf-icon {
    width: 44px; height: 44px;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.3);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    margin-bottom: 4px;
}
.wf-icon svg { width: 22px; height: 22px; stroke: #FB923C; }
.wf-step-active .wf-icon {
    background: rgba(249,115,22,0.22);
    border-color: #F97316;
    box-shadow: 0 0 16px rgba(249,115,22,0.30);
}
.wf-step-active .wf-icon svg { stroke: #FFD580; }
.wf-pulse {
    position: absolute; top: -4px; right: -4px;
    width: 10px; height: 10px;
    background: #F97316; border-radius: 50%;
    animation: wfPulse 1.5s ease-in-out infinite;
}
@keyframes wfPulse {
    0%,100%{ transform:scale(1); opacity:1; box-shadow:0 0 0 0 rgba(249,115,22,0.6); }
    50%    { transform:scale(1.2); opacity:0.8; box-shadow:0 0 0 6px rgba(249,115,22,0); }
}
.wf-label { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.wf-sub   { font-size: 0.68rem; color: var(--text-muted); }
.wf-arrow { flex-shrink: 0; }
.wf-arrow svg { width: 36px; height: 14px; stroke: rgba(249,115,22,0.5); }

/* ── Cube Row: side-cards | cube | side-cards ────────────────── */
.cube-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.side-cards {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-shrink: 0;
}
.float-card {
    background: rgba(8,10,18,0.88);
    border: 1px solid rgba(249,115,22,0.18);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    backdrop-filter: blur(14px);
    font-size: 0.73rem;
    color: var(--text-dim);
    white-space: nowrap;
    animation: floatCard1 4s ease-in-out infinite;
    transition: border-color 0.3s;
}
.float-card:nth-child(2) { animation-name: floatCard2; animation-duration: 5s; animation-delay: 0.6s; }
.float-card:nth-child(3) { animation-name: floatCard3; animation-duration: 3.8s; animation-delay: 1.2s; }
.side-cards:last-child .float-card:nth-child(1) { animation-name: floatCard4; animation-duration: 4.5s; animation-delay: 0.3s; }
.side-cards:last-child .float-card:nth-child(2) { animation-name: floatCard5; animation-duration: 5.2s; animation-delay: 0.9s; }
.side-cards:last-child .float-card:nth-child(3) { animation-name: floatCard6; animation-duration: 3.5s; animation-delay: 1.5s; }
.float-card:hover { border-color: rgba(249,115,22,0.45); }
.float-card .tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.67rem;
    margin-bottom: 3px;
    letter-spacing: 0.03em;
}

@keyframes floatCard1 { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-8px)}  }
@keyframes floatCard2 { 0%,100%{transform:translateY(-4px)} 50%{transform:translateY(4px)}   }
@keyframes floatCard3 { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-10px)} }
@keyframes floatCard4 { 0%,100%{transform:translateY(-3px)} 50%{transform:translateY(6px)}   }
@keyframes floatCard5 { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-7px)}  }
@keyframes floatCard6 { 0%,100%{transform:translateY(-5px)} 50%{transform:translateY(5px)}   }

/* ── 3D Product Box ──────────────────────────────────────────── */
.box-scene {
    perspective: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: grab;
}
.box-scene:active { cursor: grabbing; }

.box-glow-ring {
    position: absolute;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(249,115,22,0.18) 0%, transparent 70%);
    animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
    0%,100%{ transform:scale(1);   opacity:0.6; }
    50%    { transform:scale(1.15); opacity:1; }
}

.product-cube {
    width: 200px; height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 14s linear infinite;
    transition: animation-play-state 0.3s;
}
.product-cube.paused { animation-play-state: paused; }

@keyframes rotateCube {
    from { transform: rotateX(15deg) rotateY(0deg); }
    to   { transform: rotateX(15deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 200px; height: 200px;
    border: 1px solid rgba(249,115,22,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFD580;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.cube-face.front  { transform:translateZ(100px);            background:rgba(249,115,22,0.10); }
.cube-face.back   { transform:rotateY(180deg)  translateZ(100px); background:rgba(234,88,12,0.08);  }
.cube-face.right  { transform:rotateY(90deg)   translateZ(100px); background:rgba(245,158,11,0.09); }
.cube-face.left   { transform:rotateY(-90deg)  translateZ(100px); background:rgba(249,115,22,0.07); }
.cube-face.top    { transform:rotateX(90deg)   translateZ(100px); background:rgba(252,211,77,0.08); }
.cube-face.bottom { transform:rotateX(-90deg)  translateZ(100px); background:rgba(252,211,77,0.05); }

.cube-face svg { width:38px; height:38px; stroke:#FFD580; filter:drop-shadow(0 0 4px rgba(249,115,22,0.5)); }
.cube-face .face-label { font-size:0.72rem; text-transform:uppercase; letter-spacing:0.1em; opacity:0.75; color:#FB923C; }

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0,161,156,0.02);
    overflow: hidden;
}

.trust-scroll {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: scrollTrust 20s linear infinite;
    white-space: nowrap;
}

@keyframes scrollTrust {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.trust-item .badge {
    padding: 4px 10px;
    border: 1px solid rgba(0,255,229,0.15);
    border-radius: 6px;
    color: var(--green-light);
    background: rgba(0,161,156,0.06);
}

/* ── Section Base ───────────────────────────────────────────── */
.section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 10;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    background: var(--cyan-faint);
    border: 1px solid rgba(0,255,229,0.15);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-title .accent {
    background: linear-gradient(180deg, #FFE08A 0%, #F97316 65%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.35));
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 600px;
    line-height: 1.7;
}

/* ── Before / After Comparison Cards ───────────────────────── */
.compare-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}
.compare-card {
    border-radius: 16px;
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}
.compare-before {
    background: rgba(248,113,113,0.05);
    border: 1px solid rgba(248,113,113,0.2);
    border-right: none;
    border-radius: 16px 0 0 16px;
}
.compare-after {
    background: rgba(249,115,22,0.07);
    border: 1px solid rgba(249,115,22,0.3);
    border-left: none;
    border-radius: 0 16px 16px 0;
}
.compare-after::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F97316, #FCD34D, transparent);
}
.compare-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.compare-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.compare-icon-bad  { background: rgba(248,113,113,0.15); color: #F87171; border: 1px solid rgba(248,113,113,0.3); }
.compare-icon-good { background: rgba(249,115,22,0.18);  color: #F97316; border: 1px solid rgba(249,115,22,0.4); }
.compare-label-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 3px;
}
.compare-tag-bad  { background: rgba(248,113,113,0.12); color: #FCA5A5; }
.compare-tag-good { background: rgba(249,115,22,0.15);  color: #FB923C; }
.compare-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
}
.compare-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.compare-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0.48rem 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.compare-item:last-child { border-bottom: none; }
.compare-item svg { flex-shrink: 0; opacity: 0.9; }
.compare-item-bad  { color: rgba(252,165,165,0.55); }
.compare-item-good { color: var(--text-dim); }
.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    writing-mode: vertical-rl;
    background: var(--surface);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1;
}

/* ── Stats Counter Row ──────────────────────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover { border-color: var(--glass-border-hover); transform: translateY(-4px); }
.stat-card:hover::before { opacity: 1; }

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(180deg, #FFE08A 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ── How It Works ───────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: start;
    margin-top: 3rem;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    color: var(--glass-border-hover);
}

.step-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,255,229,0.05);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EA580C, #F97316, #FB923C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    margin: 0 auto 1.2rem;
    box-shadow: var(--glow-green);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--cyan-faint);
    border: 1px solid rgba(0,255,229,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon svg { width: 28px; height: 28px; color: var(--cyan); }

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.step-desc { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }

/* ── Glass Cards (Features/Benefits) ────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
    transform-style: preserve-3d;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(0,255,229,0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.glass-card:hover {
    border-color: rgba(0,255,229,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,255,229,0.06);
    transform: translateY(-8px) rotateX(2deg);
}

.glass-card:hover::after { opacity: 1; }

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #EA580C, #F97316, #FB923C);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-shadow: var(--glow-green);
    flex-shrink: 0;
}

.card-icon svg { width: 26px; height: 26px; color: #fff; }

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.card-desc { font-size: 0.875rem; color: var(--text-dim); line-height: 1.65; }

/* ── Floating Report Images ─────────────────────────────────── */
.reports-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.reports-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-report {
    position: absolute;
    background: rgba(7,14,20,0.85);
    border: 1px solid rgba(0,255,229,0.1);
    border-radius: var(--radius);
    padding: 14px;
    backdrop-filter: blur(8px);
    font-size: 0.7rem;
    color: var(--text-muted);
    width: 220px;
    opacity: 0.35;
}

.report-header {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--green-light);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 6px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.report-line {
    height: 5px;
    border-radius: 2px;
    background: rgba(226,244,244,0.08);
    margin: 5px 0;
}

.report-line.accent { background: rgba(0,255,229,0.12); width: 60%; }
.report-line.w80    { width: 80%; }
.report-line.w50    { width: 50%; }
.report-line.w90    { width: 90%; }
.report-line.w65    { width: 65%; }

.report-badge {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(0,161,156,0.15);
    color: var(--green-light);
    border: 1px solid rgba(0,161,156,0.2);
}

.fr1  { top: 5%;  left: 3%;  animation: frFloat1 6s ease-in-out infinite; }
.fr2  { top: 30%; right: 5%; animation: frFloat2 8s ease-in-out infinite; }
.fr3  { bottom: 5%; left: 8%; animation: frFloat3 7s ease-in-out infinite; }
.fr4  { top: 10%; right: 25%; animation: frFloat1 5s ease-in-out infinite reverse; }
.fr5  { bottom: 20%; right: 2%; animation: frFloat2 9s ease-in-out infinite reverse; }

@keyframes frFloat1 { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-18px) rotate(1deg)} }
@keyframes frFloat2 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-22px) rotate(-1deg)} }
@keyframes frFloat3 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-15px) rotate(2deg)} }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,255,229,0.2);
}

.pricing-card.popular {
    background: linear-gradient(160deg, rgba(0,161,156,0.12), rgba(0,93,170,0.08));
    border-color: rgba(0,255,229,0.3);
    box-shadow: 0 0 40px rgba(0,161,156,0.15), 0 0 80px rgba(0,161,156,0.05);
    transform: scale(1.03);
}

.pricing-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #EA580C, #F97316, #FB923C);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: var(--glow-green);
}

.plan-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.plan-price {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.plan-price sup {
    font-size: 1.2rem;
    vertical-align: super;
    color: var(--text-dim);
}

.plan-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.plan-credits {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 0.9rem;
    background: var(--cyan-faint);
    border: 1px solid rgba(0,255,229,0.15);
    border-radius: 100px;
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-dim);
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.plan-features li svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

.plan-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(0,255,229,0.2);
    transform: translateY(-4px);
}

.stars { color: #F59E0B; margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EA580C, #F97316, #FB923C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; max-width: 820px; }

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(0,255,229,0.25); }

.faq-question {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--text);
    gap: 1rem;
    user-select: none;
}

.faq-question:hover { color: var(--cyan); }

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--cyan);
}

.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--cyan); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.75;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

/* ── Legal Disclaimer ───────────────────────────────────────── */
.disclaimer-box {
    background: rgba(245,158,11,0.05);
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-icon { color: #F59E0B; flex-shrink: 0; margin-top: 2px; }

.disclaimer-text {
    font-size: 0.82rem;
    color: rgba(226,244,244,0.5);
    line-height: 1.7;
}

.disclaimer-text strong { color: rgba(245,158,11,0.8); font-weight: 600; }

/* ── WhatsApp Float Button ──────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    text-decoration: none;
    animation: waFloat 3s ease-in-out infinite;
}

@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

.whatsapp-float-inner {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4);
    animation: waPulse 2s infinite;
    transition: transform 0.3s;
}

.whatsapp-float:hover .whatsapp-float-inner { transform: scale(1.1); }

@keyframes waPulse {
    0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float-inner svg { width: 30px; height: 30px; fill: #fff; }

.whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5,10,14,0.9);
    border: 1px solid rgba(37,211,102,0.3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
    background: var(--bg2);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, rgba(0,161,156,0.12), rgba(0,93,170,0.08));
    border: 1px solid rgba(0,255,229,0.15);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0,161,156,0.08) 0%, transparent 60%);
    animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%,100%{transform:scale(1);opacity:0.8}
    50%    {transform:scale(1.1);opacity:1}
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.8rem;
    position: relative;
}

.cta-sub {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Auth Pages ──────────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.auth-card {
    background: rgba(7,14,20,0.9);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
}

.auth-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.auth-card .sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.2rem; }

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(5,10,14,0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,255,229,0.08);
}

.form-input::placeholder { color: var(--text-muted); }

.form-error {
    font-size: 0.8rem;
    color: #F87171;
    margin-top: 0.4rem;
    display: block;
}

.alert {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-error { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.25); color: #FCA5A5; }
.alert-success { background: rgba(0,161,156,0.1); border: 1px solid rgba(0,161,156,0.25); color: var(--green-light); }

/* ── Dashboard ──────────────────────────────────────────────── */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dash-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: rgba(7,14,20,0.95);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 100;
}

.dash-main {
    margin-left: 260px;
    flex: 1;
    background: var(--bg);
    min-height: 100vh;
}

.dash-topbar {
    background: rgba(5,10,14,0.9);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.credits-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    background: var(--cyan-faint);
    border: 1px solid rgba(0,255,229,0.2);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--cyan);
}

.dash-nav { flex: 1; padding: 1.5rem 0.75rem; }

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 4px;
}

.dash-nav-item:hover,
.dash-nav-item.active {
    background: var(--cyan-faint);
    color: var(--cyan);
    border-color: rgba(0,255,229,0.15);
}

.dash-nav-item.active { font-weight: 600; }

.dash-content { padding: 2rem; }

/* ── Upload zone ─────────────────────────────────────────────── */
.upload-zone {
    border: 2px dashed var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--cyan);
    background: var(--cyan-faint);
    box-shadow: 0 0 30px rgba(0,255,229,0.08);
}

.upload-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    background: var(--cyan-faint);
    border: 1px solid rgba(0,255,229,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.upload-icon svg { width: 36px; height: 36px; color: var(--cyan); }

/* ── Glow divider ────────────────────────────────────────────── */
.glow-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    border-radius: 2px;
    margin: 1.5rem auto 0;
    box-shadow: var(--glow-cyan);
}

/* ── Animations (GSAP targets) ──────────────────────────────── */
/* No CSS pre-hiding — GSAP sets initial state via from()/fromTo() */
.reveal, .reveal-left, .reveal-right, .reveal-scale { }

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
    .steps-grid     { grid-template-columns: 1fr; }
    .step-connector { display: none; }
    .stats-row      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content       { grid-template-columns: 1fr; }
    .box-scene          { display: none; }
    .cards-grid         { grid-template-columns: 1fr; }
    .testimonials-grid  { grid-template-columns: 1fr; }
    .pricing-grid       { grid-template-columns: 1fr; }
    .footer-grid        { grid-template-columns: 1fr 1fr; }
    .nav-links          { display: none; }
    .dash-sidebar       { transform: translateX(-100%); }
    .dash-main          { margin-left: 0; }
}


/* ============================================================
   MOBILE / TABLET RESPONSIVE — Enhanced
   Breakpoints: 1024px (tablet), 768px (mobile), 480px (small phone)
   ============================================================ */

/* Hamburger button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 0; flex-shrink: 0;
}
.nav-hamburger span {
    display: block; width: 20px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none; position: fixed; inset: 0; z-index: 998;
    background: rgba(3,8,16,0.97); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 5rem 2rem 2rem;
    flex-direction: column; gap: 0; overflow-y: auto;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
    display: block; padding: 1rem 0; font-size: 1.1rem; font-weight: 600;
    color: var(--text-muted); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.2s;
}
.mobile-nav-overlay a:hover { color: var(--cyan); }
.mobile-nav-overlay .mob-ctas {
    display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem;
}
.mobile-nav-overlay .mob-ctas a { border: none; padding: 0.9rem; text-align: center; }

/* Touch targets */
.btn { min-height: 44px; }

/* 1024px tablet */
@media (max-width: 1024px) {
    .nav-container { padding: 0 1.25rem; }
    .hero { padding: 5rem 1.5rem 3rem; }
    .hero-title { font-size: clamp(2rem,4vw,2.8rem); }
    .section-inner { padding: 0 1.5rem; }
    .section-title { font-size: clamp(1.6rem,3.5vw,2.2rem); }
    .trust-bar { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
    .comparison-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .cf-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2,1fr); }
}

/* 768px mobile */
@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-links { display: none !important; }
    .nav-ctas .btn-ghost { display: none; }
    .nav-container { justify-content: space-between; }
    .hero { padding: 4rem 1.25rem 2.5rem; }
    .hero-content { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(1.8rem,6vw,2.4rem); }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-ctas { flex-wrap: wrap; gap: 0.75rem; }
    .hero-ctas .btn-lg { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
    .hero-right, .box-scene { display: none; }
    .section { padding: 3rem 0; }
    .section-inner { padding: 0 1.25rem; }
    .section-title { font-size: clamp(1.4rem,5.5vw,2rem); }
    .section-sub { font-size: 0.875rem; }
    .cards-grid { grid-template-columns: 1fr; gap: 1rem; }
    .glass-card { padding: 1.5rem; }
    .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .step-connector { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 1.5rem; }
    .faq-question { font-size: 0.9rem; padding: 1rem 1.25rem; }
    .faq-answer-inner { font-size: 0.875rem; padding: 0 1.25rem 1rem; }
    .footer { padding: 2.5rem 1.25rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; font-size: 0.75rem; }
    .dash-sidebar { transform: translateX(-100%); transition: transform 0.3s; position: fixed; z-index: 100; height: 100%; }
    .dash-sidebar.open { transform: translateX(0); }
    .dash-main { margin-left: 0; padding: 1rem; }
    .dash-topbar { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1rem; }
    .contact-wrap { padding: 2rem 1.25rem 4rem; }
    .contact-hero { padding: 3.5rem 1.25rem 1.5rem; }
    .contact-info { grid-template-columns: 1fr; }
    .cf-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; padding: 0 1.25rem; }
    .blog-article-header { padding: 3.5rem 1.25rem 2rem; }
    .blog-content { padding: 1.75rem 1.25rem 2rem; }
    .proc-diag { grid-template-columns: repeat(2,1fr) !important; }
    .related-grid { grid-template-columns: 1fr; }
    .signoff-grid { grid-template-columns: 1fr; }
    .btn-lg { padding: 0.8rem 1.4rem; font-size: 0.88rem; }
    .cta-actions { flex-wrap: wrap; gap: 0.75rem; }
    .cta-actions .btn-lg { flex: 1 1 200px; justify-content: center; }
    .floating-report { display: none; }
    #sampleReportOverlay iframe { height: calc(100% - 52px); }
    .tofd-diag svg { min-height: 160px; }
    .stats-row { grid-template-columns: repeat(2,1fr); }
}

/* 480px small phones */
@media (max-width: 480px) {
    .hero { padding: 3.5rem 1rem 2rem; }
    .hero-title { font-size: 1.75rem; line-height: 1.2; }
    .hero-badge { font-size: 0.68rem; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .section { padding: 2.5rem 0; }
    .section-inner { padding: 0 1rem; }
    .section-title { font-size: 1.4rem; }
    .glass-card { padding: 1.2rem; }
    .plan-price { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-col h4 { font-size: 0.82rem; }
    .blog-article-header h1 { font-size: 1.4rem; }
    .blog-lead { font-size: 0.9rem; }
    .proc-diag { grid-template-columns: repeat(2,1fr) !important; }
    .data-table { font-size: 0.72rem; }
    .data-table th, .data-table td { padding: 0.45rem 0.6rem; }
    .nc-item { padding: 1rem; }
    .contact-card { padding: 1.5rem 1rem; }
    .btn { font-size: 0.82rem; }
    .cta-title { font-size: 1.4rem; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .cta-actions .btn-lg { text-align: center; justify-content: center; width: 100%; }
    .hero-ctas .btn-lg { font-size: 0.85rem; padding: 0.75rem 1rem; }
    .btn-sample-report { font-size: 0.75rem; padding: 0.45rem 0.9rem; }
}
