        #scroll-progress {
            position: fixed;
            top: 81px;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, var(--rrugo-blue), #60a5fa);
            z-index: 1001;
            transition: width 0.1s linear, top 0.3s ease;
            border-radius: 0 2px 2px 0;
        }

        nav.scrolled + #scroll-progress {
            top: 51px;
        }

        :root {
            --rrugo-blue: #1e62cf;
            --white: #ffffff;
            --light-gray: #f5f7fa;
            --border-gray: #e5e7eb;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --success-green: #22c55e;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-gray);
            z-index: 1000;
            padding: 20px 0;
            transition: padding 0.3s ease, box-shadow 0.3s ease;
        }

        nav.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }

        nav.scrolled .nav-logo {
            height: 30px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .lang-switcher {
            display: flex;
            gap: 8px;
        }

        .lang-btn {
            background: none;
            border: 1px solid var(--border-gray);
            padding: 4px 8px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.2s ease;
        }

        .lang-btn.active {
            background: var(--rrugo-blue);
            color: white;
            border-color: var(--rrugo-blue);
        }

        .lang-btn:hover:not(.active) {
            background: var(--light-gray);
        }

        .nav-logo-flip {
            perspective: 700px;
            height: 40px;
            cursor: pointer;
        }

        .nav-logo-inner {
            position: relative;
            height: 40px;
            width: 110px;
            transform-style: preserve-3d;
            transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-logo-flip.flipped .nav-logo-inner {
            transform: rotateY(180deg);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            height: 40px;
            width: auto;
        }

        .nav-logo-inner .nav-logo {
            position: absolute;
            top: 0; left: 0;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .nav-logo-back {
            transform: rotateY(180deg);
            width: 110px;
            justify-content: center;
            text-decoration: none;
        }

        .nav-logo img {
            height: 100%;
            width: auto;
            display: block;
        }

        .nav-logo-giveaway-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #1e62cf, #3b82f6);
            border-radius: 20px;
            padding: 5px 12px;
            box-shadow: 0 2px 12px rgba(30, 98, 207, 0.4);
            white-space: nowrap;
        }

        .nav-logo-giveaway-text {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 13px;
            color: #fff;
            letter-spacing: 0.3px;
        }

        nav.scrolled .nav-logo-flip { height: 30px; }
        nav.scrolled .nav-logo-inner { height: 30px; }
        nav.scrolled .nav-logo { height: 30px; }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--rrugo-blue);
        }

        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
        }


        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(30, 98, 207, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            text-align: center;
        }

        .logo {
            display: block;
            height: 60px;
            width: auto;
            margin: 0 auto 32px;
        }

        .logo img {
            height: 100%;
            width: auto;
            display: block;
        }

        @media (min-width: 768px) {
            .logo {
                margin-left: 0;
                margin-right: 0;
            }
        }

        h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--text-dark);
            letter-spacing: -0.03em;
        }

        .hero-subheadline {
            font-size: 20px;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .app-badges {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .badge-link {
            display: block;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .badge-link:hover {
            transform: translateY(-4px);
            opacity: 0.9;
        }

        .badge-link .badge-img {
            height: 180px;
            width: auto;
        }

        .badge-soon-wrap {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .badge-soon-label {
            background: linear-gradient(135deg, #1e62cf, #3b82f6);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 3px 12px;
            border-radius: 20px;
        }

        .badge-link img[alt="Google Play"] {
            height: 55px;
        }

        @media (max-width: 767px) {
            .app-badges {
                gap: 12px;
            }

            .badge-link {
                flex: 1;
                max-width: 160px;
            }

            .badge-link .badge-img,
            .badge-link img[alt="Google Play"] {
                width: 100%;
                height: auto;
            }
        }

        .hero-phone {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .phone-mockup {
            position: relative;
            width: 100%;
            aspect-ratio: 9/19.5;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 48px;
            padding: 12px;
            box-shadow: 0 40px 80px rgba(30, 98, 207, 0.25);
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: var(--white);
            border-radius: 40px;
            overflow: hidden;
        }

        .screen-slideshow {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .screen-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        @media (max-width: 767px) {
            .hero-phone {
                max-width: 220px;
            }
            .screen-slide {
                object-fit: cover;
                object-position: top center;
            }
            .phone-mockup {
                padding: 3px;
                border-radius: 28px;
            }
            .phone-screen {
                border-radius: 26px;
            }
        }

        .screen-slide:first-child {
            position: relative;
            height: 100%;
        }

        .screen-slide.active {
            opacity: 1;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* How It Works Tabs */
        .hiw-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 48px;
            background: var(--border-gray);
            border-radius: 16px;
            padding: 6px;
            max-width: 420px;
            margin-left: auto;
            margin-right: auto;
        }

        .hiw-tab {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            border: none;
            border-radius: 12px;
            background: transparent;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hiw-tab svg {
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .hiw-tab--passenger.active {
            background: var(--rrugo-blue);
            color: white;
            box-shadow: 0 4px 16px rgba(30, 98, 207, 0.3);
        }

        .hiw-tab--driver.active {
            background: #0f172a;
            color: white;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.3);
        }

        /* Panels */
        .hiw-panels {
            max-width: 700px;
            margin: 0 auto;
        }

        .hiw-panel {
            display: none;
        }

        .hiw-panel.active {
            display: block;
            animation: hiwFadeIn 0.4s ease;
        }

        @keyframes hiwFadeIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hiw-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 24px 28px;
            background: white;
            border-radius: 16px;
            margin-bottom: 12px;
            border: 1px solid var(--border-gray);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .hiw-step:hover {
            transform: translateX(4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }

        .hiw-step-num {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            flex-shrink: 0;
        }

        .hiw-step-num--passenger {
            background: rgba(30, 98, 207, 0.1);
            color: var(--rrugo-blue);
        }

        .hiw-step-num--driver {
            background: rgba(15, 23, 42, 0.08);
            color: #0f172a;
        }

        .hiw-step-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-dark);
        }

        .hiw-step-content p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        @media (max-width: 768px) {
            .hiw-tabs {
                max-width: 100%;
            }

            .hiw-step {
                padding: 20px;
            }
        }

        /* Why Different Section */
        .why-different {
            padding: 100px 0;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .feature-card {
            padding: 32px;
            background: var(--light-gray);
            border-radius: 20px;
            border: 1px solid var(--border-gray);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: white;
            border-color: var(--rrugo-blue);
            box-shadow: 0 12px 32px rgba(30, 98, 207, 0.1);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--rrugo-blue);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .feature-title {
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .feature-description {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Safety Section */
        .safety {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
        }

        .safety-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            max-width: 900px;
            margin: 0 auto;
        }

        .trust-badge {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 32px;
            background: white;
            border-radius: 20px;
            border: 1px solid var(--border-gray);
            transition: all 0.3s ease;
        }

        .trust-badge:hover {
            border-color: var(--success-green);
            box-shadow: 0 12px 32px rgba(34, 197, 94, 0.1);
        }

        .trust-icon {
            width: 48px;
            height: 48px;
            background: var(--success-green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .trust-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .trust-content h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .trust-content p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.6;
        }

        /* Giveaway Section */
        .giveaway {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0f1e 0%, #0d1b3e 40%, #0f2249 100%);
            position: relative;
            overflow: hidden;
        }

        .giveaway-bg-glow {
            position: absolute;
            top: -30%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(30, 98, 207, 0.25) 0%, transparent 70%);
            pointer-events: none;
        }

        @keyframes giftShake {
            0%   { transform: translate(0, 0) rotate(0deg); }
            15%  { transform: translate(-3px, -5px) rotate(-15deg); }
            30%  { transform: translate(3px, 0) rotate(12deg); }
            45%  { transform: translate(-2px, -4px) rotate(-10deg); }
            60%  { transform: translate(2px, 0) rotate(8deg); }
            75%  { transform: translate(-1px, -2px) rotate(-4deg); }
            90%  { transform: translate(1px, 0) rotate(2deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }

        .nav-logo-giveaway-icon {
            font-size: 15px;
            line-height: 1;
            display: inline-block;
        }

        .nav-logo-flip.flipped .nav-logo-giveaway-icon {
            animation: giftShake 0.6s ease-in-out 0.5s 1;
        }

        .giveaway-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 80px;
        }

        .giveaway-label {
            display: inline-block;
            background: rgba(30, 98, 207, 0.15);
            color: #60a5fa;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            border: 1px solid rgba(96, 165, 250, 0.2);
        }

        .giveaway-title {
            font-size: 44px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .giveaway-highlight {
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .giveaway-desc {
            color: #94a3b8;
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .giveaway-steps-label {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 12px;
        }

        .giveaway-steps {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .giveaway-step {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .giveaway-step-num {
            min-width: 36px;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(30, 98, 207, 0.2);
            border: 1px solid rgba(96, 165, 250, 0.25);
            color: #60a5fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }

        .giveaway-step-text {
            color: #cbd5e1;
            font-size: 16px;
            font-weight: 500;
        }

        .giveaway-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--rrugo-blue), #3b82f6);
            color: white;
            padding: 16px 36px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(30, 98, 207, 0.35);
        }

        .giveaway-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(30, 98, 207, 0.5);
        }

        .giveaway-watch {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .giveaway-watch-glow {
            position: absolute;
            width: 340px;
            height: 340px;
            background: radial-gradient(circle, rgba(167, 139, 250, 0.2) 0%, rgba(30, 98, 207, 0.1) 50%, transparent 70%);
            border-radius: 50%;
            animation: watchPulse 4s ease-in-out infinite;
        }

        @keyframes watchPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.7;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        .giveaway-watch-img {
            width: 420px;
            max-width: 100%;
            height: auto;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
            animation: watchFloat 6s ease-in-out infinite;
        }

        @keyframes watchFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @media (max-width: 768px) {
            .giveaway {
                padding: 80px 0;
            }

            .giveaway-grid {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }

            .giveaway-title {
                font-size: 32px;
            }

            .giveaway-steps {
                align-items: center;
            }

            .giveaway-watch-img {
                width: 280px;
            }

            .giveaway-watch {
                order: -1;
            }
        }

        /* Contact Section */
        .contact {
            padding: 60px 0;
            background: var(--light-gray);
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-info {
            background: white;
            padding: 28px 32px;
            border-radius: 20px;
            margin-top: 28px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .contact-item {
            margin-bottom: 24px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-value {
            color: var(--rrugo-blue);
            font-size: 18px;
            text-decoration: none;
        }

        .contact-value:hover {
            text-decoration: underline;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--rrugo-blue) 0%, #1548a0 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .final-cta-content {
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            color: white;
            font-size: 40px;
            margin-bottom: 12px;
        }

        .final-cta p {
            font-size: 18px;
            margin-bottom: 28px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        footer {
            padding: 24px 0 20px;
            background: var(--text-dark);
            color: white;
            text-align: center;
        }

        .footer-logo {
            height: 28px;
            width: auto;
            margin: 0 auto 8px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-logo img {
            height: 100%;
            width: auto;
        }

        .footer-tagline {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 13px;
            font-weight: 500;
        }

        .footer-social {
            margin-bottom: 16px;
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .social-link {
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-link:hover {
            color: white;
            transform: translateY(-2px);
        }

        .footer-social .social-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }



        .footer-bottom {
            color: var(--text-muted);
            font-size: 12px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-legal-links {
            margin-top: 8px;
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-legal-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.2s ease;
        }

        .footer-legal-links a:hover {
            color: white;
        }

        .badge-img {
            height: 140px;
            width: auto;
        }

        img[alt="Google Play"] {
            height: 42px;
        }

        @media (max-width: 767px) {
            .badge-img {
                height: 80px;
            }

            img[alt="Google Play"] {
                height: 25px;
            }
        }

        .footer-badges {
            margin-bottom: 16px;
            display: flex;
            justify-content: center;
        }

        .footer-logo img {
            max-width: 180px;
            height: auto;
        }

        @media (max-width: 767px) {
            .nav-right {
                gap: 10px;
            }

            .lang-switcher {
                margin-right: 0;
            }
        }

        /* Sticky CTA for Mobile */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 16px 24px;
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
            border-top: 1px solid var(--border-gray);
        }

        .sticky-cta .app-badges {
            gap: 12px;
        }

        .sticky-cta .badge-link svg {
            height: 50px;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
            }

            .hero-text {
                text-align: left;
            }

            .hero-subheadline {
                margin-left: 0;
                margin-right: 0;
            }

            .hero .app-badges {
                justify-content: flex-start;
                align-items: center;
            }

            h1 {
                font-size: 64px;
            }

            .sticky-cta {
                display: none !important;
            }
        }

        @media (max-width: 767px) {
            .nav-links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 20px 24px;
                box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 12px 0;
            }

            .nav-mobile-toggle {
                display: block;
            }

            .sticky-cta {
                display: block;
            }

            h1 {
                font-size: 40px;
            }

            h2 {
                font-size: 32px;
            }

            .hero {
                padding: 90px 0 20px;
                min-height: unset;
            }

            .hero-content {
                gap: 28px;
            }

            .logo {
                height: 44px;
                margin-bottom: 20px;
            }

            h1 {
                font-size: 36px;
                margin-bottom: 16px;
            }

            .hero-subheadline {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .final-cta h2 {
                font-size: 36px;
            }

            .invite-arrow {
                display: none;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;
        }
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: max(24px, calc(env(safe-area-inset-bottom) + 12px));
            left: 50%;
            transform: translateX(-50%) translateY(120px);
            width: calc(100% - 48px);
            max-width: 720px;
            background: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            z-index: 9999;
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
            pointer-events: none;
        }

        .cookie-banner.visible {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .cookie-banner.hiding {
            transform: translateX(-50%) translateY(120px);
            opacity: 0;
            pointer-events: none;
        }

        .cookie-content {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
        }

        .cookie-icon {
            font-size: 28px;
            flex-shrink: 0;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-text strong {
            display: block;
            color: #ffffff;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .cookie-text p {
            color: #94a3b8;
            font-size: 13px;
            line-height: 1.5;
            margin: 0;
        }

        .cookie-text a {
            color: #60a5fa;
            text-decoration: none;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

        .cookie-actions {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 10px;
            border: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .cookie-btn--decline {
            background: rgba(255, 255, 255, 0.08);
            color: #94a3b8;
        }

        .cookie-btn--decline:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
        }

        .cookie-btn--accept {
            background: linear-gradient(135deg, #1e62cf, #3b82f6);
            color: white;
            box-shadow: 0 4px 16px rgba(30, 98, 207, 0.35);
        }

        .cookie-btn--accept:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(30, 98, 207, 0.5);
        }

        @media (max-width: 600px) {
            .cookie-content {
                flex-wrap: wrap;
            }
            .cookie-actions {
                width: 100%;
                justify-content: flex-end;
            }
        }
