/* ========================================
   CSS VARIABLES & BASE RESET
   ======================================== */

:root {
    /* Neumorphism Base Colors */
    --bg-base: #e0e5ec;
    --bg-dark: #c8ccd3;
    --bg-darker: #a3b1c6;
    --bg-light: #ffffff;
    --bg-lighter: #f0f5fc;

    /* Primary */
    --primary: #6d5dfc;
    --primary-dark: #5a4bd4;
    --primary-light: #8b7ffd;
    --primary-glow: rgba(109, 93, 252, 0.3);

    /* Accent */
    --accent: #ff6b9d;
    --accent-dark: #e05585;
    --accent-light: #ff8db5;

    /* Text */
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #8395a7;
    --text-on-primary: #ffffff;

    /* Shadows - Neumorphism */
    --shadow-dark: rgba(163, 177, 198, 0.6);
    --shadow-light: rgba(255, 255, 255, 0.8);
    --shadow-neu: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --shadow-neu-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --shadow-neu-lg: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    --shadow-inset: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
    --shadow-inset-sm: inset 2px 2px 5px var(--shadow-dark), inset -2px -2px 5px var(--shadow-light);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-round: 50%;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Fonts */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   CONTAINER
   ======================================== */

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

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

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

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

/* ========================================
   BUTTONS - NEUMORPHIC
   ======================================== */

.btn-neu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary-neu {
    background: var(--primary);
    color: var(--text-on-primary);
    box-shadow: 4px 4px 10px rgba(109, 93, 252, 0.35),
                -2px -2px 8px rgba(139, 127, 253, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary-neu:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 6px 6px 14px rgba(109, 93, 252, 0.45),
                -3px -3px 10px rgba(139, 127, 253, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary-neu:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(90, 75, 212, 0.4),
                inset -2px -2px 5px rgba(139, 127, 253, 0.15);
}

.btn-secondary-neu {
    background: var(--bg-base);
    color: var(--text-primary);
    box-shadow: var(--shadow-neu-sm);
}

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

.btn-secondary-neu:active {
    transform: translateY(0);
    box-shadow: var(--shadow-inset-sm);
}

.btn-tertiary-neu {
    background: var(--bg-base);
    color: var(--text-secondary);
    box-shadow: var(--shadow-neu-sm);
    font-size: 0.85rem;
}

.btn-tertiary-neu:hover {
    color: var(--primary);
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--text-on-primary);
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
    box-shadow: 6px 6px 16px rgba(109, 93, 252, 0.4),
                -4px -4px 12px rgba(139, 127, 253, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 8px 8px 20px rgba(109, 93, 252, 0.5),
                -5px -5px 14px rgba(139, 127, 253, 0.25),
                inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary {
    background: var(--bg-base);
    color: var(--text-primary);
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-neu);
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neu-lg);
    color: var(--primary);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--text-on-primary);
    padding: 18px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    box-shadow: 6px 6px 16px rgba(109, 93, 252, 0.4),
                -4px -4px 12px rgba(139, 127, 253, 0.2);
}

.btn-submit:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 8px 8px 20px rgba(109, 93, 252, 0.5),
                -5px -5px 14px rgba(139, 127, 253, 0.25);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ========================================
   COOKIE CONSENT
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-base);
    box-shadow: 0 -8px 32px rgba(163, 177, 198, 0.4);
    padding: var(--space-lg);
    animation: slideUp 0.5s ease;
}

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

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

.cookie-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    min-width: 280px;
}

.cookie-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-text h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-buttons .btn-neu {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.cookie-settings {
    max-width: 1200px;
    margin: var(--space-md) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--bg-dark);
}

.cookie-setting-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}

.cookie-setting-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.cookie-setting-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cookie-settings .btn-neu {
    margin-top: var(--space-md);
}

/* Toggle Switch */
.neu-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.neu-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-base);
    border-radius: 14px;
    box-shadow: var(--shadow-inset-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--bg-base);
    border-radius: 50%;
    box-shadow: var(--shadow-neu-sm);
    transition: var(--transition-spring);
}

.neu-toggle input:checked + .toggle-slider {
    background: var(--primary);
    box-shadow: inset 2px 2px 5px rgba(90, 75, 212, 0.4),
                inset -2px -2px 5px rgba(139, 127, 253, 0.2);
}

