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

:root {
    /* Core Palette */
    --primary: #0a0a0a;
    --primary-light: #141414;
    --primary-mid: #1a1a1a;
    --secondary: #f5f0e0;
    --secondary-dark: #e8e0c8;
    --accent: #d4af37;
    --accent-light: #e6c84d;
    --accent-dark: #b8941e;
    --accent-glow: rgba(212, 175, 55, 0.3);
    --cream: #faf7ed;
    --cream-dark: #f0ead4;

    /* Text */
    --text-light: #f5f0e0;
    --text-dark: #1a1a1a;
    --text-muted: #8a8570;
    --text-gold: #d4af37;

    /* Borders */
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --border-gold-strong: 1px solid rgba(212, 175, 55, 0.6);
    --border-light: 1px solid rgba(245, 240, 224, 0.1);

    /* Shadows */
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
    --shadow-gold-strong: 0 0 40px rgba(212, 175, 55, 0.25);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', Georgia, serif;
    --font-ui: 'Josefin Sans', 'Trebuchet MS', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 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);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--primary);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

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

address {
    font-style: normal;
}

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

.hidden {
    display: none !important;
}

.gold-text {
    color: var(--accent);
}

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

.required {
    color: #e74c3c;
}

/* ============================================================
   PRELOADER
   ============================================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-diamond {
    margin-bottom: 24px;
}

.diamond-shape {
    width: 40px;
    height: 40px;
    background: var(--accent);
    margin: 0 auto;
    transform: rotate(45deg);
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
    50% { transform: rotate(45deg) scale(1.3); opacity: 0.6; }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--accent);
    margin-bottom: 24px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1px;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    animation: preloaderFill 1.8s ease-in-out forwards;
}

@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.age-verification-box {
    background: var(--primary-light);
    border: 2px solid var(--accent);
    max-width: 520px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.age-deco-top,
.age-deco-bottom {
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 20px,
        transparent 20px,
        transparent 24px
    );
}

.age-deco-bottom {
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 20px,
        transparent 20px,
        transparent 24px
    );
}

.age-content {
    padding: 48px 40px;
    text-align: center;
}

.age-icon-wrapper {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.age-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.age-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 16px auto 20px;
}

.age-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-disclaimer {
    font-size: 0.85rem !important;
    margin-top: 20px !important;
    color: var(--text-muted) !important;
}

.age-disclaimer a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-light);
    border-top: 2px solid var(--accent);
    z-index: 99998;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.cookie-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.cookie-text p:first-child {
    color: var(--secondary);
    font-size: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-settings {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px 20px;
    border-top: var(--border-gold);
}

.cookie-setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    gap: 16px;
}

.cookie-setting-row:last-of-type {
    border-bottom: none;
}

.cookie-setting-row strong {
    color: var(--secondary);
    font-size: 0.95rem;
}

.cookie-setting-row p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2px;
}

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
    border-radius: 26px;
    transition: var(--transition-base);
}

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

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

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

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

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

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
    color: var(--primary);
}

.btn-gold:hover::before {
    left: 100%;
}

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

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-outline-gold:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-text-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    color: var(--accent);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    background: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.btn-text-gold:hover {
    color: var(--accent-light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-deco-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

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

.logo-diamond {
    color: var(--accent);
    font-size: 1.2rem;
    animation: logoDiamondSpin 8s linear infinite;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--secondary);
}

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

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 20px !important;
    color: var(--primary) !important;
}

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

.nav-cta:hover {
    color: var(--primary) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--accent);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

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

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

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        );
    z-index: 0;
}

.hero-sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(212, 175, 55, 0.03) 5deg,
        transparent 10deg,
        transparent 20deg,
        rgba(212, 175, 55, 0.03) 25deg,
        transparent 30deg,
        transparent 40deg,
        rgba(212, 175, 55, 0.03) 45deg,
        transparent 50deg,
        transparent 60deg,
        rgba(212, 175, 55, 0.03) 65deg,
        transparent 70deg,
        transparent 80deg,
        rgba(212, 175, 55, 0.03) 85deg,
        transparent 90deg,
        transparent 100deg,
        rgba(212, 175, 55, 0.03) 105deg,
        transparent 110deg,
        transparent 120deg,
        rgba(212, 175, 55, 0.03) 125deg,
        transparent 130deg,
        transparent 140deg,
        rgba(212, 175, 55, 0.03) 145deg,
        transparent 150deg,
        transparent 160deg,
        rgba(212, 175, 55, 0.03) 165deg,
        transparent 170deg,
        transparent 180deg,
        rgba(212, 175, 55, 0.03) 185deg,
        transparent 190deg,
        transparent 200deg,
        rgba(212, 175, 55, 0.03) 205deg,
        transparent 210deg,
        transparent 220deg,
        rgba(212, 175, 55, 0.03) 225deg,
        transparent 230deg,
        transparent 240deg,
        rgba(212, 175, 55, 0.03) 245deg,
        transparent 250deg,
        transparent 260deg,
        rgba(212, 175, 55, 0.03) 265deg,
        transparent 270deg,
        transparent 280deg,
        rgba(212, 175, 55, 0.03) 285deg,
        transparent 290deg,
        transparent 300deg,
        rgba(212, 175, 55, 0.03) 305deg,
        transparent 310deg,
        transparent 320deg,
        rgba(212, 175, 55, 0.03) 325deg,
        transparent 330deg,
        transparent 340deg,
        rgba(212, 175, 55, 0.03) 345deg,
        transparent 350deg,
        transparent 360deg
    );
    z-index: 0;
    animation: heroSunburstRotate 120s linear infinite;
}

@keyframes heroSunburstRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    border: var(--border-gold);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
}

.badge-diamond {
    font-size: 0.5rem;
    opacity: 0.6;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.title-line-2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.title-line-3 {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--secondary);
}

/* Dividers */
.hero-divider,
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-divider.left-align {
    justify-content: flex-start;
}

