/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Candy Pop Colors */
    --primary: #ff6b6b;
    --primary-dark: #e85555;
    --primary-light: #ff9a9a;
    --secondary: #4ecdc4;
    --secondary-dark: #3ab5ad;
    --secondary-light: #7eddd7;
    --accent: #ffe66d;
    --accent-dark: #f5d43a;
    --accent-light: #fff3a3;

    --purple: #a855f7;
    --purple-light: #c084fc;
    --pink: #f472b6;
    --orange: #fb923c;
    --lime: #a3e635;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fef7f0;
    --cream: #fff8f0;
    --gray-50: #faf9f7;
    --gray-100: #f3f1ed;
    --gray-200: #e8e5df;
    --gray-300: #d4d0c8;
    --gray-400: #a8a29e;
    --gray-500: #78716c;
    --gray-600: #57534e;
    --gray-700: #44403c;
    --gray-800: #292524;
    --gray-900: #1c1917;
    --dark: #1a1225;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b6b 0%, #ff9a9a 50%, #f472b6 100%);
    --gradient-secondary: linear-gradient(135deg, #4ecdc4 0%, #7eddd7 50%, #a3e635 100%);
    --gradient-accent: linear-gradient(135deg, #ffe66d 0%, #fff3a3 50%, #fb923c 100%);
    --gradient-hero: linear-gradient(135deg, #1a1225 0%, #2d1b4e 30%, #1a1225 60%, #0f172a 100%);
    --gradient-candy: linear-gradient(135deg, #ff6b6b, #a855f7, #4ecdc4, #ffe66d);
    --gradient-countdown: linear-gradient(135deg, #2d1b4e 0%, #1a1225 50%, #0f2027 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);
    --shadow-candy: 0 8px 30px rgba(255,107,107,0.25);
    --shadow-glow-primary: 0 0 40px rgba(255,107,107,0.3);
    --shadow-glow-secondary: 0 0 40px rgba(78,205,196,0.3);
    --shadow-glow-accent: 0 0 40px rgba(255,230,109,0.3);

    /* Typography */
    --font-display: 'Bubblegum Sans', cursive;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --border-radius-xl: 40px;
    --border-radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    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 {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   UTILITY
   ============================================ */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: var(--border-radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-candy);
}

.section-tag-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-candy);
    border: 3px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255,107,107,0.4);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-800);
    border: 3px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--secondary);
    color: var(--secondary-dark);
    box-shadow: 0 12px 40px rgba(78,205,196,0.2);
}

.btn-hero {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.1rem;
}

.btn-submit .btn-loader {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
    padding: 20px;
    animation: slideUpCookie 0.5s var(--transition-bounce);
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: var(--gradient-primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-candy);
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
}

.btn-cookie-decline {
    background: var(--gray-100);
    color: var(--gray-600);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.btn-cookie-decline:hover {
    background: var(--gray-200);
}

.btn-cookie-settings {
    color: var(--gray-500);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 16px;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color var(--transition-base);
}

.btn-cookie-settings:hover {
    color: var(--primary);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255,107,107,0.1);
    transition: all var(--transition-base);
}

.main-header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border-bottom-color: rgba(255,107,107,0.2);
}

.navbar {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce);
}

.nav-logo:hover .logo-img {
    transform: rotate(-5deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255,107,107,0.08);
}

.nav-link.active {
    font-weight: 600;
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-candy);
    transition: all var(--transition-bounce);
    flex-shrink: 0;
    -webkit-text-fill-color: var(--white);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255,107,107,0.4);
    color: var(--white);
}

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

.hamburger-line {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: all var(--transition-base);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -150px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 30%;
    left: 20%;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--purple);
    top: 60%;
    right: 30%;
    animation: floatShape 18s ease-in-out infinite reverse;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: var(--pink);
    top: 20%;
    right: 40%;
    border-radius: var(--border-radius-lg);
    animation: floatShape 10s ease-in-out infinite;
}

.shape-6 {
    width: 80px;
    height: 80px;
    background: var(--lime);
    bottom: 20%;
    right: 10%;
    border-radius: var(--border-radius-md);
    animation: floatShape 14s ease-in-out infinite reverse;
}

.shape-7 {
    width: 300px;
    height: 300px;
    background: var(--orange);
    top: 50%;
    left: -80px;
    animation: floatShape 22s ease-in-out infinite;
}

.shape-8 {
    width: 120px;
    height: 120px;
    background: var(--secondary);
    top: 10%;
    left: 60%;
    border-radius: var(--border-radius-xl);
    animation: floatShape 16s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(5deg); }
    50% { transform: translate(-20px, 30px) rotate(-5deg); }
    75% { transform: translate(15px, 15px) rotate(3deg); }
}

.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    opacity: 0.4;
}

.confetti-1 {
    background: var(--primary);
    top: 15%;
    left: 10%;
    border-radius: 2px;
    animation: confettiFall 8s linear infinite;
}

