/* =============================================
   LIGHT-IT-UP - NEUMORPHISM DESIGN SYSTEM
   ============================================= */

/* ----- CSS Custom Properties ----- */
:root {
    /* Base Palette */
    --bg: #e0e5ec;
    --bg-dark: #c8ccd4;
    --bg-light: #f0f5fc;
    --primary: #6d5dfc;
    --primary-dark: #5a4bd4;
    --primary-light: #8b7eff;
    --accent: #ff6b9d;
    --accent-dark: #e0557f;
    --accent-light: #ff8db6;
    --text: #3a3a4e;
    --text-light: #6e6e82;
    --text-lighter: #9a9ab0;
    --white: #ffffff;
    --black: #1a1a2e;

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

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Sora', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index layers */
    --z-base: 1;
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
    --z-cookie: 400;
    --z-top: 500;
}

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

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

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

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

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

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

ul {
    list-style: none;
}

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

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

/* ----- Utility Classes ----- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section-pad {
    padding: var(--space-4xl) 0;
}

/* ----- Section Headers ----- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   BUTTONS - NEUMORPHIC
   ============================================= */
.btn-neu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary-neu {
    background: var(--primary);
    color: var(--white);
    box-shadow: 6px 6px 12px rgba(109, 93, 252, 0.35), -3px -3px 8px rgba(139, 126, 255, 0.25);
}

.btn-primary-neu:hover {
    background: var(--primary-dark);
    box-shadow: 4px 4px 8px rgba(109, 93, 252, 0.5), -2px -2px 6px rgba(139, 126, 255, 0.3);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary-neu:active {
    transform: translateY(0);
    box-shadow: inset 3px 3px 6px rgba(90, 75, 212, 0.4), inset -2px -2px 4px rgba(139, 126, 255, 0.2);
}

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

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

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

.btn-ghost-neu {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--bg-dark);
}

.btn-ghost-neu:hover {
    color: var(--primary);
    border-color: var(--primary-light);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-full {
    width: 100%;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header-neu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(224, 229, 236, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-neu.scrolled {
    box-shadow: 0 4px 20px rgba(163, 177, 198, 0.3);
}

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

.logo-link {
    text-decoration: none;
}

.logo-neu {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-neu-sm);
}

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

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

.nav-link {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

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

.nav-link.active {
    color: var(--primary);
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset-sm);
}

/* Hamburger */
.hamburger-neu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    transition: box-shadow var(--transition-fast);
}

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

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

.ham-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger-neu.open .ham-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-neu.open .ham-line:nth-child(2) {
    opacity: 0;
}

.hamburger-neu.open .ham-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    background: rgba(224, 229, 236, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--space-xl);
}

.mobile-close-btn {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    border-radius: var(--radius-full);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition-fast);
}

.mobile-close-btn:hover {
    box-shadow: var(--shadow-neu);
    color: var(--accent);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    padding: 12px 32px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

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

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
    animation: float-shape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation: float-shape 18s ease-in-out infinite 3s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--primary);
    opacity: 0.06;
    top: 20%;
    right: 25%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    animation: rotate-shape 25s linear infinite;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: var(--accent);
    opacity: 0.08;
    bottom: 25%;
    right: 15%;
    border-radius: var(--radius-md);
    transform: rotate(20deg);
    animation: rotate-shape 20s linear infinite reverse;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

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

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

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    color: var(--black);
}

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

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Hero Visual / Phone Frame */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-frame {
    position: relative;
    width: 280px;
    height: auto;
    background: var(--bg);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-neu-lg);
}

.phone-screen {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.phone-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50px;
    background: radial-gradient(circle at center, rgba(109, 93, 252, 0.15) 0%, transparent 60%);
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--bg);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    z-index: 2;
}

.card-1 {
    top: 15%;
    right: -10%;
    animation: float-card 6s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    left: -10%;
    animation: float-card 7s ease-in-out infinite 2s;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2.5px solid var(--text-light);
    border-radius: 14px;
    position: relative;
}

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

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

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

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 0 0 4px 4px;
    transition: height var(--transition-slow);
}

