/* =====================================================
   VELQAMIRA - FROST DESIGN SYSTEM
   Scandinavian Ice Crystal Aesthetic
   ===================================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Palette */
    --frost-primary: #1a365d;
    --frost-primary-light: #234876;
    --frost-primary-dark: #0f2240;
    --frost-secondary: #f0f5ff;
    --frost-accent: #5fb5d4;
    --frost-accent-light: #8fd0e6;
    --frost-accent-dark: #3a9bbe;

    /* Extended Palette */
    --frost-ice-white: #f8faff;
    --frost-glacier: #e4edf8;
    --frost-silver: #c8d6e5;
    --frost-pale-blue: #dce8f5;
    --frost-deep-blue: #0d1b33;
    --frost-midnight: #091424;
    --frost-crystal: #a8d4e6;
    --frost-snow: #ffffff;

    /* Functional */
    --frost-success: #34d399;
    --frost-error: #f87171;
    --frost-warning: #fbbf24;
    --frost-text: #1a365d;
    --frost-text-light: #4a6fa5;
    --frost-text-muted: #7b9cc4;
    --frost-border: rgba(95, 181, 212, 0.2);
    --frost-border-strong: rgba(95, 181, 212, 0.4);
    --frost-glass-bg: rgba(240, 245, 255, 0.65);
    --frost-glass-border: rgba(200, 214, 229, 0.5);
    --frost-shadow: 0 4px 32px rgba(13, 27, 51, 0.08);
    --frost-shadow-lg: 0 12px 48px rgba(13, 27, 51, 0.12);
    --frost-shadow-blue: 0 8px 32px rgba(26, 54, 93, 0.15);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 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;
    --space-5xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

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

/* --- 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);
    color: var(--frost-text);
    background-color: var(--frost-ice-white);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul, ol {
    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;
}

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

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    color: var(--frost-primary);
}

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

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

@keyframes frostFadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(16px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes crystalFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(-2deg); }
    75% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes crystalGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

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

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

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

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

.animate-frost-in {
    opacity: 0;
    animation: frostFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.btn-frost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

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

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

.btn-frost-primary {
    background: linear-gradient(135deg, var(--frost-primary) 0%, var(--frost-primary-light) 100%);
    color: var(--frost-snow);
    border: 1px solid rgba(95, 181, 212, 0.3);
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.3);
}

.btn-frost-primary:hover {
    background: linear-gradient(135deg, var(--frost-primary-light) 0%, var(--frost-accent-dark) 100%);
    box-shadow: 0 6px 24px rgba(26, 54, 93, 0.4);
    transform: translateY(-2px);
    color: var(--frost-snow);
}

.btn-frost-secondary {
    background: var(--frost-glass-bg);
    color: var(--frost-primary);
    border: 1px solid var(--frost-border-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-frost-secondary:hover {
    background: var(--frost-glacier);
    border-color: var(--frost-accent);
    transform: translateY(-2px);
    color: var(--frost-primary);
}

.btn-frost-glass {
    background: rgba(255, 255, 255, 0.15);
    color: var(--frost-snow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-frost-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--frost-snow);
}

.btn-frost-ghost {
    background: transparent;
    color: var(--frost-primary);
    border: 1px solid transparent;
}

.btn-frost-ghost:hover {
    background: var(--frost-glacier);
    color: var(--frost-primary);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* =====================================================
   FROST CARD (Glass Effect)
   ===================================================== */

.frost-card {
    background: var(--frost-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--frost-glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--frost-shadow);
    transition: all var(--transition-base);
}

