/* ========================================
   METRICS BOOSTER — PREMIUM DARK LANDING PAGE
   Design System matching metricsbooster.fr
   ======================================== */

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

:root {
    /* Colors */
    --bg-deep: #050608;
    --bg-card: rgba(17, 18, 22, 0.7);
    --bg-card-hover: rgba(25, 27, 35, 0.85);
    --bg-card-border: rgba(255, 255, 255, 0.06);
    --bg-card-border-hover: rgba(100, 200, 255, 0.15);

    --text-primary: #f1f5f9;
    --text-secondary: rgba(241, 245, 249, 0.6);
    --text-muted: rgba(241, 245, 249, 0.35);

    --accent-cyan: #22d3ee;
    --accent-blue: #3b82f6;
    --accent-purple: #a855f7;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-orange: #f97316;

    --gradient-main: linear-gradient(135deg, #22d3ee, #3b82f6);
    --gradient-text: linear-gradient(135deg, #22d3ee, #a855f7);

    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad: 120px;
    --container-max: 1200px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-med: 0.35s ease;
    --transition-slow: 0.6s ease;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- UTILITY ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 60px;
}

.section {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--gradient-main);
    color: #050608;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.25);
    cursor: pointer;
    transition: all var(--transition-med);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition-fast);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(34, 211, 238, 0.35);
}

.btn-primary:hover::before {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary.btn-lg {
    padding: 20px 48px;
    font-size: 1.1rem;
    border-radius: var(--radius-xl);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-med);
    background: transparent;
    cursor: pointer;
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.05);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-med);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 6, 8, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--bg-card-border);
    padding: 10px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 10px 24px;
    border: 1px solid rgba(241, 245, 249, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition-med);
}

.nav-cta:hover {
    border-color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.08);
    color: var(--accent-cyan);
}

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 220px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.25), transparent 70%);
    top: -200px;
    left: 20%;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
    bottom: 20%;
    right: -100px;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    border: 1px solid rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.05);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    margin-bottom: 8px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, #3b82f6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 12px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* ----------------------------------------
   STATS BAND (full-width dark bar below hero)
   ---------------------------------------- */
.stats-band {
    width: 100%;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.stats-band-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 0 48px;
}

.stats-band-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stats-band-divider {
    display: none;
}

.stats-band-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
    white-space: nowrap;
}

.stats-band-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
}


/* ========================================
   PROBLEM vs SOLUTION
   ======================================== */
.problem-section {
    background: linear-gradient(180deg, #020305 0%, rgba(10, 12, 18, 1) 50%, var(--bg-deep) 100%);
    padding-top: 140px;
}

/* Removed market-context as it is now in proof-section */


.comparison-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.comparison-card {
    flex: 1;
    max-width: 400px;
    min-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: left;
    transition: all var(--transition-med);
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-bad {
    border-color: rgba(239, 68, 68, 0.15);
}

.comparison-bad:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.08);
}

.comparison-good {
    border-color: rgba(16, 185, 129, 0.15);
}

.comparison-good:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.08);
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.comparison-vs span {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 3px;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.comparison-icon {
    font-size: 1.5rem;
}

.comparison-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-list {
    margin-bottom: 24px;
}

.comparison-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-highlight-bad {
    color: var(--accent-red) !important;
    font-weight: 700;
}

.comparison-highlight-good {
    color: var(--accent-green) !important;
    font-weight: 700;
}

.comparison-verdict {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    padding-top: 8px;
    border-top: 1px solid var(--bg-card-border);
}

.verdict-good {
    color: var(--accent-green) !important;
    font-weight: 600;
    font-style: normal;
}

/* Clarity (Do / Don't) */
.clarity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.clarity-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: left;
    transition: all var(--transition-med);
}

.clarity-card:hover {
    transform: translateY(-2px);
}

.clarity-dont {
    border-color: rgba(239, 68, 68, 0.12);
}

.clarity-dont:hover {
    border-color: rgba(239, 68, 68, 0.25);
}

.clarity-do {
    border-color: rgba(34, 211, 238, 0.12);
}

.clarity-do:hover {
    border-color: rgba(34, 211, 238, 0.25);
}

.clarity-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.clarity-dont .clarity-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
}

.clarity-do .clarity-icon {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-cyan);
}

.clarity-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.clarity-card ul li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    position: relative;
    padding-left: 20px;
}

.clarity-dont ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 700;
    font-size: 0.75rem;
}

.clarity-do ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 0.75rem;
}

.clarity-disclaimer {
    position: relative;
    background: rgba(17, 18, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 40px 60px;
    margin: 100px auto 20px;
    max-width: 850px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.clarity-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0.3;
}

.clarity-disclaimer p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.clarity-disclaimer strong {
    color: var(--text-primary);
    font-weight: 800;
}

.disclaimer-brutal {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
    font-size: 0.95rem !important;
    color: var(--accent-cyan) !important;
    margin-top: 24px;
    opacity: 0.9;
}

.disclaimer-scan {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.05), transparent);
    animation: scan 4s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* ========================================
   PRICING
   ======================================== */
.pricing-section {
    padding-top: 40px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(8, 10, 18, 1) 100%);
}

