/* ============================================
   AQUARIUM LAND — FISHBOWL WORLD
   Paper Layered Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary Palette */
    --primary: #37474f;
    --primary-dark: #263238;
    --primary-light: #546e7a;
    --primary-lighter: #78909c;

    /* Secondary / Background */
    --secondary: #fafafa;
    --surface: #ffffff;
    --bg: #f0f0f0;
    --bg-warm: #f5f3f0;

    /* Accent */
    --accent: #ff7043;
    --accent-dark: #e64a19;
    --accent-light: #ff8a65;
    --accent-glow: rgba(255, 112, 67, 0.15);

    /* Aqua Theme Overlays */
    --aqua-deep: #1a3a4a;
    --aqua-mid: #2d6a7e;
    --aqua-light: #4fc3f7;
    --aqua-pale: #e0f7fa;
    --aqua-tint: rgba(79, 195, 247, 0.08);

    /* Neutrals */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Semantic */
    --success: #4caf50;
    --error: #ef5350;
    --warning: #ff9800;

    /* Shadows (Material Paper Depths) */
    --shadow-1dp: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-2dp: 0 2px 4px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-4dp: 0 4px 8px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-8dp: 0 8px 16px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
    --shadow-16dp: 0 16px 32px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.08);
    --shadow-24dp: 0 24px 48px rgba(0,0,0,0.14), 0 12px 24px rgba(0,0,0,0.08);
    --shadow-accent: 0 8px 24px rgba(255, 112, 67, 0.30);

    /* Typography */
    --font-display: 'Fredoka', 'Nunito', sans-serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;

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

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 500ms;

    /* Layout */
    --header-height: 72px;
    --max-width: 1200px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--primary);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

/* ---------- Container ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

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

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.25rem); }

p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.main-header.scrolled {
    box-shadow: var(--shadow-4dp);
}

.header-paper-layer {
    position: absolute;
    inset: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--gray-200);
    z-index: -1;
}

.main-header.scrolled .header-paper-layer {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2dp);
    object-fit: cover;
    transition: transform var(--duration-fast) var(--ease-bounce);
}

.logo-link:hover .logo-icon {
    transform: scale(1.08) rotate(-3deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--duration-fast) var(--ease-out);
}

.nav-link:hover {
    color: var(--primary-dark);
    background: var(--gray-100);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-lg);
    box-shadow: var(--shadow-2dp);
    transition: all var(--duration-fast) var(--ease-out);
}

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

.nav-cta:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1010;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(55, 71, 79, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-paper {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: var(--surface);
    box-shadow: var(--shadow-24dp);
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--duration-normal) var(--ease-out);
}

.mobile-nav-overlay.active .mobile-nav-paper {
    transform: translateX(0);
}

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

.mobile-nav-link {
    display: block;
    padding: var(--space-md);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-out);
}

.mobile-nav-link:hover {
    background: var(--gray-100);
    color: var(--accent);
}

.mobile-nav-cta {
    background: var(--accent);
    color: white !important;
    text-align: center;
    margin-top: var(--space-md);
    box-shadow: var(--shadow-4dp);
}

.mobile-nav-cta:hover {
    background: var(--accent-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-4xl);
}

.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-layer {
    position: absolute;
    inset: 0;
}

.hero-layer-1 {
    background: linear-gradient(160deg, var(--aqua-deep) 0%, var(--aqua-mid) 40%, #3d8e9e 70%, var(--aqua-light) 100%);
}

.hero-layer-2 {
    background: radial-gradient(ellipse at 20% 80%, rgba(79, 195, 247, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 112, 67, 0.15) 0%, transparent 50%);
}

.hero-layer-3 {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Bubbles */
.hero-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: bubbleFloat linear infinite;
}

