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

html, body {
    height: 100%;
    --vh: 1vh; /* Custom property for viewport height */
}

:root {
    --primary: #00FF88;
    --primary-dark: #00CC6A;
    --secondary: #00D1FF;
    --accent: #FF6B6B;
    --background: #0A0A0A;
    --surface: #1A1A1A;
    --surface-light: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #666666;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--secondary));
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: var(--background);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
}

.floating-chargers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.charger {
    position: absolute;
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.3;
    animation: float 6s infinite ease-in-out;
}

.charger:nth-child(1) { left: 10%; animation-delay: 0s; }
.charger:nth-child(2) { left: 30%; animation-delay: 1.5s; }
.charger:nth-child(3) { left: 50%; animation-delay: 3s; }
.charger:nth-child(4) { left: 70%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

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

.nav-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff88, #00d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    display: flex;
}

.cta-button {
    position: relative;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00ff88, #00d1ff);
    border-radius: 25px;
    text-decoration: none;
    color: #0a0a0a;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.button-glow {
    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;
}

.cta-button:hover .button-glow {
    left: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero-primary, .btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-hero-primary {
    background: var(--gradient);
    color: #000;
}

.btn-hero-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--text-muted);
}

.btn-hero-primary:hover, .btn-hero-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

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

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

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--surface);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.app-screen {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Status Bar */
.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
    background: rgba(0, 0, 0, 0.9);
    font-size: 0.7rem;
    color: #ffffff;
    height: 24px;
}

.status-icons {
    display: flex;
    gap: 6px;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--background);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.app-battery {
    width: 35px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 1px;
    position: relative;
}

.battery-level {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    transition: width 2s ease;
}

/* Map View */
.app-map {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    margin: 8px 16px;
    border-radius: 8px;
    overflow: hidden;
    min-height: 120px;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.15), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(0, 209, 255, 0.15), transparent 60%);
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #fff;
}

.map-marker.active {
    background: #00e676;
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.8);
    width: 16px;
    height: 16px;
    top: 35%;
    left: 40%;
}

.map-marker.available {
    background: #42a5f5;
    top: 25%;
    right: 30%;
}

.map-marker.occupied {
    background: #ffa726;
    bottom: 30%;
    left: 25%;
}

/* Station Cards */
.app-stations {
    padding: 8px 16px 0;
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.station-card {
    background: var(--surface);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
    margin-bottom: 4px;
}

.station-card.delay-1 { animation-delay: 0.3s; }
.station-card.delay-2 { animation-delay: 0.6s; }

.station-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.station-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.station-info {
    flex: 1;
    min-width: 0;
}

.station-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.station-details {
    font-size: 0.6rem;
    color: var(--text-secondary);
}

.station-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 6px;
    border-radius: 10px;
    flex-shrink: 0;
}

.station-status.available {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
}

.station-status.busy {
    background: rgba(255, 167, 38, 0.2);
    color: #ffa726;
}

.status-dot {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

.station-features {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.55rem;
    padding: 2px 6px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* Bottom Navigation */
.app-navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 16px;
    background: var(--surface);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.6rem;
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
}

.nav-item i {
    font-size: 0.8rem;
}

.nav-item span {
    font-size: 0.5rem;
    font-weight: 500;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    animation: floatElement 6s infinite ease-in-out;
}

.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }

    .hero-title {
        font-size: clamp(2.8rem, 5vw, 4.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
    }

    .phone-container {
        max-width: 300px;
    }

    .stat-divider {
        display: block;
    }
}

