/* ================================================
   AdHunt — Treasure Hunt Landing
   Cinzel headings / Lato body / Gold palette
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Lato:wght@400;700&display=swap');

:root {
    --gold:        #ffd700;
    --gold-dark:   #c9a800;
    --gold-glow:   rgba(255, 215, 0, 0.35);
    --cyan:        #36d6c3;
    --cyan-glow:   rgba(54, 214, 195, 0.35);
    --green:       #22c55e;
    --red:         #ef4444;
    --dark:        #0d1117;
    --dark-card:   #151d2b;
    --dark-surface:#1a2436;
    --parchment:   #1c1a14;
    --text:        #e8e4dc;
    --text-muted:  #8896a8;
    --border:      rgba(255, 215, 0, 0.08);
    --border-warm: rgba(255, 215, 0, 0.15);
    --font-h:      'Cinzel', serif;
    --font-b:      'Lato', sans-serif;
    --radius:      14px;
    --radius-sm:   8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-b);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Gold fireflies canvas */
#fireflies {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Sections sit above the fireflies canvas */
.features,
.companies,
.final-cta,
.main-footer {
    position: relative;
    z-index: 2;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

/* Utility */
.gold  { color: var(--gold); }
.green { color: var(--green); }

/* Gold keyword in section headings */
.features-intro h2 .gold,
.companies h2 .gold,
.final-cta h2 .gold {
    color: #ffe566;
    text-shadow: 0 0 18px rgba(255,215,0,0.4), 0 0 40px rgba(255,215,0,0.15);
}

/* Coin icon inline */
.coin-icon {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 2px;
    filter: drop-shadow(0 0 4px rgba(255,215,0,0.3));
}

.coin-icon-lg {
    width: 44px;
    height: 44px;
    vertical-align: -10px;
    margin-right: 6px;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.3));
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.6rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.btn-lg { padding: 0.95rem 2.5rem; font-size: 0.95rem; }

.btn-gold {
    background: linear-gradient(135deg, #ffd700 0%, #f0c000 100%);
    color: #111;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-gold:hover {
    background: linear-gradient(135deg, #ffe033 0%, #ffd700 100%);
    border-color: #ffe033;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(54, 214, 195, 0.08);
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(54, 214, 195, 0.15);
}

/* ============ NAV ============ */
.top-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.4s ease;
}

.top-nav.scrolled {
    background: rgba(13, 17, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 3rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 40px;
    transition: opacity 0.3s;
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.35));
    transition: filter 0.3s;
}

.logo:hover img {
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.55));
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-item {
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    text-decoration: none;
}
.nav-item:hover { color: var(--cyan); }

/* Burger (mobile) */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    padding: 2px 0;
}
.nav-burger span {
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(13,17,23,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    z-index: 99;
    border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: background 0.2s, border-color 0.2s;
    height: 100%;
}
.lang-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,215,0,0.3);
}

.lang-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.lang-chevron {
    opacity: 0.5;
    transition: transform 0.2s, opacity 0.2s;
}
.lang-switcher.open .lang-chevron {
    transform: rotate(180deg);
    opacity: 0.8;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    background: rgba(21,29,43,0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 10px;
    padding: 6px 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    z-index: 100;
}
.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    transition: background 0.15s, color 0.15s;
}
.lang-option:hover {
    background: rgba(255,215,0,0.08);
    color: #fff;
}
.lang-option.active {
    color: var(--gold);
}
.lang-option .lang-flag {
    width: 20px;
    height: 20px;
}

/* Mobile language row */
.lang-mobile {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    justify-content: center;
}

.lang-mobile-link {
    display: flex;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}
.lang-mobile-link:hover,
.lang-mobile-link.active {
    opacity: 1;
}
.lang-mobile-link.active {
    transform: scale(1.15);
}

.lang-flag-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

/* Footer language row */
.footer-lang {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-lang-link {
    display: flex;
    opacity: 0.35;
    transition: opacity 0.2s, transform 0.2s;
}
.footer-lang-link:hover {
    opacity: 0.8;
}
.footer-lang-link.active {
    opacity: 1;
    transform: scale(1.15);
}
.footer-lang-link .lang-flag-sm {
    width: 24px;
    height: 24px;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background — the treasure map */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/background.png') center center / cover no-repeat;
    z-index: 0;
}

/* Overlay: warm at top to match parchment, fading to dark at bottom */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(180, 140, 60, 0.06) 0%, transparent 60%),
        linear-gradient(
            180deg,
            rgba(13, 17, 23, 0.25) 0%,
            rgba(13, 17, 23, 0.45) 35%,
            rgba(13, 17, 23, 0.82) 70%,
            rgba(13, 17, 23, 1.00) 100%
        );
    z-index: 1;
}

