:root {
    /* DuoNota Design System - Matching App Theme */
    /* Primary Brand Colors */
    --brand-pink: #D6457A;
    --brand-pink-dark: #B83868;
    --brand-pink-light: #FF8AAE;
    --brand-alt: #5B9BE0;
    --brand-alt-light: #88CFFF;

    /* Legacy colors for compatibility */
    --primary: #D6457A;
    --primary-dark: #B83868;
    --primary-light: #FF8AAE;
    --accent: #5B9BE0;
    --accent-light: #88CFFF;

    /* Note/Widget Background */
    --note-bg: #FFF9F9;
    --note-bg-warm: #FFF5B2;

    /* Text Colors - WCAG AA Compliant */
    --text-primary: #1C0D16;
    --text-secondary: #5E3A4F;
    --text-muted: #C4B8C0;

    /* Surface Colors */
    --surface: #FFFFFF;
    --surface-elevated: #FFFFFF;
    --bg: #FFF9FA;
    --bg-gradient: #FFE6E8;

    /* Border Colors */
    --border: #E8DDE3;

    /* Shadows - Pink-tinted for warmth */
    --shadow: 0 10px 40px rgba(214, 69, 122, 0.08);
    --shadow-lg: 0 20px 60px rgba(214, 69, 122, 0.12);
    --shadow-pink: 0 8px 32px rgba(232, 153, 141, 0.15);

    /* Lumo Glow */
    --lumo-glow: rgba(232, 153, 141, 0.12);
    --lumo-glow-soft: rgba(232, 153, 141, 0.08);

    /* Spacing Scale (4px base) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;

    /* Border Radius Scale */
    --radius-xs: 4px;
    --radius-s: 8px;
    --radius-m: 12px;
    --radius-l: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: var(--space-5) 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    user-select: none;
}

.logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--brand-pink);
}

.btn-download-nav {
    background: var(--brand-pink);
    color: white !important;
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-m);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download-nav:hover {
    background: var(--brand-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 69, 122, 0.4);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #FFF3F4 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.8;
    font-weight: 500;
}

.hero-supporting {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-m);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--brand-pink);
    color: white;
    box-shadow: 0 4px 20px rgba(214, 69, 122, 0.3);
}

.btn-primary:hover {
    background: var(--brand-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(214, 69, 122, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--brand-pink);
    color: var(--brand-pink);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: 18px;
}

.hero-badges {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

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

/* =====================================================
   HERO VISUAL & LUMO MASCOT
   ===================================================== */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lumo Hero Mascot */
.lumo-hero {
    position: absolute;
    top: -60px;
    right: -40px;
    width: 180px;
    height: 180px;
    z-index: 10;
    animation: lumoFloat 4s ease-in-out infinite;
}

.lumo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    border-radius: var(--radius-full);
    background: radial-gradient(
        circle,
        rgba(232, 153, 141, 0.15) 0%,
        rgba(232, 153, 141, 0.08) 40%,
        rgba(232, 153, 141, 0.03) 70%,
        transparent 100%
    );
    animation: lumoGlow 3s ease-in-out infinite alternate;
    pointer-events: none;
}

.lumo-sprite {
    width: 100%;
    height: 100%;
    background-image: url('assets/lumo/tile000.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 8px 24px rgba(232, 153, 141, 0.25));
}

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

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

/* Phone Mockup & Widgets */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
}

.widget-demo {
    position: absolute;
    background: var(--note-bg-warm);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 260px;
    animation: float 4s ease-in-out infinite;
}

.widget-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    animation-delay: 0s;
}

.widget-2 {
    top: 220px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #FFECB3 0%, #FFD54F 100%);
}

.widget-3 {
    top: 420px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    animation-delay: 3s;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
    font-size: 13px;
}

.widget-author {
    font-weight: 600;
    color: var(--text-primary);
}

.widget-time {
    color: var(--text-secondary);
    font-size: 11px;
    opacity: 0.7;
}

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

.handwritten {
    font-family: 'Caveat', cursive;
    font-size: 24px;
    line-height: 1.4;
    margin: var(--space-1) 0;
}

