/* ========================================
   LUPE PTY - Global Styles v2
   ======================================== */

:root {
    --primary: #00D4AA;
    --primary-dark: #00B894;
    --primary-light: #00E5BB;
    --dark: #0F1923;
    --dark-mid: #162032;
    --dark-card: #1C2A42;
    --dark-elevated: #243352;
    --border-color: #2E4263;
    --border-hover: #3A5480;
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0;
    --text-muted: #A0AEC0;
    --red: #EF4444;
    --gold: #D4A843;
    --bg-primary: #0F1923;
    --bg-secondary: #162032;
    --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { color: var(--text-primary); }
p, span, li, strong, em, label, td, th { color: var(--text-secondary); }
a { color: inherit; }

.section-white h1, .section-white h2, .section-white h3,
.section-white h4, .section-white h5, .section-white h6 { color: #1a1a2e; }
.section-white p, .section-white span, .section-white li,
.section-white strong, .section-white label { color: #374151; }

.page-hero h1 { color: var(--text-primary); }
.page-hero p { color: var(--text-secondary); }

.cta-section h2 { color: var(--text-primary); }
.cta-section p { color: var(--text-secondary); }

.download-section h2 { color: var(--text-primary); }
.download-section p { color: var(--text-secondary); }

.footer h4 { color: var(--text-primary); }
.footer p, .footer a, .footer span { color: var(--text-secondary); }
.footer a:hover { color: var(--primary); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; border: none; outline: none; }

::selection { background: var(--primary); color: var(--dark); }

/* ========================================
   Preloader
   ======================================== */

#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content { text-align: center; }

.preloader-logo {
    margin-bottom: 30px;
}

.preloader-logo img {
    height: 100px;
    width: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.preloader-bar {
    width: 220px;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.preloader-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   Container
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(15, 25, 35, 0.99);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(0, 212, 170, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 212, 170, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-full { width: 100%; }

.btn-nav { display: none; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .btn-nav { display: inline-flex; } }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn i {
    width: 26px;
    height: 26px;
    color: #FFFFFF;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    padding: 100px 24px 40px;
    transition: right 0.4s ease;
    z-index: 999;
    border-left: 2px solid var(--border-color);
    overflow-y: auto;
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu-close i { width: 24px; height: 24px; color: var(--text-primary); }
.mobile-menu-close:hover { border-color: var(--primary); }

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--primary);
    padding-left: 12px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--primary);
    padding-left: 12px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 170, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 184, 148, 0.12) 0%, transparent 40%),
        linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 50%, var(--dark) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px); opacity: 0.6; }
    50% { transform: translateY(-15px) translateX(-15px); opacity: 0.3; }
    75% { transform: translateY(-40px) translateX(10px); opacity: 0.5; }
}

.hero-road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    opacity: 0.4;
}

.hero-road svg { width: 100%; height: 100%; }

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        padding: 40px 24px;
    }
}

.hero-content { text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 212, 170, 0.12);
    border: 2px solid rgba(0, 212, 170, 0.35);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-badge i { width: 16px; height: 16px; }

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.title-line { display: block; }

.title-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

@media (min-width: 1024px) { .hero-subtitle { margin: 0 0 32px; } }
.hero-subtitle strong { color: var(--text-primary); }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

@media (min-width: 1024px) { .hero-cta { justify-content: flex-start; } }

.hero-stores {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 1024px) { .hero-stores { justify-content: flex-start; } }

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--dark-elevated);
    border-radius: 14px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.store-badge:hover {
    background: var(--border-color);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.store-badge svg { flex-shrink: 0; }

.store-text { text-align: left; }

.store-small {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-big {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: var(--dark-card);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 3px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark-mid), var(--dark-card));
    border-radius: 30px;
    overflow: hidden;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.35) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

/* App Preview */
.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.app-logo-small { font-weight: 700; font-size: 1.1rem; color: var(--primary); }
.app-time { font-size: 0.75rem; color: var(--text-muted); }

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--dark-elevated);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.search-bar i { width: 18px; height: 18px; color: var(--primary); }

