:root {
    --primary: #FF6B6B;
    --primary-dark: #FF5252;
    --secondary: #FF8C8C;
    --accent: #FFB3B3;
    --text-primary: #1E1E1E;
    --text-secondary: #707070;
    --text-light: #A0A0A0;
    --bg-primary: #FAFAFA;
    --bg-secondary: #F5F5F5;
    --bg-card: #FFFFFF;
    --border: #E0E0E0;
    --shadow: rgba(255, 107, 107, 0.15);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.lang-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.lang-btn .flag {
    font-size: 14px;
}

.lang-btn .lang-text {
    font-size: 11px;
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

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

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


.main {
    padding-top: 0;
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 140, 140, 0.1));
    border-radius: 50%;
    animation: floatRandom 20s infinite ease-in-out;
}

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

.floating-element-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.floating-element-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 70%;
    animation-delay: -14s;
}

.hero {
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #FAFAFA 0%, #F8F9FA 100%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
    position: relative;
}

.early-bird-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1E1E1E;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 16px;
}

.early-bird-offer {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 140, 140, 0.1) 100%);
    border: 2px solid rgba(255, 107, 107, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.early-bird-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.offer-highlight {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.offer-details {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.4;
}

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

.urgency-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 16px 0 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: #FF6B6B;
}

.urgency-note > div:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgency-icon {
    font-size: 16px;
    animation: tick 1s ease-in-out infinite;
}

.spots-counter {
    font-size: 12px;
    font-weight: 600;
    color: #FF4444;
    margin-top: 4px;
}

.spots-remaining {
    font-size: 16px;
    font-weight: 700;
    color: #FF6B6B;
}

.spots-counter-subtle {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    opacity: 0.8;
}

.spots-counter-subtle .spots-remaining {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* Footer Styles */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--bg-card);
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.legal-content h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 28px;
}

.legal-content h3 {
    color: var(--text-primary);
    margin: 25px 0 15px 0;
    font-size: 20px;
}

.legal-content h4 {
    color: var(--text-primary);
    margin: 20px 0 10px 0;
    font-size: 16px;
}

.legal-content p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

/* Consent Checkbox */
.consent-checkbox {
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
}

.consent-checkbox input[type="checkbox"]:checked {
    accent-color: var(--primary);
    background-color: var(--primary);
    border-color: var(--primary);
}

.consent-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    left: 2px;
    top: -2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.consent-checkbox label {
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.consent-checkbox a {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.consent-checkbox a:hover {
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.decline:hover {
    background: var(--bg-secondary);
}

.cookie-btn.info:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
    background: rgba(255, 107, 107, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    animation: pulse 2s ease-in-out infinite;
}

.app-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.gift-emoji {
    font-size: 80px;
    line-height: 1;
    transition: all 0.3s ease;
}

.gift-emoji:hover {
    transform: translateY(-4px) scale(1.1);
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.signup-form {
    margin-bottom: 8px;
}

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    border-radius: 16px;
    padding: 4px;
}

#email {
    flex: 1;
    min-width: 280px;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    transition: all 0.3s ease;
    outline: none;
}

#email:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

.signup-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.signup-btn:active {
    transform: translateY(-1px);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    animation: rippleEffect 0.6s ease-out;
}

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

.app-store-section {
    padding: 80px 0;
    background: #FFFFFF;
    text-align: center;
    position: relative;
}

.app-store-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
}

.app-store-content {
    max-width: 600px;
    margin: 0 auto;
}

.app-store-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.app-store-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.app-store-button {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
    gap: 12px;
}

.app-store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

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

.app-store-label {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-store-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.apple-logo {
    filter: brightness(10);
}

.phone-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    border-radius: 70px;
    pointer-events: none;
    animation: pulseGlow 3s ease-in-out infinite;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    animation: floatBubble 4s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 70%;
    right: 20%;
    animation-delay: -1.5s;
}

.bubble-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -3s;
}

