/* ============================================================
   Meridian - Global OSINT Intelligence Platform
   Website Stylesheet
   ============================================================ */

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

:root {
    --bg-space:    #0a0b10;
    --bg-panel:    #10111a;
    --bg-card:     #151724;
    --bg-card-hover: #1a1d2e;
    --border:      #1e2236;
    --border-glow: #2a4a7a;
    --accent:      #4db8e8;
    --accent-dim:  #2a7aaa;
    --accent-glow: rgba(77, 184, 232, 0.15);
    --green:       #4ade80;
    --green-dim:   #22c55e;
    --red:         #f87171;
    --orange:      #fb923c;
    --yellow:      #facc15;
    --purple:      #a78bfa;
    --text:        #e2e8f0;
    --text-dim:    #94a3b8;
    --text-muted:  #64748b;
    --font:        'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono:   'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg-space);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #7dd3fc; }

/* --- Subtle star field background --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.15), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.12), transparent),
        radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.08), transparent),
        radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.1), transparent),
        radial-gradient(1px 1px at 15% 85%, rgba(255,255,255,0.07), transparent),
        radial-gradient(1px 1px at 40% 30%, rgba(255,255,255,0.09), transparent),
        radial-gradient(1px 1px at 60% 55%, rgba(255,255,255,0.06), transparent),
        radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.11), transparent),
        radial-gradient(1px 1px at 25% 50%, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
    z-index: 0;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    letter-spacing: 0.5px;
}

.nav-brand .eye {
    color: var(--accent);
    font-size: 1.4rem;
}

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

.nav-links a {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color .2s;
}

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

/* --- Sections --- */
section {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    padding-top: 80px;
}

.hero-globe {
    position: relative;
    margin-bottom: 2.5rem;
}

.hero-globe img {
    width: min(600px, 85vw);
    height: auto;
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(77, 184, 232, 0.12),
        0 0 120px rgba(77, 184, 232, 0.06);
    animation: globe-pulse 6s ease-in-out infinite;
}

@keyframes globe-pulse {
    0%, 100% { box-shadow: 0 0 60px rgba(77,184,232,0.12), 0 0 120px rgba(77,184,232,0.06); }
    50%      { box-shadow: 0 0 80px rgba(77,184,232,0.18), 0 0 160px rgba(77,184,232,0.09); }
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
}

.hero h1 .accent { color: var(--accent); }

.hero .tagline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.hero-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all .25s;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-space);
}
.btn-primary:hover {
    background: #5cc8f5;
    box-shadow: 0 0 20px rgba(77, 184, 232, 0.3);
    color: var(--bg-space);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* --- Section Headers --- */
.section-label {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 3rem;
}

/* --- Feature Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    transition: all .3s;
}

.feature-card:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* icon color variants */
.icon-blue    { background: rgba(77,184,232,0.12); color: var(--accent); }
.icon-green   { background: rgba(74,222,128,0.12); color: var(--green); }
.icon-red     { background: rgba(248,113,113,0.12); color: var(--red); }
.icon-orange  { background: rgba(251,146,60,0.12); color: var(--orange); }
.icon-yellow  { background: rgba(250,204,21,0.12); color: var(--yellow); }
.icon-purple  { background: rgba(167,139,250,0.12); color: var(--purple); }

/* --- Sources Marquee --- */
.sources-section {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    max-width: 100%;
    padding: 3rem 0;
}

.sources-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.source-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.source-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-live   { background: var(--green); box-shadow: 0 0 6px var(--green); }
.dot-poll   { background: var(--accent); }
.dot-static { background: var(--text-muted); }

/* --- Analysis / How it Works --- */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Default: each card spans 2 columns (half row) */
.analysis-card { grid-column: span 2; }

/* Large cards span full row */
.analysis-card.card-wide { grid-column: span 4; }

/* Small cards span 1 column (quarter row, two per half) */
.analysis-card.card-narrow { grid-column: span 1; }

@media (max-width: 900px) {
    .analysis-grid { grid-template-columns: 1fr; }
    .analysis-card,
    .analysis-card.card-wide,
    .analysis-card.card-narrow { grid-column: span 1; }
}

.analysis-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.analysis-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.analysis-card p {
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all .3s;
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    position: relative;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-space);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.pricing-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.pricing-tier {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.pricing-desc {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.pricing-price .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
}

.pricing-price .currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dim);
    vertical-align: super;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-price .annual {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.pricing-users {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(77,184,232,0.08);
    border: 1px solid rgba(77,184,232,0.2);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--text-dim);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled::before {
    content: '\2014';
    color: var(--text-muted);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* --- Seat Selector / Configurator --- */
.pricing-configurator {
    margin-top: 2rem;
}

.seat-selector {
    margin: 1.5rem 0;
}

.seat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
    display: block;
    margin-bottom: 0.6rem;
}

.seat-slider-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.seat-range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    outline: none;
    cursor: pointer;
}

.seat-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg-card);
    box-shadow: 0 0 10px rgba(77, 184, 232, 0.4);
    cursor: pointer;
    transition: box-shadow .2s;
}