.app-map {
    flex: 1;
    background: var(--dark-elevated);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.map-route {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.route-point { width: 12px; height: 12px; border-radius: 50%; }
.route-point.start { background: var(--primary); box-shadow: 0 0 10px var(--primary); }
.route-point.end { background: var(--red); box-shadow: 0 0 10px var(--red); }

.route-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), var(--red));
}

.map-car {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: carMove 3s ease-in-out infinite;
}

.map-car i { width: 20px; height: 20px; color: var(--dark); }

@keyframes carMove {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.app-rides { display: flex; flex-direction: column; gap: 8px; }

.ride-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--dark-elevated);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.ride-driver { display: flex; align-items: center; gap: 10px; }

.driver-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
}

.driver-name { display: block; font-size: 0.85rem; font-weight: 600; }
.driver-rating { display: block; font-size: 0.7rem; color: var(--text-muted); }

.ride-details { text-align: right; }
.ride-time { display: block; font-size: 0.75rem; color: var(--text-muted); }
.ride-price { display: block; font-size: 1rem; font-weight: 700; color: var(--primary); }

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .hero-stats { gap: 0; justify-content: space-between; }
}

.stat-item { text-align: center; flex: 1; min-width: 140px; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--primary); }

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    display: none;
}

@media (min-width: 768px) { .stat-divider { display: block; } }

/* ========================================
   Section Styles
   ======================================== */

.section {
    padding: 100px 0;
    position: relative;
}