.frost-card:hover {
    box-shadow: var(--frost-shadow-lg);
    border-color: var(--frost-border-strong);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(13, 27, 51, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(95, 181, 212, 0.3);
    padding: var(--space-lg) var(--space-xl);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

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

.cookie-title {
    color: var(--frost-snow);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.cookie-desc {
    color: var(--frost-silver);
    font-size: 0.85rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}

.cookie-settings-panel {
    max-width: 1200px;
    margin: var(--space-lg) auto 0;
    border-top: 1px solid rgba(95, 181, 212, 0.2);
    padding-top: var(--space-lg);
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(95, 181, 212, 0.1);
    gap: var(--space-lg);
}

.cookie-setting-row div:first-child {
    flex: 1;
}

.cookie-setting-row strong {
    color: var(--frost-snow);
    font-size: 0.9rem;
}

.cookie-setting-row p {
    color: var(--frost-silver);
    font-size: 0.8rem;
    margin-top: 2px;
}

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(95, 181, 212, 0.2);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    border: 1px solid rgba(95, 181, 212, 0.3);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background: var(--frost-silver);
    border-radius: 50%;
    transition: var(--transition-base);
}

.frost-toggle input:checked + .toggle-slider {
    background: var(--frost-accent);
    border-color: var(--frost-accent-light);
}

.frost-toggle input:checked + .toggle-slider::before {
    transform: translateX(22px);
    background: var(--frost-snow);
}

.frost-toggle.disabled {
    opacity: 0.6;
}

.frost-toggle.disabled .toggle-slider {
    cursor: not-allowed;
}

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

.age-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(9, 20, 36, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.age-modal-card {
    background: linear-gradient(145deg, rgba(240, 245, 255, 0.95) 0%, rgba(228, 237, 248, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--frost-glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-2xl);
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 80px rgba(13, 27, 51, 0.25);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.age-modal-crystal {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(95, 181, 212, 0.1) 0%, transparent 60%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: -30px;
    right: -30px;
}

.age-modal-crystal--2 {
    top: auto;
    right: auto;
    bottom: -40px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.08) 0%, transparent 60%);
}

.age-modal-icon {
    font-size: 3rem;
    color: var(--frost-accent);
    margin-bottom: var(--space-lg);
    display: block;
}

.age-modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-md);
}

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

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

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

.frost-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 250, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--frost-border);
    transition: all var(--transition-base);
}

.frost-header.scrolled {
    background: rgba(248, 250, 255, 0.92);
    box-shadow: 0 2px 24px rgba(13, 27, 51, 0.06);
}

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

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

.logo-crystal {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--frost-primary) 0%, var(--frost-accent) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-snow);
    font-size: 1rem;
    transform: rotate(5deg);
    transition: transform var(--transition-base);
}

.frost-logo:hover .logo-crystal {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--frost-primary);
    letter-spacing: -0.02em;
}

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

.nav-link {
    padding: 0.5rem 0.9rem;
    color: var(--frost-text-light);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

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

.frost-nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-cta {
    font-size: 0.85rem;
    padding: 0.55rem 1.2rem;
}

/* Hamburger */
.frost-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 2px;
}

.frost-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--frost-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.frost-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile Menu */
.frost-mobile-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--frost-border);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--frost-shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.frost-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

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

