/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary: #667eea;
    --primary-dark: #5468d4;
    --primary-light: #8b9df0;
    --secondary: #764ba2;
    --secondary-dark: #5e3a82;
    --secondary-light: #9b6fc4;
    --accent: #f093fb;
    --accent-dark: #d46ce0;
    --accent-light: #f5b8fd;

    --white: #ffffff;
    --off-white: #f8f9ff;
    --light-gray: #eef0f8;
    --mid-gray: #a0a4b8;
    --dark-gray: #4a4d5e;
    --near-black: #1a1c2e;
    --black: #0d0e1a;

    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #667eea 100%);
    --gradient-mesh-1: radial-gradient(ellipse at 20% 50%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
                        radial-gradient(ellipse at 50% 80%, rgba(240, 147, 251, 0.25) 0%, transparent 50%);
    --gradient-mesh-2: radial-gradient(ellipse at 70% 30%, rgba(102, 126, 234, 0.35) 0%, transparent 45%),
                        radial-gradient(ellipse at 20% 70%, rgba(240, 147, 251, 0.3) 0%, transparent 45%),
                        radial-gradient(ellipse at 90% 80%, rgba(118, 75, 162, 0.25) 0%, transparent 45%);

    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-round: 50%;

    --shadow-sm: 0 2px 8px rgba(13, 14, 26, 0.08);
    --shadow-md: 0 8px 30px rgba(13, 14, 26, 0.12);
    --shadow-lg: 0 20px 60px rgba(13, 14, 26, 0.18);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
    --shadow-glow-accent: 0 0 40px rgba(240, 147, 251, 0.3);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --header-height: 80px;
    --container-max: 1240px;
    --container-padding: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--near-black);
    background: var(--black);
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   GRADIENT TEXT UTILITY
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

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

/* ============================================
   ANIMATED BACKGROUND MESHES
   ============================================ */
@keyframes meshFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-10px, 20px) scale(0.98); }
    75% { transform: translate(-30px, -10px) scale(1.03); }
}

@keyframes meshFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.08); }
    66% { transform: translate(20px, -30px) scale(0.95); }
}

@keyframes meshFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -40px) rotate(5deg); }
}

@keyframes meshPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes slowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(13, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(102, 126, 234, 0.3);
    padding: 20px 24px;
    animation: slideUpCookie 0.5s var(--transition-base);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
}

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

.cookie-text a:hover {
    color: var(--accent);
}

.cookie-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

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

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

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn-cookie-decline {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.btn-cookie-settings {
    padding: 10px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    text-decoration: underline;
    transition: all var(--transition-fast);
}

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

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 16px auto 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings-panel h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 16px;
}

.cookie-option {
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.cookie-option p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    padding-left: 28px;
}

.cookie-option 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;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.age-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 14, 26, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.age-modal-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(102, 126, 234, 0.2);
    animation: modalAppear 0.5s var(--transition-spring);
}

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

.age-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-round);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 20px;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--near-black);
    margin-bottom: 12px;
}

.age-modal-content p {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.age-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-age-confirm {
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.btn-age-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-age-deny {
    padding: 14px 28px;
    background: var(--light-gray);
    color: var(--dark-gray);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-fast);
}

.btn-age-deny:hover {
    background: var(--mid-gray);
    color: var(--white);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: var(--header-height);
    transition: all var(--transition-base);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 14, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.site-header.scrolled::before {
    opacity: 1;
}

.header-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.3);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

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

.nav-link.nav-cta {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    padding: 8px 20px;
    margin-left: 8px;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.3);
}

.nav-link.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 100;
}

.mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: calc(var(--header-height) + 40px) var(--container-padding) 60px;
    overflow: hidden;
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--black);
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
}

.mesh-blob-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.5) 0%, transparent 70%);
    animation: meshFloat1 20s ease-in-out infinite;
}

.mesh-blob-2 {
    width: 500px;
    height: 500px;
    top: 20%;
    right: -5%;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.45) 0%, transparent 70%);
    animation: meshFloat2 18s ease-in-out infinite;
}

.mesh-blob-3 {
    width: 400px;
    height: 400px;
    bottom: -5%;
    left: 30%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.35) 0%, transparent 70%);
    animation: meshFloat3 22s ease-in-out infinite;
}

.mesh-blob-4 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: meshFloat1 25s ease-in-out infinite reverse;
}

.mesh-blob-5 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 60%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.4) 0%, transparent 70%);
    animation: meshFloat2 15s ease-in-out infinite reverse;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: meshPulse 2s ease-in-out infinite;
}

.hero-title {
    display: flex;
    flex-direction: column;
    animation: fadeInDown 0.8s ease 0.15s both;
}

.title-line {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.title-line-1 {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--white);
}

.title-line-2 {
    font-size: clamp(42px, 6vw, 72px);
    color: rgba(255, 255, 255, 0.9);
}

