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

:root {
    --color-primary: #8b4513;
    --color-primary-dark: #6b3410;
    --color-primary-light: #a0522d;
    --color-secondary: #f5f5dc;
    --color-accent: #cd853f;
    --color-cream: #faf8f0;
    --color-paper: #f4eed8;
    --color-paper-dark: #e8dfc4;
    --color-text: #3e2c1a;
    --color-text-light: #6b5a48;
    --color-text-muted: #8a7a68;
    --color-white: #ffffff;
    --color-black: #1a1008;
    --color-border: #d4c8a8;
    --color-border-light: #e8dfc4;

    --neon-pink: #ff2d7b;
    --neon-cyan: #00f5ff;
    --neon-yellow: #ffe600;
    --neon-green: #39ff14;
    --neon-purple: #bf00ff;
    --neon-orange: #ff6b00;

    --glow-pink: 0 0 20px rgba(255, 45, 123, 0.6), 0 0 40px rgba(255, 45, 123, 0.3);
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.6), 0 0 40px rgba(0, 245, 255, 0.3);
    --glow-accent: 0 0 20px rgba(205, 133, 63, 0.6), 0 0 40px rgba(205, 133, 63, 0.3);
    --glow-primary: 0 0 15px rgba(139, 69, 19, 0.4), 0 0 30px rgba(139, 69, 19, 0.2);

    --font-heading: 'Georgia', 'Palatino Linotype', 'Times New Roman', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;

    --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;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(30, 20, 10, 0.08);
    --shadow-md: 0 4px 12px rgba(30, 20, 10, 0.12);
    --shadow-lg: 0 8px 30px rgba(30, 20, 10, 0.16);
    --shadow-xl: 0 16px 50px rgba(30, 20, 10, 0.2);

    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --header-height: 72px;
}

@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: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

.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;
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

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

a:hover {
    color: var(--neon-pink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--neon-cyan);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange));
    border-color: var(--neon-pink);
    color: var(--color-white);
    box-shadow: var(--glow-pink);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-text {
    background: transparent;
    color: var(--color-text-light);
    border: none;
    padding: var(--space-sm) var(--space-md);
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--neon-pink);
}

.btn-full {
    width: 100%;
}

.btn-glow {
    box-shadow: var(--glow-primary);
}

.btn-glow:hover {
    box-shadow: var(--glow-pink);
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    height: var(--header-height);
    transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(250, 248, 240, 0.98);
}

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

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--neon-pink));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: var(--glow-primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

.nav-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--neon-pink);
    background: rgba(255, 45, 123, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--neon-pink);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 45, 123, 0.5);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-4xl);
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 45, 123, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 245, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 40%, var(--color-accent) 100%);
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-pink);
    top: -100px;
    left: -100px;
    animation: blob-float 12s ease-in-out infinite;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    bottom: -50px;
    right: -50px;
    animation: blob-float 15s ease-in-out infinite reverse;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(4px);
}

.hero-text h1 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

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

.hero-actions .btn-secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-yellow);
    text-shadow: var(--glow-cyan);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

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

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    transition: transform var(--transition-slow);
    max-width: 380px;
}

.hero-image-frame:hover {
    transform: scale(1.03) rotate(1deg);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(205, 133, 63, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
}

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

.hero .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero .wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

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

.social-proof {
    background: var(--color-cream);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.proof-ticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-text-light);
    animation: proof-fade 0.5s ease;
}

@keyframes proof-fade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.proof-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ==================== SECTIONS COMMON ==================== */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(205, 133, 63, 0.1));
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: var(--space-md);
}

/* ==================== ABOUT GAME ==================== */

.about-game {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

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

.about-card {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--neon-pink), var(--neon-cyan));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.about-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08), rgba(205, 133, 63, 0.08));
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.about-card h3 {
    margin-bottom: var(--space-sm);
}

.about-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.gallery {
    padding: var(--space-2xl) 0 var(--space-4xl);
    background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-paper-dark) 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    border-color: var(--neon-pink);
    z-index: 2;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(transparent, rgba(26, 16, 8, 0.85));
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.gallery-item:hover figcaption {
    transform: translateY(0);
}

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

.gallery-item-wide {
    grid-column: span 2;
}

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

.features {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: var(--space-lg);
}

