/* ==========================================================================
   DESIGN SYSTEM APPLIED - Design Tokens
   ========================================================================== */

:root {
    /* === COLORS === */
    --primary: #ffc107;
    --primary-dark: #e6ac00;
    --primary-light: #ffdb58;

    --dark: #111111;
    --dark-medium: #222222;
    --dark-light: #333333;

    --light: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #aaaaaa;
    --gray-dark: #555555;

    --error: #ff5252;
    --success: #4caf50;

    /* === TYPOGRAPHY === */
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;

    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.75rem;     /* 28px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */

    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.7;

    /* === SPACING === */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 6rem;     /* 96px */

    /* === BORDERS & SHADOWS === */
    --radius-sm: 0.5rem;   /* 8px */
    --radius-md: 0.75rem;  /* 12px */
    --radius-lg: 1rem;     /* 16px */
    --radius-xl: 1.25rem;  /* 20px */
    --radius-full: 50%;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 193, 7, 0.3);

    /* === TRANSITIONS === */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

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

body {
    font-family: var(--font-main);
    color: var(--dark-light);
    background-color: var(--gray-light);
    line-height: var(--line-height-normal);
    font-size: var(--font-size-base);
}

body.policy-page,
body.terms-page {
    color: var(--light);
    background-color: var(--dark-medium);
    min-height: 100vh;
}

/* ==========================================================================
   Accessibility & Focus Styles
   ========================================================================== */

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

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    top: var(--space-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.header {
    background: var(--dark);
    padding: var(--space-md) 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--dark-light);
}

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

.logo {
    color: var(--light);
    text-decoration: none;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
}

.logo-highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: var(--font-size-base);
}

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

/* ==========================================================================
   Policy & Terms Pages
   ========================================================================== */

.policy-content {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--light);
    margin-bottom: var(--space-sm);
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: var(--line-height-tight);
}

.page-header .subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.7);
}

.content-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.content-section h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    margin-bottom: var(--space-md);
    border-bottom: 2px solid var(--primary);
    padding-bottom: var(--space-xs);
    line-height: var(--line-height-tight);
}

.content-section h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
    margin: var(--space-lg) 0 var(--space-sm) 0;
}

.content-section p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
}

