:root {
    --bg-dark: #0B1712;
    --bg-dark-alt: #0F1E18;
    --bg-dark-alt2: #0E1B15;
    --ct-accent: #C8F135;
    --ct-accent-hover: #D9FA5E;
    --ct-primary: #C8F135;
    --ct-primary-hover: #D9FA5E;
    --ct-primary-light: #D9FA5E;
    --ct-success: #4ADE80;
    --text-primary: #E8F5EE;
    --text-secondary: #8AA598;
    --card-bg: #142822;
    --card-border: #1C332A;
    /* Crema del bloque de precios (ver public/css/pricing.css) */
    --bg-cream: #E8E6E1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'IBM Plex Sans', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

h1, h2, h3, h4, h5, h6, .heading {
    font-family: 'Space Grotesk', sans-serif;
}

/* ───── NAVBAR ───── */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
.landing-nav.scrolled {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-brand:hover { color: var(--ct-accent); }
.nav-brand .brand-icon {
    width: 32px;
    height: 32px;
    background: var(--ct-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1rem;
}
.nav-ctas { display: flex; gap: 0.75rem; align-items: center; }
.nav-ctas .btn-sm-nav {
    font-size: 0.9rem;
    padding: 0.45rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.nav-ctas .btn-ghost {
    color: var(--text-secondary);
    background: transparent;
    border: none;
}
.nav-ctas .btn-ghost:hover { color: var(--text-primary); }
.nav-ctas .btn-nav-accent {
    background: var(--ct-accent);
    color: var(--bg-dark);
    border: none;
}
.nav-ctas .btn-nav-accent:hover {
    background: var(--ct-accent-hover);
}

/* ───── HERO ───── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1rem 4rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.hero-glow-amber {
    background: var(--ct-accent);
    top: -200px;
    right: -100px;
}
.hero-glow-navy {
    background: var(--ct-primary);
    bottom: -250px;
    left: -150px;
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(200, 241, 53, 0.12);
    border: 1px solid rgba(200, 241, 53, 0.25);
    color: var(--ct-accent);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.6s ease-out both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    animation: fadeSlideUp 0.8s ease-out 0.1s both;
}
.hero-title .accent-amber { color: var(--ct-accent); }

.hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeSlideUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease-out 0.35s both;
}

.hero-social-proof {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease-out 0.5s both;
}
.hero-social-proof .proof-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.hero-social-proof .proof-item i { color: var(--ct-accent); font-size: 1rem; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite 1.5s;
}
.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ───── BUTTONS ───── */
.btn-accent {
    background: var(--ct-accent);
    color: #10201A;
    font-weight: 600;
    border: none;
    padding: 0.8rem 2.25rem;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 20px rgba(200, 241, 53, 0.2);
}
.btn-accent:hover {
    background: var(--ct-accent-hover);
    color: #10201A;
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(200, 241, 53, 0.35);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.2);
    padding: 0.8rem 2.25rem;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: all 0.2s;
}
.btn-outline-light-custom:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--text-primary);
    transform: translateY(-2px);
    background: rgba(255,255,255,0.04);
}

/* ───── SCROLL REVEAL ───── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ───── SECTIONS ───── */
.section-landing {
    padding: 6rem 1rem;
    position: relative;
}
.section-heading {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-heading h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.section-heading .heading-accent {
    color: var(--ct-accent);
}
.section-heading p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ───── WAVE SEPARATORS ───── */
.wave-separator {
    display: block;
    width: 100%;
    height: auto;
    margin-top: -1px;
}
/* Transición desde la banda crema del bloque de precios hacia la sección oscura */
.wave-separator--from-pricing { background: var(--bg-cream); }

/* ───── FEATURE CARDS ───── */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--feature-accent, var(--ct-accent));
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    border-color: rgba(255,255,255,0.1);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    transition: transform 0.3s;
}
.feature-card:hover .feature-icon-wrap { transform: scale(1.1); }

.feature-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* ───── STATS / CHARTS ───── */
.section-stats {
    background: var(--bg-dark-alt);
}
.chart-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
}
.chart-wrapper canvas { max-height: 320px; }
.chart-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.metric-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: transform 0.3s, border-color 0.3s;
    height: 100%;
}
.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 241, 53, 0.2);
}
.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--ct-accent);
    line-height: 1;
}
.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.metric-icon {
    font-size: 1.5rem;
    color: var(--ct-primary-light);
    margin-bottom: 0.75rem;
}

