/* ============================================
   LIGHT-IT UP - COTTAGECORE DESIGN SYSTEM
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Core Palette */
    --color-primary: #6b705c;
    --color-primary-dark: #565a4a;
    --color-primary-light: #8a8f7a;
    --color-secondary: #fff8f0;
    --color-secondary-warm: #fff3e6;
    --color-accent: #cb997e;
    --color-accent-dark: #b5856a;
    --color-accent-light: #ddb8a3;

    /* Extended Palette */
    --color-sage: #a5a58d;
    --color-sage-light: #b7b7a4;
    --color-cream: #ffe8d6;
    --color-dusty-rose: #d4a5a5;
    --color-dusty-rose-light: #e8c4c4;
    --color-lavender: #b5838d;
    --color-lavender-light: #d4a0aa;
    --color-warm-brown: #8b7355;
    --color-moss: #606c38;
    --color-wheat: #dda15e;

    /* Neutrals */
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-text-muted: #999;
    --color-white: #ffffff;
    --color-off-white: #fefcf9;
    --color-border: #e2ddd5;
    --color-border-light: #f0ebe4;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(107, 112, 92, 0.08);
    --shadow-md: 0 4px 16px rgba(107, 112, 92, 0.12);
    --shadow-lg: 0 8px 32px rgba(107, 112, 92, 0.16);
    --shadow-xl: 0 12px 48px rgba(107, 112, 92, 0.2);
    --shadow-warm: 0 4px 20px rgba(203, 153, 126, 0.2);
    --shadow-card: 0 2px 12px rgba(107, 112, 92, 0.1), 0 0 0 1px rgba(107, 112, 92, 0.05);

    /* Typography */
    --font-display: 'Dancing Script', cursive;
    --font-heading: 'Lora', serif;
    --font-body: 'Crimson Pro', serif;

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

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

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

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 1000;
    --z-cookie: 1100;
    --z-toast: 1200;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-secondary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Linen-like textured background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

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-primary);
}

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

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
    margin-bottom: var(--space-md);
}

p:last-child {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

::selection {
    background: var(--color-accent-light);
    color: var(--color-primary-dark);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1;
    padding: 0.8em 1.8em;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: 0 4px 14px rgba(203, 153, 126, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-warm-brown));
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(203, 153, 126, 0.45);
    color: var(--color-white);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-accent-dark);
    padding: 0.5em 1em;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.btn-lg {
    font-size: 1.05rem;
    padding: 1em 2.2em;
}

.btn-sm {
    font-size: 0.85rem;
    padding: 0.6em 1.4em;
}

.btn-full {
    width: 100%;
}

.btn-loader {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* --- Floral Pattern Backgrounds --- */
.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.about-pattern {
    background-image: 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='%236b705c' fill-opacity='1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='10' r='1.5'/%3E%3Ccircle cx='10' cy='50' r='1.5'/%3E%3Ccircle cx='50' cy='50' r='1.5'/%3E%3Cpath d='M30 20c-2 0-4 2-4 4s4 6 4 6 4-4 4-6-2-4-4-4z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}

.features-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23cb997e' fill-opacity='1'%3E%3Cpath d='M40 25c-3 0-5 3-5 5s5 10 5 10 5-8 5-10-2-5-5-5z'/%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3Ccircle cx='60' cy='20' r='1.5'/%3E%3Ccircle cx='20' cy='60' r='1.5'/%3E%3Ccircle cx='60' cy='60' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.faq-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236b705c' fill-opacity='1'%3E%3Ccircle cx='25' cy='25' r='1'/%3E%3Ccircle cx='5' cy='5' r='1'/%3E%3Ccircle cx='45' cy='5' r='1'/%3E%3Ccircle cx='5' cy='45' r='1'/%3E%3Ccircle cx='45' cy='45' r='1'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 50px 50px;
}

/* --- Scalloped / Wavy Borders --- */
.scallop-top {
    position: relative;
}

.scallop-top::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16C30 16 30 0 60 0S90 16 120 16 150 0 180 0s30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16 30-16 60-16 30 16 60 16V16H0z' fill='%23fff8f0'/%3E%3C/svg%3E") repeat-x;
    background-size: 120px 16px;
    z-index: 2;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

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

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

.logo-icon {
    font-size: 1.6rem;
    color: var(--color-accent);
    transition: transform var(--transition-spring);
}

.logo:hover .logo-icon {
    transform: rotate(90deg);
}

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

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-primary);
    padding: 0.5em 0.9em;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--color-accent-dark);
    background: rgba(203, 153, 126, 0.08);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    padding: 0.5em 1.4em;
    margin-left: var(--space-sm);
}