/* Gold glow behind the hero text */
.hero-center {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 720px;
    padding: 0 2rem;
}

.hero-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255,215,0,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.hero h1 {
    font-family: var(--font-h);
    font-size: clamp(3.0rem, 7vw, 4.8rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.3);
}

.hero h1 .gold {
    color: #ffe566;
    text-shadow:
        0 0 20px rgba(255, 230, 80, 0.6),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.78rem;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(54,214,195,0.6);
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--cyan);
    font-size: 1.5rem;
    animation: bounce 2.5s ease infinite;
    opacity: 0.5;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
    50%      { transform: translateX(-50%) translateY(10px); opacity: 0.8; }
}

/* ============ SECTION SHARED ============ */
.section-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-line {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* ============ FEATURES ZIG-ZAG ============ */
.features {
    padding: 7rem 0 5rem;
    position: relative;
}

/* Subtle topographic grid overlay for the features section */
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255,215,0,0.02) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.features-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.features-intro h2 {
    font-family: var(--font-h);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
}

.features-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 7rem;
    position: relative;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse { flex-direction: row-reverse; }

.feature-text {
    flex: 1;
}

.feature-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.feature-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid var(--border-warm);
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
    background: rgba(255,215,0,0.04);
}

/* Alternate step numbers: even rows use cyan */
.feature-row.reverse .feature-num {
    color: var(--gold);
    border-color: var(--border-warm);
    background: rgba(255,215,0,0.04);
}

.feature-step-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.feature-text h3 {
    font-family: var(--font-h);
    font-size: 1.65rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.feature-text p strong {
    color: var(--text);
    font-weight: 700;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid;
}

.tag-gold   { color: var(--gold); border-color: rgba(255,215,0,0.2); background: rgba(255,215,0,0.05); }
.tag-cyan   { color: var(--cyan); border-color: rgba(54,214,195,0.2); background: rgba(54,214,195,0.05); }
.tag-green  { color: var(--green); border-color: rgba(34,197,94,0.2); background: rgba(34,197,94,0.05); }
.tag-muted  { color: var(--text-muted); border-color: rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); }

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* ============ MOCK CARDS ============ */
.mock-card {
    background: linear-gradient(160deg, var(--dark-card), #111822);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    padding: 2.25rem;
    width: 100%;
    max-width: 500px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,215,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Subtle golden-to-cyan accent line */
.mock-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), rgba(54,214,195,0.2), transparent);
}

.mock-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 30px 70px rgba(0,0,0,0.5),
        0 0 40px rgba(255,215,0,0.06),
        0 0 30px rgba(54,214,195,0.04),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.mock-card-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.mock-ad-area {
    position: relative;
    height: 220px;
    background: var(--dark-surface);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.03);
}

.mock-ad-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mock-ad-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.04), rgba(54,214,195,0.03), transparent);
    animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mock-progress {
    height: 4px;
    background: var(--dark-surface);
    border-radius: 4px;
    overflow: hidden;
}
.mock-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(255,215,0,0.3), 0 0 12px rgba(54,214,195,0.15);
}

.mock-progress-animated {
    width: 0%;
    animation: progressFill 10s linear infinite;
}

@keyframes progressFill {
    0%   { width: 0%; }
    100% { width: 100%; }
}

/* Quiz card */
.mock-question {
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #fff;
}

.mock-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.mock-opt {
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: border-color 0.3s, background 0.3s, color 0.3s, opacity 0.4s, box-shadow 0.3s;
}

/* Considering state — subtle gold pulse */
.mock-opt-considering {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    color: var(--text);
}

/* Correct answer — green with pop */
.mock-opt-correct {
    border-color: var(--green);
    background: rgba(34,197,94,0.08);
    color: var(--green);
    box-shadow: 0 0 12px rgba(34,197,94,0.1);
    animation: optionPop 0.4s ease;
}

@keyframes optionPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* Dimmed wrong answers */
.mock-opt-dimmed {
    opacity: 0.4;
}

.mock-reward {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    padding: 10px;
    background: rgba(255,215,0,0.04);
    border: 1px dashed rgba(255,215,0,0.15);
    border-radius: var(--radius-sm);
}

