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

:root {
    --color-primary: #1a365d;
    --color-primary-light: #2a4a7f;
    --color-primary-dark: #0f2240;
    --color-secondary: #f0f5ff;
    --color-accent: #5fb5d4;
    --color-accent-light: #8ccde3;
    --color-accent-dark: #3a9abc;
    --color-white: #ffffff;
    --color-ice: #f7faff;
    --color-frost: #e8f0fe;
    --color-silver: #c5d3e8;
    --color-glacier: #dce8f8;
    --color-text: #1a2a40;
    --color-text-light: #4a6080;
    --color-text-muted: #7a90aa;
    --color-border: rgba(95, 181, 212, 0.2);
    --color-border-light: rgba(197, 211, 232, 0.5);
    --color-shadow: rgba(26, 54, 93, 0.08);
    --color-shadow-strong: rgba(26, 54, 93, 0.15);
    --color-success: #22c55e;
    --color-warning: #f59e0b;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    --header-height: 72px;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-ice);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--color-primary);
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1rem; font-weight: 600; }

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

/* ===================== BADGE ===================== */
.badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent-dark);
    background: rgba(95, 181, 212, 0.1);
    border: 1px solid rgba(95, 181, 212, 0.25);
    border-radius: var(--radius-full);
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.625rem 1.5rem;
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--color-shadow-strong);
}

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

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent-dark);
    background: rgba(95, 181, 212, 0.05);
}

.btn-ghost {
    color: var(--color-text-light);
    background: transparent;
    border-color: transparent;
    padding: 0.625rem var(--space-md);
}

.btn-ghost:hover {
    color: var(--color-accent-dark);
    background: rgba(95, 181, 212, 0.05);
}

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

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
}

.btn-full {
    width: 100%;
}

/* ===================== FROST CARD ===================== */
.frost-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 24px var(--color-shadow);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.frost-card:hover {
    box-shadow: 0 8px 32px var(--color-shadow-strong);
}

/* ===================== DOT PATTERNS ===================== */
.dot-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, var(--color-silver) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
}

.dot-pattern-hero {
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 0 0 0 var(--radius-xl);
}

.dot-pattern-screenshots {
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    border-radius: 0 var(--radius-xl) 0 0;
}

.dot-pattern-faq {
    top: 50px;
    right: 0;
    width: 200px;
    height: 200px;
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 54, 93, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-white);
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-glacier);
}

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

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

.cookie-actions .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.cookie-actions .btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
}

.cookie-actions .btn-outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-actions .btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.cookie-actions .btn-ghost {
    color: var(--color-glacier);
}

.cookie-actions .btn-ghost:hover {
    color: var(--color-white);
}

/* ===================== HEADER ===================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(247, 250, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px var(--color-shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.logo:hover {
    color: var(--color-primary-light);
}

.logo-icon {
    color: var(--color-accent);
}

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

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

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

.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: translateY(-7px) rotate(-45deg);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(95, 181, 212, 0.08);
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-ice) 100%);
    overflow: hidden;
}

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

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

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border-light);
    margin-top: var(--space-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-card {
    padding: var(--space-lg);
    max-width: 400px;
    border-radius: var(--radius-xl);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary-light), var(--color-accent-light));
    z-index: -1;
    opacity: 0.3;
}

.hero-card img {
    border-radius: var(--radius-md);
    width: 100%;
}

/* ===================== SOCIAL PROOF BAR ===================== */
.social-proof {
    padding: var(--space-lg) 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
}

.proof-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.proof-item strong {
    color: var(--color-primary);
}

/* ===================== SECTIONS COMMON ===================== */
.about-game,
.features-detail,
.trust-section,
.faq-section,
.contact-section {
    padding: var(--space-5xl) 0;
}

.about-game {
    background: var(--color-white);
}

.features-detail {
    background: var(--color-ice);
}

.trust-section {
    background: var(--color-white);
}