.nav-link.nav-cta:hover {
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-warm-brown));
    color: var(--color-white);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

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

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

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

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

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(170deg, var(--color-secondary) 0%, var(--color-cream) 40%, var(--color-secondary-warm) 100%);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.035;
    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%3Cg fill='%236b705c'%3E%3Cpath d='M50 30c-4 0-7 4-7 7s7 13 7 13 7-10 7-13-3-7-7-7z'/%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3Ccircle cx='80' cy='80' r='2'/%3E%3Ccircle cx='80' cy='20' r='1.5'/%3E%3Ccircle cx='20' cy='80' r='1.5'/%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23cb997e' fill-opacity='0.5'/%3E%3C/svg%3E");
    background-size: 100px 100px, 60px 60px;
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent-dark);
    background: rgba(203, 153, 126, 0.12);
    border: 1px solid rgba(203, 153, 126, 0.25);
    padding: 0.4em 1.2em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    color: var(--color-primary-dark);
}

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

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

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

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

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

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

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

.stat-label {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-img-frame {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.6);
}

.hero-game-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-img-frame:hover .hero-game-icon {
    transform: scale(1.05);
}

.hero-img-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(203, 153, 126, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 0.7em 1.1em;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    border: 1px solid var(--color-border-light);
    animation: floatCard 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

.float-icon {
    font-size: 1.1rem;
    color: var(--color-accent);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-sage);
    border-bottom: 2px solid var(--color-sage);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
    50% { transform: rotate(45deg) translate(4px, 4px); opacity: 0.5; }
}

/* --- Sections Common --- */
section {
    position: relative;
    padding: var(--space-5xl) 0;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.title-flourish {
    font-size: 0.9rem;
    color: var(--color-sage);
    letter-spacing: 0.5em;
    margin-bottom: var(--space-md);
}

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

/* --- About Section --- */
.about-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

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

.about-card {
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent), var(--color-accent-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.about-card-icon {
    font-size: 2.4rem;
    margin-bottom: var(--space-lg);
    color: var(--color-accent);
    display: inline-block;
    transition: transform var(--transition-spring);
}

.about-card:hover .about-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

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

/* --- Gallery Section --- */
.gallery-section {
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-cream) 100%);
}

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

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

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

.gallery-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all var(--transition-base);
}

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

.gallery-frame:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(transparent, rgba(61, 61, 61, 0.7));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 600;
}

/* --- Features Section --- */
.features-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.features-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 60px 1fr 80px;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.feature-row:hover {
    padding-left: var(--space-md);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent-light);
    line-height: 1;
    transition: color var(--transition-base);
}

.feature-row:hover .feature-number {
    color: var(--color-accent);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.feature-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-secondary);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-accent);
    transition: all var(--transition-spring);
}

.feature-row:hover .feature-icon-circle {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    transform: rotate(15deg) scale(1.1);
}

/* --- Community Section --- */
.community-section {
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-secondary-warm) 100%);
}

.live-counter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    padding: 0.7em 1.5em;
    margin-bottom: var(--space-3xl);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-text-light);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
}

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

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-accent-light);
    opacity: 0.3;
    line-height: 1;
}

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

.testimonial-stars {
    color: var(--color-wheat);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

/* Activity Feed */
.activity-feed {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-card);
}

.feed-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: var(--space-lg);
    color: var(--color-primary-dark);
}

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

.feed-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-secondary);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--color-text-light);
    animation: feedSlideIn 0.5s ease-out;
    border: 1px solid var(--color-border-light);
}

.feed-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.feed-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

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

/* --- FAQ Section --- */
.faq-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--color-secondary);
    transition: all var(--transition-base);
}

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

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-warm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-align: left;
    line-height: 1.4;
    transition: all var(--transition-fast);
}

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

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-accent);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-md);
    font-weight: 300;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--space-xl);
}

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

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

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

/* --- Signup Section --- */
.signup-section {
    background: linear-gradient(170deg, var(--color-cream) 0%, var(--color-secondary-warm) 50%, var(--color-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.signup-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236b705c'%3E%3Cpath d='M40 25c-3 0-5 3-5 5s5 10 5 10 5-8 5-10-2-5-5-5z'/%3E%3Ccircle cx='15' cy='15' r='1.5'/%3E%3Ccircle cx='65' cy='65' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}

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

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

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

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

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

.signup-info > p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.signup-perks {
    margin-bottom: var(--space-2xl);
}

.signup-perks li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-text);
}

.perk-icon {
    color: var(--color-moss);
    font-weight: 700;
    font-size: 1rem;
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.trust-icon {
    font-size: 1.2rem;
}

.signup-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--color-primary-dark);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-xs);
}

.required {
    color: var(--color-dusty-rose);
}

