/* ============================================
   V3 — ELEGANT CORPORATE + WAVE ANIMATION
   Clean, refined, enterprise-friendly
   ============================================ */

:root {
    --bg: #08080f;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-2: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(99, 102, 241, 0.25);
    --text: #f1f5f9;
    --text-dim: #94a3b8;
    --text-muted: #64748b;
    --accent: #6366f1;
    --accent-soft: #818cf8;
    --cyan: #22d3ee;
    --green: #10b981;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

#bg-canvas {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; z-index: 0;
    pointer-events: none;
}

.page-wrapper { position: relative; z-index: 1; }

/* ---- NAV ---- */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0.8rem 2rem;
    backdrop-filter: blur(24px) saturate(1.3);
    background: rgba(8, 8, 15, 0.8);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1120px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}

.logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 1rem; font-weight: 800;
    text-decoration: none; color: var(--text);
}

.logo-mark {
    width: 24px; height: 24px; border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.nav-center { display: flex; gap: 2rem; }
.nav-center a {
    color: var(--text-dim); text-decoration: none; font-size: 0.87rem;
    font-weight: 500; transition: color 0.3s;
}
.nav-center a:hover { color: var(--text); }

.nav-end { display: flex; align-items: center; gap: 1rem; }
.link-subtle {
    color: var(--text-dim); text-decoration: none; font-size: 0.87rem;
    font-weight: 500; transition: color 0.3s;
}
.link-subtle:hover { color: var(--text); }

.hamburger {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
    width: 22px; height: 2px; background: var(--text); border-radius: 1px;
    transition: 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.8rem; border-radius: 12px;
    font-weight: 700; font-size: 0.88rem; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; border: none;
}
.btn-sm { padding: 0.5rem 1.3rem; font-size: 0.82rem; }
.btn-lg { padding: 0.95rem 2.4rem; font-size: 0.95rem; }
.btn-block { width: 100%; }

.btn-accent {
    background: var(--accent); color: white;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-glass {
    background: var(--surface); color: var(--text);
    border: 1px solid var(--border);
}
.btn-glass:hover {
    border-color: var(--border-accent);
    background: var(--surface-2);
}

.btn-white {
    background: white; color: var(--bg);
}
.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-arrow {
    transition: transform 0.3s;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---- DOT ---- */
.dot {
    width: 7px; height: 7px; border-radius: 50%;
    display: inline-block;
}
.dot.green {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* ---- HERO ---- */
.hero {
    max-width: 1120px; margin: 0 auto;
    padding: 10rem 2rem 6rem;
}

.hero-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 600;
    color: var(--accent-soft); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem; font-weight: 900;
    line-height: 1.1; letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent-soft), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-p {
    color: var(--text-dim); font-size: 1.1rem; margin-bottom: 2.5rem;
    max-width: 480px;
}

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

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

/* Hero floating cards */
.hero-right { position: relative; min-height: 450px; }

.hero-card-stack { position: relative; width: 100%; height: 450px; }

.float-card {
    position: absolute;
    background: rgba(12, 12, 20, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.chat-card {
    top: 0; left: 0; width: 340px;
    z-index: 3;
    animation: floatA 6s ease-in-out infinite;
}

.stats-card {
    bottom: 40px; right: 0; width: 240px;
    z-index: 2; padding: 1.5rem;
    animation: floatB 7s ease-in-out infinite;
}

.sources-card {
    top: 60px; right: 30px; width: 220px;
    z-index: 1; padding: 1rem;
    animation: floatC 8s ease-in-out infinite;
}

@keyframes floatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes floatB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes floatC {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.fc-header {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem; font-weight: 600; color: var(--text-dim);
}
.fc-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green); box-shadow: 0 0 6px var(--green);
}
.fc-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.6rem; }

.msg { display: flex; gap: 0.5rem; align-items: flex-start; }
.msg.outgoing { justify-content: flex-end; }
.msg-avatar { font-size: 1rem; flex-shrink: 0; }
.msg-text {
    padding: 0.6rem 0.9rem; border-radius: 12px;
    font-size: 0.78rem; max-width: 240px;
}
.msg.incoming .msg-text {
    background: var(--surface-2); color: var(--text-dim);
    border-bottom-left-radius: 4px;
}
.msg.outgoing .msg-text {
    background: var(--accent); color: white;
    border-bottom-right-radius: 4px;
}

.stats-row { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.stat-mini-val { font-size: 1.6rem; font-weight: 900; }
.stat-mini-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.stat-bar-bg {
    height: 5px; background: var(--surface-2); border-radius: 4px; overflow: hidden;
}
.stat-bar-fill {
    width: 94%; height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    border-radius: 4px;
}

.source-row {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 0; font-size: 0.75rem; color: var(--text-dim);
}
.src-check { color: var(--green); }
.source-row.active { color: var(--accent-soft); }
.src-spinner {
    width: 10px; height: 10px; border: 2px solid var(--border);
    border-top-color: var(--accent); border-radius: 50%;
    animation: spin 1s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- SECTION INTRO ---- */
.section-intro {
    text-align: center; max-width: 600px; margin: 0 auto 5rem;
}

.overline {
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--accent-soft); margin-bottom: 1.2rem;
}

.section-intro h2 {
    font-size: 2.8rem; font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.15;
    margin-bottom: 1rem;
}

.intro-desc {
    color: var(--text-dim); font-size: 1.05rem;
}

/* ---- HOW IT WORKS — TIMELINE ---- */
.how-section { padding: 8rem 0; }

.timeline {
    position: relative;
    display: flex; flex-direction: column; gap: 6rem;
}

.timeline-line {
    position: absolute; left: 27px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(99, 102, 241, 0.1));
}

.timeline-item { position: relative; padding-left: 80px; }

.timeline-dot {
    position: absolute; left: 6px; top: 0;
    width: 44px; height: 44px; border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 900; color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.timeline-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: start;
}

.timeline-content.reverse { direction: rtl; }
.timeline-content.reverse > * { direction: ltr; }

.timeline-text h3 {
    font-size: 1.5rem; font-weight: 800;
    margin-bottom: 0.8rem; letter-spacing: -0.02em;
}

.timeline-text p {
    color: var(--text-dim); font-size: 0.95rem;
}

.timeline-text code {
    background: var(--surface-2); padding: 1px 5px; border-radius: 4px;
    font-size: 0.85em; color: var(--cyan);
}

/* Timeline visuals */
.tv-card {
    background: rgba(10, 10, 18, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.tv-input {
    display: flex; align-items: center; gap: 0.6rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 0.7rem 1rem;
    margin-bottom: 1rem;
}

.tv-globe { font-size: 1rem; }
.tv-url {
    font-family: monospace; font-size: 0.85rem; color: var(--cyan);
}
.tv-cursor {
    color: var(--cyan); animation: blink 1s infinite;
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.tv-progress {
    height: 4px; background: var(--surface); border-radius: 3px;
    overflow: hidden; margin-bottom: 1rem;
}
.tv-progress-bar {
    height: 100%; width: 72%;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    border-radius: 3px;
    animation: progressAnim 3s ease-in-out infinite;
}
@keyframes progressAnim {
    0% { width: 0%; }
    50% { width: 85%; }
    100% { width: 100%; }
}

.tv-pages { display: flex; flex-direction: column; gap: 0.35rem; }
.tv-page {
    font-size: 0.78rem; color: var(--text-dim);
    padding: 0.3rem 0.5rem; background: var(--surface);
    border-radius: 6px;
}
.tv-page.faded { color: var(--text-muted); opacity: 0.6; }

/* Training visual */
.tv-training { text-align: center; }
.tv-brain { font-size: 2.5rem; margin-bottom: 1.2rem; animation: float 3s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.tv-train-bars { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.2rem; text-align: left; }
.tv-bar { position: relative; }
.tv-bar span { font-size: 0.72rem; color: var(--text-dim); display: block; margin-bottom: 0.3rem; }
.tv-bar::after {
    content: ''; display: block;
    height: 5px; background: var(--surface); border-radius: 3px;
    overflow: hidden; position: relative;
}
.tv-bar::before {
    content: ''; display: block; position: absolute;
    bottom: 0; left: 0; height: 5px;
    width: var(--w);
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    border-radius: 3px; z-index: 1;
}

.tv-ready {
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; font-size: 0.8rem; color: var(--text-dim);
}

/* Snippet visual */
.tv-snippet {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border);
    border-radius: 10px; padding: 0.8rem 1rem;
    margin-bottom: 1rem; gap: 0.75rem;
}

.tv-snippet code {
    font-family: monospace; font-size: 0.75rem; color: var(--text-dim);
}
.c-tag { color: #ef4444; }
.c-attr { color: var(--cyan); }
.c-val { color: var(--green); }

.tv-copy {
    padding: 0.3rem 0.8rem; background: var(--accent); color: white;
    border: none; border-radius: 6px; font-size: 0.7rem; font-weight: 700;
    cursor: pointer; white-space: nowrap;
}

.tv-channels { display: flex; gap: 0.5rem; }
.tv-channel {
    flex: 1; text-align: center;
    padding: 0.6rem; background: var(--surface);
    border: 1px solid var(--border); border-radius: 10px;
    font-size: 0.75rem; color: var(--text-dim);
    display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.tv-channel.active {
    border-color: var(--border-accent);
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent-soft);
}

/* ---- FEATURES ---- */
.features-section { padding: 8rem 0; }

.feature-rows {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.feature-row {
    display: flex; gap: 1.2rem; align-items: flex-start;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: all 0.35s ease;
}

.feature-row:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
    background: var(--surface-2);
}

.fr-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.fr-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.fr-text p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; }

/* ---- CUSTOM SOLUTION ---- */
.custom-solution-section { padding: 8rem 0; }

.custom-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}

.custom-content h3 {
    font-size: 1.5rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em;
}

.custom-desc {
    color: var(--text-dim); font-size: 0.98rem; margin-bottom: 2rem;
}

.custom-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }

.cs-item { display: flex; gap: 1rem; align-items: flex-start; }
.cs-num {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.cs-item strong { display: block; margin-bottom: 0.2rem; font-size: 0.92rem; }
.cs-item p { color: var(--text-dim); font-size: 0.85rem; margin: 0; }

.custom-cta-row { margin-bottom: 0.75rem; }
.custom-note { color: var(--text-muted); font-size: 0.8rem; }

/* Timeline visual */
.cv-card {
    background: rgba(10, 10, 18, 0.9); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.cv-header {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
    font-size: 0.85rem; font-weight: 600; color: var(--accent-soft);
}
.cv-body { padding: 1.5rem; }
.cv-field { margin-bottom: 1rem; }
.cv-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.25rem; }
.cv-value { font-size: 0.9rem; font-weight: 600; }
.cv-tags { display: flex; gap: 0.4rem; }
.cv-tags span {
    padding: 0.25rem 0.6rem; background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12); border-radius: 6px;
    font-size: 0.75rem; color: var(--accent-soft);
}
.cv-timeline { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cv-tl { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: var(--text-muted); }
.cv-tl.done { color: var(--text-dim); }
.cv-tl.active { color: var(--accent-soft); font-weight: 600; }
.cv-tl em { margin-left: auto; font-size: 0.75rem; color: var(--text-muted); font-style: normal; }
.cv-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.cv-dot.done { background: var(--green); box-shadow: 0 0 6px var(--green); }
.cv-dot.active { background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: dotPulse 2s infinite; }

/* Custom pricing variant */
.pr-card.pr-custom-card {
    border-color: var(--cyan);
    background: linear-gradient(160deg, rgba(34, 211, 238, 0.06), transparent);
}

/* ---- PRICING ---- */
.pricing-section { padding: 8rem 0; }

.pricing-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; align-items: stretch;
}

.pr-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem; display: flex; flex-direction: column;
    position: relative; transition: all 0.4s;
}

.pr-card.pr-featured {
    border-color: var(--accent);
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.1), transparent);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12);
}

