/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #08872e;
    --primary-dark: #066a22;
    --success: #66BB6A;
    --white: #FFFFFF;
    --black: #000000;
    --text: #1C1C1E;
    --text-light: #6A6A6A;
    --background: #F9F9F9;
    --card: #FFFFFF;
    --border: #E5E5E5;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ================================
   Premium Floating Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.5rem 1.5rem;
}

.nav-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(8, 135, 46, 0.1);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 135, 46, 0.05), transparent);
    transition: left 0.6s ease;
}

.nav-container:hover::before {
    left: 100%;
}

.navbar.scrolled .nav-container {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(8, 135, 46, 0.15);
    box-shadow: 
        0 8px 32px rgba(8, 135, 46, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Animated Border Glow */
.nav-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 3rem);
    max-width: 1100px;
    height: calc(100% - 1rem);
    border-radius: 100px;
    background: linear-gradient(90deg, #08872e, #10b84a, #66bb6a, #10b84a, #08872e);
    background-size: 300% 100%;
    opacity: 0;
    filter: blur(15px);
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: glowMove 4s ease-in-out infinite;
}

.navbar:hover .nav-glow {
    opacity: 0.3;
}

@keyframes glowMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #08872e 0%, #10b84a 100%);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(8, 135, 46, 0.25);
    transition: all 0.3s ease;
}

.logo-icon img {
    filter: brightness(0) invert(1);
}

.nav-logo:hover .logo-icon {
    transform: rotate(-5deg);
    box-shadow: 0 6px 16px rgba(8, 135, 46, 0.35);
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.logo-accent {
    background: linear-gradient(135deg, #08872e 0%, #10b84a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #08872e, #10b84a);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #08872e;
    background: rgba(8, 135, 46, 0.06);
}

.nav-link:hover .nav-link-icon {
    opacity: 1;
    color: #08872e;
}

.nav-link:hover::after {
    width: 20px;
}

.nav-link.active {
    color: #08872e;
    background: rgba(8, 135, 46, 0.1);
    font-weight: 600;
}

.nav-link.active::after {
    width: 20px;
}

.nav-link.active .nav-link-icon {
    opacity: 1;
}

/* Highlighted Nav Link (for Invest) */
.nav-link.nav-link-highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.1));
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.nav-link.nav-link-highlight:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(245, 158, 11, 0.2));
    color: #b45309;
}

.nav-link.nav-link-highlight svg {
    color: #f59e0b;
}