@media (min-width: 1200px) {
    .floating-badges-external {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 50px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .hero-stats {
        gap: 24px;
    }

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

    .phone-container {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 40px;
    }

    .hero-left {
        text-align: center;
        align-items: center;
        gap: 24px;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 60px;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-actions {
        align-items: center;
        gap: 20px;
    }

    .cta-primary {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .rating {
        justify-content: center;
    }

    .hero-right {
        order: -1;
    }

    .phone-container {
        max-width: 260px;
        margin-bottom: 20px;
    }

    .floating-card {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 60px;
    }

    .hero-content {
        gap: 35px;
        margin-bottom: 30px;
    }

    .hero-left {
        gap: 20px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-stats {
        gap: 16px;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-actions {
        gap: 16px;
    }

    .cta-primary {
        padding: 14px 24px;
        font-size: 0.95rem;
        max-width: 260px;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-subtext {
        font-size: 0.8rem;
    }

    .stars {
        font-size: 1rem;
    }

    .rating-text {
        font-size: 0.85rem;
    }

    .phone-container {
        max-width: 220px;
    }

    .phone-frame {
        border-radius: 25px;
        padding: 8px;
    }

    .phone-notch {
        width: 120px;
        height: 25px;
        border-radius: 0 0 15px 15px;
    }

    .phone-screen {
        border-radius: 20px;
    }

    .app-status-bar {
        padding: 6px 15px;
        font-size: 0.75rem;
    }

    .station-preview {
        bottom: 15px;
        left: 10px;
        right: 10px;
        padding: 12px;
    }

    .station-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .station-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .station-name {
        font-size: 0.8rem;
    }

    .station-details {
        font-size: 0.65rem;
    }

    .station-status-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .scroll-mouse {
        width: 20px;
        height: 30px;
    }

    .scroll-wheel {
        width: 3px;
        height: 6px;
        top: 5px;
    }

    .scroll-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .hero-content {
        gap: 25px;
    }

    .hero-left {
        gap: 16px;
    }

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

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

    .hero-stats {
        gap: 12px;
    }

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

    .stat-label {
        font-size: 0.7rem;
    }

    .phone-container {
        max-width: 200px;
    }

    .cta-primary {
        max-width: 240px;
        padding: 12px 20px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
}

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

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

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

.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 255, 136, 0.1);
    margin-bottom: 30px;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.step-content {
    margin-bottom: 40px;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-desc {
    color: #b3b3b3;
    line-height: 1.6;
}

.step-visual {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.location-pulse {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #00d1ff 0%, transparent 70%);
    border-radius: 50%;
    animation: locationPulse 2s infinite;
}

@keyframes locationPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.navigation-path {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00d1ff);
    border-radius: 2px;
    position: relative;
}

.navigation-path::after {
    content: '➡️';
    position: absolute;
    right: -20px;
    top: -8px;
    font-size: 1.5rem;
    animation: move 2s infinite;
}

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

.charging-station {
    font-size: 4rem;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5));
    animation: chargeStation 2s ease-in-out infinite;
}

@keyframes chargeStation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Download Section */
.download {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.download-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.download-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 209, 255, 0.1));
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.2; }
}

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

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */
.download-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 209, 255, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    backdrop-filter: blur(10px);
    align-self: flex-start;
}

.badge-icon {
    font-size: 1.2rem;
    color: #00ff88;
}

.badge-text {
    color: #00ff88;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.download-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.highlight-text {
    background: linear-gradient(135deg, #00ff88, #00d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.download-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 80px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00ff88;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #00d1ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.feature-desc {
    font-size: 0.9rem;
    color: #b3b3b3;
}

/* Right Content */
.download-right {
    position: relative;
}

.download-card {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00ff88, #00d1ff);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.app-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00ff88, #00d1ff);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
    min-width: 0; /* Allow text to wrap */
}

.app-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    word-wrap: break-word;
}

.app-tagline {
    font-size: 1rem;
    color: #00ff88;
    font-weight: 600;
    margin-bottom: 10px;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-rating .stars {
    display: flex;
    gap: 2px;
}

.app-rating .stars i {
    color: #ffd93d;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 3px rgba(255, 217, 61, 0.5));
}

.app-rating .rating-text {
    font-size: 0.9rem;
    color: #b3b3b3;
    font-weight: 600;
}

.download-button-section {
    margin-bottom: 24px;
    width: 100%;
}

.google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #00ff88, #00d1ff);
    color: #0a0a0a;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    max-width: 300px;
}

.google-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.4);
}

.google-play-btn::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;
}

.google-play-btn:hover::before {
    left: 100%;
}

