/* ========================================
   MonstraTask Landing Page - Styles
   A warm, playful, gamified aesthetic
   ======================================== */

/* CSS Variables */
:root {
    /* Brand Colors - Warm & Playful */
    --gold-primary: #F5B832;
    --gold-light: #FFD466;
    --gold-dark: #D49A1A;

    --blue-primary: #4A9FD4;
    --blue-light: #7BC0E8;
    --blue-dark: #2D7BAD;

    --green-accent: #4CAF50;
    --orange-accent: #FF8A50;
    --purple-accent: #9C6ADE;

    /* Backgrounds */
    --bg-cream: #FDF8F0;
    --bg-cream-dark: #F5EDE0;
    --bg-warm-white: #FFFCF7;

    /* Text Colors */
    --text-primary: #2D3436;
    --text-secondary: #5D6D7E;
    --text-muted: #8E9AAB;

    /* UI Colors */
    --card-bg: #FFFFFF;
    --card-shadow: 0 4px 24px rgba(45, 52, 54, 0.08);
    --card-shadow-hover: 0 8px 40px rgba(45, 52, 54, 0.12);

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Borders */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-cream: #1A1D21;
    --bg-cream-dark: #12151A;
    --bg-warm-white: #22262D;

    --text-primary: #F5F5F5;
    --text-secondary: #B0B8C4;
    --text-muted: #6B7280;

    --card-bg: #2A2F38;
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-medium), color var(--transition-medium);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', cursive;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(253, 248, 240, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background var(--transition-medium), box-shadow var(--transition-medium);
}

[data-theme="dark"] .navbar {
    background: rgba(26, 29, 33, 0.85);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-cta {
    background: var(--gold-primary);
    color: var(--text-primary) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.nav-cta:hover {
    background: var(--gold-dark);
    color: white !important;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--card-bg);
    border: 2px solid var(--bg-cream-dark);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-left: 16px;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--gold-primary);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold-primary);
}

.sun-icon { display: block; }
.moon-icon { display: none; }

[data-theme="dark"] .sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: block; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--card-shadow);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-cream-dark);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--orange-accent) 100%);
    top: -200px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--purple-accent) 100%);
    bottom: -100px;
    left: -100px;
    animation: pulse 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--blue-primary) 100%);
    top: 40%;
    left: 30%;
    animation: pulse 12s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--card-shadow);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.badge-icon {
    width: 18px;
    height: 18px;
    fill: var(--gold-primary);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--orange-accent) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #1A1D21;
    box-shadow: 0 4px 16px rgba(245, 184, 50, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 184, 50, 0.5);
}

.btn-store {
    padding: 12px 20px;
}

.store-icon {
    width: 28px;
    height: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.store-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.8;
    font-family: 'Nunito', sans-serif;
}

.store-name {
    font-size: 1rem;
    font-weight: 700;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--bg-cream-dark);
}

.btn-ghost:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.hero-secondary-cta {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.lab-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.btn-ghost:hover .lab-icon {
    stroke: var(--gold-primary);
}

/* Coming Soon Box */
.coming-soon-box {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
    max-width: 400px;
}

.coming-soon-title {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.coming-soon-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.coming-soon-box .btn {
    width: 100%;
    justify-content: center;
}

.coming-soon-light {
    background: var(--card-bg);
    border: 2px solid var(--bg-cream-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-monsters-showcase {
    position: relative;
    max-width: 550px;
    width: 100%;
}

.monsters-hero-img {
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    animation: rock 4s ease-in-out infinite;
    border-radius: var(--radius-lg);
}

@keyframes rock {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 18px; }
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
    padding: var(--section-padding) 0;
    background: var(--bg-warm-white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    color: #1A1D21;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.card-icon {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold-dark);
    position: relative;
    z-index: 1;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    border-radius: var(--radius-md);
    opacity: 0.15;
    transition: all var(--transition-medium);
}

.benefit-card:hover .icon-bg {
    opacity: 0.25;
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--orange-accent) 100%);
    border-radius: 50%;
    opacity: 0.08;
    transition: all var(--transition-medium);
}

.benefit-card:hover .card-decoration {
    transform: scale(1.2);
    opacity: 0.12;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #1A1D21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(245, 184, 50, 0.4);
}

.step-content {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-medium);
}

.step:hover .step-content {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.step-phone {
    width: 180px;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.step-phone img {
    width: 100%;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    width: 80px;
    color: var(--gold-primary);
    margin-top: 100px;
    opacity: 0.5;
}

/* ========================================
   Social Proof Section
   ======================================== */
.social-proof {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-warm-white) 0%, var(--bg-cream) 100%);
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.proof-visual {
    position: relative;
}

.proof-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow-hover);
    max-width: 400px;
    margin: 0 auto;
}

.proof-image-wide {
    max-width: 100%;
    width: 100%;
}

.proof-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--orange-accent) 100%);
    color: #1A1D21;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 32px rgba(245, 184, 50, 0.4);
}

.badge-number {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.proof-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.proof-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
}

.audience-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.tag-icon {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--blue-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Email Capture Section
   ======================================== */
.email-capture {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.email-card {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--purple-accent) 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.email-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: 20%;
}

.deco-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 10%;
}

.email-content {
    position: relative;
    z-index: 1;
}