.pr-ribbon {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    color: white; font-size: 0.7rem; font-weight: 700;
    padding: 4px 16px; border-radius: 999px;
    letter-spacing: 0.5px;
}

.pr-top h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.2rem; }
.pr-tagline { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 1.2rem; }

.pr-price { margin-bottom: 1.5rem; }
.pr-amount { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.03em; }
.pr-cycle { font-size: 0.9rem; color: var(--text-dim); }

.pr-divider {
    height: 1px; background: var(--border); margin-bottom: 1.5rem;
}

.pr-list {
    list-style: none; flex: 1; margin-bottom: 2rem;
}
.pr-list li {
    padding: 0.4rem 0; color: var(--text-dim); font-size: 0.88rem;
    display: flex; align-items: center; gap: 0.6rem;
}
.pr-list li::before { content: '→'; color: var(--cyan); font-weight: 600; }
.pr-list li:has(strong)::before { content: ''; }

/* ---- BOTTOM CTA ---- */
.bottom-cta { padding: 4rem 0 8rem; }

.cta-box {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.12), rgba(34, 211, 238, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-box-inner {
    text-align: center; padding: 5rem 3rem;
}

.cta-box h2 {
    font-size: 2.5rem; font-weight: 800;
    letter-spacing: -0.03em; margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-dim); font-size: 1.05rem;
    max-width: 480px; margin: 0 auto 2.5rem;
}