/* ───── CTA BANNER ───── */
.cta-banner {
    background: linear-gradient(135deg, #C8F135 0%, #9CCF1F 55%, #17342A 100%);
    margin-bottom: 0;
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-banner h2 {
    color: #10201A;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
}
.cta-banner .cta-sub {
    color: rgba(16,32,26,0.75);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}
.cta-banner .btn-cta-main {
    background: #fff;
    color: var(--bg-dark);
    font-weight: 700;
    padding: 0.9rem 2.75rem;
    border-radius: 8px;
    font-size: 1.1rem;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.cta-banner .btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* ───── STEPS ───── */
.section-steps { background: var(--bg-dark-alt2); }
.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
}
.step-number-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(200, 241, 53, 0.12);
    border: 2px solid rgba(200, 241, 53, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}
.step-card:hover .step-number-wrap {
    background: rgba(200, 241, 53, 0.2);
    border-color: var(--ct-primary);
    transform: scale(1.08);
}
.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ct-primary-light);
    line-height: 1;
}
.step-connector {
    position: absolute;
    top: 5.5rem;
    right: -10%;
    width: 20%;
    height: 2px;
    background: linear-gradient(to right, rgba(200, 241, 53, 0.3), transparent);
}
@media (max-width: 767px) { .step-connector { display: none; } }
.step-card h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}
.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* ───── FOOTER ───── */
.landing-footer {
    background: #081109;
    padding: 3.5rem 1rem 2.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.landing-footer a {
    color: var(--ct-accent);
    text-decoration: none;
    transition: color 0.2s;
}
.landing-footer a:hover { color: var(--ct-accent-hover); }
.footer-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--ct-accent), transparent);
    margin: 1.5rem auto;
    border: none;
}

/* ───── PITCH SVG OVERLAY (hero) ───── */
.hero-pitch-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ───── NAVBAR LINKS ───── */
.nav-links {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 0.25rem; align-items: center;
}
.nav-links li a {
    color: var(--text-secondary); text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    padding: 0.4rem 0.75rem; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--text-primary); border-radius: 2px; transition: all 0.25s;
}
@media (max-width: 767px) {
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none; position: fixed; top: 60px; left: 0; right: 0;
        background: rgba(10,15,30,0.98); backdrop-filter: blur(12px);
        flex-direction: column; padding: 1.5rem 1rem; gap: 0.5rem;
        border-top: 1px solid var(--card-border); z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links li a { font-size: 1rem; padding: 0.65rem 1rem; display: block; }
}

/* ───── PRODUCT MOCKUP ───── */
.mockup-tabs { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.mockup-tab {
    background: var(--card-bg); border: 1px solid var(--card-border); color: var(--text-secondary);
    font-size: .9rem; font-weight: 600; padding: .5rem 1.25rem; border-radius: 50px; cursor: pointer;
    transition: all .25s; display: flex; align-items: center; gap: .4rem;
}
.mockup-tab:hover { color: var(--text-primary); border-color: rgba(255,255,255,.15); }
.mockup-tab.active { background: var(--ct-accent); color: var(--bg-dark); border-color: var(--ct-accent); }
.browser-frame {
    max-width: 860px; margin: 0 auto; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--card-border); box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.browser-chrome {
    background: #142822; padding: .75rem 1rem; display: flex; align-items: center;
    gap: .5rem; border-bottom: 1px solid var(--card-border);
}
.bc-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.bc-red { background: #ff5f57; } .bc-yellow { background: #febc2e; } .bc-green { background: #28c840; }
.bc-bar { flex: 1; height: 22px; background: rgba(255,255,255,.06); border-radius: 4px; margin-left: .75rem; }
.browser-content { background: #0d1424; min-height: 340px; }
.mock-panel { display: none; padding: 1.5rem; }
.mock-panel.active { display: block; }
.mock-score-board {
    background: var(--card-bg); border-radius: 12px; padding: 1.25rem;
    text-align: center; margin-bottom: 1.25rem;
}
.mock-timer { font-family: 'Space Grotesk', sans-serif; font-size: 2.25rem; color: var(--ct-accent); line-height: 1; }
.mock-score { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; margin-top: .5rem; }
.mock-player-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: .65rem 0; border-bottom: 1px solid var(--card-border); font-size: .875rem;
}
.mock-player-row:last-child { border-bottom: none; }
.mock-btn { font-size: .75rem; font-weight: 700; padding: .25rem .6rem; border-radius: 4px; border: none; cursor: default; }
.mock-btn-goal { background: rgba(200, 241, 53, .15); color: var(--ct-accent); }
.mock-btn-card { background: rgba(239,68,68,.15); color: #F87171; }
.mock-stat-bar-wrap { margin-bottom: .75rem; }
.mock-stat-label { display: flex; justify-content: space-between; font-size: .8rem; color: var(--text-secondary); margin-bottom: .25rem; }
.mock-stat-bar-bg { background: rgba(255,255,255,.06); border-radius: 4px; height: 8px; }
.mock-stat-bar-fill { height: 8px; border-radius: 4px; background: var(--ct-accent); }
.mock-block {
    display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem;
    border-radius: 10px; margin-bottom: .5rem; font-size: .9rem;
}
.mock-block-warm  { background: rgba(200, 241, 53, .1); border-left: 3px solid var(--ct-accent); }
.mock-block-tech  { background: rgba(56, 189, 248, .1); border-left: 3px solid var(--ct-primary-light); }
.mock-block-match { background: rgba(74, 222, 128, .1); border-left: 3px solid var(--ct-success); }
.mock-attend-row { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--card-border); font-size: .85rem; }
.mock-attend-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-attend-on  { background: var(--ct-success); }
.mock-attend-off { background: rgba(255,255,255,.15); }

/* ───── AUDIENCE ───── */
.audience-card {
    background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px;
    padding: 2.25rem 1.75rem; height: 100%; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.3); border-color: rgba(200, 241, 53, .2); }
.audience-icon {
    width: 64px; height: 64px; background: rgba(200, 241, 53, .1); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: var(--ct-accent); margin-bottom: 1.25rem; transition: transform .3s;
}
.audience-card:hover .audience-icon { transform: scale(1.1); }
.audience-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 600; margin-bottom: .5rem; }
.audience-card > p { color: var(--text-secondary); font-size: .95rem; margin-bottom: 1.25rem; }
.audience-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.audience-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: var(--text-secondary); }
.audience-list li i { color: var(--ct-accent); flex-shrink: 0; margin-top: 2px; }