.confetti-2 {
    background: var(--accent);
    top: 25%;
    left: 85%;
    border-radius: 50%;
    animation: confettiFall 12s linear infinite 2s;
}

.confetti-3 {
    background: var(--secondary);
    top: 40%;
    left: 50%;
    border-radius: 2px;
    animation: confettiFall 10s linear infinite 4s;
    width: 6px;
    height: 12px;
}

.confetti-4 {
    background: var(--purple);
    top: 10%;
    left: 70%;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    animation: confettiFall 9s linear infinite 1s;
}

.confetti-5 {
    background: var(--pink);
    top: 30%;
    left: 30%;
    border-radius: 2px;
    width: 10px;
    height: 4px;
    animation: confettiFall 11s linear infinite 3s;
}

.confetti-6 {
    background: var(--orange);
    top: 5%;
    left: 55%;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    animation: confettiFall 7s linear infinite 5s;
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { opacity: 0.6; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,230,109,0.15);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    border: 1px solid rgba(255,230,109,0.3);
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,230,109,0.2); }
    50% { box-shadow: 0 0 0 10px rgba(255,230,109,0); }
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 24px;
}

.title-line-1 {
    display: block;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.title-line-2 {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    background: var(--gradient-candy);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: heroVisualIn 1s ease-out 0.3s both;
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255,107,107,0.3) 0%, rgba(168,85,247,0.2) 40%, transparent 70%);
    border-radius: var(--border-radius-xl);
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

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

.hero-main-image {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.hero-float-card {
    position: absolute;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-800);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255,255,255,0.5);
}

.card-top {
    top: -10px;
    right: -10px;
    animation: floatCard 4s ease-in-out infinite;
}

.card-bottom {
    bottom: 20px;
    left: -10px;
    animation: floatCard 5s ease-in-out infinite 1s;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
    background: var(--white);
    border-top: 2px solid var(--gray-100);
    border-bottom: 2px solid var(--gray-100);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    flex-shrink: 0;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-600);
    white-space: nowrap;
}

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

/* ============================================
   GAME FEATURES SECTION
   ============================================ */
.game-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at center top, rgba(255,107,107,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-bounce);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
    transition: height var(--transition-base);
}

.feature-card-1::before { background: var(--gradient-primary); }
.feature-card-2::before { background: var(--gradient-secondary); }
.feature-card-3::before { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.feature-card-4::before { background: var(--gradient-accent); }
.feature-card-5::before { background: linear-gradient(135deg, var(--orange), var(--primary)); }
.feature-card-6::before { background: linear-gradient(135deg, var(--secondary), var(--lime)); }

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card:hover::before {
    height: 6px;
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform var(--transition-bounce);
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card-1 .feature-icon-wrap { background: rgba(255,107,107,0.1); color: var(--primary); }
.feature-card-2 .feature-icon-wrap { background: rgba(78,205,196,0.1); color: var(--secondary); }
.feature-card-3 .feature-icon-wrap { background: rgba(168,85,247,0.1); color: var(--purple); }
.feature-card-4 .feature-icon-wrap { background: rgba(255,230,109,0.15); color: var(--accent-dark); }
.feature-card-5 .feature-icon-wrap { background: rgba(251,146,60,0.1); color: var(--orange); }
.feature-card-6 .feature-icon-wrap { background: rgba(163,230,53,0.1); color: #65a30d; }

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   SCREENSHOTS GALLERY
   ============================================ */
.screenshots-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-bounce);
}

.gallery-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    aspect-ratio: 16/10;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-large img {
    aspect-ratio: auto;
    min-height: 100%;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,37,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    padding: 8px 20px;
    background: rgba(255,107,107,0.8);
    border-radius: var(--border-radius-full);
    backdrop-filter: blur(4px);
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */
.countdown-section {
    padding: 120px 0;
    background: var(--gradient-countdown);
    position: relative;
    overflow: hidden;
}

.countdown-bg-shapes .cd-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.cd-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    left: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.cd-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -100px;
    right: -50px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.cd-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 50%;
    left: 50%;
    animation: floatShape 18s ease-in-out infinite;
}

.countdown-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.countdown-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.countdown-unit {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    padding: 20px 28px;
    min-width: 110px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.countdown-unit:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,107,107,0.3);
    transform: translateY(-4px);
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: rgba(255,255,255,0.3);
    animation: separatorBlink 1s ease-in-out infinite;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Progress Bar */
.progress-section {
    max-width: 600px;
    margin: 0 auto;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.progress-percent {
    color: var(--accent);
    font-size: 1rem;
}

.progress-bar-track {
    width: 100%;
    height: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255,255,255,0.05);
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-candy);
    background-size: 200% 200%;
    border-radius: var(--border-radius-full);
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(4px);
    animation: progressGlow 1.5s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.progress-milestones {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}

.milestone {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    position: relative;
    padding-top: 12px;
}

.milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.milestone.done {
    color: var(--secondary);
}

.milestone.done::before {
    background: var(--secondary);
    box-shadow: 0 0 10px rgba(78,205,196,0.5);
}

.milestone.active {
    color: var(--accent);
}

.milestone.active::before {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255,230,109,0.5);
    animation: milestonePulse 2s ease-in-out infinite;
}