.divider-wing {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.divider-wing.right {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.divider-diamond {
    color: var(--accent);
    font-size: 0.5rem;
    opacity: 0.8;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider-v {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

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

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 40px; }
    50% { opacity: 0.3; height: 20px; }
}

.hero-scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

/* Hero Corners */
.hero-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
}

.hero-corner::before,
.hero-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
    opacity: 0.3;
}

.hero-corner-tl { top: 20px; left: 20px; }
.hero-corner-tl::before { top: 0; left: 0; width: 30px; height: 1px; }
.hero-corner-tl::after { top: 0; left: 0; width: 1px; height: 30px; }

.hero-corner-tr { top: 20px; right: 20px; }
.hero-corner-tr::before { top: 0; right: 0; width: 30px; height: 1px; }
.hero-corner-tr::after { top: 0; right: 0; width: 1px; height: 30px; }

.hero-corner-bl { bottom: 20px; left: 20px; }
.hero-corner-bl::before { bottom: 0; left: 0; width: 30px; height: 1px; }
.hero-corner-bl::after { bottom: 0; left: 0; width: 1px; height: 30px; }

.hero-corner-br { bottom: 20px; right: 20px; }
.hero-corner-br::before { bottom: 0; right: 0; width: 30px; height: 1px; }
.hero-corner-br::after { bottom: 0; right: 0; width: 1px; height: 30px; }

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

.social-proof-ticker {
    background: var(--primary-light);
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

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

.ticker-content {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
}

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

.ticker-item {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.ticker-item i {
    color: var(--accent);
    margin-right: 6px;
}

.ticker-item strong {
    color: var(--secondary);
}

.ticker-sep {
    color: var(--accent);
    font-size: 0.4rem;
    opacity: 0.4;
    flex-shrink: 0;
}

/* ============================================================
   SECTION DECORATIONS
   ============================================================ */

.section-deco-top,
.section-deco-bottom {
    padding: 0 24px;
    overflow: hidden;
}

.deco-chevron-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
}

.chevron {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid rgba(212, 175, 55, 0.15);
}

.chevron.flip {
    border-bottom: none;
    border-top: 10px solid rgba(212, 175, 55, 0.15);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 4px 16px;
    border: var(--border-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.about-section {
    padding: var(--section-padding);
    background: var(--primary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text-col p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

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

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: var(--border-gold);
    background: rgba(212, 175, 55, 0.03);
    transition: background var(--transition-base);
}

.highlight-item:hover {
    background: rgba(212, 175, 55, 0.08);
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.highlight-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

/* About Visual */
.about-art-frame {
    position: relative;
    padding: 20px;
}

.art-frame-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--accent);
    opacity: 0.4;
}

.art-frame-inner {
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
    border: var(--border-gold);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

/* CSS Art Deco Building */
.art-deco-building {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.building-spire {
    width: 4px;
    height: 40px;
    background: var(--accent);
    position: relative;
}

.building-spire::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    transform: translateX(-50%) rotate(180deg);
}

.building-top {
    width: 40px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-dark));
    clip-path: polygon(20% 100%, 50% 0%, 80% 100%);
    margin-top: -2px;
}

.building-middle {
    width: 80px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
}

.building-window {
    width: 24px;
    height: 16px;
    background: rgba(212, 175, 55, 0.6);
    border: 1px solid var(--accent);
}

.building-base {
    width: 120px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.15));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 2px solid var(--accent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

.building-door {
    width: 24px;
    height: 32px;
    background: var(--accent);
    border-radius: 12px 12px 0 0;
}

.building-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: -1;
}

.building-rays span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.15), transparent);
    transform-origin: top center;
}