.seat-range::-webkit-slider-thumb:hover {
    box-shadow: 0 0 16px rgba(77, 184, 232, 0.6);
}

.seat-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg-card);
    box-shadow: 0 0 10px rgba(77, 184, 232, 0.4);
    cursor: pointer;
}

.seat-count {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    min-width: 2.5rem;
    text-align: center;
}

.seat-ticks {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0.5rem 0;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.price-display {
    background: rgba(77, 184, 232, 0.05);
    border: 1px solid rgba(77, 184, 232, 0.15);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    margin: 1.5rem 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-per-seat {
    font-size: 1rem;
    color: var(--text-dim);
}

.price-discount {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green);
    margin-left: 0.5rem;
}

.price-total .amount {
    font-size: 2.5rem;
}

.price-annual {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.bonus-features {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.bonus-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

/* --- Purchase Modal --- */
.purchase-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.purchase-modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 2.2rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.25s ease;
}

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

.purchase-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.purchase-modal-close:hover {
    color: var(--text);
}

.purchase-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text);
}

.purchase-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.purchase-tab {
    flex: 1;
    padding: 0.6rem 1rem;
    background: var(--bg-space);
    border: none;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.purchase-tab.active {
    background: var(--accent);
    color: var(--bg-space);
}

.purchase-tab:not(.active):hover {
    color: var(--text);
    background: var(--bg-card-hover);
}

.purchase-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: var(--bg-space);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: var(--text);
}

.purchase-summary #modalPlanPrice {
    font-weight: 700;
    color: var(--accent);
}

.purchase-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 0.4rem;
}

.purchase-input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--bg-space);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.purchase-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(77, 184, 232, 0.15);
}

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

.purchase-input.input-error {
    border-color: var(--red);
    box-shadow: 0 0 8px rgba(248, 113, 113, 0.2);
}

.billing-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.billing-option {
    flex: 1;
    padding: 0.6rem 1rem;
    background: var(--bg-space);
    border: none;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.billing-option.active {
    background: var(--accent);
    color: var(--bg-space);
}

.billing-option:not(.active):hover {
    color: var(--text);
    background: var(--bg-card-hover);
}

.purchase-pay-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: var(--bg-space);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.purchase-pay-btn:hover {
    filter: brightness(1.15);
}

.purchase-pay-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.purchase-pay-btn .btn-spinner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.purchase-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.5;
    text-align: center;
}

/* --- Comparison Table --- */
.comparison {
    margin-top: 4rem;
    overflow-x: auto;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    min-width: 900px;
}

.comparison th, .comparison td {
    padding: 0.7rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.comparison th {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}

.comparison td:first-child {
    color: var(--text);
    font-weight: 600;
    position: sticky;
    left: 0;
    background: var(--bg-card);
    z-index: 1;
}

.comparison tr:first-child td {
    background: rgba(77, 184, 232, 0.06);
    border-bottom: 2px solid var(--accent-dim);
}

.comparison tr:first-child td:first-child {
    background: rgba(77, 184, 232, 0.06);
}

.comparison .competitor {
    color: var(--text-muted);
}

.comparison .us {
    color: var(--accent);
    font-weight: 700;
}

.comparison .price-high {
    color: var(--red);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

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

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

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

.faq-question .arrow {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform .2s;
    flex-shrink: 0;
}

.faq-item.open .arrow { transform: rotate(180deg); }

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.2rem;
}

.faq-answer p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    font-weight: 700;
    font-size: 1rem;
}

.footer-brand .eye { color: var(--accent); }

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.footer-copy {
    width: 100%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* --- Divider line glow --- */
.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.4;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    section { padding: 3rem 1.2rem; }
    .hero-stats { gap: 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .comparison { font-size: 0.78rem; }
}