/* ───── COMPARE TABLE ───── */
.compare-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--card-border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 540px; }
.compare-table thead th {
    background: var(--card-bg); padding: 1rem 1.25rem;
    font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem;
    text-align: center; border-bottom: 1px solid var(--card-border);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody tr:nth-child(odd)  { background: rgba(30,41,59,.4); }
.compare-table tbody tr:nth-child(even) { background: transparent; }
.compare-table tbody tr:hover { background: rgba(30,41,59,.7); }
.compare-table td {
    padding: .85rem 1.25rem; text-align: center; font-size: .95rem;
    border-bottom: 1px solid var(--card-border); vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-feature { text-align: left !important; color: var(--text-secondary); }
.compare-highlight-col {
    background: rgba(200, 241, 53, .05) !important;
    border-left: 2px solid rgba(200, 241, 53, .3); border-right: 2px solid rgba(200, 241, 53, .3);
}
.compare-table thead .compare-highlight-col { color: var(--ct-accent); border-top: 2px solid rgba(200, 241, 53, .3); }
.compare-table tbody tr:last-child .compare-highlight-col { border-bottom: 2px solid rgba(200, 241, 53, .3); }
.compare-yes { color: var(--ct-accent); font-size: 1.1rem; }
.compare-no  { color: #F87171; font-size: 1.1rem; }

/* ───── FAQ ───── */
.faq-accordion .faq-item {
    background: var(--card-bg); border: 1px solid var(--card-border) !important;
    border-radius: 12px !important; margin-bottom: .75rem; overflow: hidden;
}
.faq-btn {
    background: var(--card-bg) !important; color: var(--text-primary) !important;
    font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 600;
    padding: 1.1rem 1.5rem; border: none !important; box-shadow: none !important;
}
.faq-btn:not(.collapsed) { color: var(--ct-accent) !important; background: rgba(200, 241, 53, .05) !important; }
.faq-btn::after { filter: invert(1) brightness(.7); }
.faq-body {
    background: var(--card-bg); color: var(--text-secondary);
    font-size: .95rem; line-height: 1.7; padding: .5rem 1.5rem 1.5rem;
    border-top: 1px solid var(--card-border);
}

/* ───── FOOTER NAV LINKS ───── */
.footer-nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem 2rem; margin-bottom: 1.5rem; }
.footer-nav-links a { color: var(--text-secondary); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-nav-links a:hover { color: var(--ct-accent); }

.footer-legal-links { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 1.5rem; }
.footer-legal-links a { color: var(--text-secondary); text-decoration: none; font-size: .8125rem; transition: color .2s; }
.footer-legal-links a:hover { color: var(--ct-accent); }