.title-line-3 {
    font-size: clamp(48px, 7vw, 84px);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease 0.45s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    animation: fadeInDown 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

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

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

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    filter: blur(40px);
    z-index: -1;
    animation: meshPulse 4s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
    position: relative;
    z-index: 1;
}

.hero-image-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    z-index: 2;
    pointer-events: none;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 15%;
    left: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 3s;
}

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

.fc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.fc-info {
    display: flex;
    flex-direction: column;
}

.fc-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--near-black);
}

.fc-sub {
    font-size: 12px;
    color: var(--mid-gray);
}

/* 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: 5;
    animation: fadeInDown 0.8s ease 1s both;
}

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

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(102, 126, 234, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-accent);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity var(--transition-base);
}

.btn-glow:hover::after {
    opacity: 0.5;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-play-icon {
    font-size: 12px;
}

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

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

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

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Reveal animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-mesh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.mesh-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.mesh-shape-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: meshFloat1 22s ease-in-out infinite;
}

.mesh-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.25) 0%, transparent 70%);
    animation: meshFloat2 20s ease-in-out infinite;
}

.mesh-shape-3 {
    width: 450px;
    height: 450px;
    top: 10%;
    left: -100px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
    animation: meshFloat3 18s ease-in-out infinite;
}

.mesh-shape-4 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: -50px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, transparent 70%);
    animation: meshFloat1 24s ease-in-out infinite reverse;
}

.mesh-shape-5 {
    width: 500px;
    height: 500px;
    top: -50px;
    left: 20%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.2) 0%, transparent 70%);
    animation: meshFloat2 26s ease-in-out infinite;
}

.mesh-shape-6 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: 10%;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.25) 0%, transparent 70%);
    animation: meshFloat3 20s ease-in-out infinite reverse;
}

.mesh-shape-7 {
    width: 350px;
    height: 350px;
    top: 20%;
    right: -80px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, transparent 70%);
    animation: meshFloat1 16s ease-in-out infinite;
}

.mesh-shape-8 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -60px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.2) 0%, transparent 70%);
    animation: meshFloat2 22s ease-in-out infinite reverse;
}

.mesh-shape-9 {
    width: 600px;
    height: 600px;
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.35) 0%, transparent 70%);
    animation: meshFloat3 24s ease-in-out infinite;
}

.mesh-shape-10 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.3) 0%, transparent 70%);
    animation: meshFloat1 20s ease-in-out infinite reverse;
}

.mesh-shape-footer-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: 10%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    animation: meshFloat2 18s ease-in-out infinite;
}

.mesh-shape-footer-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: 20%;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.15) 0%, transparent 70%);
    animation: meshFloat1 22s ease-in-out infinite reverse;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 100px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--near-black);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--dark-gray);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    position: relative;
    padding: 120px 0;
    background: var(--off-white);
    overflow: hidden;
}

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

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all var(--transition-base);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-card-large {
    grid-column: span 1;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.feature-card-large::before {
    display: none;
}

.feature-card-large .feature-card-bg {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    width: 200px;
    height: 200px;
}

.feature-card-large:hover {
    box-shadow: var(--shadow-glow);
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    font-size: 26px;
    transition: all var(--transition-base);
}

.feature-card-large .feature-icon {
    background: rgba(255, 255, 255, 0.15);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
}

.feature-card-large .feature-desc {
    color: rgba(255, 255, 255, 0.8);
}

.feature-tag {
    display: inline-flex;
    margin-top: 20px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-showcase {
    position: relative;
    z-index: 2;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16/9;
    background: var(--near-black);
}

.gallery-main-glow {
    position: absolute;
    inset: -30px;
    background: var(--gradient-primary);
    opacity: 0.15;
    filter: blur(50px);
    z-index: 0;
    border-radius: var(--radius-xl);
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
    transition: transform 0.8s ease;
}

.gallery-main-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    padding: 8px 16px;
    background: rgba(13, 14, 26, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 3px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 14, 26, 0.3);
    transition: background var(--transition-fast);
}

.gallery-thumb:hover::after {
    background: rgba(13, 14, 26, 0.1);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.gallery-thumb.active::after {
    background: transparent;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.gallery-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--radius-round);
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.gallery-nav-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

/* ============================================
   SOCIAL PROOF / COUNTERS SECTION
   ============================================ */
.social-proof-section {
    position: relative;
    padding: 120px 0;
    background: var(--off-white);
    overflow: hidden;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.counter-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.counter-card-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh-1);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.counter-card:hover .counter-card-bg {
    opacity: 0.05;
}

.counter-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.counter-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--near-black);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.counter-label {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.counter-bar {
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.counter-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease;
}

.counter-bar-fill.animated {
    width: var(--target-width);
}

/* Live Feed */
.live-feed {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1px solid rgba(102, 126, 234, 0.08);
    margin-bottom: 60px;
    max-height: 220px;
    overflow: hidden;
}

.live-feed-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 15px;
    color: var(--near-black);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: meshPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.live-feed-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.live-feed-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--dark-gray);
    animation: fadeInLeft 0.4s ease both;
}

