:root {
    --bg-dark: #07090e;
    --bg-card: rgba(16, 22, 36, 0.7);
    --bg-card-hover: rgba(22, 31, 52, 0.9);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(56, 189, 248, 0.35);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --primary-blue: #38bdf8;
    --accent-gold: #e5b842;
    --accent-green: #10b981;
    --gradient-blue: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    --gradient-gold: linear-gradient(135deg, #e5b842 0%, #f59e0b 100%);
    --radius-lg: 16px;
    --radius-md: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, h4, .logo-text, .stat-num {
    font-family: 'Outfit', sans-serif;
}

html {
    background-color: #07090e;
}

body {
    background-color: #0b1120;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    touch-action: pan-y;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(180deg, rgba(8, 14, 26, 0.35) 0%, rgba(255, 255, 255, 0.05) 30%, rgba(7, 10, 18, 0.78) 100%), url('car_bg.webp') !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 40% 30%;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, #1e1b4b, #0f172a, #1e1b4b);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    padding: 8px 16px;
    text-align: center;
    font-size: 0.82rem;
    color: #cbd5e1;
}

/* NAVBAR */
.navbar {
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030712;
    font-size: 1.1rem;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text strong {
    color: var(--primary-blue);
}

.logo-tag {
    font-size: 0.65rem;
    font-weight: 800;
    background: rgba(56, 189, 248, 0.15);
    color: var(--primary-blue);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap !important;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--gradient-blue);
    color: #030712 !important;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700 !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
    transition: transform 0.2s, box-shadow 0.2s !important;
    flex-shrink: 0;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

/* HERO */
.hero {
    position: relative;
    padding: 90px 0 70px 0;
    text-align: center;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 450px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(129, 140, 248, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-blue);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #e5b842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    max-width: 720px;
    margin: 0 auto 36px auto;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero-subtitle strong {
    color: #fff;
}

/* SEARCH BOX */
.search-box {
    max-width: 800px;
    margin: 0 auto 50px auto;
    background: rgba(16, 22, 36, 0.9);
    border: 1px solid var(--border-glow);
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.15);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #0b1120;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 6px 8px 6px 18px;
}

.search-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-right: 12px;
}

.search-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    padding: 10px 0;
}

.search-input-wrapper input::placeholder {
    color: #64748b;
}

.btn-hunt {
    background: var(--gradient-blue);
    color: #030712;
    border: none;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hunt:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

.search-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 0 6px;
    flex-wrap: wrap;
}

.pill-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pill:hover, .pill.active {
    background: rgba(56, 189, 248, 0.15);
    border-color: var(--primary-blue);
    color: #fff;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
}

/* UNICORNS SECTION */
.section-unicorns {
    padding: 80px 0;
    background: #0a0e18;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.badge-sub {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.car-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.featured-card {
    border-color: rgba(229, 184, 66, 0.4);
}

.car-badge-discount {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.car-badge-discount.highlight {
    background: rgba(229, 184, 66, 0.95);
    color: #030712;
}

.car-image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.car-card:hover .car-img {
    transform: scale(1.05);
}

.car-country-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.car-info {
    padding: 22px;
}

.car-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.car-header-row h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.car-year {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 700;
    background: rgba(56, 189, 248, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.car-specs-brief {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.car-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag-opt {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    color: #cbd5e1;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-opt i {
    color: var(--primary-blue);
}

.car-pricing {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-local {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-eur {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.price-eur strong {
    color: var(--accent-gold);
}

.price-compare {
    font-size: 0.8rem;
    color: #94a3b8;
}

.price-compare s {
    color: #64748b;
}

.savings {
    color: var(--accent-green);
    font-weight: 700;
    margin-left: 6px;
}

.btn-card-action {
    display: block;
    text-align: center;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid var(--primary-blue);
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.2s;
}

.btn-card-action:hover {
    background: var(--primary-blue);
    color: #030712;
}

/* ARBITRAGE SECTION */
.section-arbitrage {
    padding: 80px 0;
}

.arbitrage-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, rgba(16, 22, 36, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 40px;
}

.arbitrage-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-list li i {
    color: var(--accent-green);
    margin-top: 4px;
}

.benefit-list li strong {
    color: #fff;
}

.calc-card {
    background: #0b1120;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.calc-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.calc-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    outline: none;
}

.calc-results {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 10px;
}

.res-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.res-row.highlight {
    border-bottom: none;
    padding-top: 10px;
    font-size: 1.05rem;
    color: var(--accent-green);
}

.calc-note {
    font-size: 0.72rem;
    color: #64748b;
    text-align: right;
}

/* VIP FORM SECTION */
.section-form {
    padding: 80px 0;
    background: #080c14;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.form-group label i {
    color: var(--primary-blue);
    margin-right: 6px;
}

.form-group input {
    width: 100%;
    background: #0b1120;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: var(--primary-blue);
}

.checkbox-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    background: #0b1120;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
}

.checkbox-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-row input {
    width: auto;
    accent-color: var(--primary-blue);
}

.btn-submit-hunt {
    width: 100%;
    background: var(--gradient-blue);
    color: #030712;
    border: none;
    padding: 16px 0;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-hunt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}

.form-footer-note {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 14px;
}

.success-banner {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--accent-green);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 20px;
}

.success-banner i {
    font-size: 2.5rem;
    color: var(--accent-green);
    margin-bottom: 10px;
}

.success-banner h3 {
    color: #fff;
    margin-bottom: 6px;
}

.success-banner p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

/* FOOTER */
.footer {
    background: #03060a;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: var(--primary-blue);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-col code {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-blue);
    padding: 2px 6px;
    border-radius: 4px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 880px) {
    /* Hide the 3 internal text links on tablets/phones, but keep language switcher & CTA */
    .nav-links a:not(.nav-cta):not(.lang-btn) {
        display: none;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-cta {
        padding: 7px 13px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    body::before {
        background-position: 38% 18%;
        background-image: linear-gradient(180deg, rgba(8, 14, 26, 0.30) 0%, rgba(255, 255, 255, 0.06) 25%, rgba(7, 10, 18, 0.82) 100%), url('car_bg.webp') !important;
    }
    .container {
        padding: 0 16px;
    }
    .top-bar {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
    .navbar {
        padding: 0;
    }
    .nav-container {
        padding: 10px 16px;
    }
    .logo-text {
        font-size: 1.15rem;
    }
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
    .logo-tag {
        font-size: 0.55rem;
        padding: 1px 4px;
    }

    /* Hero adjustments */
    .hero {
        padding: 45px 0 35px 0;
    }
    .hero-badge {
        font-size: 0.68rem;
        padding: 4px 12px;
        margin-bottom: 16px;
    }
    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.22;
        margin-bottom: 14px;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0 8px;
    }

    /* Search Box on mobile */
    .search-box {
        padding: 8px;
        border-radius: 16px;
        margin-bottom: 30px;
    }
    .search-input-wrapper {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
        background: #0b1120;
        border-radius: 12px;
    }
    .search-icon {
        display: none;
    }
    .search-input-wrapper input {
        width: 100%;
        text-align: center;
        padding: 8px 4px;
        font-size: 0.92rem;
    }
    .btn-hunt {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 0.92rem;
    }

    /* Horizontal scrollable pills for thumb-swiping */
    .search-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 2px 4px 2px;
        gap: 8px;
        scrollbar-width: none;
    }
    .search-pills::-webkit-scrollbar {
        display: none;
    }
    .pill-label {
        display: none;
    }
    .pill {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 5px 11px;
    }

    /* Hero stats: clean 2x2 grid */
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 24px;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        background: rgba(16, 22, 36, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.06);
        padding: 12px 8px;
        border-radius: 10px;
    }
    .stat-num {
        font-size: 1.35rem;
    }
    .stat-label {
        font-size: 0.72rem;
    }

    /* Cars Grid */
    .section-unicorns {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-header h2 {
        font-size: 1.7rem;
    }
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .car-info {
        padding: 16px;
    }
    .car-header-row h3 {
        font-size: 1.15rem;
    }

    /* Arbitrage */
    .section-arbitrage {
        padding: 50px 0;
    }
    .arbitrage-box {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 28px;
    }
    .arbitrage-text h2 {
        font-size: 1.5rem;
    }
    .benefit-list li {
        font-size: 0.88rem;
    }

    /* Form on mobile */
    .section-form {
        padding: 50px 0;
    }
    .form-wrapper {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .form-header h2 {
        font-size: 1.6rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    /* Prevent iOS zoom on input tap */
    .form-group input, .form-group select {
        font-size: 16px !important;
    }
    .checkbox-row {
        grid-template-columns: 1fr;
        display: grid;
        gap: 10px;
    }
    .btn-submit-hunt {
        font-size: 0.95rem;
        padding: 14px;
        width: 100%;
        justify-content: center;
    }

    /* Floating WhatsApp Button on mobile */
    .floating-wa {
        width: 54px;
        height: 54px;
        font-size: 27px;
        bottom: 18px;
        right: 18px;
    }

    /* Footer on mobile */
    .footer {
        padding: 40px 0 20px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    .lang-btn {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    .hero h1 {
        font-size: 1.65rem;
    }
}

/* SUCCESS BANNER WA BUTTON */
.success-actions {
    margin-top: 20px;
}
.btn-wa-confirm {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.25s ease;
}
.btn-wa-confirm:hover {
    background: #22bf5b;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* FLOATING WHATSAPP */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-wa:hover {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.65);
    color: #fff;
}
.floating-wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPulse 2s infinite;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
    flex-shrink: 0;
    white-space: nowrap;
}
.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap !important;
    transition: all 0.2s ease;
}
.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.lang-btn.active {
    background: var(--primary-blue);
    color: #030712 !important;
    box-shadow: 0 2px 8px rgba(56, 189, 248, 0.4);
}