.about-card:hover::before {
    height: 100%;
}

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

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

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   SCREENSHOTS CAROUSEL
   ============================================= */
.screenshots-section {
    position: relative;
    overflow: hidden;
}

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

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: var(--space-xl);
}

.carousel-slide {
    min-width: calc(33.333% - var(--space-xl) * 2 / 3);
    flex-shrink: 0;
}

.screenshot-card {
    background: var(--bg);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 10px;
    transition: all var(--transition-base);
}

.screenshot-card:hover {
    box-shadow: var(--shadow-neu-lg);
    transform: scale(1.02);
}

.screenshot-card img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

.carousel-btn:hover {
    box-shadow: var(--shadow-neu);
    color: var(--primary);
    transform: scale(1.05);
}

.carousel-btn:active {
    box-shadow: var(--shadow-neu-inset-sm);
    transform: scale(0.98);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.carousel-dot.active {
    box-shadow: var(--shadow-neu-inset-sm);
    background: var(--primary);
}

.carousel-dot:hover {
    background: var(--primary-light);
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-section {
    position: relative;
}

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

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

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

.feature-large {
    grid-column: span 2;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--bg-dark);
    position: absolute;
    top: -8px;
    right: 20px;
    line-height: 1;
    opacity: 0.5;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-number {
    color: var(--primary-light);
    opacity: 0.3;
}

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

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

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   STATS / SOCIAL PROOF SECTION
   ============================================= */
.stats-section {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

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

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

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

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

.stat-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2ecc71;
    margin-top: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: var(--radius-full);
    animation: live-pulse 2s ease-in-out infinite;
}

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

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: var(--space-sm);
}

/* Social Proof Ticker */
.social-proof-ticker {
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    overflow: hidden;
    position: relative;
}

.social-proof-ticker::before,
.social-proof-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.social-proof-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.social-proof-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.ticker-track {
    display: flex;
    gap: var(--space-xl);
    animation: ticker-scroll 40s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
    flex-shrink: 0;
    padding: 8px 16px;
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    border-radius: var(--radius-md);
}

.ticker-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
    position: relative;
}

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

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

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

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

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

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

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

.faq-chevron {
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.5s ease;
    padding: 0 var(--space-xl);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

/* =============================================
   CONTACT / LEAD FORM SECTION
   ============================================= */
.contact-section {
    position: relative;
}

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

.contact-info {
    padding-top: var(--space-xl);
}

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

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-item a {
    font-size: 0.9rem;
    color: var(--primary);
}

.responsible-gaming-note {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset-sm);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.responsible-gaming-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.responsible-gaming-note p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Lead Form */
.contact-form-wrap {
    position: relative;
}

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

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: var(--space-2xl);
}

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

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

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

.input-neu:focus-within {
    box-shadow: var(--shadow-neu-inset), 0 0 0 3px rgba(109, 93, 252, 0.2);
}

.input-neu svg {
    color: var(--text-lighter);
    flex-shrink: 0;
}

.input-neu input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 0.95rem;
}

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

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

/* Checkbox */
.form-consent {
    margin-bottom: var(--space-md);
}

.checkbox-neu {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

.checkmark-neu {
    width: 22px;
    height: 22px;
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset-sm);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

.checkbox-neu input[type="checkbox"]:checked + .checkmark-neu {
    background: var(--primary);
    box-shadow: 3px 3px 6px rgba(109, 93, 252, 0.35), -2px -2px 4px rgba(139, 126, 255, 0.2);
}

.checkbox-neu input[type="checkbox"]:checked + .checkmark-neu::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 6px;
    height: 11px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

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

/* Submit Button Loader */
.btn-loader {
    display: inline-flex;
    align-items: center;
}

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

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

/* Form Message */
.form-message {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    box-shadow: inset 2px 2px 5px rgba(46, 204, 113, 0.15), inset -2px -2px 5px rgba(255, 255, 255, 0.5);
}

.form-message.error {
    background: rgba(255, 107, 157, 0.1);
    color: var(--accent-dark);
    box-shadow: inset 2px 2px 5px rgba(255, 107, 157, 0.15), inset -2px -2px 5px rgba(255, 255, 255, 0.5);
}

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
    position: relative;
}

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

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

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