.building-rays span:nth-child(1) { transform: translate(-50%, 0) rotate(-40deg); }
.building-rays span:nth-child(2) { transform: translate(-50%, 0) rotate(-20deg); }
.building-rays span:nth-child(3) { transform: translate(-50%, 0) rotate(0deg); }
.building-rays span:nth-child(4) { transform: translate(-50%, 0) rotate(20deg); }
.building-rays span:nth-child(5) { transform: translate(-50%, 0) rotate(40deg); }

.art-frame-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-top: 24px;
    padding-top: 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* About Counter Box */
.about-counter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border: var(--border-gold);
    background: rgba(212, 175, 55, 0.03);
    margin-top: 24px;
}

.counter-item {
    text-align: center;
    flex: 1;
}

.counter-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.counter-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.counter-sep {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

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

.features-section {
    padding: var(--section-padding);
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 55, 0.02) 40px,
            rgba(212, 175, 55, 0.02) 41px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 40px,
            rgba(212, 175, 55, 0.02) 40px,
            rgba(212, 175, 55, 0.02) 41px
        );
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--primary);
    border: var(--border-gold);
    padding: 40px 28px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(212, 175, 55, 0.6);
}

.feature-card-deco {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
}

.feature-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: rotate(45deg);
    transition: background var(--transition-base), border-color var(--transition-base);
}

.feature-card:hover .feature-icon-bg {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent);
}

.feature-icon-wrap i {
    font-size: 1.6rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.feature-card-bottom-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-smooth);
}

.feature-card:hover .feature-card-bottom-line {
    width: 100%;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section {
    padding: var(--section-padding);
    background: var(--primary);
}

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

.gallery-item-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: var(--border-gold);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.gallery-item-large .gallery-visual {
    min-height: 460px;
}

.gallery-visual:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: var(--shadow-gold);
}

.gallery-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gallery-visual-1 {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1510 50%, #0d0d0d 100%);
}

.gallery-visual-2 {
    background: linear-gradient(135deg, #100d08 0%, #1a150d 50%, #0d0a06 100%);
}

.gallery-visual-3 {
    background: linear-gradient(135deg, #0a0d10 0%, #0d1015 50%, #080a0d 100%);
}

.gallery-visual-4 {
    background: linear-gradient(135deg, #0d100a 0%, #10150d 50%, #0a0d08 100%);
}

.gallery-visual-5 {
    background: linear-gradient(135deg, #10080d 0%, #150d10 50%, #0d080a 100%);
}

/* Gallery Scenes */
.gallery-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* City scene */
.scene-city {
    width: 80%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.scene-building {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: none;
}

.sb-1 { width: 14%; height: 50%; }
.sb-2 { width: 16%; height: 70%; }
.sb-3 { width: 20%; height: 90%; clip-path: polygon(10% 100%, 10% 15%, 30% 0%, 70% 0%, 90% 15%, 90% 100%); }
.sb-4 { width: 16%; height: 65%; }
.sb-5 { width: 12%; height: 45%; }

.scene-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    opacity: 0.4;
}

/* Battle scene */
.scene-battle {
    display: flex;
    align-items: center;
    gap: 24px;
}

.battle-shield {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.5);
}

.battle-swords {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.4);
}

/* Map scene */
.scene-map {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 80px;
    justify-content: center;
}

.map-hex {
    width: 20px;
    height: 22px;
    background: rgba(212, 175, 55, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.map-hex:nth-child(odd) {
    background: rgba(212, 175, 55, 0.25);
}

/* Resources scene */
.scene-resources {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 80px;
}

.resource-bar {
    width: 20px;
    background: linear-gradient(to top, var(--accent), rgba(212, 175, 55, 0.3));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 2px solid var(--accent);
}

.rb-1 { height: 40%; }
.rb-2 { height: 70%; }
.rb-3 { height: 55%; }
.rb-4 { height: 85%; }

/* Alliance scene */
.alliance-circle {
    width: 100px;
    height: 100px;
    position: relative;
}

.alliance-node {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--accent);
}

.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.n2 { top: 50%; right: 0; transform: translateY(-50%); }
.n3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.n4 { top: 50%; left: 0; transform: translateY(-50%); }

.alliance-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent);
}

/* Gallery Labels */
.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    z-index: 3;
}