.optional {
    color: var(--color-text-muted);
    font-weight: 400;
    font-size: 0.82rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.85em 1.1em;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-secondary);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(203, 153, 126, 0.15);
}

.form-group input.error {
    border-color: var(--color-dusty-rose);
    background: #fff5f5;
}

.field-error {
    display: block;
    font-size: 0.8rem;
    color: var(--color-dusty-rose);
    margin-top: var(--space-xs);
    min-height: 1.2em;
}

.form-checkbox {
    margin-bottom: var(--space-md);
}

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

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

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: var(--space-md);
}

.form-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-moss), #7a9c59);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto var(--space-xl);
    animation: successPop 0.5s var(--transition-spring);
}

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

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

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

/* --- Trust Section --- */
.trust-section {
    background: var(--color-white);
}

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

.trust-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--color-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.trust-card-icon {
    font-size: 2.2rem;
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

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

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

.trust-card a {
    color: var(--color-accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255, 248, 240, 0.8);
    padding: var(--space-4xl) 0 0;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23fff8f0'/%3E%3Ccircle cx='10' cy='10' r='1' fill='%23fff8f0'/%3E%3Ccircle cx='50' cy='50' r='1' fill='%23fff8f0'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

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

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-secondary);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: rgba(255, 248, 240, 0.65);
}

.footer-age-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5em 1em;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
}

.age-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent-light);
}

.age-text {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.6);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.65);
    transition: color var(--transition-fast);
    display: inline-block;
    padding: 2px 0;
}

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

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

.footer-contact li {
    font-size: 0.88rem;
}

.contact-label {
    font-weight: 500;
    color: rgba(255, 248, 240, 0.5);
    margin-right: var(--space-xs);
}

.footer-contact a {
    color: rgba(255, 248, 240, 0.7);
}

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

.footer-address {
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.5);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 1;
}

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

.copyright {
    font-size: 0.82rem;
    color: rgba(255, 248, 240, 0.45);
}

.responsible-gaming {
    font-size: 0.82rem;
    color: rgba(255, 248, 240, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    border: 2px solid var(--color-white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

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

.back-to-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-3px);
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    border-top: 2px solid var(--color-border);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    z-index: var(--z-cookie);
    padding: var(--space-xl);
    animation: slideUpCookie 0.5s ease-out;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

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

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

.cookie-text p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

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

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

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

.cookie-setting-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    flex-wrap: wrap;
}

.cookie-setting-row label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    min-width: 250px;
}

.cookie-desc {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.cookie-settings .btn {
    margin-top: var(--space-md);
}

/* --- Age Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(86, 90, 74, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-floral-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-accent), var(--color-dusty-rose-light), var(--color-lavender-light), var(--color-accent-light));
}

.age-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

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

.age-note {
    font-size: 0.85rem !important;
    color: var(--color-text-muted) !important;
    font-style: italic;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* --- Legal Pages --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px var(--space-xl) var(--space-5xl);
}

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

.legal-content h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--color-primary-dark);
}

.legal-content .legal-date {
    text-align: center;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3xl);
}

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

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

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

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

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    list-style: disc;
}

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

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

.legal-content .legal-footer {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border-light);
    text-align: center;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image {
        order: -1;
    }

    .hero-img-frame {
        width: 280px;
        height: 280px;
    }

    .hero-floating-card.card-1 {
        right: 5%;
    }

    .hero-floating-card.card-2 {
        left: 5%;
    }

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

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

    .gallery-item.gallery-large {
        grid-row: auto;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / 3;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .signup-perks {
        display: inline-block;
        text-align: left;
    }

    .signup-trust {
        justify-content: center;
    }

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

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

    .feature-row {
        grid-template-columns: 50px 1fr 60px;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        padding: 100px var(--space-2xl) var(--space-2xl);
        transition: right var(--transition-base);
        z-index: 5;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: stretch;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 0.8em 1em;
        border-radius: var(--radius-md);
    }

    .nav-link.nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: var(--space-md);
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-img-frame {
        width: 220px;
        height: 220px;
    }

    .hero-floating-card {
        display: none;
    }

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

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

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

    .gallery-item.gallery-wide {
        grid-column: auto;
    }

    .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .feature-row:hover {
        padding-left: 0;
    }

    .feature-visual {
        display: none;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

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

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

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

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

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

    .legal-content {
        padding: 100px var(--space-md) var(--space-3xl);
    }

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

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

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .signup-form-wrapper {
        padding: var(--space-xl);
    }

    .age-actions {
        gap: var(--space-sm);
    }
}

/* --- Print Styles --- */
@media print {
    .site-header,
    .cookie-banner,
    .modal-overlay,
    .back-to-top,
    .hero-scroll-indicator {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .legal-content {
        padding: 20px;
    }
}