/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Primary Palette */
    --color-primary: #6b705c;
    --color-primary-dark: #545845;
    --color-primary-light: #8a8f7a;
    --color-primary-pale: #b7b7a4;

    /* Secondary / Background */
    --color-secondary: #fff8f0;
    --color-cream: #fff8f0;
    --color-cream-dark: #f5edd8;
    --color-linen: #faf3e8;
    --color-parchment: #f2e8d5;

    /* Accent */
    --color-accent: #cb997e;
    --color-accent-dark: #b08968;
    --color-accent-light: #ddbea9;
    --color-accent-pale: #ffe8d6;

    /* Additional Cottagecore */
    --color-dusty-rose: #c9a9a6;
    --color-dusty-rose-dark: #a88580;
    --color-lavender: #b8a9c9;
    --color-lavender-light: #d5c9e2;
    --color-sage: #a3b18a;
    --color-sage-dark: #6b8f4e;
    --color-warm-brown: #7f5539;
    --color-warm-brown-light: #9c6644;

    /* Neutrals */
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-text-muted: #999;
    --color-white: #ffffff;
    --color-black: #1a1a1a;

    /* Functional */
    --color-success: #6b8f4e;
    --color-error: #c1666b;
    --color-warning: #d4a574;

    /* 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 16px 48px rgba(107, 112, 92, 0.2);
    --shadow-warm: 0 4px 20px rgba(203, 153, 126, 0.15);
    --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', Georgia, serif;
    --font-body: 'Nunito', -apple-system, sans-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: 28px;
    --radius-full: 50%;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

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

/* Reset */
*,
*::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);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Linen texture overlay for body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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");
}

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

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

ul, ol {
    list-style: none;
}

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

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

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

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

/* ============================================
   FLORAL PATTERNS (CSS-only)
   ============================================ */
.floral-pattern-1 {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(203, 153, 126, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(107, 112, 92, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(184, 169, 201, 0.06) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
}

/* Scalloped border mixin pattern */
.scalloped-border-top::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: radial-gradient(circle at 10px -5px, transparent 12px, var(--color-cream) 13px);
    background-size: 20px 20px;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-white);
    border-top: 3px solid var(--color-accent-light);
    box-shadow: 0 -4px 30px rgba(107, 112, 92, 0.15);
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

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

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

.btn-cookie {
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

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

.btn-cookie-accept:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.btn-cookie-reject {
    background: var(--color-cream-dark);
    color: var(--color-primary);
}

.btn-cookie-reject:hover {
    background: var(--color-parchment);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-primary-pale);
}

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

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: var(--space-md) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-cream-dark);
}

.cookie-setting-row {
    padding: var(--space-sm) 0;
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-text);
    cursor: pointer;
}

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

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

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 112, 92, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.age-modal.visible {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.5s var(--ease-out);
    overflow: hidden;
}

.age-modal.visible .age-modal-content {
    transform: scale(1) translateY(0);
}

.age-modal-floral-top,
.age-modal-floral-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    background:
        radial-gradient(ellipse at 15% 100%, var(--color-accent-pale) 8px, transparent 8px),
        radial-gradient(ellipse at 45% 100%, var(--color-sage) 5px, transparent 5px),
        radial-gradient(ellipse at 75% 100%, var(--color-dusty-rose) 6px, transparent 6px),
        radial-gradient(ellipse at 90% 100%, var(--color-lavender-light) 4px, transparent 4px);
    opacity: 0.5;
}

.age-modal-floral-top {
    top: 0;
    transform: scaleY(-1);
}

.age-modal-floral-bottom {
    bottom: 0;
}

.age-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-sage), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
    color: var(--color-white);
}

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

.age-modal-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.age-modal-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl) !important;
}

.age-modal-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-age {
    padding: 0.8rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition-fast);
}

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

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

.btn-age-no {
    background: var(--color-cream-dark);
    color: var(--color-text-light);
}

.btn-age-no:hover {
    background: var(--color-parchment);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-med);
    border-bottom: 1px solid rgba(107, 112, 92, 0.08);
}