.live-feed-item .feed-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.live-feed-item .feed-text {
    flex: 1;
}

.live-feed-item .feed-time {
    font-size: 12px;
    color: var(--mid-gray);
    flex-shrink: 0;
}

/* Testimonials */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(102, 126, 234, 0.08);
    transition: all var(--transition-base);
}

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

.testimonial-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--near-black);
}

.author-role {
    font-size: 12px;
    color: var(--mid-gray);
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(102, 126, 234, 0.06);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item.open {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(102, 126, 234, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: var(--near-black);
    transition: color var(--transition-fast);
    gap: 16px;
}

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

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.faq-item.open .faq-toggle {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--dark-gray);
}

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

.faq-answer a:hover {
    color: var(--secondary);
}

/* ============================================
   SIGNUP / LEAD FORM SECTION
   ============================================ */
.signup-section {
    position: relative;
    padding: 120px 0;
    background: var(--near-black);
    overflow: hidden;
}

.signup-section .section-tag {
    background: rgba(240, 147, 251, 0.15);
    border-color: rgba(240, 147, 251, 0.3);
    color: var(--accent-light);
}

.signup-section .section-title {
    color: var(--white);
}

.signup-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

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

.signup-benefits {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.benefit-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-sm);
    color: #22c55e;
    font-size: 14px;
    flex-shrink: 0;
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.trust-icon {
    font-size: 18px;
}

/* Form */
.signup-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(102, 126, 234, 0.15);
    position: relative;
}

.signup-form-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: calc(var(--radius-xl) + 2px);
    z-index: -1;
    opacity: 0.3;
}

.form-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--near-black);
    background: var(--off-white);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

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

.form-error {
    display: block;
    font-size: 13px;
    color: #ef4444;
    margin-top: 4px;
    min-height: 18px;
}

.form-checkbox {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

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

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 14px;
}

/* Success State */
.signup-success {
    text-align: center;
    padding: 40px 36px;
}

.success-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: var(--radius-round);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 12px;
}

.signup-success p {
    color: var(--dark-gray);
    font-size: 15px;
    line-height: 1.6;
}

.success-email {
    color: var(--primary);
    font-weight: 600;
    margin-top: 8px;
}

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

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

.trust-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.06);
    transition: all var(--transition-base);
}

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

.trust-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.trust-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.55;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: var(--black);
    padding: 80px 0 30px;
    overflow: hidden;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-responsible {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.responsible-badge {
    flex-shrink: 0;
    padding: 4px 8px;
    background: #ef4444;
    color: var(--white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-contact li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-contact span {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 2px;
}

.footer-contact a {
    color: var(--primary-light);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================
   LEGAL PAGES CONTENT
   ============================================ */
.legal-page-hero {
    position: relative;
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--near-black);
    overflow: hidden;
}

.legal-page-hero .hero-bg-mesh {
    position: absolute;
    inset: 0;
}

.legal-page-hero .section-title {
    color: var(--white);
}

.legal-page-hero .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.legal-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: -30px auto 80px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--near-black);
    margin-top: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--near-black);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

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

.legal-content li {
    font-size: 15px;
    line-height: 1.65;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

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

.legal-content a:hover {
    color: var(--secondary);
}

.legal-content strong {
    color: var(--near-black);
    font-weight: 600;
}

.legal-content .last-updated {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .feature-card-large {
        grid-row: span 1;
    }

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

    .testimonials-row {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --container-padding: 18px;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 14, 26, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        z-index: 50;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav-link {
        font-size: 20px;
        padding: 12px 24px;
    }

    .nav-link.nav-cta {
        margin-left: 0;
        margin-top: 12px;
    }

    .hero-section {
        min-height: auto;
        padding: calc(var(--header-height) + 30px) var(--container-padding) 50px;
    }

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

    .stat-divider {
        display: none;
    }

    .floating-card {
        display: none;
    }

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

    .feature-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .counters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .counter-value {
        font-size: 28px;
    }

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

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

    .footer-brand {
        max-width: 100%;
    }

    .legal-content {
        padding: 30px 24px;
        margin: -20px 16px 60px;
        border-radius: var(--radius-lg);
    }

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

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions button {
        flex: 1;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

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

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

    .signup-form-wrapper {
        padding: 28px 22px;
    }

    .age-modal-content {
        padding: 32px 24px;
    }
}

/* ============================================
   PARTICLE STYLES (JS generated)
   ============================================ */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-200px) scale(0.3);
    }
}

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

::-webkit-scrollbar-track {
    background: var(--near-black);
}

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

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

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: var(--near-black);
}

/* ============================================
   FOCUS VISIBLE (Accessibility)
   ============================================ */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

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