/* ============================================================
   OPOWIESCIAR - Pastel Dream Design System
   Mobile Game Website - Production CSS
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Primary Palette */
    --primary: #a8d8ea;
    --primary-light: #c8e8f4;
    --primary-dark: #7bbfd6;
    --primary-ultra-light: #e4f3fa;

    /* Secondary Palette */
    --secondary: #aa96da;
    --secondary-light: #c7b8e8;
    --secondary-dark: #8d74c9;
    --secondary-ultra-light: #e8e0f5;

    /* Accent Palette */
    --accent: #fcbad3;
    --accent-light: #fdd5e3;
    --accent-dark: #f895b8;
    --accent-ultra-light: #feeaf1;

    /* Neutral Palette */
    --white: #ffffff;
    --off-white: #faf8ff;
    --cream: #fef9f4;
    --gray-50: #f8f6fb;
    --gray-100: #f0ecf5;
    --gray-200: #e4dff0;
    --gray-300: #cfc8e0;
    --gray-400: #a89dc0;
    --gray-500: #8578a0;
    --gray-600: #6b5f85;
    --gray-700: #524870;
    --gray-800: #3d3558;
    --gray-900: #2a2240;

    /* Functional */
    --success: #a8e6cf;
    --success-dark: #6bc9a0;
    --warning: #ffd3b6;
    --warning-dark: #ffb088;
    --error: #ff8b94;
    --error-dark: #ff5c6a;
    --info: #a8d8ea;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a8d8ea 0%, #aa96da 100%);
    --gradient-accent: linear-gradient(135deg, #fcbad3 0%, #aa96da 100%);
    --gradient-warm: linear-gradient(135deg, #fcbad3 0%, #ffd3b6 50%, #ffeaa7 100%);
    --gradient-cool: linear-gradient(135deg, #a8d8ea 0%, #aa96da 50%, #fcbad3 100%);
    --gradient-hero: linear-gradient(160deg, #faf8ff 0%, #e4f3fa 25%, #e8e0f5 50%, #feeaf1 75%, #faf8ff 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #faf8ff 100%);
    --gradient-footer: linear-gradient(180deg, #2a2240 0%, #1a1530 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(170, 150, 218, 0.08);
    --shadow-md: 0 4px 16px rgba(170, 150, 218, 0.12);
    --shadow-lg: 0 8px 32px rgba(170, 150, 218, 0.16);
    --shadow-xl: 0 16px 48px rgba(170, 150, 218, 0.20);
    --shadow-accent: 0 4px 20px rgba(252, 186, 211, 0.30);
    --shadow-primary: 0 4px 20px rgba(168, 216, 234, 0.30);
    --shadow-glow: 0 0 40px rgba(170, 150, 218, 0.15);

    /* Typography */
    --font-display: 'Comfortaa', cursive;
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Nunito', 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;

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.35s var(--ease-out);
    --transition-slow: 0.5s var(--ease-out);

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

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(252, 186, 211, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary-dark);
    background: var(--secondary-ultra-light);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    padding: 14px 20px;
}

.btn-ghost:hover {
    color: var(--secondary-dark);
    background: var(--gray-50);
}

.btn-hero-primary {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 18px 36px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-accent);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(252, 186, 211, 0.45);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gray-700);
    border: 2px solid rgba(170, 150, 218, 0.2);
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--secondary);
    color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 18px 32px;
    font-size: 1.05rem;
    box-shadow: var(--shadow-accent);
    border: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(252, 186, 211, 0.45);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(250, 248, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(170, 150, 218, 0.08);
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(250, 248, 255, 0.92);
    box-shadow: var(--shadow-md);
    height: 68px;
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-cool);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-dark);
    background: var(--secondary-ultra-light);
}

.nav-cta {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    box-shadow: var(--shadow-accent);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(252, 186, 211, 0.4);
}

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

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

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