.main-header.scrolled {
    background: rgba(255, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(107, 112, 92, 0.12);
}

.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(203, 153, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(107, 112, 92, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary), var(--color-sage));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.logo:hover .logo-icon {
    transform: rotate(-15deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

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

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
}

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

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

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

.nav-link-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.5rem 1.4rem;
    font-weight: 600;
}

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

.nav-link-cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-base {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        170deg,
        var(--color-cream) 0%,
        var(--color-linen) 30%,
        var(--color-accent-pale) 60%,
        var(--color-cream-dark) 100%
    );
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(163, 177, 138, 0.12) 2px, transparent 2px),
        radial-gradient(circle at 85% 75%, rgba(203, 153, 126, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 45% 65%, rgba(184, 169, 201, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 70% 20%, rgba(201, 169, 166, 0.08) 1.5px, transparent 1.5px),
        radial-gradient(circle at 30% 85%, rgba(107, 112, 92, 0.06) 1px, transparent 1px);
    background-size: 120px 120px, 150px 150px, 90px 90px, 110px 110px, 70px 70px;
    animation: patternDrift 60s linear infinite;
}

@keyframes patternDrift {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 120px 120px, -150px 150px, 90px -90px, -110px 110px, 70px 70px; }
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(203, 153, 126, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, rgba(163, 177, 138, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 90%, rgba(184, 169, 201, 0.1) 0%, transparent 50%);
}

/* Floating elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    color: var(--color-primary-pale);
    opacity: 0.3;
    animation: floatLeaf 20s ease-in-out infinite;
}

.leaf-1 { top: 15%; left: 8%; font-size: 2rem; animation-delay: 0s; animation-duration: 22s; }
.leaf-2 { top: 35%; right: 12%; font-size: 1.5rem; animation-delay: -4s; animation-duration: 18s; color: var(--color-sage); }
.leaf-3 { top: 60%; left: 5%; font-size: 1.8rem; animation-delay: -8s; animation-duration: 25s; }
.leaf-4 { top: 20%; right: 20%; font-size: 1.2rem; animation-delay: -12s; animation-duration: 20s; color: var(--color-accent-light); }
.leaf-5 { top: 75%; right: 8%; font-size: 2.2rem; animation-delay: -6s; animation-duration: 24s; color: var(--color-lavender); }
.leaf-6 { top: 50%; left: 15%; font-size: 1rem; animation-delay: -10s; animation-duration: 19s; }

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(10deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-25px) rotate(8deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-4xl) 0 var(--space-3xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-white);
    border: 1px solid var(--color-accent-light);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-warm);
    animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero-badge i {
    color: var(--color-warning);
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: var(--color-primary);
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-title-line-1 {
    animation-delay: 0.2s;
}

.hero-title-line-2 {
    animation-delay: 0.4s;
    color: var(--color-accent-dark);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    animation: fadeInUp 0.8s var(--ease-out) 1s both;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-primary-pale);
    opacity: 0.5;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.8rem;
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 1;
}

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

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
    background: var(--color-primary);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    animation: tickerScroll 40s linear infinite;
    gap: var(--space-3xl);
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 248, 240, 0.9);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-item i {
    color: var(--color-accent-light);
    font-size: 0.75rem;
}

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-md);
}

.section-tag i {
    font-size: 0.9rem;
}

.section-tag-light {
    color: var(--color-accent-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.section-title-light {
    color: var(--color-cream);
}

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

.section-desc-light {
    color: rgba(255, 248, 240, 0.75);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--color-cream);
}

.section-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(163, 177, 138, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(203, 153, 126, 0.05) 2px, transparent 2px);
    background-size: 100px 100px, 120px 120px;
    pointer-events: none;
}

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

.about-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid rgba(107, 112, 92, 0.08);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-primary-pale), var(--color-lavender-light));
    opacity: 0;
    transition: opacity var(--transition-med);
}

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

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

.about-card-main {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-icon-wrap {
    margin-bottom: var(--space-lg);
}

.about-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-accent-pale), var(--color-cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-accent-dark);
    transition: transform var(--transition-fast);
}

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

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.about-card-main h3 {
    font-size: 1.6rem;
}

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

.about-card-detail {
    margin-top: var(--space-lg);
}

.detail-tag {
    display: inline-block;
    background: var(--color-accent-pale);
    color: var(--color-accent-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
}

.features-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.features-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 248, 240, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 248, 240, 0.03) 1.5px, transparent 1.5px);
    background-size: 80px 80px, 60px 60px;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}

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

.feature-item-right {
    direction: rtl;
}

.feature-item-right > * {
    direction: ltr;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-visual-card {
    width: 280px;
    height: 220px;
    background: rgba(255, 248, 240, 0.08);
    border: 1px solid rgba(255, 248, 240, 0.12);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    backdrop-filter: blur(4px);
    transition: all var(--transition-med);
}

.feature-visual-card:hover {
    background: rgba(255, 248, 240, 0.12);
    transform: translateY(-4px);
}

.feature-visual-icon {
    font-size: 2.5rem;
    color: var(--color-accent-light);
}

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

.feature-visual-dots span {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-fast);
}

.feature-visual-card:hover .feature-visual-dots span {
    transform: scale(1.15);
}

.feature-visual-waves {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 80%;
}

.wave {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 248, 240, 0.15);
    animation: waveAnim 3s ease-in-out infinite;
}

.wave-1 { width: 100%; animation-delay: 0s; }
.wave-2 { width: 70%; animation-delay: 0.5s; }
.wave-3 { width: 85%; animation-delay: 1s; }

@keyframes waveAnim {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.8; transform: scaleX(0.9); }
}

.feature-visual-calendar {
    display: flex;
    gap: var(--space-sm);
}

.cal-row {
    display: flex;
    gap: var(--space-sm);
}

.cal-day {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-white);
}

.cal-spring { background: rgba(163, 177, 138, 0.6); }
.cal-summer { background: rgba(203, 153, 126, 0.6); }
.cal-autumn { background: rgba(176, 137, 104, 0.6); }
.cal-winter { background: rgba(184, 169, 201, 0.6); }

.feature-visual-avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-white);
    margin-left: -8px;
    border: 2px solid rgba(107, 112, 92, 0.3);
}

.avatar:first-child { margin-left: 0; }
.avatar-1 { background: rgba(163, 177, 138, 0.7); }
.avatar-2 { background: rgba(203, 153, 126, 0.7); }
.avatar-3 { background: rgba(184, 169, 201, 0.7); }
.avatar-4 { background: rgba(201, 169, 166, 0.7); }

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 248, 240, 0.12);
    display: block;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.feature-text p {
    color: rgba(255, 248, 240, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 248, 240, 0.8);
    font-size: 0.9rem;
}

.feature-list li i {
    color: var(--color-accent-light);
    font-size: 0.85rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--space-5xl) 0;
    background: var(--color-linen);
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-med);
}

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

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-lg);
    overflow: hidden;
    border: 1px solid rgba(107, 112, 92, 0.1);
    border-radius: var(--radius-lg);
}

.gallery-label {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Spring Scene */
.gp-spring {
    background: linear-gradient(180deg, #b5d6a7 0%, #8fbc8f 40%, #6b8f4e 100%);
}

.gp-scene {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.gp-sun {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd700, #ffb347);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: sunPulse 4s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.6); }
}

.gp-hill {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
}

.gp-hill-1 {
    left: -10%;
    width: 70%;
    height: 50%;
    background: #7ca668;
}

.gp-hill-2 {
    right: -10%;
    width: 60%;
    height: 40%;
    background: #8fbc8f;
}

.gp-house {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
}

.gp-house-body {
    width: 40px;
    height: 30px;
    background: #f5deb3;
    border-radius: 2px;
}

.gp-house-roof {
    width: 50px;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 20px solid #8b4513;
    position: absolute;
    top: -20px;
    left: -5px;
}

.gp-house-door {
    width: 10px;
    height: 15px;
    background: #654321;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px 5px 0 0;
}

.gp-house-window {
    width: 8px;
    height: 8px;
    background: #87ceeb;
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: 1px;
}

.gp-tree {
    position: absolute;
    bottom: 30%;
    width: 20px;
    height: 35px;
    background: linear-gradient(180deg, #2d5a1e, #4a7a2e);
    border-radius: 50% 50% 10% 10%;
}

.gp-tree::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: #654321;
    border-radius: 2px;
}

.gp-tree-1 { left: 20%; }
.gp-tree-2 { right: 20%; }

.gp-flowers {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
}

.gp-flower {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    bottom: 0;
}

.gp-f1 { left: 15%; background: #ff6b9d; }
.gp-f2 { left: 30%; background: #ffd700; }
.gp-f3 { left: 50%; background: #ff6b9d; }
.gp-f4 { left: 65%; background: #b19cd9; }
.gp-f5 { left: 80%; background: #ffd700; }

/* Summer */
.gp-summer {
    background: linear-gradient(180deg, #87ceeb 0%, #90ee90 60%, #6b8f4e 100%);
}

.gp-scene-mini {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.gp-mini-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.gp-garden-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 60%;
}

.gp-row {
    height: 6px;
    background: rgba(107, 143, 78, 0.5);
    border-radius: 3px;
}

.gp-row:nth-child(2) { width: 80%; margin: 0 auto; }

/* Autumn */
.gp-autumn {
    background: linear-gradient(180deg, #deb887 0%, #cd853f 50%, #8b4513 100%);
}

.gp-falling-leaves span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50% 0 50% 0;
    animation: fallLeaf 4s ease-in-out infinite;
}

.gp-falling-leaves span:nth-child(1) { left: 20%; top: 20%; background: #d2691e; animation-delay: 0s; }
.gp-falling-leaves span:nth-child(2) { left: 50%; top: 10%; background: #ff8c00; animation-delay: 1s; }
.gp-falling-leaves span:nth-child(3) { left: 70%; top: 30%; background: #b8860b; animation-delay: 2s; }
.gp-falling-leaves span:nth-child(4) { left: 35%; top: 15%; background: #cd853f; animation-delay: 3s; }

@keyframes fallLeaf {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(120px) rotate(360deg); opacity: 0; }
}

/* Winter */
.gp-winter {
    background: linear-gradient(180deg, #b0c4de 0%, #dcdcdc 50%, #f0f8ff 100%);
}

.gp-snow-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: #f5f5f5;
    border-radius: 50% 50% 0 0;
}

/* Night */
.gp-night {
    background: linear-gradient(180deg, #191970 0%, #2c3e50 50%, #34495e 100%);
}

.gp-night-scene {
    position: relative;
}

.gp-moon-icon {
    color: #ffd700 !important;
}

.gp-star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.gp-star:nth-child(2) { animation-delay: 0.5s; }
.gp-star:nth-child(3) { animation-delay: 1s; }
.gp-star:nth-child(4) { animation-delay: 1.5s; }
.gp-star:nth-child(5) { animation-delay: 0.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.gp-firefly {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    animation: fireflyFloat 5s ease-in-out infinite;
}

.gp-firefly:nth-child(2) { animation-delay: 1.5s; }
.gp-firefly:nth-child(3) { animation-delay: 3s; }

@keyframes fireflyFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    25% { transform: translate(15px, -10px); opacity: 1; }
    50% { transform: translate(-10px, -20px); opacity: 0.6; }
    75% { transform: translate(20px, 5px); opacity: 1; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-5xl) 0;
    background: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 248, 240, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(203, 153, 126, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
}

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

.testimonials-track {
    display: flex;
    gap: var(--space-xl);
    transition: transform 0.5s var(--ease-out);
}

.testimonial-card {
    min-width: calc(33.333% - var(--space-xl) * 2 / 3);
    background: rgba(255, 248, 240, 0.06);
    border: 1px solid rgba(255, 248, 240, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(4px);
    transition: all var(--transition-med);
    flex-shrink: 0;
}

.testimonial-card:hover {
    background: rgba(255, 248, 240, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    color: var(--color-accent-light);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    color: #ffd700;
    font-size: 0.85rem;
}

.testimonial-text {
    color: rgba(255, 248, 240, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

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

.testimonial-avatar {
    font-size: 2.5rem;
    color: var(--color-accent-light);
    opacity: 0.7;
}

.testimonial-name {
    display: block;
    color: var(--color-cream);
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-role {
    color: rgba(255, 248, 240, 0.5);
    font-size: 0.8rem;
}

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

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 248, 240, 0.1);
    border: 1px solid rgba(255, 248, 240, 0.2);
    color: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.testimonial-btn:hover {
    background: rgba(255, 248, 240, 0.2);
    transform: scale(1.1);
}

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

.testimonials-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 248, 240, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials-dots .dot.active {
    background: var(--color-accent-light);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   LIVE COUNTER SECTION
   ============================================ */
.live-counter-section {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
    border-top: 1px solid rgba(107, 112, 92, 0.08);
    border-bottom: 1px solid rgba(107, 112, 92, 0.08);
}

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

.live-counter-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(107, 112, 92, 0.06);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-med);
}

.live-counter-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.live-counter-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.live-counter-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.live-counter-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.live-pulse {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 10px;
    height: 10px;
    background: var(--color-success);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(107, 143, 78, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(107, 143, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(107, 143, 78, 0); }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-5xl) 0;
    background: var(--color-linen);
}

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

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(107, 112, 92, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-fast);
}

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    transition: all var(--transition-fast);
    gap: var(--space-md);
}

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

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

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

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

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

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

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

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
}

.signup-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.signup-bg-base {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-accent-pale) 50%, var(--color-linen) 100%);
}

.signup-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(107, 112, 92, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(203, 153, 126, 0.05) 2px, transparent 2px);
    background-size: 90px 90px, 110px 110px;
}

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

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

.signup-info .section-title {
    margin-top: var(--space-md);
}

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

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--color-text);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-dark);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.trust-item i {
    color: var(--color-success);
    font-size: 0.8rem;
}

/* Form Card */
.signup-form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(107, 112, 92, 0.08);
    position: relative;
    overflow: hidden;
}

.signup-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-lavender));
}

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

.signup-form-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.signup-form-header p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.form-group label i {
    font-size: 0.85rem;
    color: var(--color-accent);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-cream);
    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-error);
}

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

/* Checkbox */
.form-group-checkbox {
    margin-bottom: var(--space-md);
}

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

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

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

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid var(--color-white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg) scale(0);
    transition: transform var(--transition-fast);
    position: absolute;
    top: 1px;
}

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

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

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

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

.success-icon {
    font-size: 3rem;
    color: var(--color-success);
    margin-bottom: var(--space-md);
}

.signup-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.signup-success p {
    color: var(--color-text-light);
}

.signup-error-msg {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(193, 102, 107, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(193, 102, 107, 0.2);
    margin-top: var(--space-md);
}

.error-icon {
    font-size: 1.5rem;
    color: var(--color-error);
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   RESPONSIBLE GAMING SECTION
   ============================================ */
.responsible-section {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.responsible-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    text-align: center;
    border: 1px solid rgba(107, 112, 92, 0.08);
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

.responsible-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.responsible-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.responsible-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.responsible-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.responsible-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-cream);
    border: 1px solid var(--color-cream-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
}

.responsible-badge i {
    color: var(--color-accent);
}

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

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 248, 240, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(203, 153, 126, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
    pointer-events: none;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--color-sage), var(--color-primary-light));
}

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

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

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 248, 240, 0.08);
    border: 1px solid rgba(255, 248, 240, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 248, 240, 0.6);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 248, 240, 0.15);
    color: var(--color-cream);
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-cream);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

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