.handwritten.small {
    font-size: 20px;
}

.checklist-title {
    font-weight: 600;
    margin-bottom: var(--space-2);
    font-size: 14px;
}

.checklist-item {
    font-size: 14px;
    margin: var(--space-1) 0;
}

.checklist-item.checked {
    opacity: 0.6;
}

.checklist-more {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: var(--space-2);
}

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

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features {
    padding: 120px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-20);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

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

.feature-card {
    background: white;
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

/* Lumo Feature Icons */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    position: relative;
}

.lumo-feature {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 4px 12px rgba(232, 153, 141, 0.2));
}

.lumo-sleep {
    background-image: url('assets/lumo/tile024.png');
    animation: lumoBreathe 4s ease-in-out infinite;
}

.lumo-glow-pulse {
    background-image: url('assets/lumo/tile016.png');
    animation: lumoGlowPulse 2s ease-in-out infinite;
}

.lumo-heart {
    background-image: url('assets/lumo/tile056.png');
    animation: lumoHeartbeat 1.5s ease-in-out infinite;
}

@keyframes lumoBreathe {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes lumoGlowPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 12px rgba(232, 153, 141, 0.2)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 8px 24px rgba(232, 153, 141, 0.4)); }
}

@keyframes lumoHeartbeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.1); }
    30% { transform: scale(1); }
    45% { transform: scale(1.08); }
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   MEET LUMO SECTION
   ===================================================== */
.meet-lumo {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFF3F4 0%, var(--bg) 100%);
    overflow: hidden;
}

.lumo-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.lumo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

.lumo-main-display {
    position: relative;
    width: 200px;
    height: 200px;
}

.lumo-glow-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    border-radius: var(--radius-full);
    background: radial-gradient(
        circle,
        rgba(232, 153, 141, 0.2) 0%,
        rgba(232, 153, 141, 0.12) 30%,
        rgba(232, 153, 141, 0.05) 60%,
        transparent 100%
    );
    animation: lumoGlowLarge 3s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes lumoGlowLarge {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.lumo-sprite-large {
    width: 100%;
    height: 100%;
    background-image: url('assets/lumo/tile000.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 12px 40px rgba(232, 153, 141, 0.3));
    animation: lumoFloatLarge 4s ease-in-out infinite;
}

@keyframes lumoFloatLarge {
    0%, 100% {
        transform: translateY(0px) rotate(-3deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.lumo-states {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    max-width: 320px;
}

.lumo-state-btn {
    padding: var(--space-2) var(--space-4);
    border: 2px solid var(--border);
    background: white;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.lumo-state-btn:hover {
    border-color: var(--brand-pink-light);
    color: var(--brand-pink);
}

.lumo-state-btn.active {
    background: var(--brand-pink);
    border-color: var(--brand-pink);
    color: white;
}

.lumo-content {
    max-width: 500px;
}

.lumo-title {
    text-align: left;
    margin-bottom: var(--space-2);
}

.lumo-subtitle {
    font-size: 22px;
    color: var(--brand-pink);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.lumo-description {
    margin-bottom: var(--space-8);
}

.lumo-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

.lumo-description p:last-child {
    margin-bottom: 0;
}

.lumo-traits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.lumo-trait {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: white;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow);
}

.trait-icon {
    font-size: 24px;
}

.trait-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .lumo-intro {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }

    .lumo-showcase {
        order: -1;
    }

    .lumo-content {
        max-width: 100%;
    }

    .lumo-title {
        text-align: center;
    }

    .lumo-traits {
        align-items: center;
    }

    .lumo-trait {
        max-width: 300px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lumo-main-display {
        width: 160px;
        height: 160px;
    }

    .lumo-states {
        max-width: 280px;
    }

    .lumo-state-btn {
        padding: var(--space-1) var(--space-3);
        font-size: 12px;
    }
}

/* =====================================================
   PRIVACY SECTION
   ===================================================== */
.privacy {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(214, 69, 122, 0.05), rgba(91, 155, 224, 0.05));
}

.privacy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
}

/* =====================================================
   EMOTIONAL STORY SECTION
   ===================================================== */
.emotional-story {
    padding: 120px 0;
}

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

.story-content p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.story-content p:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #FFF3F4 100%);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    margin-bottom: var(--space-20);
}

.step-reverse {
    grid-template-columns: 80px 1fr 1fr;
}

.step-reverse .step-content {
    order: 2;
}

.step-reverse .step-visual {
    order: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--brand-pink);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: white;
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 18px;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lumo Step Icons */
.lumo-step {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 8px 24px rgba(232, 153, 141, 0.25));
}

.lumo-curious {
    background-image: url('assets/lumo/tile048.png');
    animation: lumoCurious 2s ease-in-out infinite;
}

.lumo-sparkle {
    background-image: url('assets/lumo/tile032.png');
    animation: lumoSparkle 1.5s ease-in-out infinite;
}

.lumo-heart-step {
    background-image: url('assets/lumo/tile056.png');
    animation: lumoHeartbeat 1.5s ease-in-out infinite;
}

@keyframes lumoCurious {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}

@keyframes lumoSparkle {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 8px 24px rgba(232, 153, 141, 0.25)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 12px 32px rgba(232, 153, 141, 0.4)); }
}