.mobile-link {
    display: block;
    padding: 0.75rem var(--space-md);
    color: var(--frost-text-light);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.mobile-link:hover {
    color: var(--frost-primary);
    background: var(--frost-glacier);
}

.mobile-cta {
    margin-top: var(--space-sm);
    text-align: center;
}

@media (max-width: 920px) {
    .frost-nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .frost-hamburger {
        display: flex;
    }

    .frost-mobile-menu {
        display: block;
    }
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-frost-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(95, 181, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 54, 93, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(95, 181, 212, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--frost-ice-white) 0%, var(--frost-secondary) 50%, var(--frost-glacier) 100%);
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(95, 181, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(95, 181, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Crystal Particles */
.crystal-particle {
    position: absolute;
    background: linear-gradient(135deg, rgba(95, 181, 212, 0.15) 0%, rgba(200, 214, 229, 0.08) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: crystalFloat 8s ease-in-out infinite;
    z-index: 1;
}

.crystal-1 { width: 60px; height: 60px; top: 15%; left: 10%; animation-delay: 0s; }
.crystal-2 { width: 40px; height: 40px; top: 25%; right: 15%; animation-delay: 1.5s; }
.crystal-3 { width: 80px; height: 80px; bottom: 20%; left: 5%; animation-delay: 3s; opacity: 0.6; }
.crystal-4 { width: 30px; height: 30px; top: 60%; right: 8%; animation-delay: 4.5s; }
.crystal-5 { width: 50px; height: 50px; top: 10%; left: 50%; animation-delay: 2s; }
.crystal-6 { width: 35px; height: 35px; bottom: 30%; right: 25%; animation-delay: 5s; }
.crystal-7 { width: 25px; height: 25px; top: 40%; left: 25%; animation-delay: 1s; }
.crystal-8 { width: 45px; height: 45px; bottom: 10%; left: 40%; animation-delay: 3.5s; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.45rem 1.2rem;
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid rgba(95, 181, 212, 0.25);
    border-radius: var(--radius-full);
    color: var(--frost-accent-dark);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--frost-primary);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
}

.hero-title-accent {
    font-weight: 600;
    background: linear-gradient(135deg, var(--frost-accent-dark) 0%, var(--frost-accent) 50%, var(--frost-crystal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--frost-text-light);
    max-width: 580px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--frost-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--frost-glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--frost-shadow);
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--frost-primary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: var(--frost-text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--frost-border-strong);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--frost-accent);
    animation: scrollLine 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--frost-text-muted);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-stats {
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

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

/* =====================================================
   SECTION HEADERS
   ===================================================== */

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.2);
    border-radius: var(--radius-full);
    color: var(--frost-accent-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.section-tag i {
    font-size: 0.7rem;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--frost-crystal);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--frost-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

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

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

.about-section {
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(95, 181, 212, 0.04) 0%, transparent 40%),
        var(--frost-ice-white);
}

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

.about-card {
    padding: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--frost-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.icon-hex {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(95, 181, 212, 0.12) 0%, rgba(26, 54, 93, 0.08) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-accent-dark);
    font-size: 1.2rem;
    transition: all var(--transition-base);
}

.about-card:hover .icon-hex {
    background: linear-gradient(135deg, var(--frost-accent) 0%, var(--frost-primary) 100%);
    color: var(--frost-snow);
    transform: scale(1.08);
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-sm);
}

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

@media (max-width: 920px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

.features-section {
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(95, 181, 212, 0.05) 0%, transparent 40%),
        var(--frost-secondary);
    position: relative;
    overflow: hidden;
}

.features-frost-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.frost-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(95, 181, 212, 0.06), transparent);
    width: 1px;
}

.frost-line-1 { left: 20%; height: 100%; }
.frost-line-2 { left: 50%; height: 100%; }
.frost-line-3 { left: 80%; height: 100%; }

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}

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

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

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

/* Feature Visuals */
.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

/* Phone Mockup */
.feature-device {
    width: 200px;
    height: 360px;
    background: linear-gradient(145deg, var(--frost-primary-dark) 0%, var(--frost-primary) 100%);
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 24px 64px rgba(13, 27, 51, 0.2);
    position: relative;
}

.feature-device::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: rgba(95, 181, 212, 0.3);
    border-radius: 4px;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0d1b33 0%, #1a365d 100%);
    border-radius: 18px;
    overflow: hidden;
    padding: 24px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.screen-ui {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.ui-bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(95, 181, 212, 0.15);
}

.ui-bar-1 { width: 70%; }
.ui-bar-2 { width: 50%; }
.ui-bar-3 { width: 85%; }

.ui-grid-mock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    flex: 1;
    margin-top: 8px;
}

.grid-cell {
    background: rgba(95, 181, 212, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(95, 181, 212, 0.1);
    transition: all 1.5s ease;
}

.grid-cell.active {
    background: rgba(95, 181, 212, 0.25);
    border-color: rgba(95, 181, 212, 0.4);
    animation: crystalGlow 3s ease-in-out infinite;
}

.ui-bottom-bar {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding-top: 8px;
}

.ui-btn-mock {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid rgba(95, 181, 212, 0.15);
}

.ui-btn-mock.active {
    background: rgba(95, 181, 212, 0.3);
    border-color: var(--frost-accent);
}

/* Orb Visual */
.feature-orb {
    width: 240px;
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring {
    position: absolute;
    border: 1px solid rgba(95, 181, 212, 0.2);
    border-radius: 50%;
}

.orb-ring-1 {
    width: 100%;
    height: 100%;
    animation: orbSpin 20s linear infinite;
    border-style: dashed;
}

.orb-ring-2 {
    width: 75%;
    height: 75%;
    animation: orbSpinReverse 15s linear infinite;
    border-color: rgba(95, 181, 212, 0.15);
}

.orb-ring-3 {
    width: 50%;
    height: 50%;
    animation: orbSpin 10s linear infinite;
    border-color: rgba(95, 181, 212, 0.3);
}

.orb-center {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--frost-accent) 0%, var(--frost-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-snow);
    font-size: 1.4rem;
    box-shadow: 0 8px 32px rgba(95, 181, 212, 0.4);
    z-index: 1;
}

/* Crystal Visual */
.feature-crystals {
    width: 240px;
    height: 240px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(95, 181, 212, 0.2) 0%, rgba(200, 214, 229, 0.1) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: crystalFloat 6s ease-in-out infinite;
}

.crystal-shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.crystal-shape-2 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.15) 0%, rgba(95, 181, 212, 0.1) 100%);
}

