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

:root {
    /* Core Neumorphism Colors */
    --bg: #e0e5ec;
    --bg-dark: #c8ccd4;
    --bg-light: #f0f5fc;
    --shadow-dark: #a3b1c6;
    --shadow-light: #ffffff;
    --shadow-dark-strong: #8a99ae;
    --shadow-light-strong: #ffffff;

    /* Brand Colors */
    --primary: #6d5dfc;
    --primary-dark: #5a4bd4;
    --primary-light: #8b7fff;
    --primary-glow: rgba(109, 93, 252, 0.3);
    --accent: #ff6b9d;
    --accent-dark: #e05585;
    --accent-light: #ff8db6;
    --accent-glow: rgba(255, 107, 157, 0.3);

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

    /* Functional Colors */
    --success: #4ade80;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Shadows */
    --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 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    --shadow-neu-pressed: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;

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

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-round: 50%;
    --radius-pill: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

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

/* Reset */
*, *::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-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 1rem;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Neumorphic Card */
.neu-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-neu);
    padding: var(--space-xl);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.neu-card-sm {
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-neu-sm);
}

.neu-card-inset {
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-neu-inset);
    padding: var(--space-sm);
}

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

.btn-neu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary-neu {
    background: var(--primary);
    color: var(--text-on-primary);
    box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light), inset 0 0 0 transparent;
}

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

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

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

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

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

.btn-ghost-neu {
    background: transparent;
    color: var(--text-secondary);
    box-shadow: none;
    border: 2px solid var(--shadow-dark);
}

.btn-ghost-neu:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(109, 93, 252, 0.05);
}

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

.btn-full {
    width: 100%;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-cookie);
    padding: var(--space-lg);
    animation: slideUp 0.5s ease;
}

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

.cookie-inner {
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.15), var(--shadow-neu);
    padding: var(--space-xl) var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

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

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

.cookie-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

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

.cookie-settings {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--shadow-dark);
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

/* Toggle Switch */
.neu-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.neu-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-neu-inset-sm);
    transition: var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--bg);
    border-radius: var(--radius-round);
    box-shadow: 2px 2px 4px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
    transition: var(--transition-base);
}

.neu-toggle input:checked + .toggle-slider {
    background: var(--primary);
    box-shadow: inset 2px 2px 4px var(--primary-dark), inset -2px -2px 4px var(--primary-light);
}

.neu-toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
    background: #fff;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.neu-toggle input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(224, 229, 236, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    animation: fadeIn 0.3s ease;
}

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

.modal-neu {
    background: var(--bg);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-neu-lg);
    padding: var(--space-3xl);
    max-width: 480px;
    width: 100%;
    text-align: center;
    animation: modalPop 0.4s var(--transition-spring);
}

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

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

.modal-neu h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.modal-neu p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

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

.age-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-lg);
    margin-bottom: 0;
}

.age-disclaimer a {
    color: var(--primary);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(224, 229, 236, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: var(--space-sm) 0;
}

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

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

.logo-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-neu-sm);
    flex-shrink: 0;
}

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

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

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

.nav-link {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
}

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

.nav-link.nav-cta {
    background: var(--primary);
    color: var(--text-on-primary);
    box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
    padding: var(--space-sm) var(--space-lg);
}

.nav-link.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--text-on-primary);
    box-shadow: 2px 2px 4px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    gap: 5px;
    padding: 10px;
}

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

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

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 var(--space-3xl);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(109, 93, 252, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: var(--radius-round);
    opacity: 0.3;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: var(--z-base);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--bg);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-neu-sm);
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.6s ease both;
}

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

.hero-title {
    font-family: var(--font-display);
    margin-bottom: var(--space-xl);
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: fadeInLeft 0.6s ease both;
}

.title-line:nth-child(1) {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    animation-delay: 0.1s;
}

.title-line.title-accent {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
    filter: drop-shadow(0 4px 8px var(--primary-glow));
}

.title-line.title-sub {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 4px;
    animation-delay: 0.3s;
}

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

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    animation: fadeIn 0.6s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    animation: fadeIn 0.6s ease 0.5s both;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeIn 0.6s ease 0.6s both;
}

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

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

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

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

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-neu-lg);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
}

.hero-image-glow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 60px;
    background: var(--primary-glow);
    filter: blur(30px);
    border-radius: var(--radius-round);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-neu);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 3s;
}

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

.floating-text {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeIn 0.6s ease 1s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border-radius: 13px;
    border: 2px solid var(--text-muted);
    position: relative;
}

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

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-display);
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */

.social-proof-ticker {
    padding: var(--space-xl) 0;
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset);
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

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

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

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

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

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

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-round);
    background: var(--primary);
    flex-shrink: 0;
}

.ticker-dot.accent {
    background: var(--accent);
}

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

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

.about-card-large {
    background: var(--bg);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-neu-lg);
    overflow: hidden;
}

.about-image-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.about-card-large:hover .about-image-wrap img {
    transform: scale(1.05);
}

.about-card-content {
    padding: var(--space-xl);
}

.about-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.about-card-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-cards-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.about-card-sm {
    padding: var(--space-xl);
    text-align: center;
}

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

.about-card-sm h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.about-card-sm p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   SCREENSHOTS GALLERY
   ============================================ */