/* Reward hidden/visible states for animation */
.mock-reward-hidden {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.mock-reward-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Confetti container */
.quiz-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

/* Fake cursor for quiz animation */
.quiz-cursor {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
    will-change: left, top, opacity;
}
.quiz-cursor-click {
    animation: cursorPress 0.15s ease;
}
@keyframes cursorPress {
    0%   { transform: scale(1); }
    50%  { transform: scale(0.75); }
    100% { transform: scale(1); }
}

/* Wallet card */
.wallet-rain-area {
    position: relative;
    height: 250px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    overflow: hidden;
    transition: border-color 1.5s ease-in-out;
}
.wallet-rain-area.glow-active {
    border-bottom-color: rgba(255, 215, 0, 0.8);
}
.wallet-glow-rays {
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -130px;
    width: 260px;
    height: 160px;
    background: radial-gradient(ellipse at bottom, rgba(255, 215, 0, 0.45) 0%, rgba(255, 215, 0, 0.1) 45%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}
.wallet-rain-area.glow-active .wallet-glow-rays {
    animation: raysPulse 3s infinite alternate ease-in-out;
}
.wallet-glow-rays::before,
.wallet-glow-rays::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -90px;
    width: 180px;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.wallet-rain-area.glow-active .wallet-glow-rays::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='160'%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(20,130) scale(1.2)' fill='rgba(255,215,0,1)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(60,70)' fill='rgba(255,255,255,0.9)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(110,140) scale(1.6)' fill='rgba(255,215,0,0.6)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(150,50) scale(0.9)' fill='rgba(255,255,255,1)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(40,30) scale(1.4)' fill='rgba(255,215,0,0.8)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(130,90) scale(1.1)' fill='rgba(255,215,0,0.9)'/%3E%3C/svg%3E");
    background-size: 180px 160px;
    animation: floatBubbles 4s infinite linear;
}

.wallet-rain-area.glow-active .wallet-glow-rays::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='120'%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(30,100) scale(0.9)' fill='rgba(255,255,255,0.8)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(60,40) scale(1.3)' fill='rgba(255,215,0,0.8)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(100,110)' fill='rgba(255,215,0,1)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(130,20) scale(0.7)' fill='rgba(255,255,255,0.7)'/%3E%3Cpath d='M0 -6 Q0 0 6 0 Q0 0 0 6 Q0 0 -6 0 Q0 0 0 -6 Z' transform='translate(80,80) scale(1.2)' fill='rgba(255,215,0,0.9)'/%3E%3C/svg%3E");
    background-size: 160px 120px;
    animation: floatBubbles 5s infinite linear 2s;
}

@keyframes raysPulse {
    0% { opacity: 0.5; transform: scaleY(1); }
    100% { opacity: 0.9; transform: scaleY(1.3); }
}

@keyframes floatBubbles {
    0% { background-position: center 40px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { background-position: center -120px; opacity: 0; }
}

.wallet-coin-rain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.wallet-coin-rain.active {
    opacity: 1;
}

/* Balance text floated over the top of the rain area */
.wallet-balance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem 1rem 0;
    text-align: center;
}

.mock-wallet-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 0.25rem;
}

.mock-wallet-amount {
    font-family: var(--font-h);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    text-shadow: 0 0 30px rgba(255,215,0,0.15);
}

.mock-wallet-rows {
    padding-top: 1rem;
}

.mock-wallet-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.mock-wallet-row .green { font-weight: 700; }

/* Tournament card */
.mock-tourn-title {
    font-family: var(--font-h);
    font-size: 1.15rem;
    text-align: center;
    margin-bottom: 0.4rem;
    color: #fff;
}

.mock-tourn-prize-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.mock-podium {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-podium-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--dark-surface);
    border: 1px solid rgba(255,255,255,0.03);
    transition: background 0.2s;
}

.mock-podium-row:first-child {
    background: rgba(255,215,0,0.08);
    border-color: rgba(255,215,0,0.25);
    position: relative;
    overflow: hidden;
    animation: podiumGlowPulse 2.5s infinite alternate ease-in-out;
}

.mock-podium-row:first-child::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), rgba(255,215,0,0.3), transparent);
    animation: podiumGoldSweep 4s infinite linear;
    pointer-events: none;
    z-index: 1;
}

.mock-podium-row:first-child > * {
    position: relative;
    z-index: 2; /* keep text and icon above the sweep */
}

@keyframes podiumGlowPulse {
    0%   { box-shadow: 0 0 15px rgba(255,215,0,0.1), inset 0 0 5px rgba(255,215,0,0.05); }
    100% { box-shadow: 0 0 30px rgba(255,215,0,0.25), inset 0 0 15px rgba(255,215,0,0.1); }
}

@keyframes podiumGoldSweep {
    0%   { left: -100%; }
    20%  { left: 200%; }
    100% { left: 200%; }
}

.medal-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.podium-place {
    flex: 1;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
}

