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

:root {
    --primary: #667eea;
    --primary-dark: #764ba2;
    --accent: #f093fb;
    --accent-dark: #f5576c;
    --success: #43e97b;
    --text: #1a1a1a;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Animated Background */
.bg-gradient, .bg-gradient-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    top: -200px;
    left: -200px;
}

.bg-gradient-2 {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    bottom: -200px;
    right: -200px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 50px) scale(1.1); }
    50% { transform: translate(-30px, 80px) scale(0.9); }
    75% { transform: translate(80px, -50px) scale(1.05); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: width 0.3s ease;
}

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

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

.btn-download {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Hero */
.hero {
    padding: 160px 0 100px;
    position: relative;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.badge svg {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

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

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.phone {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.phone-frame {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 50px;
    padding: 12px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.screen-content {
    padding: 48px 20px 20px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
}

.status-icons {
    width: 60px;
    height: 12px;
    background: linear-gradient(90deg,
        var(--text) 0%, var(--text) 30%,
        transparent 30%, transparent 40%,
        var(--text) 40%, var(--text) 70%,
        transparent 70%, transparent 80%,
        var(--text) 80%, var(--text) 100%
    );
    border-radius: 2px;
}

.app-screen {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visa-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: cardSlideIn 0.6s ease backwards;
}

.visa-card:nth-child(2) {
    animation-delay: 0.2s;
}

.visa-card.active {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

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

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.flag {
    font-size: 32px;
}

.status-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
}

.status-badge.success {
    background: rgba(67, 233, 123, 0.1);
    color: var(--success);
}

.status-badge.pending {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
}

.visa-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.progress-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 100px;
    transition: width 1s ease;
    animation: progressFill 2s ease;
}

@keyframes progressFill {
    from { width: 0; }
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 100;
}

.card-1 {
    top: 60px;
    left: -40px;
}

.card-2 {
    bottom: 60px;
    right: -40px;
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50% { transform: translateY(-15px) translateZ(0); }
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature {
    background: white;
    padding: 32px;
    border-radius: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

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

.feature h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

/* Process */
.process {
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 64px;
}

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

.step-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    opacity: 0.6;
}

.step-icon {
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.step-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    margin-top: 80px;
    opacity: 0.3;
}

/* CTA */
.cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px;
    border-radius: 32px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 15s infinite ease-in-out;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
}

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

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

.btn-primary.btn-lg:hover {
    background: rgba(255, 255, 255, 0.95);
}

.ratings {
    display: flex;
    gap: 32px;
    justify-content: center;
    position: relative;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.rating span:first-child {
    font-size: 16px;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

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

/* ULTRATHINK: Airplane Cursor */
.cursor {
    width: 32px;
    height: 32px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.5));
}

.cursor::before {
    content: '✈️';
    font-size: 28px;
    display: block;
    animation: airplaneFloat 3s ease-in-out infinite;
}

@keyframes airplaneFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-4px) scale(1.1); }
}

@media (hover: hover) {
    .cursor {
        opacity: 1;
    }
}

/* ULTRATHINK: Airplane Trail */
.airplane-trail {
    position: fixed;
    width: 3px;
    height: 3px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6), rgba(118, 75, 162, 0.4));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: trailFade 0.8s ease-out forwards;
}

@keyframes trailFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.2);
        opacity: 0;
    }
}

/* Ultrathink: Mesh Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 20% 30%, rgba(102, 126, 234, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(118, 75, 162, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(240, 147, 251, 0.1) 0px, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: meshMove 15s ease-in-out infinite;
}

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

/* Ultrathink: Glass Morphism Effects */
.feature, .visa-card, .step-card, .float-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ultrathink: Magnetic Buttons */
.btn-primary, .btn-secondary, .btn-download {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before, .btn-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before, .btn-download:hover::before {
    width: 300px;
    height: 300px;
}

/* Ultrathink: Particle Effect */
@keyframes particle {
    0% {
        transform: translateY(0) scale(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    box-shadow:
        100px 200px 0 rgba(102, 126, 234, 0.3),
        -100px -200px 0 rgba(118, 75, 162, 0.3),
        200px -100px 0 rgba(240, 147, 251, 0.3),
        -200px 100px 0 rgba(67, 233, 123, 0.3),
        150px -150px 0 rgba(79, 172, 254, 0.3),
        -150px 150px 0 rgba(250, 112, 154, 0.3);
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px, -50px) rotate(180deg);
        opacity: 1;
    }
}

/* Ultrathink: Text Shimmer Effect */
.gradient-text {
    background: linear-gradient(
        90deg,
        var(--primary) 0%,
        var(--primary-dark) 25%,
        var(--accent) 50%,
        var(--primary-dark) 75%,
        var(--primary) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Ultrathink: Glow on Hover */
.feature:hover, .step:hover {
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(102, 126, 234, 0.2);
}

.phone-frame {
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(102, 126, 234, 0.3);
}

/* Ultrathink: Smooth Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    transform-origin: left;
    transition: transform 0.1s ease;
}

/* Ultrathink: Section Dividers */
.features::before, .process::before, .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.features, .process, .cta {
    position: relative;
}

/* Ultrathink: Interactive Shadows */
.feature-icon {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

/* Ultrathink: Animated Gradient Borders */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.visa-card.active::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--primary));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
    animation: rotateBorder 3s linear infinite;
}

.visa-card.active {
    position: relative;
}

/* Ultrathink: Micro-interactions */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.status-badge {
    animation: pulse 2s ease-in-out infinite;
}

/* Ultrathink: Advanced Parallax Layers */
.hero-visual {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.phone {
    transform: translateZ(50px);
}

.float-card {
    transform: translateZ(100px);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    h1 {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .step-line {
        display: none;
    }

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

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

    .nav-wrapper {
        height: 64px;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a::after {
        display: none;
    }

    .btn-download {
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

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

    h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 36px;
    }

    .float-card {
        display: none;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .cta-box {
        padding: 48px 24px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-btns {
        flex-direction: column;
    }

    .ratings {
        flex-direction: column;
        gap: 16px;
    }

    .footer {
        padding: 60px 0 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}