.crystal-shape-3 {
    width: 50px;
    height: 50px;
    bottom: 15%;
    left: 25%;
    animation-delay: 3s;
}

.crystal-shape-4 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(95, 181, 212, 0.25) 0%, transparent 100%);
}

.crystal-glow {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(95, 181, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: crystalGlow 4s ease-in-out infinite;
}

/* Feature Info */
.feature-info {
    padding: var(--space-xl) 0;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(95, 181, 212, 0.2);
    line-height: 1;
    margin-bottom: var(--space-sm);
    display: block;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-md);
}

.feature-text {
    color: var(--frost-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--frost-text);
    font-size: 0.92rem;
    font-weight: 500;
}

.feature-list li i {
    color: var(--frost-accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .feature-row,
    .feature-row-reverse {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        direction: ltr;
    }

    .feature-visual {
        min-height: 240px;
    }

    .feature-device {
        width: 160px;
        height: 280px;
    }

    .feature-orb,
    .feature-crystals {
        width: 200px;
        height: 200px;
    }
}

/* =====================================================
   COMMUNITY / SOCIAL PROOF SECTION
   ===================================================== */

.community-section {
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(95, 181, 212, 0.05) 0%, transparent 40%),
        var(--frost-ice-white);
}

/* Social Proof Bar */
.social-proof-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--frost-glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--frost-glass-border);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

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

.proof-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(95, 181, 212, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.proof-icon.pulse-green {
    color: var(--frost-success);
    font-size: 0.6rem;
}

.proof-icon.pulse-green i {
    animation: pulseGreen 2s ease-in-out infinite;
}

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

.proof-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--frost-primary);
    line-height: 1.2;
}

.proof-label {
    font-size: 0.78rem;
    color: var(--frost-text-muted);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: var(--frost-border-strong);
}

@media (max-width: 768px) {
    .social-proof-bar {
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .proof-divider {
        display: none;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.testimonial-card {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--frost-warning);
    font-size: 0.85rem;
}

.testimonial-text {
    color: var(--frost-text);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--frost-border);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--frost-accent) 0%, var(--frost-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-snow);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--frost-primary);
}

.author-role {
    font-size: 0.78rem;
    color: var(--frost-text-muted);
}

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

/* Activity Feed */
.activity-feed {
    padding: var(--space-xl);
}

.activity-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.activity-title i {
    color: var(--frost-accent);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-height: 240px;
    overflow: hidden;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: rgba(95, 181, 212, 0.04);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--frost-text-light);
    animation: slideInRight 0.4s ease forwards;
    border-left: 2px solid var(--frost-accent);
}

.activity-item .activity-icon {
    color: var(--frost-accent);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.activity-item .activity-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--frost-text-muted);
    flex-shrink: 0;
}

/* =====================================================
   REGISTER / LEAD FORM SECTION
   ===================================================== */

.register-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(145deg, var(--frost-primary-dark) 0%, var(--frost-primary) 50%, #1e4470 100%);
    position: relative;
    overflow: hidden;
}

.register-frost-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.register-crystal {
    position: absolute;
    background: rgba(95, 181, 212, 0.06);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.register-crystal-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 10%;
    animation: crystalFloat 10s ease-in-out infinite;
}

.register-crystal-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 5%;
    animation: crystalFloat 8s ease-in-out infinite 2s;
}

.register-crystal-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 15%;
    animation: crystalFloat 12s ease-in-out infinite 4s;
}

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

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