.section-white {
    background: #FFFFFF;
    color: #1a1a2e;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.section-white .section-title { color: #111827; }
.section-white .section-desc, .section-white .section-subtitle { color: #4b5563; }
.section-white .section-badge {
    background: rgba(0, 112, 243, 0.08);
    border-color: rgba(0, 112, 243, 0.2);
    color: #0070f3;
}
.section-white .section-tag {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    color: #00b894;
}
.section-white .text-accent { color: #00b894; }
.section-white h1, .section-white h2, .section-white h3,
.section-white h4, .section-white h5, .section-white h6 { color: #111827; }
.section-white p, .section-white span, .section-white li,
.section-white strong, .section-white label { color: #374151; }
.section-white a { color: #0070f3; text-decoration: underline; }
.section-white a:hover { color: #0051a8; }
.section-white .card-list li { color: #374151; border-color: #e5e7eb; }
.section-white .card-list li i { color: #00b894; }
.section-white .highlight {
    background: linear-gradient(135deg, #00b894, #00D4AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-white .trust-card,
.section-white .feature-card,
.section-white .step-content,
.section-white .benefit-card,
.section-white .safety-card,
.section-white .value-card,
.section-white .faq-item,
.section-white .contact-card,
.section-white .blog-card,
.section-white .legal-content {
    background: #f8fafc;
    border-color: #e2e8f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.section-white .trust-card:hover,
.section-white .feature-card:hover,
.section-white .step-content:hover,
.section-white .benefit-card:hover,
.section-white .safety-card:hover,
.section-white .value-card:hover,
.section-white .faq-item:hover,
.section-white .contact-card:hover,
.section-white .blog-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.section-white .trust-card h3,
.section-white .feature-card h3,
.section-white .step-content h3,
.section-white .benefit-card h3,
.section-white .safety-card h3,
.section-white .value-card h3,
.section-white .community-card h3,
.section-white .testimonial-card h3,
.section-white .legal-content h2,
.section-white .legal-content h3 { color: #111827; }

.section-white .trust-card p,
.section-white .feature-card p,
.section-white .step-content p,
.section-white .benefit-card p,
.section-white .safety-card p,
.section-white .community-card p,
.section-white .testimonial-card p,
.section-white .legal-content p,
.section-white .legal-content li { color: #374151; }

.section-white .trust-badge,
.section-white .card-badge {
    color: #ffffff;
}

.section-white .trust-features span { color: #374151; }
.section-white .trust-features i { color: #00b894; }

.section-white .testimonial-card {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.section-white .testimonial-card p { color: #4b5563; }
.section-white .author-name { color: #1a1a2e; }
.section-white .author-role { color: #6b7280; }

.section-white .community-card {
    background: #f8fafc;
    border-color: #e2e8f0;
}

.section-white .community-card p,
.section-white .community-card li { color: #4b5563; }

.section-white .step-number {
    color: #ffffff;
}

.section-white .stat-label { color: #4b5563; }
.section-white .stat-number { color: #00b894; }
.section-white .stat-suffix { color: #00b894; }

.section-white .footer-links a { color: #4b5563; }
.section-white .footer-links a:hover { color: #00b894; }

.section-white .sf-content h4 { color: #1a1a2e; }
.section-white .sf-content p { color: #4b5563; }

.section-white .section-white-override { color: #1a1a2e; }

@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .section-white { padding: 70px 0; }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 212, 170, 0.12);
    border: 2px solid rgba(0, 212, 170, 0.35);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.text-accent { color: var(--primary); }

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Trust Section
   ======================================== */

.trust-section {
    background: var(--dark-mid);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 36px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 170, 0.1);
}

.trust-card:hover::before { transform: scaleX(1); }

.trust-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.08) 0%, var(--dark-card) 100%);
}

.trust-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 14px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border: 2px solid rgba(0, 212, 170, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.trust-icon i { width: 28px; height: 28px; color: var(--primary); }

.trust-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border-color: rgba(34, 197, 94, 0.25);
}

.trust-icon.green i { color: #22C55E; }

.trust-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.trust-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trust-features i { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ========================================
   How It Works Section
   ======================================== */

.how-section {
    background: var(--dark);
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    left: 28px;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--border-color);
    border-radius: 2px;
}

.steps-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
}

.step-card {
    position: relative;
    padding-left: 90px;
    padding-bottom: 50px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 58px;
    height: 58px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.4);
}

.step-content {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 32px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.step-card:hover .step-content {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 170, 0.1);
    transform: translateX(8px);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border: 2px solid rgba(0, 212, 170, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.step-icon i { width: 24px; height: 24px; color: var(--primary); }

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-content strong { color: var(--text-primary); }

.how-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid var(--border-color);
}

.how-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* ========================================
   Features Section
   ======================================== */

.features-section {
    background: var(--dark-mid);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 36px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 170, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border: 2px solid rgba(0, 212, 170, 0.25);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i { width: 36px; height: 36px; color: var(--primary); }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Security Section
   ======================================== */

.security-section {
    background: var(--dark);
    overflow: hidden;
}

.security-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) { .security-layout { grid-template-columns: 1fr 1fr; } }

.security-content .section-tag { margin-bottom: 16px; }
.security-content .section-title { text-align: left; margin-bottom: 16px; }
.security-content .section-desc { text-align: left; margin-bottom: 40px; }

.security-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.security-feature {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--dark-card);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.security-feature:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 170, 0.1);
}

.sf-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border: 2px solid rgba(0, 212, 170, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sf-icon i { width: 26px; height: 26px; color: var(--primary); }

.sf-icon.sos {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.05));
    border-color: rgba(239, 68, 68, 0.4);
}

.sf-icon.sos i { color: var(--red); }

.sf-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.sf-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Security Phone */
.security-visual { display: flex; justify-content: center; }

.security-phone {
    position: relative;
    width: 280px;
    height: 560px;
}

.security-phone .phone-frame {
    width: 100%;
    height: 100%;
    background: var(--dark-card);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 3px solid var(--border-color);
}

.security-phone .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark-mid), var(--dark-card));
    border-radius: 30px;
    overflow: hidden;
}

.security-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.sos-button {
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    animation: sosPulse 2s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
}

.sos-button i { width: 36px; height: 36px; color: #FFFFFF; }
.sos-button span { font-size: 0.9rem; font-weight: 700; color: #FFFFFF; margin-top: 4px; }

@keyframes sosPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(239, 68, 68, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(239, 68, 68, 0.7); }
}

.tracking-route {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.track-point { width: 12px; height: 12px; background: var(--border-color); border-radius: 50%; }
.track-point.current { background: var(--primary); box-shadow: 0 0 12px var(--primary); }
.track-line { width: 2px; height: 30px; background: var(--border-color); }

.tracking-info { text-align: center; }

.track-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.track-status span:last-child { font-size: 0.85rem; color: var(--text-secondary); }
.track-time { font-size: 1.5rem; font-weight: 700; color: var(--primary); }

/* ========================================
   Community Section
   ======================================== */

.community-section {
    background: var(--dark-mid);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 80px;
}

@media (min-width: 768px) { .community-grid { grid-template-columns: repeat(2, 1fr); } }

.community-card {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 40px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.community-card.passenger::before { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.community-card.driver::before { background: linear-gradient(90deg, #3B82F6, #8B5CF6); }

.community-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 170, 0.1);
}

.community-card.driver:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: rgba(0, 212, 170, 0.15);
    border: 2px solid rgba(0, 212, 170, 0.35);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.community-card.driver .card-badge {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
    color: #3B82F6;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border: 2px solid rgba(0, 212, 170, 0.25);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.community-card.driver .card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    border-color: rgba(59, 130, 246, 0.25);
}

.card-icon i { width: 32px; height: 32px; color: var(--primary); }
.community-card.driver .card-icon i { color: #3B82F6; }

.community-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.card-list { margin-bottom: 28px; }

.card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    color: var(--text-secondary);
}

.card-list li:last-child { border-bottom: none; }
.card-list i { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.community-card.driver .card-list i { color: #3B82F6; }

/* Testimonials */
.testimonials { margin-top: 80px; }

.testimonials-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 28px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.testimonial-stars { font-size: 1rem; margin-bottom: 16px; }

.testimonial-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.author-name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.author-role { display: block; font-size: 0.8rem; color: var(--text-muted); }

/* ========================================
   Download Section
   ======================================== */

.download-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: var(--dark-mid);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.download-bg {
    position: absolute;
    inset: 0;
}

.download-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 212, 170, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 184, 148, 0.15) 0%, transparent 50%),
        var(--dark-mid);
}

.download-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.download-content > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.download-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.download-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    background: #FFFFFF;
    color: var(--dark);
    border-radius: 16px;
    transition: var(--transition);
}

.download-badge:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }

.download-text { text-align: left; }

.download-small {
    display: block;
    font-size: 0.7rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-big { display: block; font-size: 1.2rem; font-weight: 700; }

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder i { width: 60px; height: 60px; color: var(--dark); }
.qr-code span { font-size: 0.9rem; color: var(--text-secondary); }

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--dark);
    padding: 80px 0 0;
    border-top: 2px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--border-color);
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 2fr; } }

.footer-brand { max-width: 300px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img { height: 45px; width: auto; }

.footer-brand > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
    width: 44px;
    height: 44px;
    background: var(--dark-elevated);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.social-link:hover { background: var(--primary); transform: translateY(-2px); border-color: var(--primary); }
.social-link i { width: 20px; height: 20px; color: var(--text-secondary); }
.social-link:hover i { color: var(--dark); }
.social-link svg { width: 20px; height: 20px; color: var(--text-secondary); stroke: var(--text-secondary); }
.social-link:hover svg { color: var(--dark); stroke: var(--dark); }

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 8px 0;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); padding-left: 8px; }

.footer-newsletter h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.footer-newsletter > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.2); }
.newsletter-form .btn { padding: 14px 20px; }
.newsletter-form .btn i { width: 18px; height: 18px; }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p { font-size: 0.9rem; color: var(--text-muted); }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.9rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ========================================
   Back to Top
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 99;
    box-shadow: 0 4px 24px rgba(0, 212, 170, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 36px rgba(0, 212, 170, 0.5);
}

.back-to-top i { width: 28px; height: 28px; }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .step-card { padding-left: 60px; }
    .step-number { width: 44px; height: 44px; font-size: 1rem; }
    .steps-line { left: 21px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

/* ========================================
   Language Switcher
   ======================================== */

.lang-switcher {
    position: relative;
    z-index: 1001;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.lang-btn i { width: 18px; height: 18px; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    display: none;
    min-width: 140px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    z-index: 1002;
}

.lang-dropdown.active { display: block; }

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--dark-elevated);
    color: var(--text-primary);
}

.lang-option.active {
    color: var(--primary);
    background: rgba(0, 212, 170, 0.1);
}

.mobile-lang-bar {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 8px;
}

.mobile-lang-btn {
    padding: 8px 14px;
    background: var(--dark-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-lang-btn:hover, .mobile-lang-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 212, 170, 0.1);
}

@media (max-width: 1023px) {
    .lang-switcher { display: none; }
}

@media (min-width: 1024px) {
    .mobile-lang-bar { display: none; }
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}