.footer-links-group a {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.footer-contact-list li i {
    color: var(--color-accent-light);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list span {
    color: rgba(255, 248, 240, 0.6);
}

.footer-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 248, 240, 0.08);
    position: relative;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-bottom-left p {
    font-size: 0.82rem;
    color: rgba(255, 248, 240, 0.5);
    margin-bottom: var(--space-xs);
}

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

.footer-address i {
    color: var(--color-accent-light);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-age-badge {
    background: var(--color-error);
    color: var(--color-white);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-responsible {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.5);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: var(--header-height);
}

.legal-hero {
    background: var(--color-primary);
    padding: var(--space-4xl) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 248, 240, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 248, 240, 0.03) 1.5px, transparent 1.5px);
    background-size: 80px 80px, 60px 60px;
}

.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
    position: relative;
}

.legal-hero p {
    color: rgba(255, 248, 240, 0.6);
    font-size: 0.95rem;
    position: relative;
}

.legal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    margin: calc(-1 * var(--space-2xl)) auto var(--space-3xl);
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(107, 112, 92, 0.08);
    position: relative;
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--color-cream-dark);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

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

.legal-section p:last-child {
    margin-bottom: 0;
}

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

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

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

.legal-section li {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

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

.legal-info-box {
    background: var(--color-cream);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-md) 0;
}

