/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00c853;
    --primary-dark: #00b248;
    --secondary: #00b8d4;
    --dark: #1a237e;
    --light: #f5f7fa;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --black: #0f172a;
    --shadow: 0 10px 25px rgba(0, 200, 83, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 200, 83, 0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.charging-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bolt {
    font-size: 48px;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.charging-bar {
    width: 200px;
    height: 4px;
    background: var(--gray-light);
    border-radius: 2px;
    overflow: hidden;
}

.charge-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: charging 2s ease-in-out infinite;
    width: 30%;
}

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

@keyframes charging {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(330%); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--black);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.logo-domain {
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.electric-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(0, 200, 83, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 83, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

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

.float-el {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.el-1 { top: 20%; left: 10%; animation-delay: 0s; }
.el-2 { top: 60%; left: 85%; animation-delay: 1s; }
.el-3 { top: 80%; left: 15%; animation-delay: 2s; }
.el-4 { top: 40%; left: 90%; animation-delay: 3s; }

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 24px;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 200, 83, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
}

.slogan {
    color: var(--primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    background: var(--gray-light);
}

.hero-image {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.station-model {
    position: relative;
    width: 300px;
    height: 400px;
}

.station-base {
    position: absolute;
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 20px;
    transform: perspective(1000px) rotateX(10deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.screen {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    height: 120px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 15px;
}

.screen-content {
    color: var(--primary);
    font-family: monospace;
    font-size: 14px;
}

.charging-speed {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.charging-status {
    color: #4ade80;
    font-size: 12px;
}

.connectors {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.connector {
    position: relative;
    width: 40px;
    height: 80px;
}

.connector-tip {
    width: 40px;
    height: 20px;
    background: #718096;
    border-radius: 4px 4px 0 0;
}

.connector-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--gray-light);
    white-space: nowrap;
}

.ccs .connector-tip { background: #3b82f6; }
.type2 .connector-tip { background: #10b981; }
.chademo .connector-tip { background: #f59e0b; }
.ac .connector-tip { background: #8b5cf6; }

.active {
    animation: connectorGlow 2s infinite;
}

@keyframes connectorGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray);
    border-radius: 20px;
    position: relative;
}

.wheel {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gray);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.animate-float {
    animation: floatUpDown 3s ease-in-out infinite;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-card-icon {
    margin-bottom: 24px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--white);
    font-size: 32px;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

/* Stations Section */
.stations-map {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #e0f7fa, #bbdefb);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 60px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.point-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

.point-center {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    transform: translate(-50%, -50%);
}

.point-tooltip {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.map-point:hover .point-tooltip {
    opacity: 1;
    top: -120px;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

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

.fast { background: var(--primary); }
.medium { background: var(--secondary); }

.connector-types {
    text-align: center;
}

.connector-types h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--dark);
}

.connectors-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.connector-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.connector-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

/* Features Section */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

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

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(0, 200, 83, 0.1);
    margin-bottom: 20px;
    line-height: 1;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-list i {
    color: var(--primary);
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--white);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 25px;
    overflow: hidden;
    padding: 20px;
}

.app-screen {
    height: 100%;
}

.app-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.app-battery {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100% - 50px);
}

.charging-animation-small {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.app-status {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 30px;
}

.app-details {
    width: 100%;
}

.detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray-light);
    font-size: 14px;
}

.detail span:last-child {
    color: var(--white);
    font-weight: 500;
}

.app-badges {
    display: flex;
    gap: 20px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.app-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.app-badge i {
    font-size: 32px;
}

.app-badge div {
    display: flex;
    flex-direction: column;
}

.app-badge span {
    font-size: 12px;
    color: var(--gray);
}

.app-badge strong {
    font-size: 16px;
    color: var(--dark);
}

.app-showcase {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

/* App Section */
.app-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    color: var(--white);
}

.app-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.download-btn i {
    font-size: 32px;
}

.download-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-text span {
    font-size: 12px;
}

.download-text strong {
    font-size: 18px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.app-feature i {
    font-size: 20px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-card p {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-note {
    font-size: 14px;
    color: var(--gray);
}

.contact-form {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.slogan {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: 30px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .app-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .app-cta {
        padding: 40px 20px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
}