.cta-sub {
    display: block; margin-top: 1rem;
    font-size: 0.8rem; color: var(--text-muted);
}

/* ---- FOOTER ---- */
.footer { border-top: 1px solid var(--border); padding-top: 4rem; }

.footer-grid {
    display: flex; justify-content: space-between;
    padding-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted); font-size: 0.85rem; margin-top: 0.5rem;
}

.footer-links { display: flex; gap: 5rem; }
.footer-links > div { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h6 {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text-dim); margin-bottom: 0.3rem;
}
.footer-links a {
    color: var(--text-muted); text-decoration: none; font-size: 0.87rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
    padding: 2rem 0; border-top: 1px solid var(--border);
}
.footer-bottom p {
    font-size: 0.8rem; color: var(--text-muted); text-align: center;
}

/* ---- REVEAL ---- */
.reveal {
    opacity: 0; transform: translateY(25px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3rem; }
    .hero-p { margin: 0 auto 2.5rem; }
    .hero-ctas { justify-content: center; }
    .hero-right { display: none; }
    .timeline-content { grid-template-columns: 1fr; gap: 2rem; }
    .timeline-content.reverse { direction: ltr; }
    .feature-rows { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-center, .nav-end {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; padding: 1rem 2rem;
        background: rgba(8, 8, 15, 0.95); border-bottom: 1px solid var(--border);
    }
    .nav-center.open, .nav-end.open { display: flex; }
    .hamburger { display: flex; }

    .hero { padding: 8rem 1.5rem 4rem; }
    .hero h1 { font-size: 2.3rem; }

    .section-intro h2 { font-size: 2rem; }

    .timeline-line { display: none; }
    .timeline-item { padding-left: 0; }
    .timeline-dot { position: static; margin-bottom: 1rem; }

    .pricing-row { grid-template-columns: 1fr; }
    .pr-card.pr-featured { transform: scale(1); }

    .footer-grid { flex-direction: column; gap: 2rem; }
    .footer-links { gap: 3rem; }
}