.neu-toggle input:checked + .toggle-slider::before {
    transform: translateX(24px);
    background: white;
    box-shadow: 2px 2px 5px rgba(109, 93, 252, 0.3);
}

.neu-toggle input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   AGE VERIFICATION MODAL
   ======================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11000;
    background: rgba(224, 229, 236, 0.95);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    animation: fadeIn 0.3s ease;
}

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

.modal-neu {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-neu-lg);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 480px;
    width: 100%;
    animation: scaleIn 0.4s var(--transition-spring);
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-round);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: var(--primary);
}

.modal-icon-denied {
    color: var(--accent);
}

.modal-neu h2 {
    margin-bottom: var(--space-md);
}

.modal-neu p {
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.modal-buttons .btn-neu {
    width: 100%;
}

.modal-disclaimer {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-top: var(--space-md);
    margin-bottom: 0 !important;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(224, 229, 236, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(163, 177, 198, 0.3);
    padding: var(--space-sm) 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 4px 4px 10px rgba(109, 93, 252, 0.35),
                -2px -2px 6px rgba(139, 127, 253, 0.15);
}

.logo-text {
    letter-spacing: -0.5px;
}

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

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--text-on-primary) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    box-shadow: 3px 3px 8px rgba(109, 93, 252, 0.3);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 9001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--bg-base);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    box-shadow: var(--shadow-neu-lg);
    opacity: 0.5;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: -80px;
    box-shadow: var(--shadow-neu);
    opacity: 0.4;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 15%;
    box-shadow: var(--shadow-neu-sm);
    opacity: 0.3;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    background: var(--primary);
    opacity: 0.08;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-5 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 5%;
    background: var(--accent);
    opacity: 0.06;
    animation: floatShape 9s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -15px); }
    50% { transform: translate(-5px, 10px); }
    75% { transform: translate(8px, 5px); }
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: heroContentIn 0.8s ease both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.hero-badge i {
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    margin-bottom: var(--space-lg);
    letter-spacing: -1px;
}

.title-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
}

.stat-item-hero {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--bg-dark);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroVisualIn 0.8s ease 0.3s both;
}

@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.phone-mockup {
    position: relative;
    animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--bg-base);
    border-radius: 40px;
    box-shadow: var(--shadow-neu-lg),
                inset 0 0 0 3px var(--bg-dark);
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--bg-base);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(163, 177, 198, 0.3);
}

.phone-screen {
    background: linear-gradient(160deg, #1a1a2e, #16213e, #0f3460);
    border-radius: 28px;
    height: calc(100% - 10px);
    margin-top: -14px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 40px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-ui-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.game-level {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.game-xp-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    animation: xpPulse 3s ease-in-out infinite;
}

@keyframes xpPulse {
    0%, 100% { width: 72%; }
    50% { width: 78%; }
}

.game-coins {
    color: #ffd700;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.game-character {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.character-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow), transparent);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

.character-body {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(109, 93, 252, 0.4);
}

.character-icon {
    font-size: 2.2rem;
    color: white;
}

.character-name {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.game-ui-bottom {
    display: flex;
    gap: 8px;
}

.game-btn-mock {
    flex: 1;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.game-btn-mock.special {
    background: rgba(255, 107, 157, 0.2);
    color: var(--accent-light);
    border-color: rgba(255, 107, 157, 0.15);
}

.game-btn-mock i {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.phone-reflection {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    border-radius: 50%;
    transform: rotate(-30deg);
    pointer-events: none;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.75rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--text-muted));
}

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

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */

.social-proof-bar {
    padding: var(--space-xl) 0;
    position: relative;
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    position: relative;
}

.proof-icon-neu {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-base);
    box-shadow: var(--shadow-inset-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.proof-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-primary);
    display: block;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27ae60;
    position: absolute;
    top: 12px;
    right: 12px;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(39, 174, 96, 0); }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-desc {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    padding: var(--space-3xl) 0;
}

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

.feature-card {
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.feature-card:hover .feature-icon-neu {
    box-shadow: var(--shadow-inset);
    color: var(--accent);
}

.feature-icon-wrap {
    margin-bottom: var(--space-lg);
}

.feature-icon-neu {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all var(--transition-base);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.15rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-base);
    box-shadow: var(--shadow-inset-sm);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* ========================================
   GAMEPLAY SECTION
   ======================================== */

.gameplay-section {
    padding: var(--space-3xl) 0;
}

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

.step-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-xl);
    align-items: center;
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: 0;
}

.step-card.reverse {
    direction: rtl;
}

.step-card.reverse > * {
    direction: ltr;
}

.step-number-neu {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-round);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number-neu span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.step-content p {
    font-size: 0.92rem;
}

.step-visual {
    width: 140px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-display {
    display: flex;
    gap: var(--space-sm);
}

.step-icon-display i {
    width: 40px;
    height: 40px;
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-sm) 0;
}

.connector-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 1px;
}

.connector-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
}