/* CTA Button */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #08872e 0%, #10b84a 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(8, 135, 46, 0.3);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 135, 46, 0.4);
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.5); }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(8, 135, 46, 0.08);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
    background: rgba(8, 135, 46, 0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #08872e;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #08872e;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
        border-radius: 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 75px;
        left: 1rem;
        right: 1rem;
        background: #ffffff;
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
        gap: 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(8, 135, 46, 0.1);
        z-index: 9999;
        list-style: none;
        margin: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        background: rgba(8, 135, 46, 0.05);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(8, 135, 46, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-glow {
        display: none;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 160px;
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(8, 135, 46, 0.4) 100%);
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(8, 135, 46, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.hero-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.hero-particles span:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.hero-particles span:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.hero-particles span:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.hero-particles span:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 19s; }
.hero-particles span:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 21s; }
.hero-particles span:nth-child(7) { left: 70%; animation-delay: 0.5s; animation-duration: 17s; }
.hero-particles span:nth-child(8) { left: 80%; animation-delay: 2.5s; animation-duration: 23s; }
.hero-particles span:nth-child(9) { left: 85%; animation-delay: 4.5s; animation-duration: 15s; }
.hero-particles span:nth-child(10) { left: 95%; animation-delay: 1.5s; animation-duration: 20s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Glowing Orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(8, 135, 46, 0.3);
    top: -20%;
    right: -10%;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(8, 135, 46, 0.2);
    bottom: -10%;
    left: -5%;
    animation-delay: 4s;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(8, 135, 46, 0.15);
    border: 1px solid rgba(8, 135, 46, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
    color: white;
    animation: titleReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #66BB6A 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards, gradientShift 5s ease-in-out infinite;
    animation-delay: 0.15s, 0s;
}

@keyframes titleReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
        opacity: 0;
    }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.45s forwards;
    opacity: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.hero-btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 8px 30px rgba(8, 135, 46, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(8, 135, 46, 0.5);
}

.hero-btn-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .hero-btn-icon {
    transform: rotate(-10deg) scale(1.1);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.hero-btn-secondary svg {
    transition: transform 0.3s ease;
}

.hero-btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-trust-item svg {
    color: var(--primary);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-scroll-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* Hero Bottom - Energy Flow Transition */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-divider {
    display: block;
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Floating Energy Orbs */
.energy-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.energy-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.6) 0%, rgba(8, 135, 46, 0) 70%);
    animation: floatOrb 6s ease-in-out infinite;
}

.orb-1 {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 50px;
    height: 50px;
    left: 25%;
    top: 50%;
    animation-delay: 1s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    left: 60%;
    top: 10%;
    animation-delay: 2s;
}

.orb-4 {
    width: 40px;
    height: 40px;
    left: 75%;
    top: 60%;
    animation-delay: 3s;
}

.orb-5 {
    width: 60px;
    height: 60px;
    left: 90%;
    top: 30%;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

/* Charging Bolt Accent */
.hero-bolt-accent {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    animation: pulseBolt 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes pulseBolt {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        filter: drop-shadow(0 0 10px rgba(8, 135, 46, 0.5));
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        filter: drop-shadow(0 0 20px rgba(8, 135, 46, 0.8));
    }
}

/* Energy Beams from Bolt */
.energy-beam {
    position: absolute;
    top: 60px;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #08872e, transparent);
    opacity: 0;
    animation: beamShoot 3s ease-out infinite;
}

.beam-left {
    left: 10px;
    transform: rotate(-30deg);
    animation-delay: 0s;
}

.beam-right {
    right: 10px;
    transform: rotate(30deg);
    animation-delay: 1.5s;
}

@keyframes beamShoot {
    0% {
        opacity: 0;
        height: 0;
    }
    20% {
        opacity: 1;
        height: 80px;
    }
    100% {
        opacity: 0;
        height: 80px;
        transform: translateY(40px) rotate(var(--rotate, 0deg));
    }
}

/* Bolt Rings */
.bolt-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(8, 135, 46, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringExpand 2s ease-out infinite;
}

.ring-2 {
    animation-delay: 1s;
}

@keyframes ringExpand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Energy Sparks */
.energy-sparks {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 200px;
    height: 150px;
    pointer-events: none;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #10b84a;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b84a, 0 0 20px #08872e;
    animation: sparkFly 4s ease-out infinite;
}

.spark:nth-child(1) { left: 50%; animation-delay: 0s; }
.spark:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.spark:nth-child(3) { left: 70%; animation-delay: 1s; }
.spark:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.spark:nth-child(5) { left: 60%; animation-delay: 2s; }
.spark:nth-child(6) { left: 50%; animation-delay: 2.5s; }

@keyframes sparkFly {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(120px) translateX(var(--drift, 0px)) scale(0.5);
    }
}

.spark:nth-child(1) { --drift: 0px; }
.spark:nth-child(2) { --drift: -30px; }
.spark:nth-child(3) { --drift: 30px; }
.spark:nth-child(4) { --drift: -15px; }
.spark:nth-child(5) { --drift: 15px; }
.spark:nth-child(6) { --drift: 5px; }

/* Circuit Lines */
.circuit-lines {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
}

.circuit-svg {
    width: 100%;
    height: 100%;
}

.circuit-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawCircuit 3s ease-out forwards;
}

.path-1 { animation-delay: 0.5s; }
.path-2 { animation-delay: 1s; }

@keyframes drawCircuit {
    to {
        stroke-dashoffset: 0;
    }
}

.circuit-node {
    opacity: 0;
    animation: pulseNode 2s ease-in-out infinite;
}

.circuit-node:nth-child(4) { animation-delay: 1.5s; }
.circuit-node:nth-child(5) { animation-delay: 2s; }
.circuit-node:nth-child(6) { animation-delay: 2.5s; }
.circuit-node:nth-child(7) { animation-delay: 3s; }

