/* Nomora Landing Page Styles - Based on Nomora Design System */

/* ===== CSS Variables ===== */
:root {
    /* Brand Colors */
    --primary-color: #FF5A5F;
    --primary-hover: #FF7478;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --surface-gray: #F7F7F7;
    --border-gray: #DDDDDD;
    
    /* Text Colors */
    --text-primary: #222222;
    --text-secondary: #717171;
    --text-muted: #B0B0B0;
    
    /* Semantic Colors */
    --success: #00A870;
    --warning: #FFA500;
    --error: #D93025;
    --info: #1976D2;
    
    /* Spacing (8-point grid) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Border Radius */
    --radius: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.text-primary {
    color: var(--primary-color);
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.feature-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: var(--space-xs) var(--space-sm);
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    color: var(--white);
    font-weight: 700;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Hero Section ===== */
.hero {
    padding-top: calc(80px + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    background: linear-gradient(to bottom, var(--surface-gray) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-actions {
    margin-bottom: var(--space-lg);
}

.hero-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    padding: var(--space-sm);
    background: var(--text-primary);
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

/* Enhanced phone frames on red backgrounds */
.feature:nth-child(odd) .phone-frame {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

.feature:nth-child(even) .phone-frame {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-block;
}

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

.btn-primary:active {
    transform: translateY(0);
}

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

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

.feature {
    padding: var(--space-3xl) 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

/* Alternating red backgrounds */
.feature:nth-child(odd) {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF7478 100%);
    position: relative;
    overflow: hidden;
}

/* Special USP sections background enhancement */
.feature:nth-child(2) {
    background: linear-gradient(135deg, #FF4A4F 0%, #FF6B70 50%, #FF8A8F 100%);
    position: relative;
    overflow: hidden;
}

.feature:nth-child(3) {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF7478 100%);
    position: relative;
    overflow: hidden;
}

/* Geometric pattern overlay for USP sections */
.feature:nth-child(2)::after,
.feature:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Floating dots pattern for USP sections */
.feature:nth-child(2)::before,
.feature:nth-child(3)::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    animation: floatPattern 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

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

.feature:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.feature:nth-child(even) {
    background: var(--white);
}

/* Remove wave transitions that were cutting off content */

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }
.feature:nth-child(5) { animation-delay: 0.5s; }
.feature:nth-child(6) { animation-delay: 0.6s; }

.feature-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Alternate image positions */
/* Feature 1, 3, 5: Image LEFT, Content RIGHT (need to reverse HTML order) */
.feature:nth-child(odd) .feature-container {
    flex-direction: row-reverse;
}
/* Feature 2, 4: Image RIGHT, Content LEFT (keep HTML order) */
.feature:nth-child(even) .feature-container {
    flex-direction: row;
}

.feature-content {
    background: var(--white);
    padding: calc(var(--space-xl) + 8px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: all var(--transition-normal);
    position: relative;
}

/* USP Cards - Special styling for unique selling points */
.usp-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(255, 90, 95, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.98) 100%);
    animation: uspPulse 4s ease-in-out infinite;
    position: relative;
}

/* Add decorative accent line to USP cards */
.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.8) 100%);
    border-radius: 16px 16px 0 0;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes uspPulse {
    0%, 100% { transform: translateY(-8px) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
}

.usp-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF7478 100%);
    color: var(--white);
    padding: var(--space-xs) var(--space-lg);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
    animation: badgeShine 3s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes badgeShine {
    0%, 100% { box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(255, 90, 95, 0.5); }
}

/* Elevated card effect on hover */
.feature-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(0, 0, 0, 0.12);
}

.feature:nth-child(odd) .feature-content:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* USP cards maintain their elevation on hover */
.usp-card:hover {
    animation-play-state: paused;
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 16px 56px rgba(255, 90, 95, 0.2), 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Enhanced shadow for cards on red backgrounds for better contrast */
.feature:nth-child(odd) .feature-content {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18), 0 2px 12px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

/* Same white card for even sections */
.feature:nth-child(even) .feature-content {
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* Reset text colors since we're using cards now */
.feature:nth-child(odd) .feature-title {
    color: var(--text-primary);
}

.feature:nth-child(odd) .feature-description {
    color: var(--text-secondary);
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.highlight {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 16px;
    color: var(--text-primary);
}

.feature:nth-child(odd) .highlight {
    color: var(--text-primary);
}

.highlight-icon {
    font-size: 20px;
}

/* ===== Why Nomora Section ===== */
.why-nomora {
    padding: var(--space-3xl) 0;
    background: var(--surface-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.benefit {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.benefit h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.benefit p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Signup Section ===== */
.signup {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF7478 100%);
}

.signup-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.signup-content {
    text-align: center;
    color: var(--white);
}

.signup-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.signup-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.signup-form {
    margin-bottom: var(--space-lg);
}

.form-group {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.signup-input {
    flex: 1;
    padding: var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.signup-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.signup-input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.signup-form .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.signup-form .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.signup-success {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-xl);
    border-radius: var(--radius);
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto var(--space-md);
}

.signup-success h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.signup-success p {
    color: rgba(255, 255, 255, 0.9);
}

.signup-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

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

/* ===== Footer ===== */
.footer {
    background: var(--text-primary);
    color: var(--white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

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

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== Cookie Consent Banner ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: var(--space-lg);
    z-index: 9999;
    animation: slideUp 0.4s ease-out;
}

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

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

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-md);
}

.cookie-btn {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

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

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

.cookie-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-gray);
}

.cookie-decline:hover {
    background: var(--surface-gray);
}

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

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

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        margin-top: var(--space-xl);
    }
    
    .feature-container {
        flex-direction: column;
    }
    
    .feature:nth-child(even) .feature-container {
        flex-direction: column;
    }
    
    .feature:nth-child(odd) .feature-container {
        flex-direction: column;
    }
    
    /* On mobile, ensure content always comes before image */
    .feature-content {
        order: 1;
    }
    
    .feature-image {
        order: 2;
    }
    
    /* Override for reversed sections on mobile */
    .feature-reversed .feature-content {
        order: 1;
    }
    
    .feature-reversed .feature-image {
        order: 2;
    }
    
    .feature-image {
        margin-top: var(--space-xl);
    }
    
    .feature-content {
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: var(--space-sm) var(--space-md);
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
    
    .logo {
        font-size: 20px;
        flex: 1;
    }
    
    .nav-actions {
        gap: var(--space-sm);
        flex-wrap: nowrap;
    }
    
    .language-switcher {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .nav-cta {
        padding: var(--space-xs) var(--space-md);
        font-size: 12px;
    }
    
    .hero {
        padding-top: calc(60px + var(--space-2xl));
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-large {
        padding: var(--space-md) var(--space-lg);
        font-size: 16px;
    }
    
    .phone-frame {
        max-width: 280px;
    }
    
    /* Mobile optimizations for features */
    .feature {
        padding: var(--space-2xl) 0;
    }
    
    .feature-content {
        padding: var(--space-lg);
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .feature-description {
        font-size: 16px;
    }
    
    .feature-highlights {
        font-size: 14px;
    }
    
    /* USP badge on mobile */
    .usp-badge {
        right: 16px;
        top: -10px;
        font-size: 10px;
        padding: 2px 8px;
    }
    
    /* Benefits grid mobile */
    .benefit {
        padding: var(--space-lg);
    }
    
    .benefit-icon {
        font-size: 36px;
    }
    
    /* Signup section mobile */
    .signup-title {
        font-size: 24px;
    }
    
    .signup-subtitle {
        font-size: 16px;
    }
    
    /* Footer mobile */
    .footer {
        padding: var(--space-xl) 0 var(--space-lg);
    }
    
    /* Cookie consent on mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .cookie-content p {
        font-size: 13px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 140px;
        font-size: 13px;
        padding: var(--space-sm) var(--space-md);
    }
}

/* ===== Loading State ===== */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* ===== Accessibility ===== */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}