.content-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.content-section li {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.content-section li::before {
    content: '•';
    color: var(--primary);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

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

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

.content-section strong {
    color: var(--light);
    font-weight: 700;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
}

.fade-up {
    transform: translateY(30px);
}

.fade-up.animate-in {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-left.animate-in {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(30px);
}

.fade-right.animate-in {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.9);
}

.scale-in.animate-in {
    transform: scale(1);
}

.slide-down {
    transform: translateY(-30px);
}

.slide-down.animate-in {
    transform: translateY(0);
}

/* Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.26s; }
.delay-4 { transition-delay: 0.34s; }
.delay-5 { transition-delay: 0.42s; }
.delay-6 { transition-delay: 0.5s; }
.delay-7 { transition-delay: 0.58s; }
.delay-8 { transition-delay: 0.66s; }

.cta-original-delay-1 { transition-delay: 0.2s; }
.cta-original-delay-2 { transition-delay: 0.4s; }
.cta-original-delay-3 { transition-delay: 0.6s; }

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-medium);
    color: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px;
}

.hero-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(1200px circle at 15% 15%, rgba(80, 80, 80, 0.25) 0%, rgba(34, 34, 34, 0) 70%),
        radial-gradient(1200px circle at 85% 85%, rgba(80, 80, 80, 0.25) 0%, rgba(34, 34, 34, 0) 70%),
        radial-gradient(800px circle at 50% 50%, rgba(255, 193, 7, 0.08) 0%, rgba(34, 34, 34, 0) 70%);
    z-index: 0;
    filter: blur(10px);
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(3px circle at 50px 150px, var(--primary) 0%, rgba(255,193,7,0) 100%),
        radial-gradient(2px circle at 150px 300px, var(--primary) 0%, rgba(255,193,7,0) 100%),
        radial-gradient(2px circle at 300px 200px, var(--primary) 0%, rgba(255,193,7,0) 100%),
        radial-gradient(3px circle at 400px 450px, var(--primary) 0%, rgba(255,193,7,0) 100%),
        radial-gradient(2px circle at 500px 100px, var(--primary) 0%, rgba(255,193,7,0) 100%),
        radial-gradient(3px circle at 700px 300px, var(--primary) 0%, rgba(255,193,7,0) 100%),
        radial-gradient(2px circle at 900px 200px, var(--primary) 0%, rgba(255,193,7,0) 100%),
        radial-gradient(3px circle at 1100px 400px, var(--primary) 0%, rgba(255,193,7,0) 100%);
    opacity: 0.6;
    filter: blur(0.5px);
    animation: floatParticles 20s ease-in-out infinite alternate;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
    100% {
        transform: translateY(5px) translateX(-10px);
    }
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 20px;
    margin-top: -40px;
}

.hero-title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.5px;
    text-shadow: var(--shadow-sm);
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.emphasis {
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    letter-spacing: 1px;
}

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

.highlight {
    display: inline-block;
    position: relative;
    color: var(--dark);
    padding: 5px 15px;
    font-weight: bold;
    border-radius: 4px;
    transform: rotate(-1deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1;
    overflow: hidden;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    z-index: -1;
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    animation: marker-draw 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

@keyframes marker-draw {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

/* ==========================================================================
   Countdown Timer
   ========================================================================== */

.countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 15px;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--primary);
    padding: 13px 9px;
    border-radius: 8px;
    min-width: 75px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.countdown-number {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 3px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.countdown-label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.form-header {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.form-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
}

.form-container {
    max-width: 540px;
    margin: 0 auto;
    padding: 25px 35px;
    background: rgba(0,0,0,0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.form-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,193,7,0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-color: rgba(255,193,7,0.3);
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.form-field {
    position: relative;
}

.field-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(17, 17, 17, 0.6);
    font-size: 16px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: var(--space-sm) var(--space-md) var(--space-sm) 45px;
    border: none;
    background-color: rgba(255,255,255,0.95);
    color: var(--dark);
    font-size: var(--font-size-base);
    outline: none;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,0.2);
    min-height: 48px;
}

input[type="text"]:focus,
input[type="email"]:focus {
    background-color: var(--light);
    box-shadow: var(--shadow-md), inset 0 0 0 2px var(--primary);
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
    color: rgba(17, 17, 17, 0.4);
    font-weight: 400;
}

.submit-button {
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-xs);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    border: none;
    cursor: pointer;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    box-shadow: var(--shadow-glow);
    min-height: 48px;
}

.submit-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.submit-button:hover:before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 172, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.button-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(3px);
}

.privacy-text {
    font-size: 12px;
    margin-top: 16px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Scroll Indicator
   ========================================================================== */

.scroll-indicator {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
    z-index: 10;
    text-transform: uppercase;
}

.scroll-text {
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

/* ==========================================================================
   Reading Challenge Section
   ========================================================================== */

.reading-challenge-section {
    padding: 110px 20px 50px 20px;
    background: var(--dark-medium);
    position: relative;
    overflow: hidden;
    color: var(--light);
}

.reading-challenge-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(800px circle at 20% 20%, rgba(255, 193, 7, 0.08) 0%, rgba(34, 34, 34, 0) 60%),
        radial-gradient(600px circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, rgba(34, 34, 34, 0) 60%);
    z-index: 0;
}

.reading-challenge-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

.challenges-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenge-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    transition: all 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.challenge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.challenge-icon {
    background-color: rgba(255, 50, 50, 0.2);
    border-radius: var(--radius-full);
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    box-shadow: 0 5px 15px rgba(255, 50, 50, 0.3);
    border: 1px solid rgba(255, 50, 50, 0.4);
    color: var(--error);
    font-size: var(--font-size-xl);
    position: relative;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px 0px rgba(255, 50, 50, 0.5);
    }
    100% {
        box-shadow: 0 0 15px 5px rgba(255, 50, 50, 0.8);
    }
}