@keyframes pulseNode {
    0%, 100% {
        opacity: 0.4;
        r: 4;
    }
    50% {
        opacity: 1;
        r: 6;
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 140px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
}

.hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    justify-content: center;
    }

    .hero-trust {
        gap: 1rem;
    }

    .hero-trust-item {
        font-size: 0.8125rem;
    }

    .hero-glow-1 {
        width: 300px;
        height: 300px;
    }

    .hero-glow-2 {
        width: 200px;
        height: 200px;
    }

    .hero-bottom {
        height: 150px;
    }

    .hero-divider {
        height: 150px;
    }

    .hero-scroll {
        bottom: 160px;
    }

    .energy-orb {
        transform: scale(0.6);
    }

    .hero-bolt-accent {
        top: 10px;
    }

    .hero-bolt-accent svg {
        width: 30px;
        height: 45px;
    }

    .circuit-lines {
        display: none;
    }

    .energy-sparks {
        display: none;
    }

    .energy-beam {
        display: none;
    }

    .bolt-ring {
        display: none;
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -50px) scale(1.1); }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(8, 135, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 135, 46, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-section {
    position: absolute;
    bottom: 150px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.partners-scroll {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.partners-track {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 70px;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.partner-logo svg,
.partner-logo img {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--background);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(8, 135, 46, 0.1);
    border-color: var(--primary);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.highlight-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(8, 135, 46, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: var(--border);
    margin-top: 30px;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: -10px;
    color: var(--primary);
    font-size: 1.5rem;
}

/* ================================
   Partners Section
   ================================ */
.partners {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fdf9 0%, #ffffff 50%, #f0faf3 100%);
    overflow: hidden;
}

.partners-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Partners Header */
.partners-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #08872e;
    background: rgba(8, 135, 46, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.partners-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.partners-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Partners Ticker - Infinite Scroll */
.partners-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

a.partner-item {
    flex-shrink: 0;
    text-decoration: none;
    display: block;
}

.partner-item {
    flex-shrink: 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    background: #ffffff;
    border: 1px solid rgba(8, 135, 46, 0.1);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(8, 135, 46, 0.3);
    box-shadow: 
        0 10px 40px rgba(8, 135, 46, 0.15),
        0 0 0 1px rgba(8, 135, 46, 0.1);
}

.partner-logo:hover::before {
    opacity: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.partner-logo span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Partners Stats */
.partners-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.03) 0%, rgba(8, 135, 46, 0.08) 100%);
    border-radius: 20px;
    border: 1px solid rgba(8, 135, 46, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #08872e 0%, #10b84a 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #08872e;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 135, 46, 0.3) 50%, transparent 100%);
}

/* Partners CTA */
.partners-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.partners-cta p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.partners-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    border: 2px solid #08872e;
    border-radius: 50px;
    color: #08872e;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partners-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #08872e 0%, #10b84a 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.partners-btn:hover {
    color: white;
    border-color: #08872e;
}

.partners-btn:hover::before {
    transform: translateX(0);
}

.partners-btn svg {
    transition: transform 0.3s ease;
}

.partners-btn:hover svg {
    transform: translateX(4px);
}

/* Partners Responsive */
@media (max-width: 768px) {
    .partners {
        padding: 4rem 0;
    }

    .partners-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(8, 135, 46, 0.3) 50%, transparent 100%);
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .partners-cta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .partner-logo {
        width: 140px;
        height: 70px;
    }
}

/* Drivers Section */
.drivers {
    background: linear-gradient(180deg, #fafffe 0%, #f0faf3 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.drivers::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.drivers::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.drivers-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.drivers-header .section-title {
    margin-bottom: 1rem;
}

.drivers-header .section-description {
    max-width: 550px;
    margin: 0 auto;
}

/* Showcase Layout */
.drivers-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-left {
    align-items: flex-end;
}

.showcase-right {
    align-items: flex-start;
}

.showcase-card {
    position: relative;
    display: flex;
    align-items: center;
}

.showcase-left .showcase-card {
    flex-direction: row;
}

.showcase-right .showcase-card {
    flex-direction: row-reverse;
}

.showcase-card-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(8, 135, 46, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.showcase-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-card-inner {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(8, 135, 46, 0.12);
    border-color: rgba(8, 135, 46, 0.2);
}

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

.showcase-step {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(8, 135, 46, 0.08);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.showcase-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.1) 0%, rgba(8, 135, 46, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(8, 135, 46, 0.3);
}

.showcase-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.showcase-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Connector Lines */
.showcase-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(8, 135, 46, 0.3) 0%, rgba(8, 135, 46, 0.1) 100%);
    position: relative;
}

.showcase-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}

.showcase-connector-left {
    background: linear-gradient(90deg, rgba(8, 135, 46, 0.1) 0%, rgba(8, 135, 46, 0.3) 100%);
}

.showcase-connector-left::after {
    right: auto;
    left: 0;
}

/* Center Phone */
.showcase-phone {
    position: relative;
    padding: 2rem;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.showcase-phone .phone-mockup {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(8, 135, 46, 0.1);
    max-width: 280px;
    transition: transform 0.4s ease;
}

.showcase-phone .phone-mockup:hover {
    transform: translateY(-10px) scale(1.02);
}

.showcase-phone .phone-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
    display: block;
}

.phone-shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Features Marquee */
.features-marquee {
    position: relative;
    overflow: hidden;
    margin: 2.5rem 0;
    padding: 1rem 0;
    z-index: 1;
}

.features-marquee::before,
.features-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.features-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f0faf3 0%, transparent 100%);
}