@keyframes milestonePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,230,109,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255,230,109,0); }
}

/* ============================================
   REGISTRATION SECTION
   ============================================ */
.register-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(78,205,196,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.register-info {
    padding-top: 20px;
}

.register-info .section-title {
    text-align: left;
}

.register-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.benefits-list {
    margin-bottom: 36px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(78,205,196,0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.avatars-stack {
    display: flex;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    border: 3px solid var(--white);
    margin-left: -8px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--gray-300) !important;
    color: var(--gray-700) !important;
    font-size: 0.75rem;
}

.social-proof-text {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.social-proof-text strong {
    color: var(--primary);
}

/* Registration Form */
.register-form-wrap {
    position: relative;
}

.register-form {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 40px 36px;
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.register-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-candy);
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrap svg {
    position: absolute;
    left: 16px;
    color: var(--gray-400);
    transition: color var(--transition-base);
    pointer-events: none;
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all var(--transition-base);
    outline: none;
}

.input-wrap input::placeholder {
    color: var(--gray-400);
}

.input-wrap input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255,107,107,0.1);
}

.input-wrap input:focus + svg,
.input-wrap:focus-within svg {
    color: var(--primary);
}

.input-wrap input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.1);
}

.field-error {
    display: block;
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 4px;
    font-weight: 500;
    min-height: 1.2em;
}

/* Checkbox */
.form-group-checkbox {
    margin-bottom: 14px;
}

.form-group-checkbox label.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-top: 1px;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(255,107,107,0.2);
}

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

/* Form Message */
.form-message {
    margin-top: 16px;
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background: rgba(78,205,196,0.1);
    color: var(--secondary-dark);
    border: 2px solid rgba(78,205,196,0.3);
}

.form-message.error {
    background: rgba(239,68,68,0.1);
    color: #dc2626;
    border: 2px solid rgba(239,68,68,0.3);
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--gray-500);
    text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--gray-200);
}

.faq-item.active {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(255,107,107,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-800);
    text-align: left;
    transition: color var(--transition-base);
    background: none;
    border: none;
    cursor: pointer;
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-bounce);
    opacity: 0;
    transform: translateY(20px);
}

.contact-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background: rgba(255,107,107,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition-bounce);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255,107,107,0.15);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-card a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
    word-break: break-all;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--border-radius-md);
    background: var(--gray-50);
    border: 2px solid var(--gray-100);
    transition: all var(--transition-bounce);
    opacity: 0;
    transform: translateY(20px);
}

.trust-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-item svg {
    margin: 0 auto 14px;
    display: block;
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: relative;
    margin-top: -2px;
    color: var(--dark);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-base);
}

.footer-links-group a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-address {
    margin-top: 4px;
    font-size: 0.8rem !important;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.age-badge {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
}

.footer-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.legal-content .legal-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 60px 50px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gray-900);
    margin-bottom: 8px;
}

.legal-content .legal-date {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    display: block;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 36px;
    margin-bottom: 14px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-100);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
    margin: 14px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

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

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

.legal-content strong {
    color: var(--gray-800);
}

.legal-content .highlight-box {
    background: rgba(78,205,196,0.08);
    border: 2px solid rgba(78,205,196,0.2);
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    margin: 20px 0;
}

.legal-content .highlight-box p {
    margin-bottom: 0;
    color: var(--gray-700);
}

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

    .hero-subtitle {
        margin: 0 auto 36px;
    }

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

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

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

    .register-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .register-info .section-title {
        text-align: center;
    }

    .register-info {
        text-align: center;
    }

    .register-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-list li {
        justify-content: center;
    }

    .register-social-proof {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

    .gallery-item-large {
        grid-row: span 1;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right var(--transition-slow);
        z-index: 999;
    }

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

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1.05rem;
    }

    .nav-cta {
        display: none;
    }

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

    .hero-float-card {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

    .gallery-item-wide {
        grid-column: span 1;
    }

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

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

    .countdown-timer {
        gap: 10px;
    }

    .countdown-unit {
        min-width: 70px;
        padding: 14px 16px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .register-form {
        padding: 30px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .legal-content .legal-card {
        padding: 36px 24px;
    }
}

@media (max-width: 480px) {
    .title-line-1 {
        font-size: 2.5rem;
    }

    .title-line-2 {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 2px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }

    .countdown-separator {
        display: none;
    }

    .progress-milestones {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
}

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

    .ticker-track {
        animation: none;
    }
}

/* Mobile Nav Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