.podium-reward {
    font-family: var(--font-h);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.podium-reward.gold   { color: #ffe566; text-shadow: 0 0 12px rgba(255,215,0,0.4); }
.podium-reward.silver { color: #d4d4d4; text-shadow: 0 0 10px rgba(200,200,200,0.3); }
.podium-reward.bronze { color: #e8a060; text-shadow: 0 0 10px rgba(205,127,50,0.3); }

.podium-xp {
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 700;
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34,197,94,0.35);
    margin-left: 0.35rem;
}

/* ============ COMPANIES ============ */
.companies {
    padding: 7rem 0;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-card) 50%, var(--dark) 100%);
    overflow: hidden;
}

/* Compass rose watermark */
.companies-compass {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    color: rgba(255,215,0,0.04);
    pointer-events: none;
    z-index: 0;
}

.companies .container {
    position: relative;
    z-index: 1;
}

/* Dotted treasure route */
.companies-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
}

.route-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,215,0,0.25);
    border: 1px solid rgba(255,215,0,0.4);
    flex-shrink: 0;
}

.route-dot-mid {
    width: 12px;
    height: 12px;
    background: rgba(255,215,0,0.35);
    border-color: rgba(255,215,0,0.6);
    box-shadow: 0 0 12px rgba(255,215,0,0.15);
}

.route-line {
    width: 120px;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,215,0,0.3) 0px,
        rgba(255,215,0,0.3) 6px,
        transparent 6px,
        transparent 12px
    );
}

.companies::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-warm), rgba(54,214,195,0.15), transparent);
}

.companies::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(54,214,195,0.15), var(--border-warm), transparent);
}

.companies h2 {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    margin-bottom: 1rem;
}

.companies-sub {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Highlights strip */
.companies-highlights {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.companies-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-right: 1px solid var(--border);
}

.companies-highlight:last-child { border-right: none; }

.companies-highlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.company-perk {
    background: linear-gradient(160deg, var(--dark-surface), var(--dark-card));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
}
.company-perk:hover {
    transform: translateY(-5px);
    border-color: rgba(54,214,195,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(54,214,195,0.06);
}

.company-perk:hover .perk-icon {
    border-color: rgba(54,214,195,0.3);
    background: rgba(54,214,195,0.08);
    color: var(--cyan);
}

.perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255,215,0,0.06);
    border: 1px solid rgba(255,215,0,0.15);
    color: var(--gold);
    margin: 0 auto 1.5rem;
    transition: all 0.35s ease;
}

.perk-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.perk-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255,215,0,0.2));
    transition: filter 0.35s ease;
}

.company-perk:hover .perk-icon-img {
    filter: drop-shadow(0 0 10px rgba(54,214,195,0.3));
}

.company-perk h4 {
    font-family: var(--font-h);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    color: #fff;
}

.company-perk p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============ FINAL CTA ============ */
.final-cta {
    padding: 7rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Outer ambient ring — gold to cyan */
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.10) 0%, rgba(54,214,195,0.06) 35%, transparent 65%);
    pointer-events: none;
}

/* Inner bright core glow */
.final-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.16) 0%, rgba(54,214,195,0.08) 40%, transparent 70%);
    pointer-events: none;
    filter: blur(30px);
}

/* Coin centerpiece */
.cta-coin {
    position: relative;
    z-index: 2;
    margin: 0 auto 0.5rem;
    perspective: 1000px;
    width: 140px;
    height: 140px;
    cursor: pointer;
    animation: coinFloat 4s ease-in-out infinite;
}

.cta-coin-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out;
    transform-origin: 50% 50% -6.5px;
}

.coin-face {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    backface-visibility: hidden;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.3));
    border-radius: 50%;
}

.coin-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.22); /* Scales the transparent-padded PNG to fit the physical edge */
}

.coin-front {
    transform: translateZ(0px);
}

.coin-back {
    transform: translateZ(-13px) rotateY(180deg);
}

.coin-edge {
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    border-radius: 50%;
    background: #c9a800; /* Darker gold for edge */
    border: 1px solid #ffd700;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.cta-coin-inner.coin-spinning {
    animation: coinFlipOnce 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

@keyframes coinFlipOnce {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Dotted path from coin to heading */
.cta-dotted-line {
    width: 1px;
    height: 40px;
    margin: 0 auto 1.25rem;
    background: repeating-linear-gradient(
        180deg,
        rgba(255,215,0,0.4) 0px,
        rgba(255,215,0,0.4) 4px,
        transparent 4px,
        transparent 10px
    );
    position: relative;
    z-index: 2;
}

/* X marks the spot */
.cta-x-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 0;
}

.x-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.06), transparent);
}