.floating-gift {
    position: absolute;
    font-size: 20px;
    opacity: 0.7;
    animation: floatGift 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-gift:hover {
    transform: scale(1.2);
    opacity: 1;
}

.gift-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.gift-2 {
    bottom: 30%;
    right: -15%;
    animation-delay: -3s;
}

.privacy-note {
    color: var(--text-light);
    font-size: 14px;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    opacity: 1;
    transform: translateY(0);
}

.form-message.error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
    opacity: 1;
    transform: translateY(0);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
    position: relative;
}

.iphone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    background: #1f2937;
    border-radius: 50px;
    padding: 8px;
    animation: fadeInRight 0.8s ease-out 0.2s both;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #374151;
    border-radius: 3px;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42px;
    transition: all 0.3s ease;
}


.screenshot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.screenshot-placeholder {
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.screenshot-placeholder p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.screenshot-placeholder small {
    font-size: 14px;
    opacity: 0.8;
}


.features {
    padding: 120px 0;
    background: linear-gradient(145deg, #FFFFFF 0%, #F8F9FA 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
}

.features-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

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

.feature-number {
    font-size: 42px;
    font-weight: 200;
    color: var(--primary);
    opacity: 0.8;
    min-width: 70px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 107, 107, 0.1);
}

.feature-content {
    flex: 1;
    padding-top: 4px;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-light);
    background: linear-gradient(135deg, #FAFAFA 0%, #F8F9FA 100%);
    border-top: 1px solid var(--border);
}

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

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

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

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

@keyframes floatRandom {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) translateX(30px) rotate(270deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes floatBubble {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
}

@keyframes floatGift {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 0.9;
    }
    66% {
        transform: translateY(-5px) rotate(-5deg);
        opacity: 0.8;
    }
}


@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes sparkleEffect {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2) rotate(180deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
}


.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out;
}

.scroll-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.7;
    animation: particleFloat 2s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-element {
        display: none;
    }
    
    .header {
        padding: 0 16px;
    }
    
    .language-toggle {
        padding: 3px;
    }
    
    .lang-btn {
        padding: 6px 8px;
        gap: 3px;
    }
    
    .lang-btn .flag {
        font-size: 12px;
    }
    
    .lang-btn .lang-text {
        font-size: 10px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: 90vh;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: calc(90vh - 120px);
    }
    
    .hero-content {
        text-align: center;
        margin-top: 20px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .early-bird-offer {
        padding: 16px;
        margin: 20px 0;
    }
    
    .offer-highlight {
        font-size: 16px;
    }
    
    .offer-details {
        font-size: 14px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    #email {
        min-width: auto;
    }
    
    .iphone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .features-container {
        gap: 40px;
    }
    
    .feature-item {
        gap: 20px;
    }
    
    .feature-number {
        font-size: 36px;
        min-width: 60px;
    }
    
    .feature-content h3 {
        font-size: 24px;
    }
    
    .feature-content p {
        font-size: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    
    .app-store-section {
        padding: 60px 0;
    }
    
    .app-store-content h3 {
        font-size: 28px;
    }
    
    .app-store-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .app-store-button {
        padding: 10px 16px;
        gap: 10px;
    }
    
    .app-store-label {
        font-size: 11px;
    }
    
    .app-store-title {
        font-size: 16px;
    }
    
    .cursor-trail {
        width: 15px;
        height: 15px;
    }
    
    .scroll-particle {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 20px;
        min-height: 90vh;
    }
    
    .hero .container {
        min-height: calc(90vh - 100px);
    }
    
    .hero-content {
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .early-bird-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .early-bird-offer {
        padding: 12px;
        margin: 16px 0;
    }
    
    .offer-highlight {
        font-size: 14px;
    }
    
    .offer-details {
        font-size: 12px;
    }
    
    .iphone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .app-store-section {
        padding: 40px 0;
    }
    
    .app-store-content h3 {
        font-size: 24px;
    }
    
    .app-store-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .app-store-button {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .app-store-label {
        font-size: 10px;
    }
    
    .app-store-title {
        font-size: 14px;
    }
}