.bubble-1 { width: 20px; height: 20px; left: 10%; bottom: -20px; animation-duration: 12s; animation-delay: 0s; }
.bubble-2 { width: 14px; height: 14px; left: 25%; bottom: -14px; animation-duration: 9s; animation-delay: 2s; }
.bubble-3 { width: 28px; height: 28px; left: 45%; bottom: -28px; animation-duration: 14s; animation-delay: 1s; }
.bubble-4 { width: 10px; height: 10px; left: 60%; bottom: -10px; animation-duration: 10s; animation-delay: 3s; }
.bubble-5 { width: 18px; height: 18px; left: 75%; bottom: -18px; animation-duration: 11s; animation-delay: 0.5s; }
.bubble-6 { width: 24px; height: 24px; left: 85%; bottom: -24px; animation-duration: 13s; animation-delay: 4s; }
.bubble-7 { width: 12px; height: 12px; left: 35%; bottom: -12px; animation-duration: 8s; animation-delay: 5s; }
.bubble-8 { width: 16px; height: 16px; left: 55%; bottom: -16px; animation-duration: 15s; animation-delay: 2.5s; }

@keyframes bubbleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(30px) scale(0.5);
        opacity: 0;
    }
}

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

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

/* Hero Paper Card */
.hero-paper-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-16dp);
    position: relative;
    overflow: hidden;
}

.hero-paper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--aqua-light));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--accent-glow);
    color: var(--accent-dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

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

.accent-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    perspective: 1000px;
}

.hero-img-paper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-8dp);
    background: var(--surface);
    padding: 6px;
    transition: transform var(--duration-slow) var(--ease-out);
}

.hero-img-paper img {
    border-radius: var(--radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-img-back {
    position: absolute;
    top: 30px;
    right: -20px;
    width: 80%;
    transform: rotate(4deg);
    z-index: 0;
    opacity: 0.7;
}

.hero-img-front {
    position: relative;
    z-index: 1;
    width: 90%;
    transform: rotate(-2deg);
}

.hero-image-stack:hover .hero-img-front {
    transform: rotate(0deg) translateY(-4px);
}

.hero-image-stack:hover .hero-img-back {
    transform: rotate(6deg) translateY(4px);
}

.hero-floating-badge {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-8dp);
    z-index: 2;
    text-align: center;
    border: 2px solid var(--accent-glow);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.badge-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .hero-image-stack {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-section {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-xl));
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    .hero-paper-card {
        padding: var(--space-lg);
    }
    .hero-actions {
        flex-direction: column;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-4dp);
}

.btn-primary::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

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

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

.btn-secondary {
    background: var(--surface);
    color: var(--primary);
    box-shadow: var(--shadow-2dp);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-100);
    box-shadow: var(--shadow-4dp);
    transform: translateY(-1px);
    color: var(--primary);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    background: var(--gray-100);
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: 3;
}

.social-proof-paper {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
    box-shadow: var(--shadow-4dp);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.proof-item {
    text-align: center;
    min-width: 120px;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.1;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: var(--space-xs);
}

.proof-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-top: var(--space-xs);
}

.proof-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

.proof-live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

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

@media (max-width: 768px) {
    .social-proof-paper {
        padding: var(--space-lg);
        gap: var(--space-md);
    }
    .proof-divider {
        display: none;
    }
    .proof-item {
        min-width: 100px;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-label-paper {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.section-label {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent-dark);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

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

.about-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2dp);
    transition: all var(--duration-normal) var(--ease-out);
    overflow: hidden;
}

.about-card:hover {
    box-shadow: var(--shadow-8dp);
    transform: translateY(-4px);
}

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

.about-card-main {
    grid-column: 1 / -1;
    text-align: center;
    position: relative;
}

.about-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aqua-light), var(--accent), var(--aqua-light));
}

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

.about-game-icon {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-8dp);
    margin: 0 auto var(--space-lg);
    object-fit: cover;
}

.about-card-main h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
}

.about-card-main p {
    max-width: 500px;
    margin: 0 auto var(--space-lg);
}

.about-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tag {
    display: inline-block;
    background: var(--aqua-pale);
    color: var(--aqua-deep);
    font-size: 0.8rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.about-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

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

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

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--space-4xl) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.gallery-bg-paper {
    position: absolute;
    top: -60px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--aqua-tint);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

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

.gallery-track {
    display: flex;
    transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-card {
    min-width: 100%;
    padding: 0 var(--space-md);
}

.gallery-paper-frame {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-8dp);
    overflow: hidden;
    padding: 8px;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-paper-frame img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.gallery-caption {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-md) var(--space-sm);
}