/* =====================================================
   USE CASES SECTION
   ===================================================== */
.use-cases {
    padding: 120px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.use-case {
    text-align: center;
    padding: var(--space-10) var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.use-case-icon {
    font-size: 64px;
    margin-bottom: var(--space-5);
}

.use-case h4 {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.use-case p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* =====================================================
   PREMIUM SECTION
   ===================================================== */
.premium-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF3F4 0%, #F5E6E0 100%);
}

.premium-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-16);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.premium-card {
    background: white;
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-pink-light);
}

.premium-icon {
    font-size: 48px;
    margin-bottom: var(--space-4);
    display: block;
}

.premium-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.premium-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-alt));
    border-radius: var(--radius-xl);
    margin: var(--space-20) auto;
    max-width: 1200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-16);
    text-align: center;
}

.stat {
    color: white;
}

.stat-value {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
    padding: 120px 0;
    background: var(--bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-10);
}

.testimonial {
    background: white;
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--note-bg-warm);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #FFF3F4 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Lumo CTA Mascot */
.lumo-cta {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-8);
    position: relative;
}

.lumo-cta .lumo-glow {
    width: 160%;
    height: 160%;
}

.lumo-cta .lumo-sprite {
    background-image: url('assets/lumo/tile040.png');
    animation: lumoCelebrate 1.5s ease-in-out infinite;
}

@keyframes lumoCelebrate {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1.15) rotate(0deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.cta h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: var(--space-5);
    color: var(--text-primary);
}

.cta p {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: var(--space-10);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-6);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-20) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-20);
    margin-bottom: var(--space-16);
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-2);
    font-weight: 500;
}

.footer-privacy {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 14px;
}

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

.footer-column h4 {
    color: white;
    font-weight: 700;
    margin-bottom: var(--space-5);
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: var(--space-3);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--brand-pink-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        text-align: center;
    }

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

    .hero-visual {
        height: 700px;
    }

    .lumo-hero {
        top: -60px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-number {
        margin: 0 auto var(--space-6);
    }

    .step-reverse .step-content,
    .step-reverse .step-visual {
        order: initial;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .nav-links {
        gap: var(--space-5);
        font-size: 14px;
    }

    .btn {
        padding: var(--space-3) var(--space-6);
        font-size: 14px;
    }

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

    .cta h2 {
        font-size: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .lumo-hero {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .nav-links a:not(.btn-download-nav) {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .widget-demo {
        width: 90%;
        max-width: 280px;
        padding: var(--space-4);
    }

    .hero-visual {
        height: 650px;
    }

    .phone-mockup {
        max-width: 320px;
    }

    .lumo-hero {
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .lumo-cta {
        width: 64px;
        height: 64px;
    }

    .feature-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .lumo-step {
        width: 80px;
        height: 80px;
    }
}
