:root {
    /* Bright, warm color palette */
    --bg: #FEFDFB;
    --bg-warm: #FDF8F3;
    --bg-elevated: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-accent: #FFF7ED;
    --border: rgba(0, 0, 0, 0.06);
    --border-strong: rgba(0, 0, 0, 0.1);
    --text: #1a1a1a;
    --text-muted: #64748b;
    --text-subtle: #94a3b8;
    --accent: #F97316;
    --accent-hover: #EA580C;
    --accent-light: #FFEDD5;
    --accent-glow: rgba(249, 115, 22, 0.25);
    --critical: #EF4444;
    --critical-light: #FEE2E2;
    --success: #10B981;
    --success-light: #D1FAE5;
    --trust: #0EA5E9;
    --trust-light: #E0F2FE;
    /* Primary fill of the logo mark (elephant / cloud body) */
    --logo-mark: #0f4e75;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;
    
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-accent: 0 8px 30px rgba(249, 115, 22, 0.2);

    --nav-logo-height: calc(0.9rem * 1.2 + 20px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Subtle warm gradient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: 
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(249, 115, 22, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.noise {
    display: none; /* Remove noise for bright theme */
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(254, 253, 251, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    border-bottom-color: var(--border);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: opacity 0.2s ease;
}

.logo img {
    height: var(--nav-logo-height);
    width: auto;
    display: block;
}

.logo-wordmark {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--nav-logo-height);
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--logo-mark);
}

.logo:hover {
    opacity: 0.85;
}

.nav-cta {
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 0 8px transparent;
        opacity: 0.8;
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: var(--space-md);
    line-height: 1.75;
}

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

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--text);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border-strong);
}

.btn-ghost:hover {
    border-color: var(--text-muted);
    color: var(--text);
    background: rgba(0, 0, 0, 0.02);
}

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

.phone-mockup {
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 48px;
    padding: 10px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 25px 80px -20px rgba(0, 0, 0, 0.4),
        0 50px 100px -40px rgba(249, 115, 22, 0.15);
    animation: float 6s ease-in-out infinite;
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg);
    border-radius: 40px;
    padding: var(--space-md);
    overflow: hidden;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

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

.app-count {
    font-size: 0.85rem;
    color: var(--critical);
    background: var(--critical-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.event-card {
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    animation: slideIn 0.5s ease-out backwards;
}

.event-card:nth-child(2) { animation-delay: 0.1s; }
.event-card:nth-child(3) { animation-delay: 0.2s; }
.event-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
}

.event-card.critical {
    border-color: var(--critical);
    border-left: 4px solid var(--critical);
    background: linear-gradient(135deg, var(--critical-light) 0%, var(--bg-elevated) 100%);
}

.event-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--critical);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    background: var(--critical-light);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.event-city {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 4px;
}

.event-title {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.event-time {
    font-size: 0.75rem;
    color: var(--text-subtle);
}

.floating-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.dot-1 {
    top: 10%;
    right: 8%;
    animation: float 4s ease-in-out infinite;
}

.dot-2 {
    bottom: 20%;
    left: 5%;
    width: 10px;
    height: 10px;
    background: var(--trust);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    animation: float 5s ease-in-out infinite reverse;
}

.dot-3 {
    top: 40%;
    right: -3%;
    width: 8px;
    height: 8px;
    background: var(--success);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* Social Proof Bar */
.social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

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

.social-proof-stat strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-display);
}

.social-proof-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border-strong);
}

/* Features */
.features {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-warm);
    border-radius: var(--radius-xl);
    margin-left: var(--space-lg);
    margin-right: var(--space-lg);
}