/* Battle Animation */
.battle-animation {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.battle-effect {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: battleRipple 2s ease-out infinite;
}

.battle-effect.effect-1 {
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.battle-effect.effect-2 {
    width: 60px;
    height: 60px;
    animation-delay: 0.5s;
}

.battle-effect.effect-3 {
    width: 80px;
    height: 80px;
    animation-delay: 1s;
}

@keyframes battleRipple {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.battle-center-icon {
    font-size: 1.8rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
    animation: battlePulse 1s ease-in-out infinite;
}

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

/* Level Up Display */
.level-up-display {
    text-align: center;
}

.level-bar-mock {
    width: 120px;
    height: 12px;
    background: var(--bg-base);
    box-shadow: var(--shadow-inset-sm);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.level-fill-mock {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 6px;
    animation: levelFill 3s ease-in-out infinite;
}

@keyframes levelFill {
    0% { width: 10%; }
    50% { width: 95%; }
    100% { width: 10%; }
}

.level-stars {
    color: #ffd700;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
    justify-content: center;
}

/* ========================================
   GAME MODES SECTION
   ======================================== */

.modes-section {
    padding: var(--space-3xl) 0;
}

.modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.mode-card {
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mode-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neu-lg);
}

.mode-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-2xl);
}

.mode-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(109, 93, 252, 0.04), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 107, 157, 0.03), transparent 50%);
    pointer-events: none;
}