.feature-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, transparent 60%, rgba(255, 45, 123, 0.05));
    pointer-events: none;
}

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

.feature-card-hero {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.feature-card-hero .feature-card-content {
    color: var(--color-white);
}

.feature-card-hero h3 {
    color: var(--color-white);
    font-size: 1.6rem;
}

.feature-card-hero .feature-number {
    color: rgba(255, 255, 255, 0.2);
    font-size: 5rem;
}

.feature-card-accent {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-orange));
}

.feature-card-accent .feature-card-content {
    color: var(--color-white);
}

.feature-card-accent h3 {
    color: var(--color-white);
}

.feature-card-accent .feature-number {
    color: rgba(255, 255, 255, 0.2);
}

.feature-card-content {
    padding: var(--space-2xl);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(139, 69, 19, 0.08);
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    line-height: 1;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.feature-card-hero p,
.feature-card-accent p {
    color: rgba(255, 255, 255, 0.85);
}

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

.trust {
    padding: 0 0 var(--space-4xl);
    background: linear-gradient(180deg, var(--color-paper) 0%, var(--color-cream) 100%);
    position: relative;
}

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

.trust-card {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: var(--space-lg);
    transition: all var(--transition-base);
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--neon-cyan);
}

.trust-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(191, 0, 255, 0.1));
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.trust-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

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

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

.faq {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

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

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.faq-item[open] {
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 45, 123, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    font-weight: 600;
    color: var(--color-primary-dark);
    font-size: 1rem;
    list-style: none;
    transition: color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    content: '';
}

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

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform var(--transition-base);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--color-text-light);
    line-height: 1.7;
    animation: faq-open 0.3s ease;
}

@keyframes faq-open {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* ==================== NEWSLETTER ==================== */

.newsletter {
    padding: 0 0 var(--space-4xl);
    background: linear-gradient(180deg, var(--color-cream), var(--color-paper));
    position: relative;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-white);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.newsletter-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan), var(--neon-yellow));
}

.newsletter-text h2 {
    margin-bottom: var(--space-sm);
}

.newsletter-text p {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto var(--space-md);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--neon-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.15);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

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

.contact-form {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-text);
    transition: border-color var(--transition-fast);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--neon-cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.15);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    margin-bottom: var(--space-lg);
    font-size: 1.15rem;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.contact-details li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.contact-details li strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.contact-details li a {
    color: var(--neon-pink);
    text-decoration: underline;
    text-decoration-color: rgba(255, 45, 123, 0.3);
}

.contact-details li a:hover {
    text-decoration-color: var(--neon-pink);
}

.contact-info-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-top: 0;
}

.site-footer .wave-divider svg path {
    fill: var(--color-cream);
}

.site-footer .wave-divider {
    margin-bottom: var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .logo-text {
    color: var(--color-white);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 300px;
}

.footer-nav h3,
.footer-contact h3 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-nav a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--neon-cyan);
}

.footer-contact li {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    padding: var(--space-xl) 0 var(--space-2xl);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-white);
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
    padding: var(--space-xl) var(--space-lg);
    animation: cookie-slide-up 0.5s ease;
}

@keyframes cookie-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

.cookie-settings fieldset {
    border: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.cookie-settings legend {
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.cookie-option input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

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

.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg), var(--glow-primary);
    transition: all var(--transition-base);
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--neon-pink);
    box-shadow: var(--shadow-lg), var(--glow-pink);
    transform: translateY(-3px);
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-4xl);
}

.legal-content .legal-body {
    background: var(--color-white);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 2px solid var(--color-border);
}

.legal-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border-light);
    font-size: 1.4rem;
}

.legal-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

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

.legal-content ul,
.legal-content ol {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content li {
    margin-bottom: var(--space-sm);
}

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

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

.legal-update {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: var(--space-2xl);
}

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

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

    .hero-desc {
        max-width: 100%;
    }

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

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

    .hero-image-frame {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .feature-card-hero {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        gap: var(--space-xs);
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

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

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

    .feature-card-hero {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

    .newsletter-form {
        flex-direction: column;
    }

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

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

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

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

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

    .btn {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.9rem;
    }

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

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

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

@media print {
    .site-header,
    .cookie-banner,
    .back-to-top,
    .hero-blob,
    .wave-divider {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

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