.x-line-1 { transform: translate(-50%, -50%) rotate(45deg); }
.x-line-2 { transform: translate(-50%, -50%) rotate(-45deg); }

/* Scattered stars */
.cta-star {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,215,0,0.3);
    pointer-events: none;
    z-index: 0;
}

.cta-star-1 { top: 18%; left: 12%; width: 3px; height: 3px; opacity: 0.5; }
.cta-star-2 { top: 25%; right: 15%; width: 5px; height: 5px; box-shadow: 0 0 6px rgba(255,215,0,0.2); }
.cta-star-3 { bottom: 22%; left: 18%; width: 5px; height: 5px; box-shadow: 0 0 6px rgba(255,215,0,0.2); }
.cta-star-4 { bottom: 30%; right: 10%; width: 3px; height: 3px; opacity: 0.5; }

.final-cta h2 {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.final-cta p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.final-cta .btn {
    position: relative;
    z-index: 2;
}

/* ============ FOOTER ============ */
.main-footer {
    background: #080c14;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.15), rgba(54,214,195,0.1), transparent);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    transition: opacity 0.3s;
}

.footer-logo img {
    height: 34px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.35));
    transition: filter 0.3s;
}

.footer-logo:hover img {
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.55));
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-link:hover {
    background: rgba(54,214,195,0.08);
    border-color: rgba(54,214,195,0.25);
    transform: translateY(-2px);
}

.footer-social-link:hover svg {
    stroke: var(--cyan);
}

.footer-col h4 {
    font-family: var(--font-h);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.7; }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.footer-col ul li a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

/* Newsletter form */
.footer-newsletter p {
    margin-bottom: 1rem;
}

.footer-form-group {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.12);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.3s;
}

.footer-form-group:focus-within {
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 0 20px rgba(255,215,0,0.06);
}

.footer-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.85rem;
    font-family: var(--font-b);
    outline: none;
    min-width: 0;
}

.footer-input::placeholder {
    color: rgba(255,255,255,0.25);
}

.footer-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    background: linear-gradient(135deg, var(--gold), #f0c000);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.footer-form-btn svg {
    width: 18px;
    height: 18px;
    stroke: #111;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-form-btn:hover {
    background: linear-gradient(135deg, #ffe033, #ffd700);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 1.25rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--cyan);
}

.footer-dot {
    color: rgba(255,255,255,0.15);
    font-size: 0.72rem;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
    padding: 8rem 0 5rem;
    min-height: 70vh;
}

.legal-title {
    font-family: var(--font-h);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content {
    max-width: 760px;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.legal-section h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0.75rem;
}

.legal-section ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 1.25rem;
    position: relative;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
}

.legal-link {
    color: var(--cyan);
    transition: color 0.2s;
}

.legal-link:hover {
    color: var(--gold);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .feature-row { gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }

    .top-nav { padding: 1rem 1.5rem; }
    .top-nav.scrolled { padding: 0.75rem 1.5rem; }

    .logo img { height: 30px; }

    .hero h1 { font-size: 3rem; }
    .hero-sub { font-size: 1rem; }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        margin-bottom: 5rem;
    }

    .feature-step { justify-content: center; }
    .feature-tags { justify-content: center; }

    .feature-visual { width: 100%; }
    
    .mock-card { max-width: 100%; width: 100%; }

    /* Make wallet rain fill the mobile card completely */
    .wallet-rain-area {
        margin-left: -2.25rem;
        margin-right: -2.25rem;
        width: calc(100% + 4.5rem);
    }
    .wallet-coin-rain {
        inset: auto;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 120%;
        height: 110%;
    }

    .companies-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-trust { flex-direction: column; gap: 0.6rem; align-items: center; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 300px; }

    .companies-highlights {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .companies-highlight {
        border-right: none;
        border-bottom: 1px solid var(--border);
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
    }

    .companies-highlight:last-child { border-bottom: none; }

    .companies-compass { display: none; }

    .companies-route { margin-bottom: 2rem; }
    .route-line { width: 60px; }

    .cta-coin { width: 100px; height: 100px; }
    .cta-star { display: none; }
    .cta-x-mark { width: 200px; height: 200px; }
    .x-line { width: 180px; }

    .main-footer .container { flex-direction: column; gap: 1.5rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand { text-align: center; }
    .footer-logo { margin: 0 auto 1rem; }
    .footer-social { justify-content: center; }

    .footer-form-group { max-width: 320px; margin: 0 auto; }

    .footer-bottom .container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-lang {
        justify-content: center;
    }

    .container { padding: 0 1.25rem; }
}