.mode-icon-large {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.mode-icon-small {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.mode-card h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.mode-card p {
    font-size: 0.88rem;
    margin-bottom: var(--space-md);
}

.mode-stats-bar {
    display: flex;
    gap: var(--space-md);
}

.mode-stats-bar span {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mode-stats-bar i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* ========================================
   COMMUNITY / TESTIMONIALS
   ======================================== */

.community-section {
    padding: var(--space-3xl) 0;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: var(--space-lg);
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - var(--space-lg) * 2 / 3);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    flex-shrink: 0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-round);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-avatar.avatar-alt {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.testimonial-avatar.avatar-accent {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.testimonial-header h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-location i {
    font-size: 0.65rem;
}

.testimonial-rating {
    margin-left: auto;
    color: #ffd700;
    font-size: 0.75rem;
    display: flex;
    gap: 2px;
}

.testimonial-card > p {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    box-shadow: var(--shadow-inset-sm);
    color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

/* ========================================
   SIGNUP SECTION
   ======================================== */

.signup-section {
    padding: var(--space-3xl) 0;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.signup-info {
    padding-top: var(--space-lg);
}

.signup-info .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.signup-info > p {
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
}

.signup-benefits {
    margin-bottom: var(--space-xl);
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}

.benefit-icon-neu {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-round);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27ae60;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.signup-benefits span {
    font-weight: 500;
    font-size: 0.95rem;
}

.signup-counter {
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.counter-bar-bg {
    width: 100%;
    height: 14px;
    background: var(--bg-base);
    box-shadow: var(--shadow-inset-sm);
    border-radius: 7px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.counter-bar-fill {
    height: 100%;
    width: 82.5%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 7px;
    transition: width 1s ease;
    position: relative;
}

.counter-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

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

.signup-counter p {
    font-size: 0.88rem;
    text-align: center;
}

.signup-counter strong {
    color: var(--primary);
}

.spots-warning {
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 0.82rem !important;
    margin-top: var(--space-xs);
}

.spots-warning i {
    margin-right: 4px;
}

/* Signup Form */
.signup-form-wrap {
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-lg);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.signup-form h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.88rem;
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.input-neu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg-base);
    box-shadow: var(--shadow-inset);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    transition: all var(--transition-base);
}

.input-neu:focus-within {
    box-shadow: var(--shadow-inset),
                0 0 0 2px var(--primary-glow);
}

.input-neu i {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
}

.input-neu input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    color: var(--text-primary);
    font-size: 0.95rem;
}

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

.form-error {
    display: block;
    font-size: 0.78rem;
    color: var(--accent);
    margin-top: 4px;
    min-height: 18px;
}

/* Checkbox */
.checkbox-group {
    margin-bottom: var(--space-sm);
}

.neu-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.neu-checkbox input {
    display: none;
}

.checkbox-mark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--bg-base);
    box-shadow: var(--shadow-inset-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
    margin-top: 1px;
}

.checkbox-mark i {
    font-size: 0.65rem;
    color: transparent;
    transition: color var(--transition-fast);
}

.neu-checkbox input:checked + .checkbox-mark {
    background: var(--primary);
    box-shadow: 2px 2px 5px rgba(109, 93, 252, 0.3);
}

.neu-checkbox input:checked + .checkbox-mark i {
    color: white;
}

.neu-checkbox a {
    text-decoration: underline;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

.form-disclaimer i {
    margin-right: 4px;
    color: #27ae60;
}

/* Success Message */
.signup-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon-neu {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-round);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2.5rem;
    color: #27ae60;
    animation: successPop 0.5s var(--transition-spring);
}

@keyframes successPop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.signup-success h3 {
    margin-bottom: var(--space-md);
    color: #27ae60;
}

.success-email {
    font-weight: 600;
    color: var(--primary) !important;
    margin-top: var(--space-sm);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: var(--space-3xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-neu-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.trust-card {
    background: var(--bg-base);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neu-lg);
}

.trust-icon-neu {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-round);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto var(--space-md);
}

.trust-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.trust-card p {
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: var(--space-2xl) 0 0;
    background: var(--bg-base);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bg-dark), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.footer-brand > p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link-neu {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-base);
    box-shadow: var(--shadow-neu-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.social-link-neu:hover {
    box-shadow: var(--shadow-inset-sm);
    color: var(--primary);
}

.footer-links-col h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.footer-links-col li {
    margin-bottom: var(--space-sm);
}

.footer-links-col a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.footer-links-col a i {
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--bg-dark);
    padding: var(--space-lg) 0;
}

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

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.footer-address {
    font-weight: 500;
    color: var(--text-secondary) !important;
}

.footer-responsible {
    margin-top: var(--space-sm);
    font-weight: 600;
    color: var(--accent) !important;
    font-size: 0.8rem !important;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page-header {
    padding: 140px 0 60px;
    text-align: center;
}

.legal-page-header h1 {
    margin-bottom: var(--space-md);
}

.legal-page-header p {
    font-size: 1rem;
}

.legal-content {
    background: var(--bg-lighter);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin: var(--space-xl) 0 var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--bg-dark);
}

.legal-content h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: var(--space-lg) 0 var(--space-sm);
}

.legal-content p {
    margin-bottom: var(--space-md);
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.legal-content ul, .legal-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.legal-content li {
    margin-bottom: var(--space-sm);
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

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

.legal-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modes-grid {
        grid-template-columns: 1fr;
    }

    .mode-large {
        grid-template-columns: auto 1fr;
    }

    .mode-large .mode-stats-bar {
        grid-column: 1 / -1;
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-base);
        box-shadow: -8px 0 24px rgba(163, 177, 198, 0.4);
        flex-direction: column;
        padding: 100px var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        z-index: 9000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: var(--space-sm) 0;
    }

    .nav-cta {
        text-align: center;
        width: 100%;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .step-card.reverse {
        direction: ltr;
    }

    .step-number-neu {
        margin: 0 auto;
    }

    .step-visual {
        margin: 0 auto;
    }

    .testimonial-card {
        min-width: calc(100% - var(--space-md));
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn-neu {
        flex: 1;
    }

    .proof-items {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-neu {
        width: 100%;
    }

    .legal-content {
        padding: var(--space-xl) var(--space-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .phone-frame {
        width: 200px;
        height: 400px;
    }

    .phone-notch {
        width: 90px;
        height: 22px;
    }

    .character-body {
        width: 70px;
        height: 70px;
    }

    .character-icon {
        font-size: 1.6rem;
    }

    .modal-neu {
        padding: var(--space-xl);
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .cookie-banner,
    .modal-overlay,
    .hero-scroll-indicator,
    .social-proof-bar,
    .carousel-controls {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        min-height: auto;
        padding: 20px 0;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

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

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

/* ========================================
   NOISE TEXTURE OVERLAY
   ======================================== */

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}