.challenge-content {
    flex-grow: 1;
}

.challenge-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--primary);
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Painful Truth Section
   ========================================================================== */

.painful-truth {
    background: linear-gradient(135deg,
        rgba(255, 87, 34, 0.15) 0%,
        rgba(255, 152, 0, 0.12) 25%,
        rgba(255, 193, 7, 0.1) 50%,
        rgba(255, 152, 0, 0.12) 75%,
        rgba(255, 87, 34, 0.15) 100%);
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    margin: 50px 0 20px 0;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 50px rgba(255, 193, 7, 0.2);
    transition: all 0.8s ease-out;
}

.painful-truth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(3px circle at 20% 30%, rgba(255, 193, 7, 0.6) 0%, transparent 50%),
        radial-gradient(2px circle at 40% 70%, rgba(255, 152, 0, 0.8) 0%, transparent 50%),
        radial-gradient(2px circle at 60% 20%, rgba(255, 193, 7, 0.7) 0%, transparent 50%),
        radial-gradient(3px circle at 80% 80%, rgba(255, 152, 0, 0.6) 0%, transparent 50%),
        radial-gradient(2px circle at 30% 50%, rgba(255, 193, 7, 0.5) 0%, transparent 50%);
    animation: timeParticles 8s linear infinite;
    opacity: 0.4;
    z-index: 0;
}

@keyframes timeParticles {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-20px) rotate(360deg);
        opacity: 0.2;
    }
}

.truth-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9800 100%);
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 8px 20px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    animation: badgePulse 2s ease-in-out infinite alternate;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow:
            0 8px 20px rgba(255, 193, 7, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        transform: scale(1.05);
        box-shadow:
            0 12px 25px rgba(255, 193, 7, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.truth-badge::before {
    content: '⏳';
    font-size: 16px;
    animation: hourglassFlip 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes hourglassFlip {
    0%, 80% { transform: rotate(0deg); }
    90%, 100% { transform: rotate(180deg); }
}

.painful-truth h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: var(--light);
    position: relative;
    z-index: 2;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 193, 7, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
    line-height: 1.3;
}

@keyframes textGlow {
    0% {
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(255, 193, 7, 0.3);
    }
    100% {
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.7),
            0 0 30px rgba(255, 193, 7, 0.6);
    }
}

.time-sand {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sand-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary), #ff9800);
    border-radius: 50%;
    opacity: 0;
    animation: sandFall 4s linear infinite;
}

.sand-particle:nth-child(1) { left: 15%; animation-delay: 0s; }
.sand-particle:nth-child(2) { left: 25%; animation-delay: 0.8s; }
.sand-particle:nth-child(3) { left: 35%; animation-delay: 1.6s; }
.sand-particle:nth-child(4) { left: 45%; animation-delay: 0.4s; }
.sand-particle:nth-child(5) { left: 55%; animation-delay: 1.2s; }
.sand-particle:nth-child(6) { left: 65%; animation-delay: 2s; }
.sand-particle:nth-child(7) { left: 75%; animation-delay: 0.6s; }
.sand-particle:nth-child(8) { left: 85%; animation-delay: 1.4s; }

@keyframes sandFall {
    0% {
        top: -10px;
        opacity: 0;
        transform: scale(0.5);
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: scale(0.3);
    }
}

/* ==========================================================================
   Problems & Solutions Section
   ========================================================================== */

.problems-intro {
    text-align: center;
    margin: 40px 0 20px 0;
    position: relative;
    z-index: 2;
}

.problems-intro h4 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.problems-intro h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.solution-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.8s ease-out;
    z-index: 1;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

.solution-card:hover .solution-icon {
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    transform: scale(1.1);
}