.register-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 500;
    color: var(--frost-snow);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.register-desc {
    color: var(--frost-silver);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

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

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

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(95, 181, 212, 0.15);
    border: 1px solid rgba(95, 181, 212, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-accent-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.benefit-item strong {
    color: var(--frost-snow);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 2px;
}

.benefit-item p {
    color: var(--frost-silver);
    font-size: 0.85rem;
}

/* Spots Counter */
.register-counter {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: var(--radius-lg);
}

.counter-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.counter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--frost-accent), var(--frost-accent-light));
    border-radius: var(--radius-full);
    transition: width 1.5s ease;
}

.counter-text {
    color: var(--frost-silver);
    font-size: 0.85rem;
}

.counter-text strong {
    color: var(--frost-accent-light);
}

/* Form Wrapper */
.register-form-wrapper {
    padding: var(--space-2xl);
    background: rgba(248, 250, 255, 0.95);
    border: 1px solid var(--frost-glass-border);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-xs);
}

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

/* Form Elements */
.frost-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--frost-primary);
}

.form-label .optional {
    font-weight: 400;
    color: var(--frost-text-muted);
    font-size: 0.8rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--frost-text-muted);
    font-size: 0.85rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.frost-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    background: var(--frost-ice-white);
    border: 1px solid var(--frost-border-strong);
    border-radius: var(--radius-md);
    color: var(--frost-text);
    font-size: 0.92rem;
    transition: all var(--transition-fast);
    outline: none;
}

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

.frost-input:focus {
    border-color: var(--frost-accent);
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.15);
    background: var(--frost-snow);
}

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

/* Fix: icon is before input in markup, so use sibling differently */
.input-wrapper:focus-within .input-icon {
    color: var(--frost-accent);
}

.frost-input.error {
    border-color: var(--frost-error);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.form-error {
    font-size: 0.78rem;
    color: var(--frost-error);
    min-height: 1em;
}

/* Checkbox */
.form-checkbox-group {
    gap: 0;
}

.frost-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--frost-text-light);
    line-height: 1.5;
}

.frost-checkbox input {
    display: none;
}

.checkbox-mark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--frost-border-strong);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
    position: relative;
}

.checkbox-mark::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid var(--frost-snow);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform var(--transition-fast);
}

.frost-checkbox input:checked + .checkbox-mark {
    background: var(--frost-accent);
    border-color: var(--frost-accent);
}

.frost-checkbox input:checked + .checkbox-mark::after {
    transform: rotate(45deg) scale(1);
}

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

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

.success-icon {
    font-size: 3rem;
    color: var(--frost-success);
    margin-bottom: var(--space-md);
}

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

.form-success p {
    color: var(--frost-text-light);
    font-size: 0.95rem;
}

.form-error-message {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: var(--radius-md);
    color: var(--frost-error);
    font-size: 0.88rem;
    margin-top: var(--space-md);
}

/* Button Loader */
.btn-loader {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

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

.faq-section {
    padding: var(--space-5xl) 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(95, 181, 212, 0.04) 0%, transparent 40%),
        var(--frost-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item {
    overflow: hidden;
    transition: all var(--transition-base);
}

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

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

.faq-question span {
    flex: 1;
}

.faq-icon {
    font-size: 0.75rem;
    color: var(--frost-accent);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0 var(--space-xl);
}

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

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

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

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-section {
    padding: var(--space-5xl) 0;
    background: var(--frost-ice-white);
}

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

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

.contact-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(95, 181, 212, 0.1) 0%, rgba(26, 54, 93, 0.06) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-accent-dark);
    font-size: 1.3rem;
    transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--frost-accent) 0%, var(--frost-primary) 100%);
    color: var(--frost-snow);
    transform: scale(1.05);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-sm);
}

.contact-card p {
    color: var(--frost-text-light);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.contact-link {
    color: var(--frost-accent-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--frost-accent);
}

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

/* =====================================================
   TRUST & SECURITY SECTION
   ===================================================== */

.trust-section {
    padding: var(--space-4xl) 0 var(--space-5xl);
    background: var(--frost-ice-white);
}

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

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

.trust-icon {
    font-size: 1.8rem;
    color: var(--frost-accent);
    margin-bottom: var(--space-md);
    display: block;
}

.trust-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-sm);
}

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

