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

:root {
    --primary: #1a1a2e;
    --primary-dark: #0f0f1e;
    --primary-light: #2a2a4e;
    --secondary: #eaeaea;
    --secondary-dark: #d0d0d0;
    --accent: #e94560;
    --accent-light: #ff6b81;
    --accent-dark: #c23152;
    --accent-glow: rgba(233, 69, 96, 0.3);
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f7f7f8;
    --gray-200: #e8e8ec;
    --gray-300: #d1d1d9;
    --gray-400: #9e9eac;
    --gray-500: #6e6e7e;
    --gray-600: #4a4a5a;
    --gray-700: #33334a;
    --gray-800: #22223a;
    --gray-900: #16162a;

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

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --transition-fast: 200ms var(--ease-out-expo);
    --transition-base: 350ms var(--ease-out-expo);
    --transition-slow: 500ms var(--ease-out-expo);
    --transition-spring: 400ms var(--ease-spring);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-accent: 0 8px 30px var(--accent-glow);

    --container-max: 1200px;
    --container-padding: 24px;

    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--gray-100);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

::selection {
    background: var(--accent);
    color: var(--white);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(233, 69, 96, 0.08);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-light);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

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

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

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

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-1deg); }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(233, 69, 96, 0.15); }
}

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

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

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

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

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

@keyframes orbit {
    from { transform: rotate(0deg) translateX(70px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25px); }
    100% { transform: translateX(0); }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes morphBlob {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

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

@keyframes liveDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) scale(0.5);
        opacity: 0;
    }
}

.animate-entrance {
    opacity: 0;
    animation: slideUp 0.8s var(--ease-out-expo) forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--primary);
    border-top: 2px solid var(--accent);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

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

.cookie-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.cookie-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

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

.cookie-btn-necessary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-settings:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.cookie-setting-row {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

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

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

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.age-modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s var(--ease-out-back);
    box-shadow: var(--shadow-lg);
}

.age-modal.active .age-modal-content {
    transform: scale(1) translateY(0);
}

.age-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.age-modal-content h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.age-modal-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.age-modal-sub {
    font-size: 0.85rem !important;
    color: var(--gray-400) !important;
    margin-bottom: 28px !important;
}

.age-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.age-btn {
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.age-btn-yes {
    background: var(--accent);
    color: var(--white);
}

.age-btn-yes:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.age-btn-no {
    background: var(--gray-200);
    color: var(--gray-600);
}

.age-btn-no:hover {
    background: var(--gray-300);
    transform: translateY(-3px);
}

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

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all var(--transition-slow);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    height: 68px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 101;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all var(--transition-spring);
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.1);
    border-radius: 16px 8px 16px 8px;
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    font-weight: 600;
    padding: 10px 24px;
}

.nav-cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

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

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

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

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

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 40px) var(--container-padding) 60px;
    width: 100%;
    box-sizing: border-box;
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-layer {
    position: absolute;
    inset: 0;
}

.hero-layer-1 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #1e1e3e 70%, #2a1a3e 100%);
}

.hero-layer-2 {
    background: radial-gradient(ellipse at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(100, 80, 200, 0.1) 0%, transparent 50%);
}

.hero-layer-3 {
    background:
        radial-gradient(circle at 15% 25%, rgba(233, 69, 96, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(100, 150, 255, 0.05) 0%, transparent 30%);
    animation: floatSlow 20s ease-in-out infinite;
}

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

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.4);
    animation: particleFloat linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 0;
    max-width: 600px;
    min-width: 0;
}

.hero-badge {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 69, 96, 0.12);
    border: 1px solid rgba(233, 69, 96, 0.25);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    animation-delay: 0.1s;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    grid-column: 1;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-title-accent {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 4px;
    transform: skewX(-12deg);
}

.hero-subtitle {
    grid-column: 1;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    grid-column: 1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    grid-column: 1;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.trust-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-frame {
    width: 260px;
    height: 520px;
    background: var(--primary-dark);
    border-radius: 36px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    padding: 12px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--primary-dark);
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #0a2a4a 0%, #0a1a3a 50%, #1a0a2a 100%);
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.screen-wave {
    position: absolute;
    left: -20%;
    right: -20%;
    height: 60px;
    border-radius: 50%;
    opacity: 0.15;
}

.screen-wave-1 {
    bottom: 30%;
    background: var(--accent);
    animation: waveMove 4s ease-in-out infinite;
}

.screen-wave-2 {
    bottom: 22%;
    background: #4a90d9;
    animation: waveMove 5s ease-in-out infinite reverse;
}

.screen-wave-3 {
    bottom: 15%;
    background: #2dd4bf;
    animation: waveMove 6s ease-in-out infinite;
}

.screen-creature {
    position: absolute;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    animation: float 3s ease-in-out infinite;
}

.creature-1 {
    top: 35%;
    left: 20%;
    color: #ff6b81;
    animation-delay: 0s;
}

.creature-2 {
    top: 50%;
    right: 15%;
    color: #4ecdc4;
    animation-delay: 0.5s;
    font-size: 1.4rem;
}

.creature-3 {
    top: 25%;
    right: 25%;
    color: #f9ca24;
    animation-delay: 1s;
    font-size: 1.5rem;
}

.screen-ui-top {
    position: absolute;
    top: 36px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.screen-score {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.screen-score i {
    color: #f9ca24;
}

.screen-level {
    background: rgba(233, 69, 96, 0.8);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
}

.screen-ui-bottom {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.screen-btn-game {
    background: var(--accent);
    color: var(--white);
    padding: 10px 36px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.4);
    animation: pulseGlow 3s ease-in-out infinite;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: 1;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-light);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-3px);
}

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

.btn-full {
    width: 100%;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.04) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatSlow 15s ease-in-out infinite;
}