.solution-icon-wrapper {
    margin: 0 auto 25px;
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon-wrapper::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 193, 7, 0.1));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.solution-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.solution-card h3::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.solution-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.15) 0%, rgba(34, 34, 34, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.solution-card:hover .card-glow {
    opacity: 1;
}

/* ==========================================================================
   Social Proof Section
   ========================================================================== */

.social-proof {
    background-color: var(--dark);
    padding: 30px;
    text-align: center;
    color: var(--light);
    overflow: hidden;
}

.social-proof p {
    margin-bottom: 30px;
    font-size: 20px;
}

.logos-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
    padding: 10px 0;
}

.logos-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo {
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo img {
    height: 60px;
    max-width: 180px;
    filter: grayscale(100%) brightness(1.5) contrast(0.8);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    border: 2px solid var(--primary);
}

.cta-content h3,
.cta-main-question {
    font-size: 32px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cta-content p,
.cta-explanation {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.hanging-bulb {
    position: absolute;
    width: 60px;
    height: 100px;
    z-index: 2;
    animation: bulbSwing 3s ease-in-out infinite;
    transform-origin: top center;
}

.hanging-bulb.left {
    left: 20%;
    top: 10px;
}

.hanging-bulb.right {
    right: 20%;
    top: 10px;
}

.bulb-wire {
    width: 3px;
    height: 50px;
    background-color: #aaa;
    margin: 0 auto;
}

.bulb-base {
    width: 20px;
    height: 10px;
    background-color: #444;
    margin: 0 auto;
    border-radius: 3px 3px 0 0;
}

.bulb-light {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    margin: 0 auto;
    box-shadow: 0 0 30px 10px rgba(255, 215, 0, 0.7);
    animation: bulbPulse 2s infinite;
}

.hanging-bulb.left .bulb-light {
    animation-delay: 0.7s;
}

@keyframes bulbPulse {
    0% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.4; transform: scale(0.95); }
}

@keyframes bulbSwing {
    0% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
    100% { transform: rotate(-1deg); }
}

.cta-button-container {
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

.cta-button {
    display: inline-block;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(230, 172, 0, 0.3);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(230, 172, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

/* ==========================================================================
   Section Dividers
   ========================================================================== */

.section-divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 5;
    overflow: hidden;
}

.section-divider.top-wave {
    top: -1px;
    transform: rotate(180deg);
}

.section-divider.bottom-wave {
    bottom: -1px;
}

.divider-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.divider-svg.dark-to-darker path {
    fill: var(--dark);
}

.divider-svg.hero-to-challenge path {
    fill: var(--dark-medium);
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 30px 0 40px;
    text-align: center;
    position: relative;
    border-top: none;
}

.footer-divider {
    height: 1px;
    background-color: var(--gray-dark);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto var(--space-md);
    position: relative;
    top: 0;
}

footer p {
    opacity: 0.7;
    font-size: var(--font-size-sm);
    margin: var(--space-xs) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

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

.footer-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
}

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

.footer-right a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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

.heart {
    display: inline-block;
    color: var(--error);
    animation: heartbeat 1.5s ease infinite;
    transform-origin: center;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.25);
    }
    30% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.15);
    }
    60% {
        transform: scale(1);
    }
}

/* ==========================================================================
   Success Popup
   ========================================================================== */

.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.success-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-popup {
    background: linear-gradient(145deg, var(--dark-medium), var(--dark));
    border-radius: 20px;
    padding: 40px 35px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary);
    transform: scale(0.8);
    transition: all 0.3s ease;
    overflow: hidden;
}

.success-popup-overlay.show .success-popup {
    transform: scale(1);
}

.success-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,193,7,0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.success-popup-content {
    position: relative;
    z-index: 1;
}

.success-icon {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: successPulse 2s ease-in-out infinite;
}

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

.success-popup h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.success-popup p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-close-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 172, 0, 0.4);
}

.popup-close-x {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: color 0.3s ease;
}

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