.responsible-gaming-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.responsible-gaming-notice i {
    color: var(--frost-warning);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.responsible-gaming-notice p {
    color: var(--frost-text);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 920px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

.frost-footer {
    background: var(--frost-deep-blue);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(95, 181, 212, 0.15);
}

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

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-text {
    color: var(--frost-snow);
}

.footer-logo .logo-crystal {
    background: linear-gradient(135deg, var(--frost-accent) 0%, var(--frost-primary-light) 100%);
}

.footer-desc {
    color: var(--frost-silver);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 280px;
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid rgba(95, 181, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-silver);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: var(--frost-accent);
    border-color: var(--frost-accent);
    color: var(--frost-snow);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--frost-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

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

.footer-links a {
    color: var(--frost-silver);
    font-size: 0.88rem;
    transition: color var(--transition-fast);
    text-decoration: none;
}

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

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(95, 181, 212, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-bottom-left p {
    color: var(--frost-silver);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-bottom-left p:first-child {
    margin-bottom: 4px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--frost-error);
    border-radius: var(--radius-md);
    color: var(--frost-error);
    font-weight: 800;
    font-size: 0.85rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.35rem 0.8rem;
    background: rgba(95, 181, 212, 0.08);
    border: 1px solid rgba(95, 181, 212, 0.15);
    border-radius: var(--radius-full);
    color: var(--frost-silver);
    font-size: 0.75rem;
    font-weight: 500;
}

.footer-badge i {
    font-size: 0.65rem;
    color: var(--frost-accent);
}

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: var(--frost-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--frost-glass-border);
    color: var(--frost-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--frost-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
    z-index: 100;
}

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

.back-to-top:hover {
    background: var(--frost-primary);
    color: var(--frost-snow);
    border-color: var(--frost-primary);
    transform: translateY(-3px);
}

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

.legal-hero {
    padding: 140px 0 60px;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(95, 181, 212, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, var(--frost-ice-white) 0%, var(--frost-secondary) 100%);
    text-align: center;
}

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

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 500;
    color: var(--frost-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.legal-hero-date {
    color: var(--frost-text-muted);
    font-size: 0.88rem;
}

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

.legal-content {
    padding: var(--space-3xl);
    background: var(--frost-snow);
    max-width: 860px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--frost-border);
}

.legal-block:last-of-type {
    border-bottom: none;
    margin-bottom: var(--space-lg);
    padding-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-md);
}

.legal-block h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

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

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul,
.legal-block ol {
    list-style: none;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-block li {
    color: var(--frost-text-light);
    font-size: 0.92rem;
    line-height: 1.8;
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.legal-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 5px;
    height: 5px;
    background: var(--frost-accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

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

.legal-footer-note {
    padding: var(--space-xl);
    background: var(--frost-glacier);
    border-radius: var(--radius-lg);
    text-align: center;
}

.legal-footer-note p {
    color: var(--frost-text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: var(--space-xs);
}

.legal-footer-note p:last-child {
    margin-bottom: 0;
}

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.gdpr-right-card {
    padding: var(--space-xl);
    background: var(--frost-ice-white);
    border: 1px solid var(--frost-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.gdpr-right-card:hover {
    border-color: var(--frost-accent);
    box-shadow: 0 4px 16px rgba(95, 181, 212, 0.1);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(95, 181, 212, 0.12) 0%, rgba(26, 54, 93, 0.06) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--frost-accent-dark);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.gdpr-right-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--frost-primary);
    margin-bottom: var(--space-sm);
    margin-top: 0;
}

.gdpr-right-card p {
    color: var(--frost-text-light);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: var(--space-xl);
    }

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

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

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

    html {
        scroll-behavior: auto;
    }
}

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

/* 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;
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
    .frost-header,
    .cookie-banner,
    .age-modal-overlay,
    .back-to-top,
    .frost-footer,
    .hero-frost-bg,
    .features-frost-bg,
    .register-frost-bg {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .frost-card {
        background: white;
        border: 1px solid #ddd;
        backdrop-filter: none;
        box-shadow: none;
    }
}
```

Now the JavaScript:

```js