/* Mobile Menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 34, 64, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 85vw);
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transition: right 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(42, 34, 64, 0.15);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.mobile-close:hover {
    background: var(--error);
    color: var(--white);
}

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

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--secondary-ultra-light);
    color: var(--secondary-dark);
}

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

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Background Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
    top: 30%;
    left: 10%;
    animation: floatShape 18s ease-in-out infinite 3s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 60%;
    right: 20%;
    animation: floatShape 22s ease-in-out infinite 5s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 20%;
    right: 40%;
    animation: floatShape 15s ease-in-out infinite 2s;
}

.shape-6 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary-ultra-light) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation: floatShape 28s ease-in-out infinite 7s;
}

.shape-7 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--accent-ultra-light) 0%, transparent 70%);
    top: 10%;
    left: 40%;
    animation: floatShape 20s ease-in-out infinite 4s;
}

.shape-8 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--primary-ultra-light) 0%, transparent 70%);
    bottom: 40%;
    left: 25%;
    animation: floatShape 16s ease-in-out infinite 6s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

/* Hero Content Layout */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    max-width: calc(var(--max-width) + var(--space-xl) * 2);
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    padding-left: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-dark);
    border: 1px solid rgba(170, 150, 218, 0.15);
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero-badge i {
    font-size: 0.7rem;
    color: var(--accent);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.title-line {
    display: block;
}

.title-line-1 {
    color: var(--gray-800);
}

.title-line-2 {
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-3 {
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 500px;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero-subtitle strong {
    color: var(--secondary-dark);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.75s both;
}

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

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

/* Hero Visual - Phone Mockup */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 20px 60px rgba(42, 34, 64, 0.25),
        0 0 0 2px rgba(170, 150, 218, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--gray-900);
    border-radius: 0 0 20px 20px;
    z-index: 5;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #c8e8f4 0%, #e8e0f5 50%, #feeaf1 100%);
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 16px 8px;
    position: relative;
    z-index: 3;
}

.screen-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-800);
}

.screen-icons {
    display: flex;
    gap: 8px;
    color: var(--gray-500);
    font-size: 0.7rem;
}

.screen-scene {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.scene-sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #c8e8f4 0%, #e8e0f5 60%, #fdd5e3 100%);
}

.scene-hills {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
}

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