.about-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 80, 200, 0.04) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: floatSlow 18s ease-in-out infinite reverse;
}

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

.about-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233, 69, 96, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all var(--transition-spring);
}

.about-card:hover .about-card-icon {
    transform: rotate(-10deg) scale(1.1);
    border-radius: 50%;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

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

.about-card-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.04);
    transition: all var(--transition-slow);
}

.about-card:hover .about-card-decoration {
    transform: scale(3);
    background: rgba(233, 69, 96, 0.06);
}

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

.features {
    padding: 120px 0;
    background: var(--gray-100);
    position: relative;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-graphic {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Graphic 1 - Orbiting elements */
.fg-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed;
}

.fg-ring-outer {
    width: 260px;
    height: 260px;
    border-color: rgba(233, 69, 96, 0.1);
    animation: spin 30s linear infinite;
}

.fg-ring-middle {
    width: 180px;
    height: 180px;
    border-color: rgba(233, 69, 96, 0.15);
    animation: spin 20s linear infinite reverse;
}

.fg-ring-inner {
    width: 100px;
    height: 100px;
    border-color: rgba(233, 69, 96, 0.2);
    animation: spin 10s linear infinite;
}

.fg-center {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: var(--shadow-accent);
    animation: morphBlob 8s ease-in-out infinite;
}

.fg-orbit {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.fg-orbit-1 {
    animation: orbit 8s linear infinite;
}

.fg-orbit-2 {
    animation: orbit 12s linear infinite reverse;
}

.fg-orbit-3 {
    animation: orbit 16s linear infinite;
}

/* Feature Graphic 2 - Grid */
.fg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fg-grid-item {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-spring);
    animation: gridPulse 3s ease-in-out infinite;
}

.fg-grid-item:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: var(--shadow-accent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Feature Graphic 3 - Waves */
.fg-wave-container {
    width: 300px;
    height: 200px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, #0a2a4a 0%, #1a0a3a 100%);
}

.fg-wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fg-wave-path-1 {
    fill: rgba(233, 69, 96, 0.3);
    animation: waveMove 4s ease-in-out infinite;
}

.fg-wave-path-2 {
    fill: rgba(100, 150, 255, 0.2);
    animation: waveMove 5s ease-in-out infinite reverse;
}

.fg-wave-path-3 {
    fill: rgba(45, 212, 191, 0.15);
    animation: waveMove 6s ease-in-out infinite;
}

.fg-wave-icon {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    animation: float 3s ease-in-out infinite;
}

.feature-text {
    position: relative;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(233, 69, 96, 0.08);
    line-height: 1;
    margin-bottom: -10px;
    display: block;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.feature-text p {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.feature-list li i {
    color: var(--accent);
    font-size: 0.8rem;
    width: 22px;
    height: 22px;
    background: rgba(233, 69, 96, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-layers {
    position: absolute;
    inset: 0;
}

.stats-layer-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2a1a3e 100%);
}

.stats-layer-2 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(100, 80, 200, 0.08) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin: 0 auto 18px;
    transition: all var(--transition-spring);
}

.stat-card:hover .stat-icon {
    transform: rotate(-10deg) scale(1.1);
    border-radius: 50%;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-bottom: 16px;
}

.stat-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
    transition: width 1.5s var(--ease-out-expo);
    width: 0 !important;
}

.stat-card.visible .stat-bar-fill,
.stat-card.counted .stat-bar-fill {
    width: var(--target-width, 50%) !important;
}

/* Social Proof */
.social-proof {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    overflow: hidden;
}

.proof-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #2dd4bf;
    border-radius: 50%;
    animation: liveDot 2s ease-in-out infinite;
}

.proof-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 160px;
    overflow: hidden;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    animation: slideDown 0.5s var(--ease-out-expo) forwards;
    opacity: 0;
}

.proof-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.proof-item-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.proof-item-text strong {
    color: var(--white);
}

