/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Core Neumorphism Colors */
    --bg-base: #e0e5ec;
    --bg-dark: #c8ccd4;
    --bg-light: #ffffff;
    --shadow-dark: #a3b1c6;
    --shadow-light: #ffffff;

    /* Brand Colors */
    --primary: #6d5dfc;
    --primary-dark: #5a4bd4;
    --primary-light: #8b7eff;
    --primary-rgb: 109, 93, 252;
    --secondary: #e0e5ec;
    --accent: #ff6b9d;
    --accent-dark: #e55a88;
    --accent-light: #ff8db5;
    --accent-rgb: 255, 107, 157;

    /* Text Colors */
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --text-muted: #95a5a6;
    --text-on-primary: #ffffff;

    /* Neumorphism Shadows */
    --neu-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
    --neu-shadow-sm: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    --neu-shadow-lg: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    --neu-shadow-xl: 20px 20px 40px var(--shadow-dark), -20px -20px 40px var(--shadow-light);
    --neu-inset: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
    --neu-inset-sm: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

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

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

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 1000;
    --z-cookie: 1100;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-base);
    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);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

ul {
    list-style: none;
}

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

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    background: var(--primary);
    color: var(--text-on-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-lg);
    box-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    transition: all var(--transition-base);
    letter-spacing: 0.3px;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
    transform: translateY(-2px);
    color: var(--text-on-primary);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    background: var(--bg-base);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-sm);
    transition: all var(--transition-base);
    letter-spacing: 0.3px;
    border: none;
}

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

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

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--bg-dark);
    transition: all var(--transition-base);
}

.btn-secondary-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-base);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: var(--z-cookie);
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

.cookie-consent.visible {
    transform: translateY(0);
}

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

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

.cookie-icon-text {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    color: var(--primary);
    font-weight: 700;
}

.cookie-text p {
    font-size: 14px;
    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;
}

.btn-cookie-accept {
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--neu-shadow-sm);
    transition: all var(--transition-base);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-cookie-reject {
    padding: 10px 24px;
    background: var(--bg-base);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 14px;
    box-shadow: var(--neu-shadow-sm);
    transition: all var(--transition-base);
}

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

.btn-cookie-settings {
    padding: 10px 24px;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition-fast);
}

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

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

.cookie-setting-row {
    padding: var(--space-sm) 0;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

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

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.age-modal.visible {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--neu-shadow-xl);
    transform: scale(0.9);
    transition: transform var(--transition-spring);
}

.age-modal.visible .age-modal-content {
    transform: scale(1);
}

.age-modal-icon {
    margin-bottom: var(--space-lg);
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.age-modal-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-size: 15px;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--bg-base);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    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: 2px;
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    padding: 8px 20px;
    background: var(--primary);
    color: var(--text-on-primary) !important;
    border-radius: var(--radius-md);
    box-shadow: var(--neu-shadow-sm);
    transition: all var(--transition-base);
}

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

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--neu-shadow-sm);
    background: var(--bg-base);
    transition: box-shadow var(--transition-base);
}

.mobile-menu-toggle:active {
    box-shadow: var(--neu-inset-sm);
}

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

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

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

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

.mobile-nav-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-base);
    z-index: var(--z-dropdown);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    padding: var(--space-2xl) var(--space-lg);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-md) var(--space-lg);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-sm);
    background: var(--bg-base);
    transition: all var(--transition-base);
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--primary);
    box-shadow: var(--neu-shadow);
}

.mobile-nav-cta {
    background: var(--primary) !important;
    color: var(--text-on-primary) !important;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(var(--accent-rgb), 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(var(--primary-rgb), 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.08;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    right: -50px;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 10%;
    left: -60px;
    animation: float2 15s ease-in-out infinite;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: var(--primary);
    top: 40%;
    right: 10%;
    animation: float3 18s ease-in-out infinite;
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: var(--accent);
    top: 20%;
    left: 15%;
    animation: float1 12s ease-in-out infinite reverse;
}

.shape-5 {
    width: 160px;
    height: 160px;
    background: var(--primary-light);
    bottom: -40px;
    right: 30%;
    animation: float2 22s ease-in-out infinite;
}

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

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 15px) scale(1.05); }
    66% { transform: translate(15px, -10px) scale(0.95); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, 25px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    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: var(--space-sm);
    padding: 8px 18px;
    background: var(--bg-base);
    border-radius: var(--radius-2xl);
    box-shadow: var(--neu-shadow-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xl);
    animation: heroContentIn 0.8s ease-out 0.1s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    animation: heroContentIn 0.8s ease-out 0.2s both;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--primary);
    position: relative;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 480px;
    animation: heroContentIn 0.8s ease-out 0.3s both;
}

.hero-cta-group {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
    animation: heroContentIn 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    animation: heroContentIn 0.8s ease-out 0.5s both;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    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-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    border-radius: var(--radius-full);
    filter: blur(30px);
    z-index: 0;
}

.hero-main-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow-xl);
    width: 100%;
    transition: transform var(--transition-slow);
}