.gallery-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-track {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.gallery-slide {
    display: none;
    animation: galleryFade 0.5s ease;
}

.gallery-slide.active {
    display: block;
}

@keyframes galleryFade {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.gallery-image-wrap {
    overflow: hidden;
}

.gallery-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
}

.gallery-caption {
    text-align: center;
    padding: var(--space-xl) 0 var(--space-md);
}

.gallery-caption h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.gallery-caption p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

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

.gallery-btn:hover {
    color: var(--primary);
    box-shadow: 2px 2px 4px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
}

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

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

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

.gallery-dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow), var(--shadow-neu-sm);
}

.gallery-dot:hover:not(.active) {
    background: var(--primary-light);
}

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

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

.feature-card {
    position: relative;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

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

.feature-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-lg);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--bg);
    text-shadow: 2px 2px 4px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
    line-height: 1;
    pointer-events: none;
}

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

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.feature-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: var(--bg);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-neu-inset-sm);
}

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

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

.stat-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

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

.stat-counter {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 600;
}

.live-pulse {
    color: var(--accent);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-round);
    background: var(--accent);
    animation: pulse 2s infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--accent-glow); }
    70% { box-shadow: 0 0 0 8px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

/* Activity Feed */
.activity-feed {
    padding: var(--space-xl);
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.activity-feed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.activity-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--bg);
    box-shadow: var(--shadow-neu-sm);
    animation: slideInActivity 0.4s ease both;
    font-size: 0.85rem;
}

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

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

.activity-text {
    flex: 1;
    color: var(--text-secondary);
}

.activity-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

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

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

.faq-item {
    padding: 0;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

/* ============================================
   REGISTRATION / LEAD FORM SECTION
   ============================================ */

.registration-section {
    background:
        radial-gradient(circle at 30% 50%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, var(--accent-glow) 0%, transparent 50%),
        var(--bg);
}

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

.reg-info {
    animation: fadeInLeft 0.6s ease both;
}

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

.reg-info p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.reg-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

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

.reg-trust {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.reg-trust svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Form */
.reg-form {
    padding: var(--space-2xl);
}

.reg-form h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--text-primary);
}

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

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

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

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

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

.input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
}

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

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--error);
    margin-top: var(--space-xs);
    min-height: 1.2em;
}

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

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

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

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

.checkbox-wrap input:checked + .checkmark {
    background: var(--primary);
    box-shadow: inset 2px 2px 4px var(--primary-dark), inset -2px -2px 4px var(--primary-light);
}

.checkbox-wrap input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-md);
}

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

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

/* Success Message */
.form-success {
    text-align: center;
    padding: var(--space-3xl);
}

.success-icon {
    margin-bottom: var(--space-lg);
    animation: successPop 0.5s var(--transition-spring);
}

@keyframes successPop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.trust-item {
    text-align: center;
    padding: var(--space-xl);
}

.trust-item svg {
    margin-bottom: var(--space-md);
}

.trust-item h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

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

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

.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--bg);
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

.footer-logo span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.social-link:hover {
    color: var(--primary);
    box-shadow: 2px 2px 4px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
}

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

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

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

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

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

.footer-links-group li svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.footer-links-group li span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-address {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: var(--shadow-neu-inset);
    margin-bottom: var(--space-xl);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-address svg {
    flex-shrink: 0;
    color: var(--primary);
}

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

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

.footer-disclaimer {
    font-size: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    z-index: var(--z-dropdown);
    transition: all var(--transition-base);
    animation: fadeIn 0.3s ease;
}

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

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

.legal-hero {
    padding: 140px 0 var(--space-3xl);
    text-align: center;
    background:
        radial-gradient(circle at 50% 50%, var(--primary-glow) 0%, transparent 50%),
        var(--bg);
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

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

.legal-content {
    background: #f5f7fa;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-neu);
    padding: var(--space-3xl);
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
}

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

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

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

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

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

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

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

.legal-content li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

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

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

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

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

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

.gdpr-table th,
.gdpr-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--shadow-dark);
}

.gdpr-table th {
    background: var(--primary);
    color: var(--text-on-primary);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gdpr-table td {
    color: var(--text-secondary);
    background: #fff;
}

.gdpr-table tr:last-child td {
    border-bottom: none;
}

.gdpr-table tr:nth-child(even) td {
    background: #f9fafb;
}

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

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

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

    .hero-desc {
        margin: 0 auto var(--space-xl);
    }

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(224, 229, 236, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
        z-index: var(--z-sticky);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links .nav-link {
        font-size: 1rem;
        padding: var(--space-md) var(--space-xl);
    }

    .hamburger {
        display: flex;
        z-index: 300;
    }

    .hero {
        padding: 100px 0 var(--space-2xl);
        min-height: auto;
    }

    .title-line.title-accent {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

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

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

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

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

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

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

    .cookie-inner {
        padding: var(--space-lg);
    }

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

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

    .gdpr-table {
        display: block;
        overflow-x: auto;
    }

    .scroll-indicator {
        display: none;
    }

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

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

    .reg-benefits {
        align-items: center;
    }

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

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

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .modal-neu {
        padding: var(--space-xl);
    }

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

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

    .ticker-track {
        animation: none;
    }

    .hero-particle {
        display: none;
    }
}

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

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

Now the JavaScript file:

```javascript