.play-icon {
    width: 32px;
    height: 32px;
    background: rgba(10, 10, 10, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.play-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.play-label {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.play-store {
    font-size: 1.1rem;
    font-weight: 800;
}

.download-meta {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    justify-content: space-between;
    width: 100%;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #b3b3b3;
    flex: 1;
    justify-content: center;
}

.meta-item i {
    color: #00ff88;
    font-size: 0.9rem;
}

.card-features {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-features .feature-item {
    margin-bottom: 16px;
}

.card-features .feature-item:last-child {
    margin-bottom: 0;
}

.card-features .feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff88, #00d1ff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-size: 1rem;
    flex-shrink: 0;
}

.card-features .feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-features .feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.card-features .feature-desc {
    font-size: 0.8rem;
    color: #b3b3b3;
}

/* Responsive Design for Download Section */
@media (max-width: 1200px) {
    .download-content {
        gap: 60px;
    }

    .download-title {
        font-size: clamp(2.2rem, 4vw, 3.5rem);
    }

    .download-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.3rem);
    }
}

@media (max-width: 1024px) {
    .download-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .download {
        padding: 80px 0;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .download-left {
        align-items: center;
        gap: 30px;
    }

    .download-badge {
        align-self: center;
    }

    .download-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .download-subtitle {
        max-width: 100%;
    }

    .download-stats {
        justify-content: center;
        gap: 30px;
    }

    .download-features {
        width: 100%;
        max-width: 400px;
    }

    .feature-item {
        justify-content: flex-start;
    }

    .download-right {
        order: -1;
    }

    .download-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .card-features {
        margin-top: 20px;
        padding-top: 20px;
    }

    .card-features .feature-item {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .download {
        padding: 60px 0;
    }

    .download-content {
        gap: 35px;
    }

    .download-left {
        gap: 25px;
    }

    .download-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

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

    .download-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat {
        min-width: 60px;
    }

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

    .download-card {
        padding: 24px;
        max-width: none;
        width: 100%;
        margin: 0 auto;
    }

    .card-header {
        gap: 16px;
    }

    .app-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .app-name {
        font-size: 1.4rem;
    }

    .app-tagline {
        font-size: 0.9rem;
    }

    .google-play-btn {
        max-width: none;
        width: 100%;
    }

    .card-features {
        margin-top: 16px;
        padding-top: 16px;
    }

    .card-features .feature-item {
        margin-bottom: 10px;
    }

    .card-features .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .card-features .feature-title {
        font-size: 0.95rem;
    }

    .card-features .feature-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .download-content {
        gap: 25px;
    }

    .download-left {
        gap: 20px;
    }

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

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

    .download-stats {
        gap: 15px;
    }

    .download-card {
        padding: 20px;
        max-width: 260px;
    }

    .card-features {
        margin-top: 16px;
        padding-top: 16px;
    }

    .card-features .feature-item {
        margin-bottom: 8px;
    }

    .card-features .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .card-features .feature-title {
        font-size: 0.9rem;
    }

    .card-features .feature-desc {
        font-size: 0.7rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1.0s; }

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.05);
    color: #00ff88;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #00ff88;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(10, 10, 10, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 30px 30px;
    color: #b3b3b3;
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: #00ff88;
    font-weight: 600;
}

.faq-answer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
    color: #b3b3b3;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 25px 25px 25px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-question::after {
        right: 20px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    background: rgba(26, 26, 26, 0.8);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding: 80px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* App Download in Footer */
.footer-app-download {
    margin-top: 30px;
}

.download-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-store-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.app-store-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.app-store-link i {
    font-size: 1.2rem;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Contact Info */
.footer-contact {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    padding: 40px 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

/* Trust Badges */
.footer-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.trust-badge i {
    color: var(--primary);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.heart {
    color: #ff4757;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 50%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 0 30px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        max-width: 100%;
    }

    .hero-text {
        max-width: 100%;
        gap: 25px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .phone-mockup {
        transform: scale(0.9);
    }

    .hero-cta {
        gap: 18px;
    }

    .primary-cta {
        padding: 18px 35px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 0 25px;
        min-height: 80vh;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        max-width: 100%;
    }

    .hero-text {
        max-width: 100%;
        gap: 25px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
    }

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

    .phone-mockup {
        transform: scale(0.85);
    }

    .charging-animation {
        right: -30px;
    }

    .hero-cta {
        gap: 15px;
    }

    .primary-cta {
        padding: 18px 35px;
    }

    .cta-content {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .nav-logo .logo-text {
        font-size: 24px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 10px 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .hero-text {
        text-align: center;
        align-items: center;
        max-width: 100%;
        gap: 25px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 20px;
    }

    .stat-item {
        flex: 0 0 auto;
    }

    .hero-cta {
        align-items: center;
        gap: 15px;
        margin-top: 0;
        width: 100%;
    }

    .primary-cta {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .rating {
        align-items: center;
    }

    .phone-mockup {
        order: -1;
        transform: scale(0.8);
        margin-bottom: 20px;
    }

    .charging-animation {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .features {
        padding: 60px 0;
    }

    .features-container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .how-container {
        padding: 0 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .step-number {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .step-number::after {
        width: 80px;
        height: 80px;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .download {
        padding: 60px 0;
    }

    .download-container {
        padding: 0 20px;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .download-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .download-features {
        margin-bottom: 30px;
    }

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .nav-logo .logo-text {
        font-size: 24px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        padding: 10px 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .hero-text {
        text-align: center;
        align-items: center;
        max-width: 100%;
        gap: 25px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 20px;
    }

    .stat-item {
        flex: 0 0 auto;
    }

    .hero-cta {
        align-items: center;
        gap: 15px;
        margin-top: 0;
        width: 100%;
    }

    .primary-cta {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .rating {
        align-items: center;
    }

    .phone-mockup {
        order: -1;
        transform: scale(0.8);
        margin-bottom: 20px;
    }

    .charging-animation {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .features {
        padding: 60px 0;
    }

    .features-container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .feature-card {
        padding: 30px 20px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .how-container {
        padding: 0 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .step-number {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .step-number::after {
        width: 80px;
        height: 80px;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .download {
        padding: 60px 0;
    }

    .download-container {
        padding: 0 20px;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .download-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .download-features {
        margin-bottom: 30px;
    }

    /* Footer Responsive */
    .footer-newsletter {
        padding: 40px 20px;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .newsletter-text h3 {
        font-size: 2rem;
    }

    .newsletter-form {
        justify-content: center;
        max-width: 100%;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo .logo-text {
        font-size: 1.8rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-contact {
        padding: 30px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding-top: 30px;
    }

    .footer-trust {
        justify-content: center;
        order: 1;
    }

    .footer-social {
        order: 2;
        justify-content: center;
    }

    .footer-copyright {
        order: 3;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-text {
        gap: 20px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-stats {
        gap: 20px;
        margin-bottom: 15px;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-cta {
        gap: 12px;
        width: 100%;
    }

    .primary-cta {
        padding: 12px 25px;
        border-radius: 40px;
        width: 100%;
        max-width: 280px;
    }

    .cta-content {
        flex-direction: column;
        gap: 3px;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-subtext {
        font-size: 0.75rem;
    }

    .cta-icon {
        font-size: 1.5rem;
    }

    .rating-text {
        font-size: 0.8rem;
    }

    .phone-mockup {
        transform: scale(0.7);
        margin-bottom: 15px;
    }

    .phone-frame {
        width: 240px;
        height: 520px;
    }

    .download-card {
        padding: 20px;
        max-width: none;
        width: 100%;
    }

    .card-header {
        gap: 12px;
    }

    .app-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .app-name {
        font-size: 1.2rem;
    }

    .app-tagline {
        font-size: 0.8rem;
    }

    .google-play-btn {
        max-width: none;
        width: 100%;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .play-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .play-content .play-store {
        font-size: 1rem;
    }

    .download-meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .card-features {
        margin-top: 16px;
        padding-top: 16px;
    }

    .card-features .feature-item {
        margin-bottom: 10px;
    }

    .card-features .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .card-features .feature-title {
        font-size: 0.95rem;
    }

    .card-features .feature-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .hero-container {
        padding: 0 10px;
    }

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

    .phone-mockup {
        transform: scale(0.6);
    }

    .phone-frame {
        width: 200px;
        height: 440px;
    }

    .download-card {
        padding: 16px;
        max-width: none;
        width: 100%;
    }

    .card-features {
        margin-top: 12px;
        padding-top: 12px;
    }

    .card-features .feature-item {
        margin-bottom: 8px;
    }

    .card-features .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .card-features .feature-title {
        font-size: 0.85rem;
    }

    .card-features .feature-desc {
        font-size: 0.7rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff88, #00d1ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00d1ff, #00ff88);
}