@media (min-width: 1248px) {
    .features {
        margin-left: auto;
        margin-right: auto;
    }
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    background: var(--accent-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
}

.features-header,
.how-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.features-header h2,
.how-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

.features-header p,
.how-header p {
    margin-top: var(--space-sm);
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-elevated) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* How it works */
.how-it-works {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    align-items: start;
    opacity: 1;
    transform: translateY(0);
    background: var(--bg-elevated);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.4;
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.65;
}

/* Download */
.download {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.download-content {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(135deg, var(--text) 0%, #2d2d2d 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.download .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.download h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: white;
}

.download p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.app-store-badge {
    display: inline-block;
    transition: all 0.2s ease;
}

.app-store-badge:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.app-store-badge svg rect {
    fill: white;
}

.app-store-badge svg g {
    fill: var(--text);
}

.download-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow {
    display: none; /* Removed for bright theme */
}

/* Newsletter */
.newsletter {
    padding: var(--space-3xl) var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.newsletter h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.newsletter p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.newsletter-form {
    max-width: 480px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: var(--space-xs);
    background: var(--bg-warm);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 6px;
    transition: all 0.2s ease;
}

.input-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
    padding: 12px 16px;
    outline: none;
    font-family: var(--font-body);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group .btn {
    padding: 12px 24px;
    white-space: nowrap;
    background: var(--accent);
    color: white;
}

.input-group .btn:hover {
    background: var(--accent-hover);
}

.newsletter-message {
    min-height: 24px;
    font-size: 0.9rem;
    margin-top: var(--space-sm);
    margin-bottom: 0;
    font-weight: 500;
}

.newsletter-message.success {
    color: var(--success);
}

.newsletter-message.error {
    color: var(--critical);
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: var(--text-subtle);
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--border);
    background: var(--bg-warm);
}

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

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand img {
    height: 22px;
    width: auto;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.footer-copy {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

/* Responsive - Tablet */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: var(--space-2xl);
        min-height: auto;
        gap: var(--space-lg);
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .phone-mockup {
        width: 260px;
        height: 520px;
    }
    
    .social-proof {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-content p {
        max-width: 100%;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .features {
        margin-left: var(--space-sm);
        margin-right: var(--space-sm);
    }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    :root {
        --space-lg: 1.25rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
        --nav-logo-height: calc(0.85rem * 1.2 + 16px);
    }
    
    /* Nav */
    .nav {
        padding: var(--space-sm) 0;
    }
    
    .nav-inner {
        padding: 0 var(--space-sm);
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    /* Hero */
    .hero {
        padding: 5rem var(--space-sm) var(--space-xl);
        gap: var(--space-md);
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.15;
    }
    
    .hero-sub {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero-sub br {
        display: none;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
        border-radius: 36px;
        padding: 8px;
    }
    
    .phone-screen {
        border-radius: 30px;
        padding: var(--space-sm);
    }
    
    .app-header {
        margin-bottom: var(--space-sm);
        padding-bottom: 8px;
    }
    
    .app-title {
        font-size: 0.9rem;
    }
    
    .app-count {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .event-card {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .event-badge {
        font-size: 0.55rem;
        margin-bottom: 4px;
    }
    
    .event-city {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    .event-title {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .event-time {
        font-size: 0.65rem;
    }
    
    .floating-dot {
        display: none;
    }
    
    .social-proof {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .social-proof-divider {
        display: none;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    /* Features */
    .features {
        padding: var(--space-2xl) var(--space-sm);
        border-radius: var(--radius-lg);
    }
    
    .section-label {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .features-header h2,
    .how-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .feature-card {
        padding: var(--space-md);
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--space-sm);
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* How it works */
    .how-it-works {
        padding: var(--space-2xl) var(--space-sm);
    }
    
    .steps {
        gap: var(--space-md);
    }
    
    .step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .step-number {
        font-size: 1.5rem;
        min-width: 40px;
        opacity: 0.5;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* Download */
    .download {
        padding: var(--space-2xl) var(--space-sm);
    }
    
    .download-content {
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
    }
    
    .download h2 {
        font-size: 1.75rem;
    }
    
    .download p {
        font-size: 0.95rem;
    }
    
    .download p br {
        display: none;
    }
    
    .app-store-badge svg {
        width: 150px;
        height: 50px;
    }
    
    /* Footer */
    .footer {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .footer-inner {
        gap: var(--space-sm);
    }
    
    .footer-links {
        gap: var(--space-sm);
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copy {
        font-size: 0.75rem;
    }
    
    /* Newsletter mobile */
    .newsletter {
        padding: var(--space-2xl) var(--space-sm);
    }
    
    .newsletter-content {
        padding: var(--space-md);
        border-radius: var(--radius-lg);
    }
    
    .newsletter h2 {
        font-size: 1.4rem;
    }
    
    .newsletter p {
        font-size: 0.9rem;
    }
    
    .input-group {
        flex-direction: column;
        padding: 8px;
    }
    
    .input-group input {
        padding: 12px;
        text-align: center;
    }
    
    .input-group .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .features-header h2,
    .how-header h2,
    .download h2 {
        font-size: 1.5rem;
    }
}