.features-marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #f0faf3 100%);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border-radius: 60px;
    padding: 0.75rem 1.75rem 0.75rem 0.75rem;
    box-shadow: 0 4px 20px rgba(8, 135, 46, 0.08);
    border: 1.5px solid rgba(8, 135, 46, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    cursor: pointer;
}

.marquee-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(8, 135, 46, 0.15);
    border-color: rgba(8, 135, 46, 0.25);
}

.marquee-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.marquee-icon-alt {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.marquee-icon-service {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.marquee-item:hover .marquee-icon {
    transform: scale(1.1) rotate(-5deg);
}

.marquee-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.marquee-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.marquee-badge {
    background: var(--gradient);
    color: white;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.marquee-icon-alt + .marquee-content .marquee-badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.marquee-icon-service + .marquee-content .marquee-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.marquee-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .features-marquee::before,
    .features-marquee::after {
        width: 40px;
    }

    .marquee-track {
        gap: 1.25rem;
    }

    .marquee-item {
        padding: 0.625rem 1.25rem 0.625rem 0.625rem;
    }

    .marquee-icon {
        width: 38px;
        height: 38px;
    }

    .marquee-title {
        font-size: 0.875rem;
    }

    .marquee-desc {
        font-size: 0.75rem;
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    justify-content: center;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Showcase */
@media (max-width: 1024px) {
    .drivers-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-phone {
        order: -1;
    }

    .showcase-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .showcase-left,
    .showcase-right {
        align-items: center;
    }

    .showcase-card {
        flex-direction: column !important;
    }

    .showcase-connector,
    .showcase-connector-left {
        display: none;
    }

    .showcase-card-inner {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .showcase-features {
        flex-direction: column;
    }

    .showcase-card-inner {
        max-width: 100%;
    }

    .showcase-phone .phone-mockup {
        max-width: 240px;
    }

    .phone-glow {
        width: 280px;
        height: 280px;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    position: relative;
    background: var(--background);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    transition: transform 0.3s ease;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.phone-mockup:hover {
    transform: translateY(-10px) scale(1.02);
}

.phone-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: contain;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: var(--background);
}

.app-header {
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}

.app-status-bar {
    height: 20px;
    background: var(--background);
    border-radius: 8px 8px 0 0;
}

.app-content {
    padding: 2rem;
    height: calc(100% - 80px);
}

.map-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    border-radius: 16px;
    position: relative;
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    border: 3px solid var(--primary);
    animation: pulse 2s ease-out infinite;
}

.map-marker:nth-child(1) {
    top: 30%;
    left: 40%;
}

.map-marker:nth-child(2) {
    top: 60%;
    left: 60%;
    animation-delay: 0.5s;
}

.map-marker:nth-child(3) {
    top: 45%;
    left: 25%;
    animation-delay: 1s;
}

/* Owners Section */
.owners {
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.02) 0%, rgba(8, 135, 46, 0.05) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.owners::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.owners::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite reverse;
}

.owners-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.owners-header .section-title {
    margin-bottom: 1rem;
}

.owners-header .section-description {
    max-width: 600px;
    margin: 0 auto;
}

/* Bento Grid Layout */
.owners-bento-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.bento-feature {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(8, 135, 46, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(8, 135, 46, 0.15);
    border-color: rgba(8, 135, 46, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.12) 0%, rgba(8, 135, 46, 0.06) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.bento-feature:hover .bento-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(8, 135, 46, 0.3);
}

.bento-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.bento-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Grid Positioning */
.bento-top-left {
    grid-column: 1;
    grid-row: 1;
}

.bento-bottom-left {
    grid-column: 1;
    grid-row: 2;
}

.bento-center {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-top-right {
    grid-column: 3;
    grid-row: 1;
}

.bento-bottom-right {
    grid-column: 3;
    grid-row: 2;
}

/* Dashboard Mockup in Center */
.bento-center .dashboard-mockup {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18), 0 10px 30px rgba(8, 135, 46, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.bento-center .dashboard-mockup:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.22), 0 15px 40px rgba(8, 135, 46, 0.15);
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: contain;
}

/* Responsive Bento Grid */
@media (max-width: 968px) {
    .owners-bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 1rem;
    }

    .bento-top-left {
        grid-column: 1;
        grid-row: 2;
    }

    .bento-bottom-left {
        grid-column: 2;
        grid-row: 2;
    }

    .bento-center {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .bento-top-right {
        grid-column: 1;
        grid-row: 3;
    }

    .bento-bottom-right {
        grid-column: 2;
        grid-row: 3;
    }

    .bento-feature {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .owners-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-top-left,
    .bento-bottom-left,
    .bento-center,
    .bento-top-right,
    .bento-bottom-right {
        grid-column: 1;
        grid-row: auto;
    }

    .bento-center {
        order: -1;
    }
}

.dashboard-screen {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-header {
    background: var(--gradient);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.dashboard-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.dashboard-content {
    padding: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 150px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
}

/* Screenshots Section */
.screenshots {
    background: var(--background);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.screenshot-card {
    text-align: center;
}

.screenshot-mockup {
    background: var(--card);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.screenshot-screen {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
}

.screenshot-content {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.8;
}

.map-view {
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
}

.charging-view {
    background: linear-gradient(135deg, var(--success) 0%, var(--primary) 100%);
}

.wallet-view {
    background: linear-gradient(135deg, var(--primary) 0%, #4CAF50 100%);
}

.screenshot-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.screenshot-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* ================================
   Developer Infrastructure Section
   ================================ */
.developers-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fdf9 0%, #ffffff 50%, #f0faf3 100%);
    overflow: hidden;
}

.dev-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dev-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(8, 135, 46, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 135, 46, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.dev-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(8, 135, 46, 0.06) 0%, transparent 70%);
}

.dev-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.dev-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(8, 135, 46, 0.1);
    border: 1px solid rgba(8, 135, 46, 0.2);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #08872e;
    margin-bottom: 1rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.dev-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.dev-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.dev-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Developer Features */
.dev-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
}

.dev-feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(8, 135, 46, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dev-feature-card:hover {
    background: #ffffff;
    border-color: rgba(8, 135, 46, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(8, 135, 46, 0.1);
}

.dev-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 135, 46, 0.1) 0%, rgba(16, 184, 74, 0.1) 100%);
    border-radius: 12px;
    color: #08872e;
    flex-shrink: 0;
}

.dev-feature-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.dev-feature-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Code Window */
.dev-code-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.code-window {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: #252525;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.code-title {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.code-body {
    padding: 1.25rem;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 0.8125rem;
    line-height: 1.8;
}

.code-body code {
    color: #e4e4e4;
}

.code-comment { color: #6a9955; }
.code-keyword { color: #c586c0; }
.code-string { color: #ce9178; }
.code-function { color: #dcdcaa; }
.code-var { color: #9cdcfe; }
.code-number { color: #b5cea8; }

/* API Stats */
.api-stats {
    display: flex;
    gap: 1rem;
}

.api-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.api-stat .stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #4ade80;
}

.api-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* Developer CTA */
.dev-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.dev-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dev-btn.primary {
    background: linear-gradient(135deg, #08872e 0%, #10b84a 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(8, 135, 46, 0.3);
}

.dev-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 135, 46, 0.4);
}

.dev-btn.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.dev-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Developer Section Responsive */
@media (max-width: 768px) {
    .dev-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .developers-section {
        padding: 4rem 0;
    }

    .dev-feature-card {
        flex-direction: column;
        text-align: center;
    }

    .dev-feature-icon {
        margin: 0 auto;
    }

    .api-stats {
        flex-direction: column;
    }

    .dev-cta {
        flex-direction: column;
        align-items: center;
    }

    .dev-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ================================
   Download App Section
   ================================ */
.download-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1f0d 0%, #0d2912 50%, #081a0b 100%);
}

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

.download-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(8, 135, 46, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(16, 184, 74, 0.1) 0%, transparent 50%);
}

.download-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.download-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.download-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(8, 135, 46, 0.3);
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.download-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(16, 184, 74, 0.2);
    bottom: -100px;
    right: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.download-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(8, 135, 46, 0.2);
    border: 1px solid rgba(8, 135, 46, 0.3);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 1.5rem;
}

.download-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.download-title .text-gradient {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #10b84a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Download Features - Horizontal Row */
.download-features-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.feature-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 135, 46, 0.2);
    border-radius: 50%;
    color: #4ade80;
    flex-shrink: 0;
}

/* Store Buttons */
.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 170px;
}

.ios-btn {
    background: white;
    color: #1a1a1a;
}

.ios-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.android-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.android-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.store-text {
    display: flex;
    flex-direction: column;
}

.store-label {
    font-size: 0.6875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Trust Indicators */
.download-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-item svg {
    color: #4ade80;
}

/* Download Section Responsive */
@media (max-width: 768px) {
    .download-section {
        padding: 4rem 0;
    }

    .download-features-row {
        gap: 1rem;
    }

    .download-feature span {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .download-features-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .download-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .download-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0d1f12 100%);
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(8, 135, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.75rem;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 0.625rem;
    margin-top: auto;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(8, 135, 46, 0.1);
    border: 1.5px solid rgba(8, 135, 46, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(8, 135, 46, 0.3);
}

.social-link:active {
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(8, 135, 46, 0.08);
    border-color: rgba(8, 135, 46, 0.15);
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--success);
}

.scroll-to-top {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(8, 135, 46, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-to-top:not(.hidden) {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(8, 135, 46, 0.4);
}

.scroll-to-top.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer {
        padding: 4rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
    }

    .footer-description {
        max-width: 100%;
    }

    .social-links {
        justify-content: flex-start;
    }
    .hero-title {
        font-size: 3rem;
    }

    .drivers-content,
    .owners-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }


    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 50px;
        margin: 1rem auto;
    }

    .step-connector::after {
        content: '↓';
        right: -8px;
        top: auto;
        bottom: -10px;
    }
}

@media (max-width: 768px) {
    /* Nav styles are in main navigation section above */

    .charging-animation {
        display: none;
    }

    .drivers-content {
        gap: 3rem;
    }

    .feature-item {
        padding: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

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

    .hero {
        padding-bottom: 180px;
    }

    .partners-section {
        bottom: 70px;
        padding: 1.25rem 0;
    }

    .partner-logo {
        min-width: 110px;
        height: 55px;
        padding: 0.625rem 1.25rem;
    }

    .partner-logo svg,
    .partner-logo img {
        max-width: 100px;
        max-height: 35px;
    }

    .partners-track {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input,
    .form-group select {
        width: 100%;
    }

    .download-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

    .download-title {
        font-size: 2rem;
    }

    .download-subtitle {
        font-size: 1rem;
    }

    .download-buttons {
        gap: 1rem;
        justify-content: center;
    }

    .store-badge {
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-description {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