.email-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.email-badge-icon {
    width: 18px;
    height: 18px;
    stroke: white;
}

.email-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: white;
    margin-bottom: 12px;
}

.email-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 500px;
}

.email-form {
    max-width: 480px;
}

/* Device Toggle */
.device-toggle {
    margin-bottom: 20px;
    text-align: center;
}

.toggle-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.toggle-options {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.toggle-option {
    cursor: pointer;
}

.toggle-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.toggle-btn svg {
    width: 20px;
    height: 20px;
}

.toggle-option:hover .toggle-btn {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.toggle-option input:checked + .toggle-btn {
    background: white;
    color: var(--blue-primary);
    border-color: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.toggle-option input:checked + .toggle-btn svg {
    fill: var(--blue-primary);
}

.input-group {
    display: flex;
    gap: 12px;
    background: white;
    padding: 8px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.input-group input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: var(--text-primary);
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group .btn {
    white-space: nowrap;
}

.input-group .btn svg {
    width: 20px;
    height: 20px;
}

.form-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lock-icon {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.7);
}

.email-visual {
    position: relative;
    z-index: 1;
}

.email-monster {
    width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: rock 4s ease-in-out infinite;
}

/* ========================================
   Download Section
   ======================================== */
.download-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-cream-dark) 100%);
    text-align: center;
}

.download-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.download-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-light {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 2px solid var(--bg-cream-dark);
    box-shadow: var(--card-shadow);
}

.btn-light:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
}

.btn-large .store-icon {
    width: 32px;
    height: 32px;
}

.btn-large .store-name {
    font-size: 1.1rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-cream-dark);
    padding: 60px 0 30px;
}

[data-theme="dark"] .footer {
    background: var(--bg-cream-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-primary);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill var(--transition-fast);
}

.social-links a:hover svg {
    fill: #1A1D21;
}

/* ========================================
   Legal Pages (Privacy Policy & Terms)
   ======================================== */
.legal-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--bg-cream);
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--card-shadow);
    margin-bottom: 24px;
}

.legal-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-primary);
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.legal-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 24px;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.legal-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--card-bg);
    padding: 8px 16px;
    border-radius: 100px;
    box-shadow: var(--card-shadow);
}

.legal-date svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-primary);
}

/* Legal Content Layout */
.legal-content {
    padding: 60px 0 var(--section-padding);
    background: var(--bg-warm-white);
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: 100px;
}

.toc-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--card-shadow);
}

.toc-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-cream-dark);
}

.toc-card nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    line-height: 1.4;
}

.toc-link:hover {
    background: linear-gradient(135deg, rgba(245, 184, 50, 0.1), rgba(255, 212, 102, 0.1));
    color: var(--gold-dark);
}

/* Legal Main Content */
.legal-main {
    max-width: 820px;
}

.legal-intro-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    box-shadow: var(--card-shadow);
    margin-bottom: 40px;
    border-left: 4px solid var(--gold-primary);
}

.legal-intro-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 48px;
    scroll-margin-top: 100px;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.legal-section-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #1A1D21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 184, 50, 0.35);
}

.legal-section h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-section h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.legal-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.98rem;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
}

.legal-section ul li strong {
    color: var(--text-primary);
}

/* Legal Grid */
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 24px 0;
}

.legal-grid-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-medium);
}

.legal-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.legal-grid-item h4 {
    font-size: 1.05rem;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.legal-grid-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.legal-grid-item ul {
    margin-bottom: 0;
}

.legal-grid-item ul li {
    font-size: 0.93rem;
    margin-bottom: 8px;
}

.legal-grid-warning {
    border-top: 3px solid var(--orange-accent);
}

/* Legal Highlight Box */
.legal-highlight {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 24px 0;
    border-left: 4px solid var(--gold-primary);
    box-shadow: var(--card-shadow);
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.98rem;
}

.legal-highlight strong {
    color: var(--text-primary);
}

.legal-highlight-warning {
    border-left-color: var(--orange-accent);
    font-size: 0.88rem;
    line-height: 1.9;
}

/* Legal Link */
.legal-link {
    color: var(--blue-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.legal-link:hover {
    color: var(--gold-primary);
    text-decoration-color: var(--gold-primary);
}

/* Legal Contact Card */
.legal-contact-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--card-shadow);
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-primary);
    min-width: 28px;
}

.contact-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }

    .toc-card nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-secondary-cta {
        text-align: center;
    }

    .floating-monsters {
        max-width: 400px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .proof-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .proof-visual {
        order: -1;
    }

    .audience-tags {
        justify-content: center;
    }

    .email-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
    }

    .email-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .email-form {
        margin: 0 auto;
    }

    .email-visual {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }

    .legal-hero {
        padding: 110px 0 60px;
    }

    .toc-card nav {
        grid-template-columns: 1fr;
    }

    .legal-intro-card {
        padding: 24px;
    }

    .legal-section-header {
        gap: 12px;
    }

    .legal-section-number {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .phone-frame {
        width: 220px;
    }

    .floating-monsters {
        max-width: 320px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-store {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .step-connector {
        display: none;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .legal-contact-card {
        padding: 24px 20px;
    }

    .legal-highlight {
        padding: 20px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .proof-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