/* ==========================================================================
   RODO Cookie Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-medium) 100%);
    border-top: 3px solid var(--primary);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-info {
    flex: 1;
    min-width: 300px;
}

.cookie-info h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.cookie-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

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

.cookie-info a:hover {
    color: var(--primary-light);
}

.cookie-step {
    transition: all 0.4s ease;
}

.cookie-step.hidden {
    display: none;
}

.cookie-buttons-main {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.cookie-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.cookie-option:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-option span {
    font-weight: 600;
    font-size: 15px;
}

.cookie-option small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.4;
    margin-left: 28px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    min-height: 44px;
}

.cookie-btn.small {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-xs);
    min-width: 100px;
    text-transform: none;
    min-height: 36px;
}

.cookie-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.cookie-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.cookie-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--light);
    transform: translateY(-1px);
}

/* ==========================================================================
   Mobile Responsive Styles
   ========================================================================== */

.learn-more-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .countdown {
        display: none;
    }

    .hero {
        padding: 40px 0 30px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 15px;
    }

    /* Reading Challenge Section Mobile */
    .reading-challenge-section {
        padding: 30px 20px;
    }

    .reading-challenge-section .section-divider {
        display: none;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .challenges-container {
        margin-bottom: 30px;
        gap: 12px;
    }

    .challenge-item {
        padding: 12px 20px;
    }

    .challenge-content h3 {
        font-size: 16px;
    }

    .painful-truth {
        padding: 25px 20px;
        margin: 30px 0 15px 0;
    }

    .painful-truth h3 {
        font-size: 20px;
    }

    .problems-intro {
        margin: 25px 0 15px 0;
    }

    .problems-intro h4 {
        font-size: 20px;
    }

    .solutions-grid {
        gap: 20px;
        margin-top: 45px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    /* Social Proof Mobile */
    .social-proof {
        padding: 25px 20px 40px;
    }

    .social-proof p {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .logos-carousel {
        margin: 15px 0;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
        margin-top: 0;
    }

    .cta-content {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .cta-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Form Mobile */
    .form-container {
        padding: 20px;
        margin-bottom: 20px;
    }

    /* Mobile Learn More */
    .learn-more-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 15px;
        color: rgba(255,255,255,0.8);
        animation: fadeInUp 1s ease-out 1s forwards;
        opacity: 0;
    }

    .learn-more-mobile p {
        font-size: 16px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .learn-more-mobile i {
        font-size: 18px;
        animation: bounce 2s infinite;
        color: var(--primary);
    }

    .scroll-indicator {
        display: none;
    }

    .hanging-bulb {
        display: none;
    }

    /* Footer Mobile */
    footer {
        padding: 20px 0 15px;
    }

    .footer-divider {
        max-width: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-center {
        position: static;
        transform: none;
    }

    .footer-right {
        gap: 15px;
    }

    .footer-right a {
        font-size: 13px;
    }

    /* Header Mobile */
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    /* Policy Pages Mobile */
    .policy-content {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .content-section {
        padding: 25px 20px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    /* Success Popup Mobile */
    .success-popup {
        padding: 30px 25px;
        margin: 20px;
    }

    .success-icon {
        font-size: 50px;
    }

    .success-popup h3 {
        font-size: 24px;
    }

    .success-popup p {
        font-size: 16px;
    }

    /* Cookie Banner Mobile */
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 15px;
    }

    .cookie-info {
        min-width: auto;
        text-align: center;
    }

    .cookie-buttons-main {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-controls {
        gap: 15px;
    }

    .cookie-options {
        padding: 15px;
        gap: 12px;
    }

    .cookie-option {
        padding: 8px;
    }

    .cookie-option small {
        margin-left: 24px;
    }

    .cookie-buttons {
        gap: 8px;
    }

    .cookie-btn {
        flex: 1;
        min-width: 110px;
        padding: 10px 16px;
    }

    .cookie-btn.small {
        padding: 8px 12px;
        min-width: 80px;
    }
}