.gallery-label-tag {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.gallery-label-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
    padding: var(--section-padding);
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

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

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--primary);
    border: var(--border-gold);
    padding: 36px 28px;
    position: relative;
    min-width: calc(33.333% - 16px);
}

.testimonial-quote-mark {
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 12px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--accent);
    font-size: 0.85rem;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--secondary);
}

.testimonial-author span {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Testimonial Deco Corners */
.testimonial-deco-corner {
    position: absolute;
    width: 16px;
    height: 16px;
}

.testimonial-deco-corner::before,
.testimonial-deco-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
    opacity: 0.3;
}

.tc-tl { top: 8px; left: 8px; }
.tc-tl::before { top: 0; left: 0; width: 16px; height: 1px; }
.tc-tl::after { top: 0; left: 0; width: 1px; height: 16px; }

.tc-tr { top: 8px; right: 8px; }
.tc-tr::before { top: 0; right: 0; width: 16px; height: 1px; }
.tc-tr::after { top: 0; right: 0; width: 1px; height: 16px; }

.tc-bl { bottom: 8px; left: 8px; }
.tc-bl::before { bottom: 0; left: 0; width: 16px; height: 1px; }
.tc-bl::after { bottom: 0; left: 0; width: 1px; height: 16px; }

.tc-br { bottom: 8px; right: 8px; }
.tc-br::before { bottom: 0; right: 0; width: 16px; height: 1px; }
.tc-br::after { bottom: 0; right: 0; width: 1px; height: 16px; }

/* Carousel Controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border: var(--border-gold-strong);
    background: transparent;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    cursor: pointer;
    transform: rotate(45deg);
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* ============================================================
   ROADMAP / TIMELINE SECTION
   ============================================================ */

.roadmap-section {
    padding: var(--section-padding);
    background: var(--primary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.3), transparent);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-left {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-right {
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary);
    border: 2px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
    z-index: 2;
    transform: translateX(-50%) rotate(45deg);
}

.timeline-dot i {
    transform: rotate(-45deg);
}

.timeline-dot.active {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.1);
}

.timeline-card {
    width: calc(50% - 40px);
    padding: 24px;
    border: var(--border-gold);
    background: var(--primary-light);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.timeline-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.timeline-card.active-card {
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
}

.timeline-left .timeline-card {
    margin-right: auto;
}

.timeline-right .timeline-card {
    margin-left: auto;
}

.timeline-date {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.timeline-status {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    display: inline-block;
}

.status-done {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.15); }
}

.status-upcoming {
    background: rgba(158, 158, 158, 0.15);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

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

.faq-section {
    padding: var(--section-padding);
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.faq-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 100px,
        rgba(212, 175, 55, 0.02) 100px,
        rgba(212, 175, 55, 0.02) 101px
    );
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

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

.faq-item {
    border: var(--border-gold);
    margin-bottom: 12px;
    background: var(--primary);
    overflow: hidden;
    transition: border-color var(--transition-base);
}

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.6);
}

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

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 16px;
}

.faq-answer-inner p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

/* ============================================================
   SIGNUP / LEAD FORM SECTION
   ============================================================ */