.legal-info-box p {
    margin-bottom: var(--space-sm);
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

.legal-footer-note {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-2xl);
    border: 1px solid var(--color-cream-dark);
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

/* 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(--color-cream);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-fast);
}

.gdpr-right-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gdpr-right-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-accent-dark);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.gdpr-right-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

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

.gdpr-right-card p:last-child {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 0;
}

/* ============================================
   ANIMATIONS & SCROLL REVEALS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-card-main {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .feature-item-right {
        direction: ltr;
    }

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

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

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

    .testimonial-card {
        min-width: calc(50% - var(--space-xl) / 2);
    }

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

    .signup-info {
        padding-right: 0;
        text-align: center;
    }

    .signup-benefits {
        align-items: center;
    }

    .signup-trust {
        align-items: center;
    }

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

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s var(--ease-out);
        gap: var(--space-sm);
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-link {
        font-size: 1.05rem;
        padding: 0.75rem 1rem;
        width: 100%;
    }

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

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

    .about-card-main {
        grid-column: span 1;
    }

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

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

    .testimonial-card {
        min-width: 100%;
    }

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

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

    .hero-stat-divider {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

    .legal-content {
        padding: var(--space-xl);
        margin: calc(-1 * var(--space-lg)) var(--space-md) var(--space-2xl);
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

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

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

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

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

    .live-counter-grid {
        grid-template-columns: 1fr;
    }

    .responsible-badges {
        flex-direction: column;
        align-items: center;
    }

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

    .btn-age {
        width: 100%;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .ticker-content {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 10002;
    font-size: 0.9rem;
}

.skip-link:focus {
    top: var(--space-md);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .main-header,
    .cookie-consent,
    .age-modal,
    .hero-floating-elements,
    .social-proof-ticker,
    .footer-social,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
```

Now the JavaScript file:

```js