/**
 * CampagnaElettorale.net — Frontend Design System
 * Design: "Premium Political SaaS" — High-Conversion Monetization
 * Palette: Deep Navy (#09090B / #0F172A) + Emerald Green (#10B981) + Urgency Red (#EF4444)
 * Font: Inter
 */

/* ========================================================================== */
/* CSS CUSTOM PROPERTIES (Design Tokens)                                      */
/* ========================================================================== */
:root {
    --color-primary: #000000;
    --color-on-primary: #ffffff;
    --color-primary-container: #131b2e;
    --color-on-primary-container: #7c839b;

    --color-secondary: #10B981;
    --color-secondary-dark: #059669;
    --color-secondary-light: #34D399;
    --color-secondary-container: #D1FAE5;
    --color-on-secondary: #ffffff;

    --color-urgency: #EF4444;
    --color-urgency-dark: #DC2626;
    --color-urgency-bg: #FEF2F2;

    --color-surface: #F8FAFC;
    --color-surface-container-lowest: #ffffff;
    --color-surface-container-low: #f1f5f9;
    --color-surface-container: #e2e8f0;
    --color-surface-container-high: #cbd5e1;
    --color-surface-navy: #09090B;
    --color-surface-card-dark: #111827;
    --color-on-surface: #0F172A;
    --color-on-surface-variant: #475569;
    --color-inverse-surface: #1E293B;
    --color-inverse-on-surface: #F8FAFC;

    --color-outline: #94A3B8;
    --color-outline-variant: #CBD5E1;
    --color-border-subtle: #E2E8F0;
    --color-border-dark: #1E293B;
    --color-text-muted: #64748B;
    --color-error: #EF4444;

    --container-max: 1200px;
    --gutter: 24px;
    --margin-mobile: 16px;
    --section-padding: 80px;
    --stack-sm: 8px;
    --stack-md: 16px;
    --stack-lg: 32px;

    --rounded-sm: 0.375rem;
    --rounded: 0.5rem;
    --rounded-md: 0.75rem;
    --rounded-lg: 1rem;
    --rounded-xl: 1.5rem;
    --rounded-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px -10px rgba(0, 0, 0, 0.2);
}