.signup-section {
    padding: var(--section-padding);
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.signup-bg-sunburst {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 180deg at 50% 0%,
        transparent 0deg,
        rgba(212, 175, 55, 0.04) 30deg,
        transparent 60deg,
        transparent 120deg,
        rgba(212, 175, 55, 0.04) 150deg,
        transparent 180deg,
        transparent 240deg,
        rgba(212, 175, 55, 0.04) 270deg,
        transparent 300deg,
        transparent 360deg
    );
    z-index: 0;
}

.signup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, transparent 20%, var(--primary) 70%);
    z-index: 0;
}

.signup-section .container {
    position: relative;
    z-index: 1;
}

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

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

.signup-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.signup-rewards h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.rewards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.rewards-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rewards-list li i {
    color: var(--accent);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.signup-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.trust-item i {
    color: var(--accent);
}

/* Form Wrapper */
.signup-form-wrapper {
    position: relative;
}

.form-deco-frame {
    position: relative;
    padding: 40px 32px;
    background: var(--primary-light);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.form-deco-corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.form-deco-corner::before,
.form-deco-corner::after {
    content: '';
    position: absolute;
    background: var(--accent);
}

.fdc-tl { top: -2px; left: -2px; }
.fdc-tl::before { top: 0; left: 0; width: 20px; height: 2px; }
.fdc-tl::after { top: 0; left: 0; width: 2px; height: 20px; }

.fdc-tr { top: -2px; right: -2px; }
.fdc-tr::before { top: 0; right: 0; width: 20px; height: 2px; }
.fdc-tr::after { top: 0; right: 0; width: 2px; height: 20px; }

.fdc-bl { bottom: -2px; left: -2px; }
.fdc-bl::before { bottom: 0; left: 0; width: 20px; height: 2px; }
.fdc-bl::after { bottom: 0; left: 0; width: 2px; height: 20px; }

.fdc-br { bottom: -2px; right: -2px; }
.fdc-br::before { bottom: 0; right: 0; width: 20px; height: 2px; }
.fdc-br::after { bottom: 0; right: 0; width: 2px; height: 20px; }

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 8px;
}

.form-divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 28px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--accent);
    margin-right: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    background: var(--primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--secondary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    outline: none;
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: rgba(138, 133, 112, 0.6);
}

.form-group input.error {
    border-color: #e74c3c;
}

.form-error {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: #e74c3c;
    margin-top: 6px;
    min-height: 0;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: var(--primary);
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
    transition: all var(--transition-fast);
}

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

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

/* Submit Button */
.btn-submit {
    margin-top: 8px;
    position: relative;
}

.btn-submit .btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-submit.loading .btn-text {
    visibility: hidden;
}

.btn-submit.loading .btn-loading {
    display: inline-flex !important;
    visibility: visible;
}

/* Form Message */
.form-message {
    margin-top: 16px;
    padding: 14px 16px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.form-note {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    opacity: 0.7;
}

.form-note i {
    color: var(--accent);
    margin-right: 4px;
}

/* Live Counter Bar */
.live-counter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 20px 24px;
    border: var(--border-gold);
    background: rgba(212, 175, 55, 0.03);
    margin-top: 48px;
    flex-wrap: wrap;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4caf50;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 8px 4px rgba(76, 175, 80, 0.2); }
}

.live-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.live-stat strong {
    color: var(--secondary);
}

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

.trust-section {
    padding: var(--section-padding);
    background: var(--primary-light);
}

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

.trust-card {
    padding: 32px 24px;
    border: var(--border-gold);
    background: var(--primary);
    text-align: center;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.5);
}

.trust-card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

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

.trust-card a {
    color: var(--accent);
}

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