.caption-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
}

.caption-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
}

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

.gallery-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: var(--shadow-4dp);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--duration-fast) var(--ease-out);
}

.gallery-btn:hover {
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-accent);
    transform: scale(1.05);
}

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

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all var(--duration-fast) var(--ease-out);
}

.gallery-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: var(--radius-full);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

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

.feature-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-2dp);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: var(--shadow-8dp);
    transform: translateY(-6px);
}

.feature-paper-fold {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(225deg, var(--gray-100) 50%, var(--gray-200) 50%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.feature-card:hover .feature-paper-fold {
    background: linear-gradient(225deg, var(--accent-glow) 50%, rgba(255,112,67,0.15) 50%);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    transition: transform var(--duration-fast) var(--ease-bounce);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(-3deg);
}

.feature-title {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-card-elevated {
    box-shadow: var(--shadow-4dp);
    border: 2px solid var(--accent-glow);
}

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

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

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    padding: var(--space-4xl) 0;
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.how-bg-shape {
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--aqua-tint);
    filter: blur(100px);
    pointer-events: none;
}

.how-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.step-paper {
    position: relative;
    margin-bottom: var(--space-lg);
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--surface);
    box-shadow: var(--shadow-8dp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    z-index: 1;
    border: 3px solid var(--accent-glow);
}

.step-connector {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 120px;
    height: 2px;
    background: var(--gray-300);
    transform: translateY(-50%);
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--gray-300);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .how-steps {
        flex-direction: column;
        align-items: center;
    }
    .step-connector {
        display: none;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-1dp);
    overflow: hidden;
    transition: box-shadow var(--duration-fast) var(--ease-out);
}

.faq-item:hover {
    box-shadow: var(--shadow-4dp);
}

.faq-item.active {
    box-shadow: var(--shadow-4dp);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-dark);
    text-align: left;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--duration-normal) var(--ease-out);
    color: var(--gray-400);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out),
                padding var(--duration-normal) var(--ease-out);
}

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

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

/* ============================================
   REGISTER / LEAD FORM SECTION
   ============================================ */
.register-section {
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.register-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.register-layer-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, var(--aqua-deep), var(--primary-dark));
}

.register-layer-2 {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l4 3.5-4 3z'/%3E%3C/g%3E%3C/svg%3E");
}

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

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

.register-title {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: var(--space-md);
}

.register-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: var(--space-2xl);
}

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

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

.perk-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-text strong {
    display: block;
    color: white;
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.perk-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Form Paper */
.register-form-wrapper {
    position: relative;
}

.register-form-paper {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-24dp);
    position: relative;
    overflow: hidden;
}

.form-paper-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(225deg, var(--gray-100) 50%, var(--gray-200) 50%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

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

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

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

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

.optional {
    color: var(--gray-400);
    font-weight: 400;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 12px 14px 12px 44px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    color: var(--primary);
    font-size: 0.95rem;
    transition: all var(--duration-fast) var(--ease-out);
}

.form-input:focus {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 4px var(--accent-glow);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(239, 83, 80, 0.1);
}

.form-error {
    font-size: 0.8rem;
    color: var(--error);
    min-height: 0;
    transition: all var(--duration-fast);
}

/* Checkbox */
.form-group-checkbox {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    margin-top: 1px;
    position: relative;
}

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform var(--duration-fast) var(--ease-bounce);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

/* Submit Button */
.btn-submit {
    margin-top: var(--space-md);
    padding: 16px;
    font-size: 1rem;
}

.btn-loader {
    display: inline-flex;
}

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

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

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

.success-icon {
    margin-bottom: var(--space-md);
}

.form-success h3 {
    color: var(--success);
    margin-bottom: var(--space-sm);
}

.form-success p {
    color: var(--gray-600);
}

.form-error-message {
    background: rgba(239, 83, 80, 0.1);
    border: 1px solid var(--error);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-md);
}

.form-error-message p {
    color: var(--error);
    font-size: 0.9rem;
}

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