.hill-1 {
    width: 200px;
    height: 120px;
    background: linear-gradient(180deg, #b8e0c8 0%, #a8d8b4 100%);
    left: -30px;
    z-index: 1;
}

.hill-2 {
    width: 180px;
    height: 100px;
    background: linear-gradient(180deg, #c8e8d4 0%, #b8dcc4 100%);
    right: -20px;
    z-index: 2;
}

.hill-3 {
    width: 260px;
    height: 80px;
    background: linear-gradient(180deg, #d4eede 0%, #c8e4d0 100%);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* Character */
.scene-character {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: characterBounce 3s ease-in-out infinite;
}

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

.character-body {
    width: 32px;
    height: 36px;
    background: var(--accent);
    border-radius: 12px 12px 16px 16px;
    position: relative;
}

.character-head {
    width: 28px;
    height: 28px;
    background: #ffecd2;
    border-radius: 50%;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.character-eyes {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-top: 10px;
}

.eye {
    width: 5px;
    height: 5px;
    background: var(--gray-800);
    border-radius: 50%;
    animation: blink 4s ease-in-out infinite;
}

@keyframes blink {
    0%, 95%, 100% { transform: scaleY(1); }
    97% { transform: scaleY(0.1); }
}

.character-mouth {
    width: 8px;
    height: 4px;
    background: var(--accent-dark);
    border-radius: 0 0 8px 8px;
    margin: 3px auto 0;
}

.character-hat {
    width: 22px;
    height: 18px;
    background: var(--secondary);
    border-radius: 50% 50% 0 0;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
}

.character-hat::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -4px;
    width: 30px;
    height: 6px;
    background: var(--secondary-dark);
    border-radius: var(--radius-full);
}

/* Stars */
.scene-stars {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.star {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.s1 { top: 15%; left: 20%; animation-delay: 0s; }
.s2 { top: 25%; right: 25%; animation-delay: 0.5s; }
.s3 { top: 10%; left: 60%; animation-delay: 1s; width: 4px; height: 4px; }
.s4 { top: 35%; left: 15%; animation-delay: 1.5s; width: 3px; height: 3px; }
.s5 { top: 20%; right: 15%; animation-delay: 2s; width: 5px; height: 5px; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Screen UI */
.screen-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(0deg, rgba(255,255,255,0.9) 0%, transparent 100%);
    z-index: 5;
}

.ui-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.ui-health,
.ui-magic {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
}

.ui-health i { color: var(--accent); }
.ui-magic i { color: var(--secondary); }

.bar-bg {
    flex: 1;
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.health-fill {
    width: 75%;
    background: var(--gradient-accent);
}

.magic-fill {
    width: 60%;
    background: var(--gradient-primary);
}

.ui-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gray-600);
    box-shadow: var(--shadow-sm);
}

.primary-action {
    background: var(--gradient-accent);
    color: var(--white);
    width: 44px;
    height: 44px;
    margin-top: -4px;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-el {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
}

.float-el-1 {
    top: 10%;
    right: -10px;
    color: var(--accent);
    animation: floatEl 5s ease-in-out infinite;
}

.float-el-2 {
    bottom: 25%;
    left: -15px;
    color: var(--secondary);
    animation: floatEl 6s ease-in-out infinite 1s;
}

.float-el-3 {
    top: 35%;
    left: -25px;
    color: var(--primary-dark);
    animation: floatEl 4.5s ease-in-out infinite 2s;
}

.float-el-4 {
    bottom: 10%;
    right: -20px;
    color: var(--secondary-dark);
    animation: floatEl 5.5s ease-in-out infinite 0.5s;
}

@keyframes floatEl {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    z-index: 2;
    animation: fadeInUp 0.8s var(--ease-out) 1.2s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-300);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* ============================================================
   SOCIAL PROOF / COUNTERS
   ============================================================ */
.social-proof {
    padding: var(--space-3xl) 0;
    background: var(--white);
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

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

.proof-card {
    text-align: center;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: var(--gradient-card);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cool);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

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

.proof-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.proof-card:nth-child(1) .proof-icon {
    background: var(--primary-ultra-light);
    color: var(--primary-dark);
}

.proof-card:nth-child(2) .proof-icon {
    background: var(--secondary-ultra-light);
    color: var(--secondary-dark);
}

.proof-card:nth-child(3) .proof-icon {
    background: var(--accent-ultra-light);
    color: var(--accent-dark);
}

.proof-card:nth-child(4) .proof-icon {
    background: linear-gradient(135deg, #ffeaa7 0%, #ffd3b6 100%);
    color: #e17055;
}

.proof-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.proof-label {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================================================
   SECTION HEADER (Shared)
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 18px;
    background: var(--secondary-ultra-light);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: var(--space-lg);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-500);
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    pointer-events: none;
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card-large {
    grid-column: span 2;
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
}

.gradient-1 { background: linear-gradient(135deg, #a8d8ea, #7bbfd6); }
.gradient-2 { background: linear-gradient(135deg, #fcbad3, #f895b8); }
.gradient-3 { background: linear-gradient(135deg, #aa96da, #8d74c9); }
.gradient-4 { background: linear-gradient(135deg, #ffeaa7, #fdcb6e); }
.gradient-5 { background: linear-gradient(135deg, #a8e6cf, #6bc9a0); }
.gradient-6 { background: linear-gradient(135deg, #fcbad3, #aa96da); }

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

.feature-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-decoration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 6px;
}

.deco-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.3;
}

.d1 { background: var(--primary); }
.d2 { background: var(--secondary); }
.d3 { background: var(--accent); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 var(--space-lg);
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 2;
}

.step-card:nth-child(1) .step-number {
    background: var(--gradient-primary);
}

.step-card:nth-child(2) .step-number {
    background: var(--gradient-accent);
}

.step-card:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.step-number span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.step-connector {
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 3px;
    background: var(--gray-200);
    z-index: 1;
}

.step-card:last-child .step-connector {
    display: none;
}

.step-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
}

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

.step-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================
   SHOWCASE / GAME PREVIEW
   ============================================================ */
.showcase {
    padding: var(--space-5xl) 0;
    background: var(--off-white);
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.showcase-tab {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.showcase-tab:hover {
    border-color: var(--secondary-light);
    color: var(--secondary-dark);
}

.showcase-tab.active {
    background: var(--gradient-cool);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.showcase-panel {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    animation: fadeInUp 0.5s var(--ease-out);
}

.showcase-panel.active {
    display: grid;
}

.showcase-visual {
    height: 400px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.scene-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

/* Forest Scene */
.forest-scene .sky-layer {
    background: linear-gradient(180deg, #c8e8f4 0%, #d8eee0 40%, #e0f0d8 100%);
}

.forest-scene .ground-layer {
    top: auto;
    height: 40%;
    background: linear-gradient(180deg, #b8dcc4 0%, #a0d0b0 100%);
    border-radius: 50% 50% 0 0 / 20% 20% 0 0;
}

.tree {
    position: absolute;
    bottom: 35%;
    z-index: 3;
}

.tree::before {
    content: '';
    display: block;
    border-radius: 50% 50% 5px 5px;
}

.tree::after {
    content: '';
    display: block;
    margin: 0 auto;
    border-radius: 2px;
}

.t1 { left: 10%; }
.t1::before { width: 50px; height: 70px; background: #8bc99a; }
.t1::after { width: 8px; height: 20px; background: #a0855c; }

.t2 { left: 25%; }
.t2::before { width: 40px; height: 55px; background: #7ec08d; }
.t2::after { width: 6px; height: 16px; background: #957a52; }

.t3 { left: 48%; }
.t3::before { width: 60px; height: 80px; background: #95d4a4; }
.t3::after { width: 10px; height: 22px; background: #a0855c; }

.t4 { left: 68%; }
.t4::before { width: 45px; height: 60px; background: #85c496; }
.t4::after { width: 7px; height: 18px; background: #957a52; }

.t5 { left: 85%; }
.t5::before { width: 35px; height: 50px; background: #78b88a; }
.t5::after { width: 6px; height: 14px; background: #a0855c; }

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 5;
    animation: particleFloat 8s linear infinite;
}

.p1 { left: 15%; top: 30%; animation-delay: 0s; }
.p2 { left: 35%; top: 50%; animation-delay: 1.5s; }
.p3 { left: 55%; top: 20%; animation-delay: 3s; width: 4px; height: 4px; }
.p4 { left: 75%; top: 40%; animation-delay: 4.5s; }
.p5 { left: 25%; top: 60%; animation-delay: 6s; width: 5px; height: 5px; }
.p6 { left: 65%; top: 55%; animation-delay: 2s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) translateX(0); }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-80px) translateX(20px); }
}

/* Ocean Scene */
.ocean-scene .ocean-sky-layer {
    background: linear-gradient(180deg, #a8d8ea 0%, #7bbfd6 30%, #5ba8c8 60%, #4890b0 100%);
}

.wave {
    position: absolute;
    width: 200%;
    height: 60px;
    border-radius: 50%;
    z-index: 3;
}

.w1 {
    bottom: 55%;
    left: -50%;
    background: rgba(168, 216, 234, 0.3);
    animation: waveMove 8s linear infinite;
}

.w2 {
    bottom: 45%;
    left: -50%;
    background: rgba(123, 191, 214, 0.3);
    animation: waveMove 10s linear infinite reverse;
}

.w3 {
    bottom: 35%;
    left: -50%;
    background: rgba(91, 168, 200, 0.3);
    animation: waveMove 12s linear infinite;
}

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

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 5;
    animation: bubbleRise 6s linear infinite;
}

.b1 { width: 12px; height: 12px; left: 20%; bottom: 10%; animation-delay: 0s; }
.b2 { width: 8px; height: 8px; left: 40%; bottom: 5%; animation-delay: 1.5s; }
.b3 { width: 15px; height: 15px; left: 60%; bottom: 15%; animation-delay: 3s; }
.b4 { width: 6px; height: 6px; left: 75%; bottom: 8%; animation-delay: 4s; }
.b5 { width: 10px; height: 10px; left: 35%; bottom: 12%; animation-delay: 2s; }

@keyframes bubbleRise {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 1; transform: translateY(-40px) scale(1); }
    80% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-250px) scale(0.3); }
}

/* Sky Scene */
.sky-scene .sky-gradient-layer {
    background: linear-gradient(180deg, #c8e8f4 0%, #e8e0f5 50%, #fdd5e3 100%);
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-full);
    z-index: 3;
}

.c1 {
    width: 120px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: cloudDrift 20s linear infinite;
}

.c2 {
    width: 80px;
    height: 30px;
    top: 40%;
    left: 50%;
    animation: cloudDrift 25s linear infinite reverse;
}

.c3 {
    width: 100px;
    height: 35px;
    top: 60%;
    left: 30%;
    animation: cloudDrift 18s linear infinite 5s;
}

.c4 {
    width: 60px;
    height: 25px;
    top: 30%;
    left: 70%;
    animation: cloudDrift 22s linear infinite 8s;
}

@keyframes cloudDrift {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    z-index: 5;
    animation: sparkleAnim 3s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
}

.sparkle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 1px;
}

.sparkle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.sp1 { top: 15%; left: 25%; animation-delay: 0s; }
.sp2 { top: 50%; right: 20%; animation-delay: 1s; }
.sp3 { top: 35%; left: 55%; animation-delay: 2s; }
.sp4 { top: 70%; left: 15%; animation-delay: 0.5s; }

@keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(45deg); }
}

/* Cave Scene */
.cave-scene .cave-bg-layer {
    background: linear-gradient(180deg, #3d3558 0%, #524870 40%, #6b5f85 100%);
}

.crystal {
    position: absolute;
    z-index: 3;
}

.crystal::before {
    content: '';
    display: block;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.cr1 {
    bottom: 10%;
    left: 15%;
}
.cr1::before {
    width: 30px;
    height: 60px;
    background: linear-gradient(180deg, #c8b8e8, #aa96da);
}

.cr2 {
    bottom: 8%;
    left: 30%;
}
.cr2::before {
    width: 20px;
    height: 45px;
    background: linear-gradient(180deg, #fdd5e3, #fcbad3);
}

.cr3 {
    bottom: 12%;
    right: 25%;
}
.cr3::before {
    width: 35px;
    height: 70px;
    background: linear-gradient(180deg, #c8e8f4, #a8d8ea);
}

.cr4 {
    bottom: 5%;
    right: 40%;
}
.cr4::before {
    width: 18px;
    height: 40px;
    background: linear-gradient(180deg, #ffeaa7, #fdcb6e);
}

.cr5 {
    bottom: 15%;
    right: 10%;
}
.cr5::before {
    width: 25px;
    height: 55px;
    background: linear-gradient(180deg, #a8e6cf, #6bc9a0);
}

.glow {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
    animation: glowPulse 4s ease-in-out infinite;
}

.g1 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    background: radial-gradient(circle, rgba(170, 150, 218, 0.3) 0%, transparent 70%);
    animation-delay: 0s;
}

.g2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 30%;
    background: radial-gradient(circle, rgba(168, 216, 234, 0.3) 0%, transparent 70%);
    animation-delay: 1.5s;
}

.g3 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 50%;
    background: radial-gradient(circle, rgba(252, 186, 211, 0.3) 0%, transparent 70%);
    animation-delay: 3s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Showcase Info */
.showcase-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
}

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

.showcase-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 8px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-full);
}

.stat i {
    color: var(--secondary);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.testimonials-slider {
    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: var(--gradient-card);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

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

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.avatar-1 { background: var(--gradient-primary); }
.avatar-2 { background: var(--gradient-accent); }
.avatar-3 { background: linear-gradient(135deg, #a8e6cf, #6bc9a0); }
.avatar-4 { background: linear-gradient(135deg, #ffeaa7, #fdcb6e); }
.avatar-5 { background: linear-gradient(135deg, var(--secondary), var(--accent)); }

.testimonial-meta h4 {
    font-size: 1rem;
    font-weight: 700;
}

.testimonial-meta span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.testimonial-rating {
    margin-bottom: var(--space-md);
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #fdcb6e;
    font-size: 0.85rem;
}

.testimonial-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

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

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-600);
    transition: all var(--transition-fast);
}

.slider-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary-dark);
    background: var(--secondary-ultra-light);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

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

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all var(--transition-normal);
}

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

.faq-item.active {
    border-color: var(--secondary-light);
    box-shadow: var(--shadow-lg);
}

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

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

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

.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: 300px;
}

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

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

/* ============================================================
   SIGNUP / LEAD COLLECTION
   ============================================================ */
.signup {
    padding: var(--space-5xl) 0;
    background: var(--gradient-cool);
    position: relative;
    overflow: hidden;
}

.signup::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

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

.signup-info {
    color: var(--white);
}

.signup-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.signup-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    color: var(--white);
}

.signup-desc strong {
    font-weight: 700;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--white);
    font-weight: 500;
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Form Styling */
.signup-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.required {
    color: var(--error-dark);
}

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

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 0.9rem;
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-wrap input:focus ~ .input-icon,
.input-wrap input:focus + .input-icon {
    color: var(--secondary);
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all var(--transition-fast);
}

.input-wrap input:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(170, 150, 218, 0.1);
    outline: none;
}

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

.input-wrap input.error {
    border-color: var(--error);
    background: var(--white);
}

.input-wrap input.success {
    border-color: var(--success-dark);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--error-dark);
    margin-top: 4px;
    min-height: 1rem;
}

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

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

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

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--gradient-accent);
    border-color: transparent;
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    display: block;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--secondary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-note {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: var(--space-lg);
    text-align: center;
    justify-content: center;
}

.form-note i {
    color: var(--success-dark);
}

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

.success-icon {
    font-size: 3rem;
    color: var(--success-dark);
    margin-bottom: var(--space-lg);
    animation: successPop 0.5s var(--ease-bounce);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

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

.form-success p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: left;
}

.detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}

.detail i {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
.responsible-gaming {
    padding: var(--space-2xl) 0;
    background: var(--gray-50);
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.responsible-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #a8e6cf, #6bc9a0);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
}

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

.responsible-text p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--gradient-footer);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 0;
}

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

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

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

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

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

.footer-contact i {
    margin-top: 3px;
    color: var(--secondary-light);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

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

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

.contact-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) 0;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-bottom-left p {
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-address {
    opacity: 0.6;
    font-size: 0.78rem !important;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.badge i {
    font-size: 0.7rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-accent);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(252, 186, 211, 0.5);
}

/* ============================================================
   LIVE NOTIFICATION
   ============================================================ */
.live-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    box-shadow: var(--shadow-xl);
    z-index: 100;
    max-width: 340px;
    border: 1px solid var(--gray-100);
    animation: slideInNotif 0.5s var(--ease-out);
}

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

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--primary-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    color: var(--gray-800);
    font-size: 0.88rem;
}

.notification-text span {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-500);
}

.notification-text small {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    font-size: 0.8rem;
    padding: 4px;
    transition: color var(--transition-fast);
}

.notification-close:hover {
    color: var(--gray-700);
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    box-shadow: 0 -4px 40px rgba(42, 34, 64, 0.15);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    animation: slideUpCookie 0.5s var(--ease-out);
}

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

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

.cookie-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--gradient-warm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

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

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

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

.cookie-text a {
    color: var(--secondary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

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

.cookie-setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
}

.cookie-setting-item span {
    font-size: 0.82rem;
    color: var(--gray-400);
}

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

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

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
}

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

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.legal-header .last-updated {
    font-size: 0.9rem;
    color: var(--gray-400);
}

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

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

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

.legal-body h3 {
    font-size: 1.1rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
}

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

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

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

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

.legal-body li {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-xs);
}

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

.legal-body strong {
    color: var(--gray-700);
}

.legal-body .contact-box {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    border-left: 4px solid var(--secondary);
}

.legal-body .contact-box p {
    margin-bottom: var(--space-xs);
}

.legal-body .rights-list {
    list-style: none;
    padding-left: 0;
}

.legal-body .rights-list li {
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    border-left: 3px solid var(--secondary);
}

.legal-body .rights-list li strong {
    display: block;
    color: var(--gray-800);
    margin-bottom: 4px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
        padding: calc(var(--header-height) + var(--space-2xl)) var(--space-xl) var(--space-2xl);
    }

    .hero-content {
        align-items: center;
        padding-left: 0;
    }

    .hero-subtitle {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        order: 2;
    }

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

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

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

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

    .feature-card-large {
        grid-column: span 2;
    }

    .steps-container {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .step-connector {
        display: none;
    }

    .showcase-panel {
        grid-template-columns: 1fr;
    }

    .showcase-visual {
        height: 300px;
    }

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

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

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 68px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .proof-card {
        padding: var(--space-lg);
    }

    .proof-number {
        font-size: 1.6rem;
    }

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

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

    .showcase-tabs {
        gap: var(--space-xs);
    }

    .showcase-tab {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .showcase-tab span {
        display: none;
    }

    .testimonial-card {
        min-width: calc(100% - var(--space-md));
    }

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

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

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

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

    .cookie-actions .btn {
        flex: 1;
        min-width: 120px;
    }

    .live-notification {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 15px;
    }

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

    .responsible-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }

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

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

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

    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .nav-link {
        border: 1px solid transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        border-color: currentColor;
    }

    .feature-card,
    .proof-card,
    .faq-item,
    .testimonial-card {
        border-width: 2px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .hero-bg-shapes,
    .hero-visual,
    .floating-elements,
    .hero-scroll-indicator,
    .back-to-top,
    .live-notification,
    .cookie-banner,
    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