.site-footer {
    background: var(--primary);
    padding-top: 0;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-deco-top {
    overflow: hidden;
}

.deco-zigzag {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 8px 0;
}

.deco-zigzag span {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 10px solid rgba(212, 175, 55, 0.1);
}

.deco-zigzag span:nth-child(even) {
    border-bottom: none;
    border-top: 10px solid rgba(212, 175, 55, 0.1);
    align-self: flex-end;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

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

.footer-links-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-links-col a i {
    font-size: 0.8rem;
    width: 16px;
    color: var(--accent);
    opacity: 0.6;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-address i {
    color: var(--accent);
    margin-top: 3px;
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 24px 0 32px;
    text-align: center;
}

.footer-bottom-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-bottom-content p {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-badge {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 4px 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

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

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.back-to-top:hover {
    background: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* ============================================================
   NOTIFICATION TOAST
   ============================================================ */

.notification-toast {
    position: fixed;
    bottom: 80px;
    left: 24px;
    background: var(--primary-light);
    border: var(--border-gold-strong);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 998;
    box-shadow: var(--shadow-dark);
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 340px;
}

.notification-toast.show {
    transform: translateX(0);
}

.toast-icon {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-content {
    font-size: 0.85rem;
    line-height: 1.4;
}

.toast-content strong {
    color: var(--secondary);
    display: block;
}

.toast-content span {
    color: var(--text-muted);
}

.toast-close {
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 4px;
    flex-shrink: 0;
    cursor: pointer;
    transition: color var(--transition-fast);
    background: none;
    border: none;
}

.toast-close:hover {
    color: var(--secondary);
}

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

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

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

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

.legal-page {
    /* Same base styling */
}

.legal-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    overflow: hidden;
}

.legal-hero .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(212, 175, 55, 0.03) 60px,
            rgba(212, 175, 55, 0.03) 61px
        );
    z-index: 0;
}

.legal-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 1;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
}

.legal-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 16px;
}

.legal-hero-content p {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Legal Content */
.legal-content-section {
    padding: 60px 0 100px;
    background: var(--primary);
}

.legal-content {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* Legal Navigation */
.legal-nav {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    background: var(--primary-light);
    border: var(--border-gold);
    padding: 24px;
}

.legal-nav h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.legal-nav ol {
    list-style: decimal;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-nav ol li {
    list-style: decimal;
}

.legal-nav a {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    line-height: 1.4;
}

.legal-nav a:hover {
    color: var(--accent);
}

/* Legal Article */
.legal-article {
    background: var(--cream);
    border: var(--border-gold);
    padding: 48px 40px;
    color: var(--text-dark);
}

.legal-article section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.legal-article section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-article h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.legal-article h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-article p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #333;
}

.legal-article ul,
.legal-article ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-article ul li,
.legal-article ol li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.legal-article ol li {
    list-style: decimal;
}

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

.legal-article strong {
    color: var(--text-dark);
}

/* Legal Table */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
}

.legal-table th {
    background: rgba(212, 175, 55, 0.1);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-dark);
}

.legal-table td {
    color: #444;
}

/* Legal Info Box */
.legal-info-box {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 24px;
    margin: 16px 0;
}

.legal-info-box h3 {
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-info-box h3 i {
    color: var(--accent-dark);
    margin-right: 8px;
}

.legal-info-box ul {
    margin-bottom: 0;
}

/* Legal Footer Note */
.legal-footer-note {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px;
    border: var(--border-gold);
    background: rgba(212, 175, 55, 0.03);
    margin-top: 24px;
}

.legal-footer-note p {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

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

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

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

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

    .gallery-item-large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-large .gallery-visual {
        min-height: 300px;
    }

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

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

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

    .legal-content {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 64px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
    }

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

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

    .gallery-item-large {
        grid-column: 1;
        grid-row: 1;
    }

    .gallery-item-large .gallery-visual {
        min-height: 250px;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .testimonial-card {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }

    /* Timeline responsive */
    .timeline-line {
        left: 18px;
    }

    .timeline-item {
        flex-direction: row !important;
        text-align: left !important;
    }

    .timeline-dot {
        left: 18px;
        transform: translateX(-50%) rotate(45deg);
    }

    .timeline-card {
        width: calc(100% - 56px);
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    .live-counter-bar {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .age-buttons {
        flex-direction: column;
    }

    .legal-article {
        padding: 32px 20px;
    }

    .form-deco-frame {
        padding: 28px 20px;
    }

    .signup-info .section-header {
        text-align: center;
    }

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

    .signup-info .section-divider {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title .title-line-2 {
        font-size: 2.5rem;
    }

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

    .btn-large {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn-gold,
    .cookie-buttons .btn-outline-gold {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}
```

Now the JavaScript file:

```javascript