.pricing-wallet-info {
    max-width: 1100px;
    margin: 0 auto 56px;
    background: rgba(34, 211, 238, 0.04);
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 12px;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-wallet-info svg {
    width: 20px;
    height: 20px;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.pricing-wallet-info strong {
    color: var(--accent-cyan);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    text-align: left;
    position: relative;
    transition: all var(--transition-med);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--bg-card-border-hover);
    box-shadow: 0 12px 48px rgba(34, 211, 238, 0.08);
}

.pricing-card-featured {
    border-color: rgba(34, 211, 238, 0.25);
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.04) 0%, var(--bg-card) 40%);
}

.pricing-card-featured:hover {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 16px 60px rgba(34, 211, 238, 0.12);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 4px 16px;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pricing-badge-hot {
    background: var(--gradient-main) !important;
    color: var(--bg-deep) !important;
    border: none !important;
}

.pricing-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(34, 211, 238, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pricing-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-cyan);
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-old-price {
    font-size: 1rem;
    color: var(--accent-red);
    text-decoration: line-through;
    font-weight: 500;
}

.pricing-per {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-features {
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta {
    width: 100%;
    text-align: center;
}

/* ========================================
   INFRASTRUCTURE
   ======================================== */
.infra-section {
    background: linear-gradient(180deg, rgba(8, 10, 18, 1) 0%, var(--bg-deep) 100%);
}

.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.infra-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: left;
    transition: all var(--transition-med);
}

.infra-card:hover {
    transform: translateY(-4px);
    border-color: var(--bg-card-border-hover);
    box-shadow: 0 8px 40px rgba(34, 211, 238, 0.06);
}

.infra-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(34, 211, 238, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.infra-icon-wrap svg {
    width: 22px;
    height: 22px;
    color: var(--accent-cyan);
}

.infra-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.infra-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   PROCESS
   ======================================== */
.process-section {
    background: var(--bg-deep);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.process-card {
    background: rgba(34, 211, 238, 0.02);
    border: 1px solid rgba(34, 211, 238, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: all var(--transition-med);
}

.process-card:hover {
    background: rgba(34, 211, 238, 0.04);
    border-color: rgba(34, 211, 238, 0.15);
    transform: translateY(-5px);
}

.process-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-cyan);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    pointer-events: none;
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Button Glows Refinement */
.btn-primary:hover, .nav-cta:hover, .pricing-cta:hover {
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
    background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(10, 12, 18, 1) 100%);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--bg-card-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    transition: color var(--transition-fast);
}

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

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition-med);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med), padding var(--transition-med);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--text-primary);
}

/* ========================================
   FINAL CTA
   ======================================== */
.cta-section {
    padding: 80px 0 100px;
}

.cta-block {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    border-top: 1px solid var(--bg-card-border);
    padding: 48px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animation (triggered by JS) */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   LINE CHART DECORATION (pricing card)
   ======================================== */
.pricing-card-featured::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg, rgba(34, 211, 238, 0.03), transparent);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    pointer-events: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .hero-content {
        max-width: 100%;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .infra-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 80px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 6, 8, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--bg-card-border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-burger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        margin-top: 48px;
    }

    .hero-cta-group {
        flex-direction: column;
        justify-content: center;
    }

    .comparison-grid {
        flex-direction: column;
        align-items: center;
    }

    .comparison-vs {
        padding: 12px 0;
    }

    .clarity-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Stats band: stack vertically on mobile */
    .stats-band {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        padding: 40px 20px;
    }

    .stats-band-inner {
        flex-direction: column;
        gap: 32px;
        padding: 0 20px;
    }

    /* Hero: reset to normal flow when stats band is relative */
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    /* Nav z-index fix */
    .nav-links {
        z-index: 999;
    }

    /* Network grid: 1 column on mobile */
    .network-grid-demo {
        grid-template-columns: 1fr;
    }

    /* Pricing wallet: wrap on mobile */
    .pricing-wallet-info {
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }

    /* Process section: stack vertically on mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 30px;
    }

    .process-number {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }
}

/* ========================================
   NETWORK PREVIEW
   ======================================== */
.network-preview {
    margin-top: 80px;
    text-align: center;
}

.network-preview-header {
    margin-bottom: 48px;
}

.network-preview-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.network-preview-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.network-grid-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.network-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--bg-card-border);
    background: var(--bg-card);
    transition: transform var(--transition-med), border-color var(--transition-med);
}

.network-item:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.2);
}

.network-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--bg-card-border);
}

.network-browser-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.network-browser-bar .dot:nth-child(1) { background: #ef4444; }
.network-browser-bar .dot:nth-child(2) { background: #f97316; }
.network-browser-bar .dot:nth-child(3) { background: #10b981; }

.url-bar {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: left;
    font-family: monospace;
}

.network-img-placeholder {
    padding: 20px;
    min-height: 180px;
}

.placeholder-content { display: flex; flex-direction: column; gap: 12px; }

.p-nav {
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
}

.p-hero {
    height: 60px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(34,211,238,0.08), rgba(168,85,247,0.06));
}

.p-hero-alt {
    height: 60px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(34,211,238,0.05));
}

.p-grid { display: flex; gap: 8px; }
.p-card {
    flex: 1;
    height: 40px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}

.p-list { display: flex; flex-direction: column; gap: 8px; }
.p-line {
    height: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
}
.p-line:nth-child(2) { width: 75%; }
.p-line:nth-child(3) { width: 55%; }

.network-disclaimer {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 100px;
    background: rgba(34, 211, 238, 0.04);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .btn-primary.btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .nav-logo {
        font-size: 1.4rem;
    }

    .visual-card {
        width: 100%;
        padding: 24px;
    }
}