.proof-item-time {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    white-space: nowrap;
}

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

.gameplay {
    padding: 120px 0;
    background: var(--white);
}

.steps-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.step-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(233, 69, 96, 0.1));
}

.step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: var(--shadow-accent);
    transition: all var(--transition-spring);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(-10deg);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(233, 69, 96, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 14px;
    transition: all var(--transition-spring);
}

.step:hover .step-icon-wrap {
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews {
    padding: 120px 0;
    background: var(--gray-100);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(233, 69, 96, 0.06);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233, 69, 96, 0.1);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.review-stars i {
    color: #f9ca24;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

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

.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(233, 69, 96, 0.2);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    transition: all var(--transition-base);
    background: transparent;
}

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

.faq-icon {
    font-size: 0.8rem;
    color: var(--gray-400);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
    padding: 0 24px;
}

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

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

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

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

.signup {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.signup-bg-layers {
    position: absolute;
    inset: 0;
}

.signup-layer-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a1a3e 100%);
}

.signup-layer-2 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(233, 69, 96, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(100, 80, 200, 0.08) 0%, transparent 50%);
}

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

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

.signup-perks {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-perks li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.perk-icon {
    width: 48px;
    height: 48px;
    background: rgba(233, 69, 96, 0.15);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all var(--transition-spring);
}

.signup-perks li:hover .perk-icon {
    transform: rotate(-10deg) scale(1.1);
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
}

.signup-perks strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
}

.signup-perks span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Form */
.signup-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.signup-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.signup-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.signup-form > p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

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

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

.optional {
    color: var(--gray-400);
    font-weight: 400;
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

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

.input-wrap input:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.08);
}

.input-wrap input:focus + i,
.input-wrap input:focus ~ i {
    color: var(--accent);
}

.input-wrap:has(input:focus) i {
    color: var(--accent);
}

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem !important;
    color: var(--gray-500) !important;
    cursor: pointer;
    font-weight: 400 !important;
    line-height: 1.4;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

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

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

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

.btn .btn-loading {
    display: none;
}

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

.success-icon {
    font-size: 4rem;
    color: #2dd4bf;
    margin-bottom: 20px;
    animation: scaleIn 0.5s var(--ease-out-back);
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.signup-success p {
    color: var(--gray-500);
    font-size: 1rem;
}

.success-sub {
    font-size: 0.85rem !important;
    color: var(--gray-400) !important;
    margin-top: 8px;
}

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

.trust {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.trust-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(233, 69, 96, 0.1);
}

.trust-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(233, 69, 96, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    margin: 0 auto 18px;
    transition: all var(--transition-spring);
}

.trust-card:hover .trust-card-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotate(-10deg);
    border-radius: 50%;
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

.main-footer {
    background: var(--primary-dark);
    position: relative;
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

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

.footer-brand-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

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

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

.footer-links-group a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.footer-links-group a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-links-group a i {
    font-size: 0.8rem;
    width: 16px;
}

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

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

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

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

.footer-age-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(233, 69, 96, 0.15);
    border: 1px solid rgba(233, 69, 96, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-responsible {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

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

.legal-hero {
    padding: calc(var(--header-height) + 60px) 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #2a1a3e 100%);
    z-index: 0;
}

.legal-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.legal-hero-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

.legal-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.1);
}

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

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 10px;
}

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

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

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

.legal-footer-note {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid var(--gray-200);
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0 32px;
}

.gdpr-right {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.gdpr-right:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(233, 69, 96, 0.15);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    background: rgba(233, 69, 96, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.gdpr-right h3 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 8px;
}

.gdpr-right p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* GDPR Table */
.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gdpr-table thead {
    background: var(--primary);
}

.gdpr-table th {
    padding: 12px 16px;
    color: var(--white);
    font-weight: 600;
    text-align: left;
    font-size: 0.85rem;
}

.gdpr-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.gdpr-table tbody tr:hover {
    background: var(--gray-100);
}

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

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

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

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto;
    }

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

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

    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row-reverse {
        direction: ltr;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-slow);
        z-index: 100;
    }

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

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

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 80px;
    }

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

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

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

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

    .signup-form-wrap {
        padding: 28px 20px;
    }

    .legal-content {
        padding: 24px 16px;
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

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

    .cookie-actions {
        width: 100%;
    }

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

    .age-modal-actions {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

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

    .step {
        gap: 20px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .step-line {
        left: 23px;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */

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

    html {
        scroll-behavior: auto;
    }

    .animate-entrance {
        opacity: 1;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ========================================
   FOCUS STYLES (Accessibility)
   ======================================== */

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

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

/* ========================================
   NOISE TEXTURE OVERLAY (subtle)
   ======================================== */

.hero::after,
.stats::after,
.signup::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}
```

Now the JavaScript file:

```js