/* ========================================================================== */
/* BASE RESET                                                                 */
/* ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-on-surface);
    background-color: var(--color-surface);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content-wrap {
    flex: 1 0 auto;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.section-padding { padding-top: var(--section-padding); padding-bottom: var(--section-padding); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gutter); }
.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-emerald { color: var(--color-secondary) !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.font-bold { font-weight: 700; }
.w-full { width: 100%; }

/* ========================================================================== */
/* BUTTONS                                                                    */
/* ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--rounded);
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: #0F172A; color: #ffffff; }
.btn-primary:hover { background: #1E293B; }
.btn-emerald {
    background: var(--color-secondary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}
.btn-emerald:hover {
    background: var(--color-secondary-dark);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
}
.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(30deg);
    animation: shine 4s infinite linear;
}
@keyframes shine {
    0% { transform: translate(-100%, -100%) rotate(30deg); }
    30%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}
.btn-dark-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-dark-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost {
    background: transparent;
    color: var(--color-on-surface-variant);
    border: 1px solid var(--color-border-subtle);
}
.btn-ghost:hover { background: var(--color-surface-container-low); }
.btn-lg { padding: 16px 32px; font-size: 16px; font-weight: 700; border-radius: var(--rounded-md); }
.btn-sm { padding: 8px 16px; font-size: 13px; font-weight: 600; }
.btn-block { width: 100%; }

/* ========================================================================== */
/* NAVBAR                                                                     */
/* ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(9, 9, 11, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.navbar-brand {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.navbar-links { display: flex; align-items: center; gap: 24px; }
.navbar-links a {
    font-size: 14px;
    font-weight: 600;
    color: #94A3B8;
    transition: color 0.2s;
}
.navbar-links a:hover { color: #ffffff; }
.navbar-links a.active { color: var(--color-secondary); }
.navbar-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #ffffff;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #09090B;
    border-bottom: 1px solid #1E293B;
    padding: 20px var(--gutter);
    z-index: 49;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-weight: 600;
    color: #E2E8F0;
    border-bottom: 1px solid #1E293B;
}

/* ========================================================================== */
/* TOP URGENCY BANNER                                                         */
/* ========================================================================== */
.urgency-top-banner {
    background: #09090B;
    border-bottom: 1px solid #1E293B;
    padding: 10px 0;
    color: #ffffff;
    font-size: 13px;
    position: relative;
    z-index: 40;
    margin-top: 70px;
}
.urgency-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 3px 10px;
    border-radius: var(--rounded-full);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.05em;
}
.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.urgency-countdown {
    display: flex;
    gap: 6px;
    align-items: center;
}
.countdown-unit {
    background: #18181B;
    border: 1px solid #27272A;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #A1A1AA;
}
.countdown-unit strong { color: #ffffff; font-weight: 800; font-size: 13px; }

/* ========================================================================== */
/* HERO DIRECT-RESPONSE                                                       */
/* ========================================================================== */
.hero-direct {
    background: radial-gradient(circle at 50% 20%, #172554 0%, #09090B 75%);
    color: #ffffff;
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34D399;
    padding: 6px 14px;
    border-radius: var(--rounded-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.icon-bolt { font-size: 16px; font-variation-settings: 'FILL' 1; }
.hero-headline {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.gradient-text {
    background: linear-gradient(135deg, #10B981 0%, #6EE7B7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 32px;
}
.hero-lead strong { color: #F8FAFC; }
.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-proof-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.proof-stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; }
.proof-text { font-size: 13px; color: #94A3B8; }
.proof-divider { width: 1px; height: 28px; background: rgba(255, 255, 255, 0.1); }

.hero-mockup-wrapper { position: relative; }
.hero-card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}
.mockup-card {
    position: relative;
    z-index: 2;
    background: #0F172A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--rounded-lg);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}
.mockup-header {
    background: #09090B;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }
.mockup-domain { color: #94A3B8; font-family: monospace; font-size: 11px; }
.mockup-status { color: #10B981; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.status-indicator { width: 6px; height: 6px; background: #10B981; border-radius: 50%; }
.mockup-body { padding: 28px 24px; }
.cand-badge { color: #10B981; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; margin-bottom: 8px; }
.cand-name { font-size: 28px; font-weight: 800; color: #ffffff; margin-bottom: 4px; }
.cand-role { font-size: 14px; color: #94A3B8; margin-bottom: 16px; }
.cand-slogan { font-size: 14px; font-style: italic; color: #E2E8F0; padding: 12px; background: rgba(255, 255, 255, 0.05); border-left: 3px solid #10B981; border-radius: 4px; margin-bottom: 20px; }
.cand-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.c-stat { background: rgba(255, 255, 255, 0.04); padding: 10px; border-radius: 6px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.08); }
.c-val { display: block; font-size: 18px; font-weight: 800; color: #10B981; }
.c-lbl { font-size: 10px; color: #94A3B8; }
.cand-actions-preview { display: flex; flex-direction: column; gap: 8px; }
.preview-btn-mock {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    color: #CBD5E1;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}
.preview-btn-mock.primary { background: #10B981; color: #ffffff; border: none; }

/* ========================================================================== */
/* AUTHORITY BAR                                                              */
/* ========================================================================== */
.authority-bar {
    background: #0F172A;
    border-bottom: 1px solid #1E293B;
    padding: 24px 0;
    text-align: center;
}
.authority-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #64748B;
    margin-bottom: 16px;
}
.authority-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.auth-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ========================================================================== */
/* QUORUM CALCULATOR                                                          */
/* ========================================================================== */
.calculator-section {
    padding: var(--section-padding) 0;
    background: #F8FAFC;
}
.section-header { margin-bottom: 48px; }
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    padding: 4px 12px;
    border-radius: var(--rounded-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.section-title { font-size: 36px; font-weight: 800; color: #0F172A; margin-bottom: 12px; letter-spacing: -0.02em; }
.section-subtitle { font-size: 17px; color: #64748B; max-width: 720px; margin: 0 auto; line-height: 1.6; }

.calculator-box {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: var(--rounded-xl);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.calc-inputs-pane {
    padding: 40px;
    border-right: 1px solid #E2E8F0;
    background: #ffffff;
}
.calc-pane-title { font-size: 20px; font-weight: 700; color: #0F172A; margin-bottom: 24px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #334155; margin-bottom: 8px; }
.label-with-val { display: flex; justify-content: space-between; align-items: center; }
.val-display { font-size: 14px; font-weight: 700; color: #059669; background: #ECFDF5; padding: 2px 8px; border-radius: 4px; }
.input-icon-wrap { position: relative; }
.input-icon { position: absolute; left: 12px; top: 12px; color: #94A3B8; font-size: 20px; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CBD5E1;
    border-radius: var(--rounded);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-icon-wrap .form-control { padding-left: 40px; }
.form-control:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}
.range-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E2E8F0;
    outline: none;
    -webkit-appearance: none;
    margin: 12px 0 6px;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #10B981;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
    border: 2px solid #ffffff;
}
.slider-marks { display: flex; justify-content: space-between; font-size: 11px; color: #94A3B8; }

.calc-results-pane {
    padding: 40px;
    background: #0F172A;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 8px; }
.res-title { font-size: 13px; font-weight: 800; letter-spacing: 0.05em; color: #94A3B8; }
.res-badge { background: #10B981; color: #ffffff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--rounded-full); }
.results-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.res-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rounded-md);
    padding: 16px;
}
.res-card.highlight {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.4);
}
.res-card-label { font-size: 10px; font-weight: 700; color: #94A3B8; letter-spacing: 0.05em; margin-bottom: 6px; }
.res-card.highlight .res-card-label { color: #34D399; }
.res-card-num { font-size: 28px; font-weight: 800; color: #ffffff; line-height: 1.1; margin-bottom: 4px; }
.res-card.highlight .res-card-num { color: #10B981; font-size: 32px; }
.res-card-sub { font-size: 11px; color: #64748B; }

.recommended-pkg-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--rounded-md);
    padding: 20px;
}
.pkg-rec-label { font-size: 11px; font-weight: 700; color: #F59E0B; margin-bottom: 6px; }
.pkg-rec-title { font-size: 18px; font-weight: 800; color: #ffffff; margin-bottom: 6px; }
.pkg-rec-desc { font-size: 13px; color: #94A3B8; margin-bottom: 16px; line-height: 1.5; }
.pkg-rec-footer { display: flex; justify-content: space-between; align-items: center; }
.pkg-rec-price { font-size: 24px; font-weight: 800; color: #ffffff; }
.pkg-rec-price small { font-size: 12px; color: #94A3B8; font-weight: normal; }

/* ========================================================================== */
/* PRICING & VALUE LADDER                                                     */
/* ========================================================================== */
.pricing-direct-section {
    background: #09090B;
    padding: var(--section-padding) 0;
}
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}
.price-box {
    background: #111827;
    border: 1px solid #1F2937;
    border-radius: var(--rounded-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    position: relative;
}
.price-box.featured-glow {
    background: #0F172A;
    border: 2px solid #10B981;
    box-shadow: 0 0 35px rgba(16, 185, 129, 0.25);
    transform: scale(1.04);
    z-index: 2;
}
.featured-badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: var(--rounded-full);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}
.tier-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: #94A3B8; margin-bottom: 8px; }
.tier-tag.text-purple { color: #A78BFA; }
.tier-name { font-size: 22px; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.tier-cost { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.tier-cost .currency { font-size: 24px; font-weight: 700; color: #94A3B8; }
.tier-cost .amount { font-size: 48px; font-weight: 800; line-height: 1; color: #ffffff; }
.tier-cost .period { font-size: 13px; color: #64748B; margin-left: 6px; }
.tier-description { font-size: 14px; color: #94A3B8; line-height: 1.5; margin-bottom: 24px; min-height: 42px; }
.tier-features-list { flex-grow: 1; margin-bottom: 32px; }
.feat-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #E2E8F0;
    margin-bottom: 12px;
    line-height: 1.4;
}
.check-icon { font-size: 18px; color: #94A3B8; flex-shrink: 0; margin-top: 1px; }
.lock-guarantee-note { font-size: 12px; color: #64748B; text-align: center; margin-top: 12px; }

/* ========================================================================== */
/* 100% 48-HOUR GUARANTEE SECTION                                             */
/* ========================================================================== */
.guarantee-section {
    padding: 60px 0;
    background: #09090B;
    border-top: 1px solid #1E293B;
}
.guarantee-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(9, 9, 11, 0.8) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--rounded-xl);
    padding: 40px;
    display: flex;
    gap: 32px;
    align-items: center;
}
.guarantee-badge-large {
    background: #10B981;
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}
.guarantee-badge-large .material-symbols-outlined { font-size: 48px; }
.guarantee-heading { font-size: 20px; font-weight: 800; color: #34D399; margin-bottom: 10px; letter-spacing: 0.02em; }
.guarantee-desc { font-size: 15px; color: #E2E8F0; line-height: 1.6; margin-bottom: 16px; }
.guarantee-checks { display: flex; gap: 24px; font-size: 13px; font-weight: 600; color: #A7F3D0; flex-wrap: wrap; }

/* ========================================================================== */
/* COMPARISON MATRIX TABLE                                                    */
/* ========================================================================== */
.comparison-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}
.table-responsive { overflow-x: auto; margin-top: 32px; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}
.comparison-table th, .comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #E2E8F0;
}
.comparison-table th { background: #F1F5F9; font-weight: 700; color: #334155; font-size: 12px; letter-spacing: 0.05em; }
.comparison-table th.col-highlight, .comparison-table td.col-highlight {
    background: #F0FDF4;
    border-left: 2px solid #10B981;
    border-right: 2px solid #10B981;
}

/* ========================================================================== */
/* PROGRAMMATIC SEO LOCAL GRID                                                */
/* ========================================================================== */
.pseo-grid-section {
    padding: 60px 0;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}
.pseo-header { margin-bottom: 24px; }
.pseo-title { font-size: 20px; font-weight: 700; color: #0F172A; margin-bottom: 6px; }
.pseo-subtitle { font-size: 14px; color: #64748B; }
.pseo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.pseo-link-item {
    background: #ffffff;
    border: 1px solid #CBD5E1;
    padding: 10px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #334155;
    transition: all 0.2s;
}
.pseo-link-item:hover {
    border-color: #10B981;
    background: #F0FDF4;
    transform: translateY(-1px);
}
.link-pin { font-size: 16px; color: #10B981; margin-right: 6px; }
.link-name { flex-grow: 1; font-weight: 600; }
.link-badge { font-size: 10px; font-weight: 700; color: #059669; background: #D1FAE5; padding: 2px 6px; border-radius: 4px; }

/* ========================================================================== */
/* FAQ ACCORDION                                                              */
/* ========================================================================== */
.faq-direct-section {
    padding: var(--section-padding) 0;
    background: #ffffff;
}
.faq-accordion-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-card {
    border: 1px solid #E2E8F0;
    border-radius: var(--rounded-md);
    background: #F8FAFC;
    overflow: hidden;
}
.faq-quest {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
}
.faq-quest::-webkit-details-marker { display: none; }
.faq-arrow { transition: transform 0.2s; font-size: 24px; color: #64748B; }
.faq-card[open] .faq-arrow { transform: rotate(180deg); color: #10B981; }
.faq-body { padding: 0 24px 20px; font-size: 15px; color: #475569; line-height: 1.6; }

/* ========================================================================== */
/* STICKY BOTTOM BAR                                                          */
/* ========================================================================== */
.bottom-sticky-bar {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.96);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 0;
    z-index: 45;
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}
.bottom-sticky-bar.visible { bottom: 0; }
.sticky-bar-inner { display: flex; justify-content: space-between; align-items: center; color: #ffffff; }

/* ========================================================================== */
/* SNIPER PREVIEW PAGE                                                        */
/* ========================================================================== */
.sniper-urgency-banner {
    background: #450A0A;
    border-bottom: 1px solid #991B1B;
    padding: 12px 0;
    color: #ffffff;
    font-size: 13px;
    margin-top: 70px;
}
.sniper-urgency-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.sniper-pulse { display: flex; align-items: center; gap: 8px; color: #FECACA; }
.pulsing-dot-red { width: 8px; height: 8px; background: #EF4444; border-radius: 50%; animation: pulse 1.2s infinite; }
.sniper-preview-section { padding: 48px 0 120px; background: #09090B; color: #ffffff; min-height: 85vh; }
.sniper-header-box { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 32px; align-items: center; margin-bottom: 40px; }
.sniper-badge-pill { background: rgba(16, 185, 129, 0.15); color: #34D399; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: var(--rounded-full); letter-spacing: 0.05em; display: inline-block; margin-bottom: 12px; }
.sniper-title { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.sniper-subtitle { font-size: 16px; color: #94A3B8; line-height: 1.6; }
.sniper-cta-card { background: #111827; border: 2px solid #10B981; border-radius: var(--rounded-lg); padding: 24px; text-align: center; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2); }
.sniper-cta-price { font-size: 36px; font-weight: 800; color: #ffffff; }
.sniper-cta-price small { font-size: 13px; color: #94A3B8; font-weight: normal; }
.sniper-cta-sla { color: #34D399; font-size: 13px; font-weight: 700; margin: 8px 0 16px; }
.sniper-cta-sub { font-size: 11px; color: #64748B; margin-top: 10px; }

.sniper-tabs-nav { display: flex; gap: 12px; margin-bottom: 24px; border-bottom: 1px solid #1F2937; padding-bottom: 12px; flex-wrap: wrap; }
.sniper-tab-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.sniper-tab-btn.active { background: #1E293B; color: #10B981; }
.sniper-tab-content { display: none; }
.sniper-tab-content.active { display: block; }

.browser-frame { background: #111827; border: 1px solid #374151; border-radius: var(--rounded-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
.browser-bar { background: #1F2937; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.browser-dots { display: flex; gap: 6px; }
.b-dot { width: 10px; height: 10px; border-radius: 50%; }
.b-red { background: #EF4444; } .b-yellow { background: #F59E0B; } .b-green { background: #10B981; }
.browser-address { background: #111827; padding: 4px 20px; border-radius: 4px; color: #94A3B8; font-family: monospace; }
.browser-lock { color: #10B981; display: flex; align-items: center; gap: 4px; font-size: 11px; }

.browser-viewport { padding: 40px; background: #0F172A; }
.cand-sim-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.cand-sim-badge { color: #10B981; font-weight: 800; font-size: 12px; letter-spacing: 0.08em; margin-bottom: 8px; }
.cand-sim-name { font-size: 36px; font-weight: 800; color: #ffffff; margin-bottom: 6px; }
.cand-sim-role { font-size: 16px; color: #94A3B8; margin-bottom: 16px; }
.cand-sim-slogan { font-size: 15px; font-style: italic; color: #E2E8F0; margin-bottom: 24px; }
.cand-sim-buttons { display: flex; gap: 12px; }
.cand-btn-fake { padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 700; background: rgba(255, 255, 255, 0.1); color: #ffffff; }
.cand-btn-fake.primary { background: #10B981; }

.avatar-placeholder-box { background: rgba(255, 255, 255, 0.05); border: 2px dashed rgba(255, 255, 255, 0.2); border-radius: var(--rounded-lg); padding: 40px 20px; text-align: center; }
.icon-person-large { font-size: 80px; color: #475569; }
.avatar-tag { display: block; font-size: 12px; color: #94A3B8; margin-top: 8px; }

.cand-sim-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.sim-feat-item { background: rgba(255, 255, 255, 0.03); padding: 16px; border-radius: 8px; }
.sim-feat-item span { font-size: 28px; color: #10B981; margin-bottom: 8px; }
.sim-feat-item h4 { font-size: 15px; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.sim-feat-item p { font-size: 12px; color: #94A3B8; }

.santino-showcase { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: center; background: #111827; padding: 40px; border-radius: var(--rounded-lg); }
.santino-card { background: #ffffff; color: #0F172A; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); border: 1px solid #CBD5E1; }
.santino-header-stripe { background: #0F172A; color: #ffffff; font-size: 10px; font-weight: 800; text-align: center; padding: 6px; letter-spacing: 0.08em; }
.santino-body-content { padding: 16px; display: flex; gap: 12px; }
.santino-photo-mock { width: 90px; height: 110px; background: #E2E8F0; border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 10px; color: #64748B; }
.santino-cand-name { font-size: 18px; font-weight: 800; color: #0F172A; margin-bottom: 2px; }
.santino-cand-sub { font-size: 11px; color: #64748B; margin-bottom: 12px; }
.mock-symbol-circle { border: 2px solid #0F172A; border-radius: 50%; width: 44px; height: 44px; font-size: 7px; font-weight: 800; display: flex; align-items: center; justify-content: center; text-align: center; }
.mock-symbol-arrow { font-size: 11px; margin-top: 4px; }
.santino-footer-stripe { background: #10B981; color: #ffffff; font-size: 9px; font-weight: 800; text-align: center; padding: 4px; }
.specs-list { list-style: none; margin-top: 16px; }
.specs-list li { display: flex; gap: 10px; font-size: 14px; color: #CBD5E1; margin-bottom: 10px; }

.strategy-showcase { background: #111827; padding: 40px; border-radius: var(--rounded-lg); }
.strat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.strat-icon { font-size: 32px; color: #10B981; }
.strat-header h4 { font-size: 20px; font-weight: 800; color: #ffffff; }
.strat-desc { font-size: 15px; color: #94A3B8; line-height: 1.6; margin-bottom: 24px; max-width: 800px; }
.strat-metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sm-card { background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 8px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.1); }
.sm-val { font-size: 24px; font-weight: 800; color: #10B981; margin-bottom: 4px; }
.sm-lbl { font-size: 12px; color: #94A3B8; }

.sniper-bottom-cta { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(9, 9, 11, 0.95); border-top: 1px solid #1E293B; padding: 16px 0; z-index: 45; backdrop-filter: blur(10px); }
.sniper-bottom-inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); display: flex; justify-content: space-between; align-items: center; }

/* ========================================================================== */
/* ONBOARDING WIZARD                                                          */
/* ========================================================================== */
.onboarding-page-wrap { padding: 110px 0 80px; background: #F8FAFC; min-height: 90vh; }
.onboarding-header-card { background: #ffffff; border: 1px solid #E2E8F0; border-radius: var(--rounded-xl); padding: 32px; text-align: center; margin-bottom: 32px; box-shadow: var(--shadow-sm); }
.onboarding-badge { display: inline-flex; align-items: center; gap: 6px; background: #ECFDF5; color: #059669; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: var(--rounded-full); margin-bottom: 12px; }
.onboarding-title { font-size: 32px; font-weight: 800; color: #0F172A; margin-bottom: 8px; }
.onboarding-subtitle { font-size: 15px; color: #64748B; }
.sla-progress-banner { display: inline-flex; align-items: center; gap: 12px; background: #0F172A; color: #ffffff; padding: 12px 24px; border-radius: var(--rounded-full); margin-top: 20px; font-size: 14px; }
.sla-timer-icon { color: #10B981; }

.onboarding-form-card { background: #ffffff; border: 1px solid #E2E8F0; border-radius: var(--rounded-xl); padding: 40px; box-shadow: var(--shadow-md); max-width: 860px; margin: 0 auto; }
.form-section-title { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 800; color: #0F172A; margin-bottom: 24px; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: #10B981; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.form-divider { border: none; border-top: 1px solid #E2E8F0; margin: 32px 0; }
.file-input { padding: 8px; }
.submit-note { font-size: 12px; color: #94A3B8; margin-top: 12px; }
.color-palette-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.color-opt { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #334155; cursor: pointer; padding: 8px 12px; border: 1px solid #E2E8F0; border-radius: 6px; }
.color-pill { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }

.onboarding-success-card { background: #ffffff; border: 1px solid #E2E8F0; border-radius: var(--rounded-xl); padding: 48px 36px; text-align: center; max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.success-icon-wrap { width: 80px; height: 80px; background: #ECFDF5; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.icon-check-huge { font-size: 50px; color: #10B981; }
.success-title { font-size: 28px; font-weight: 800; color: #0F172A; margin-bottom: 12px; }
.success-desc { font-size: 16px; color: #64748B; margin-bottom: 32px; }
.success-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 36px; }
.sum-box { background: #F8FAFC; border: 1px solid #E2E8F0; padding: 14px; border-radius: 8px; }
.sum-lbl { font-size: 10px; font-weight: 700; color: #94A3B8; margin-bottom: 4px; }
.sum-val { font-size: 13px; font-weight: 800; color: #0F172A; }
.success-next-steps { text-align: left; background: #F8FAFC; padding: 24px; border-radius: 8px; border: 1px solid #E2E8F0; margin-bottom: 32px; }
.success-next-steps h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: #0F172A; }
.next-steps-list { padding-left: 20px; font-size: 14px; color: #475569; line-height: 1.6; }
.success-actions { display: flex; gap: 16px; justify-content: center; }

/* ========================================================================== */
/* 12. HIGH-END LUXURY DARK FOOTER                                            */
/* ========================================================================== */
footer.footer {
    background: #09090B !important;
    border-top: 1px solid #1E293B !important;
    color: #ffffff !important;
    padding: 72px 0 130px !important; /* Spacing for bottom sticky bar */
    margin-top: auto !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    box-sizing: border-box !important;
}

footer.footer .footer-main {
    display: grid !important;
    grid-template-columns: 1.15fr 1.85fr !important;
    gap: 56px !important;
    margin-bottom: 48px !important;
    align-items: start !important;
}

footer.footer .footer-brand-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

footer.footer .footer-brand {
    font-size: 24px !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
}

footer.footer .footer-desc {
    font-size: 14px !important;
    color: #94A3B8 !important;
    line-height: 1.6 !important;
    max-width: 380px !important;
}

footer.footer .footer-badges {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 8px !important;
}

footer.footer .footer-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #CBD5E1 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    width: fit-content !important;
}

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

footer.footer .footer-col-group {
    display: flex !important;
    flex-direction: column !important;
}

footer.footer .footer-col-title {
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #94A3B8 !important;
    margin-bottom: 18px !important;
}

footer.footer .footer-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

footer.footer .footer-col a {
    font-size: 14px !important;
    color: #CBD5E1 !important;
    transition: all 0.2s ease !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}

footer.footer .footer-col a:hover {
    color: var(--color-secondary) !important;
    transform: translateX(3px) !important;
}

footer.footer .footer-bottom {
    padding-top: 28px !important;
    border-top: 1px solid #1E293B !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    font-size: 13px !important;
    color: #64748B !important;
}

footer.footer .footer-copyright {
    color: #94A3B8 !important;
    font-size: 13px !important;
}

footer.footer .footer-social {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

footer.footer .footer-social a {
    color: #94A3B8 !important;
    transition: color 0.2s !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

footer.footer .footer-social a:hover {
    color: var(--color-secondary) !important;
}

/* ========================================================================== */
/* RESPONSIVE BREAKPOINTS                                                     */
/* ========================================================================== */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-headline { font-size: 38px; }
    .calc-grid { grid-template-columns: 1fr; }
    .pricing-grid-3 { grid-template-columns: 1fr; }
    .price-box.featured-glow { transform: none; }
    .sniper-header-box { grid-template-columns: 1fr; }
    .santino-showcase { grid-template-columns: 1fr; }
    .success-summary-grid { grid-template-columns: 1fr 1fr; }
    footer.footer .footer-main { grid-template-columns: 1fr !important; gap: 40px !important; }
    footer.footer .footer-columns { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .navbar-links { display: none; }
    .navbar-menu-btn { display: block; }
    .hero-headline { font-size: 32px; }
    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .results-cards-grid { grid-template-columns: 1fr; }
    .guarantee-card { flex-direction: column; text-align: center; }
    .color-palette-selector { grid-template-columns: 1fr; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    footer.footer { padding: 60px 0 140px !important; }
    footer.footer .footer-columns { grid-template-columns: 1fr !important; gap: 32px !important; }
    footer.footer .footer-bottom { flex-direction: column !important; text-align: center !important; justify-content: center !important; }
    footer.footer .footer-social { justify-content: center !important; flex-wrap: wrap !important; }
}