@media (max-width: 480px) {
    .register-form-paper {
        padding: var(--space-lg);
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--space-4xl) 0;
    background: var(--surface);
}

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

.trust-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-1dp);
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid var(--gray-200);
}

.trust-card:hover {
    box-shadow: var(--shadow-4dp);
    transform: translateY(-3px);
    border-color: var(--accent-glow);
}

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

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

.trust-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

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

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

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--space-3xl);
    position: relative;
}

.footer-paper-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--aqua-light), var(--accent));
}

.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-logo-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.footer-logo-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: white;
    line-height: 1.1;
}

.footer-logo-sub {
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
    max-width: 300px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--duration-fast) var(--ease-out);
}

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

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--duration-fast);
}

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

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

.footer-contact-links svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent);
}

.footer-bottom {
    padding: var(--space-lg) 0;
}

.footer-bottom-paper {
    text-align: center;
}

.footer-bottom-paper p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-age-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-age-notice svg {
    color: var(--accent);
}

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

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

/* ============================================
   FAB BACK TO TOP
   ============================================ */
.fab-back-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    box-shadow: var(--shadow-8dp);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: all var(--duration-fast) var(--ease-out);
    opacity: 0;
    transform: translateY(20px);
}

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

.fab-back-top:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-3px);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--surface);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform var(--duration-slow) var(--ease-out);
    border-top: 3px solid var(--accent);
}

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

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-lg);
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

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

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

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

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

.btn-cookie-accept {
    padding: 10px 24px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--duration-fast) var(--ease-out);
    box-shadow: var(--shadow-2dp);
}

.btn-cookie-accept:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-4dp);
}

.btn-cookie-reject {
    padding: 10px 24px;
    background: var(--gray-100);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--duration-fast) var(--ease-out);
    border: 1px solid var(--gray-300);
}

.btn-cookie-reject:hover {
    background: var(--gray-200);
}

.btn-cookie-settings {
    padding: 10px 24px;
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--duration-fast);
}

.btn-cookie-settings:hover {
    color: var(--accent);
}

.cookie-settings-panel {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--gray-600);
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

/* ============================================
   LIVE TOAST
   ============================================ */
.live-toast {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    z-index: 800;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.live-toast.visible {
    transform: translateY(0);
    opacity: 1;
}

.toast-paper {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-16dp);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-left: 4px solid var(--accent);
    max-width: 320px;
}

.toast-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
    animation: livePulse 2s infinite;
}

.toast-paper p {
    font-size: 0.85rem;
    color: var(--gray-700);
    line-height: 1.4;
}

@media (max-width: 600px) {
    .live-toast {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
    }
    .toast-paper {
        max-width: 100%;
    }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-2xl);
    background: linear-gradient(160deg, var(--primary-dark), var(--primary));
}

.legal-hero-paper {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-8dp);
    position: relative;
}

.legal-hero-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--aqua-light));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 0.85rem;
}

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

.breadcrumb span {
    color: var(--gray-500);
}

.breadcrumb svg {
    color: var(--gray-400);
}

.legal-hero-paper h1 {
    margin-bottom: var(--space-sm);
}

.legal-hero-paper p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.legal-content-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-100);
}

.legal-content {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    box-shadow: var(--shadow-4dp);
    max-width: 850px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gray-200);
    color: var(--primary-dark);
}

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

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

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

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

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

.legal-content li {
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
}

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

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

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

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

.gdpr-right-card {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--duration-fast) var(--ease-out);
}

.gdpr-right-card:hover {
    box-shadow: var(--shadow-4dp);
    border-color: var(--accent-glow);
}

.gdpr-right-icon {
    margin-bottom: var(--space-md);
}

.gdpr-right-card h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}

.gdpr-right-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: var(--space-lg);
    }
    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="500"] { transition-delay: 500ms; }
[data-delay="600"] { transition-delay: 600ms; }

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

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    .bubble {
        display: none;
    }

    html {
        scroll-behavior: auto;
    }
}

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

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-header,
    .cookie-banner,
    .fab-back-top,
    .live-toast,
    .hero-bubbles,
    .mobile-nav-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        min-height: auto;
        padding-top: 0;
    }
}
```

Now the JavaScript:

```js