.hero-image-frame:hover .hero-main-image {
    transform: scale(1.02);
}

.hero-image-decoration {
    position: absolute;
    z-index: 2;
    animation: decorFloat 4s ease-in-out infinite;
}

.dec-1 {
    top: -10px;
    right: -10px;
    padding: 12px;
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-sm);
}

.dec-2 {
    bottom: 30%;
    left: -20px;
    padding: 10px;
    background: var(--bg-base);
    border-radius: var(--radius-md);
    box-shadow: var(--neu-shadow-sm);
    animation-delay: -2s;
}

.dec-3 {
    bottom: -5px;
    right: 15%;
}

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

.pulse-ring {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: var(--accent);
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--accent);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
    opacity: 0.5;
}

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

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-image-frame {
        max-width: 300px;
    }

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

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

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

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
    padding: var(--space-lg) 0;
    overflow: hidden;
    background: var(--bg-base);
    box-shadow: var(--neu-inset-sm);
}

.ticker-track {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    gap: var(--space-2xl);
    animation: ticker 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 500;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--bg-base);
    border-radius: var(--radius-2xl);
    box-shadow: var(--neu-shadow-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-4xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-xl);
}

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

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

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

.about-card.animated:hover {
    transform: translateY(-4px);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-sm);
    margin-bottom: var(--space-lg);
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.about-card-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--space-4xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

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

.gallery-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--neu-shadow);
    height: 100%;
    transition: all var(--transition-base);
}

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

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-overlay-text {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.gallery-item {
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-large {
        grid-row: auto;
    }

    .gallery-card {
        height: 250px;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-4xl) 0;
}

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

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

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

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

.feature-card.animated:hover {
    transform: translateY(-3px);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
    width: 56px;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-4xl) 0;
}

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

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

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

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--neu-shadow-sm);
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

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

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

.testimonial-btn:hover {
    color: var(--primary);
    box-shadow: var(--neu-shadow);
}

.testimonial-btn:active {
    box-shadow: var(--neu-inset-sm);
}

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

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

.testimonial-dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4);
}

@media (max-width: 968px) {
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-lg) / 2);
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

/* ============================================
   LIVE COUNTERS
   ============================================ */
.live-counter-section {
    padding: var(--space-3xl) 0;
}

.live-counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-lg);
}

.live-counter-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.live-counter-card.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.live-counter-icon {
    margin-bottom: var(--space-md);
}

.live-counter-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.live-counter-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-pulse {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: #27ae60;
    border-radius: var(--radius-full);
    animation: livePulse 2s ease-in-out infinite;
}

.live-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #27ae60;
    border-radius: var(--radius-full);
    animation: livePulseRing 2s ease-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes livePulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-4xl) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--text-muted);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* ============================================
   REGISTRATION SECTION
   ============================================ */
.registration-section {
    padding: var(--space-4xl) 0;
}

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

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

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

.registration-info .section-tag {
    margin-bottom: var(--space-md);
}

.registration-info p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.registration-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.registration-form-wrapper {
    background: var(--bg-base);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow-lg);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

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

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

.input-wrapper svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    font-family: var(--font-body);
}

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

.form-error {
    font-size: 13px;
    color: var(--accent);
    min-height: 18px;
    display: block;
}

.form-consent,
.form-age-consent {
    gap: var(--space-xs);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    box-shadow: var(--neu-shadow-sm);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: absolute;
    top: 3px;
}

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

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

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

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

.form-success,
.form-error-message {
    text-align: center;
    padding: var(--space-2xl);
}

.success-icon,
.error-icon {
    margin-bottom: var(--space-md);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.form-error-message h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.form-success p,
.form-error-message p {
    color: var(--text-secondary);
    font-size: 15px;
}

@media (max-width: 768px) {
    .registration-wrapper {
        grid-template-columns: 1fr;
    }

    .registration-form-wrapper {
        padding: var(--space-lg);
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--space-4xl) 0 var(--space-3xl);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.trust-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

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

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

.trust-card.animated:hover {
    transform: translateY(-3px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-base);
    border-radius: var(--radius-full);
    box-shadow: var(--neu-shadow-sm);
    margin: 0 auto var(--space-lg);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.trust-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--bg-base);
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.04);
}

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

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

.footer-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.footer-address {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-group li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-links-group a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-links-group svg {
    flex-shrink: 0;
    opacity: 0.5;
}

.footer-support-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--bg-dark);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

.footer-responsible {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page-hero {
    padding: 120px 0 var(--space-2xl);
    text-align: center;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: #f8f9fa;
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow);
    margin-bottom: var(--space-3xl);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: var(--space-xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bg-dark);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--space-lg) 0 var(--space-sm);
}

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

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

.legal-content li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    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-update-date {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-xl);
}

/* ============================================
   ANIMATIONS FOR SCROLL
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--shadow-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--text-primary);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .site-header,
    .cookie-consent,
    .age-modal,
    .mobile-nav-overlay,
    .social-proof-ticker,
    .hero-scroll-indicator,
    .hero-floating-shapes {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

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