.trust-card svg {
    margin-bottom: var(--space-lg);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-neu {
    background: var(--bg);
    box-shadow: inset 0 4px 12px rgba(163, 177, 198, 0.15);
    padding: var(--space-4xl) 0 var(--space-xl);
    margin-top: var(--space-2xl);
}

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

.footer-brand .logo-neu {
    margin-bottom: var(--space-md);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    max-width: 300px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-lighter);
    line-height: 1.5;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links-col a {
    font-size: 0.88rem;
    color: var(--text-light);
    transition: color var(--transition-fast);
}

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

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

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

.footer-responsible {
    font-size: 0.75rem !important;
    color: var(--text-lighter) !important;
    margin-top: var(--space-sm) !important;
    font-style: italic;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top-neu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-overlay);
    width: 52px;
    height: 52px;
    background: var(--bg);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top-neu.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-neu:hover {
    box-shadow: var(--shadow-neu-lg);
    transform: translateY(-3px);
    color: var(--primary-dark);
}

.back-to-top-neu:active {
    box-shadow: var(--shadow-neu-inset-sm);
    transform: translateY(0);
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    background: var(--bg);
    box-shadow: 0 -8px 30px rgba(163, 177, 198, 0.4);
    padding: var(--space-xl) 0;
    transform: translateY(100%);
    animation: slide-up 0.6s ease forwards;
}

@keyframes slide-up {
    to { transform: translateY(0); }
}

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

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

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

.cookie-text p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.cookie-actions .btn-neu {
    font-size: 0.82rem;
    padding: 10px 20px;
}

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

.cookie-setting-item {
    margin-bottom: var(--space-sm);
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
    cursor: pointer;
}

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

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

/* =============================================
   AGE VERIFICATION MODAL
   ============================================= */
.age-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: rgba(224, 229, 236, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
}

.age-modal-box {
    background: var(--bg);
    box-shadow: var(--shadow-neu-lg);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: modal-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-pop {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.age-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--bg);
    box-shadow: var(--shadow-neu);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
}

.age-modal-box h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.age-modal-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

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

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

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

.legal-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.legal-hero-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.legal-section {
    padding-top: 0;
}

.legal-content {
    background: var(--white);
    box-shadow: var(--shadow-neu-lg);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 880px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--bg);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

.legal-content ul {
    list-style: disc;
}

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

.legal-content li {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

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

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--bg);
}

.legal-table th {
    background: var(--bg);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
}

.legal-table td {
    color: var(--text-light);
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--bg);
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: var(--text-lighter);
    margin-bottom: var(--space-xs);
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

/* Staggered delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* =============================================
   NOISE TEXTURE OVERLAY
   ============================================= */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-visual {
        order: 1;
        margin-bottom: var(--space-xl);
    }

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

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

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

    .hero-phone-frame {
        width: 240px;
    }

    .card-1 {
        right: 5%;
    }

    .card-2 {
        left: 5%;
    }

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

    .nav-neu {
        display: none;
    }

    .hamburger-neu {
        display: flex;
    }

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

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

    .carousel-slide {
        min-width: calc(50% - var(--space-xl) / 2);
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-3xl);
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

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

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

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

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

    .carousel-slide {
        min-width: calc(100% - 0px);
    }

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

    .lead-form-neu {
        padding: var(--space-xl);
        border-radius: var(--radius-lg);
    }

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

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

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

    .age-modal-box {
        padding: var(--space-2xl);
    }

    .floating-card {
        display: none;
    }

    .back-to-top-neu {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* Print Styles */
@media print {
    .header-neu,
    .footer-neu,
    .cookie-banner,
    .age-overlay,
    .back-to-top-neu,
    .hero-bg-shapes {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        padding: 0;
    }
}
```

Now the JavaScript file:

```javascript