.faq-section {
    position: relative;
    background: var(--color-ice);
    overflow: hidden;
}

.contact-section {
    background: var(--color-white);
}

.screenshots {
    position: relative;
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--color-ice) 0%, var(--color-secondary) 50%, var(--color-ice) 100%);
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.section-desc {
    color: var(--color-text-light);
    font-size: 1.0625rem;
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(95, 181, 212, 0.08);
    color: var(--color-accent-dark);
    border: 1px solid var(--color-border);
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* ===================== SCREENSHOT GALLERY ===================== */
.screenshot-gallery {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.gallery-track {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-slide {
    display: none;
    animation: fadeSlide 0.4s ease;
}

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

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

.gallery-slide img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-slide figcaption {
    text-align: center;
    padding: var(--space-md) 0 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.gallery-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px var(--color-shadow);
}

.gallery-nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-silver);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.gallery-dot.active,
.gallery-dot:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* ===================== DETAILS GRID ===================== */
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.detail-card h3 {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
}

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

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(197, 211, 232, 0.3);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row dt {
    font-weight: 500;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.detail-row dd {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.875rem;
}

/* ===================== TRUST ===================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.trust-card:hover {
    transform: translateY(-4px);
}

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

.trust-card p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* ===================== FAQ ===================== */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.faq-item {
    cursor: pointer;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--color-text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    animation: faqOpen 0.3s ease;
}

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-family);
    font-size: 0.9375rem;
    padding: 0.7rem var(--space-md);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.15);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a6080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

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

.info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
}

.info-card svg {
    flex-shrink: 0;
    color: var(--color-accent-dark);
    margin-top: 2px;
}

.info-card h3 {
    font-size: 0.9375rem;
    margin-bottom: var(--space-xs);
}

.info-card a {
    font-size: 0.875rem;
    font-weight: 500;
}

.info-card p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.subscribe-card {
    padding: var(--space-xl);
    background: rgba(95, 181, 212, 0.06);
    border-color: rgba(95, 181, 212, 0.2);
}

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

.subscribe-card > p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.subscribe-form {
    display: flex;
    gap: var(--space-sm);
}

.subscribe-form input {
    flex: 1;
    font-family: var(--font-family);
    font-size: 0.875rem;
    padding: 0.6rem var(--space-md);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition-fast);
}

.subscribe-form input:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(95, 181, 212, 0.15);
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--color-primary-dark);
    color: var(--color-glacier);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.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 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-brand .logo:hover {
    color: var(--color-accent-light);
}

.footer-brand .logo-icon {
    color: var(--color-accent);
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-silver);
    max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

.footer-nav a {
    font-size: 0.875rem;
    color: var(--color-silver);
    transition: color var(--transition-fast);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-contact a {
    font-size: 0.875rem;
    color: var(--color-silver);
}

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

.footer-address {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.footer-age {
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* ===================== LEGAL PAGES ===================== */
.legal-content {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-5xl);
    background: var(--color-white);
    min-height: 80vh;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h1 {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.legal-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    font-size: 1.375rem;
}

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

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

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

.legal-content li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-light);
    line-height: 1.6;
    list-style: disc;
}

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

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

.legal-content .last-updated {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-2xl);
}

/* ===================== ANIMATIONS ===================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .hero-content {
        align-items: center;
    }

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

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

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

    .hero-card {
        max-width: 300px;
    }

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

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

    .trust-grid .trust-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }

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

@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
        --space-5xl: 5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-xs);
        border-bottom: 1px solid var(--color-border-light);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        padding: var(--space-md);
        width: 100%;
        text-align: center;
    }

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

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

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

    .trust-grid .trust-card:last-child {
        max-width: none;
    }

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

    .proof-bar {
        gap: var(--space-lg);
    }

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

    .gallery-nav {
        width: 36px;
        height: 36px;
    }

    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

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

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

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .subscribe-form .btn {
        width: 100%;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
