/* ================================================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ================================================================ */
:root {
    /* Neumorphism Base */
    --bg: #e0e5ec;
    --bg-dark: #c8cdd5;
    --bg-light: #f5f8ff;
    --shadow-dark: #a3b1c6;
    --shadow-light: #ffffff;
    --shadow-dark-strong: #8e9bae;
    --shadow-light-strong: #ffffff;

    /* Brand Colors */
    --primary: #6d5dfc;
    --primary-light: #8b7ffd;
    --primary-dark: #5a4ae0;
    --primary-glow: rgba(109, 93, 252, 0.25);
    --secondary: #e0e5ec;
    --accent: #ff6b9d;
    --accent-light: #ff8fb5;
    --accent-dark: #e85585;

    /* Text */
    --text-primary: #2d3142;
    --text-secondary: #5c6078;
    --text-muted: #8b8fa3;
    --text-light: #b0b4c8;
    --text-on-primary: #ffffff;

    /* Surfaces */
    --surface: #e0e5ec;
    --surface-raised: #e4e9f0;
    --surface-inset: #d1d6de;
    --surface-white: #f0f3f8;

    /* Neumorphic Shadows */
    --neu-shadow: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    --neu-shadow-sm: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
    --neu-shadow-lg: 10px 10px 20px var(--shadow-dark), -10px -10px 20px var(--shadow-light);
    --neu-shadow-xl: 15px 15px 30px var(--shadow-dark), -15px -15px 30px var(--shadow-light);
    --neu-inset: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
    --neu-inset-sm: inset 2px 2px 4px var(--shadow-dark), inset -2px -2px 4px var(--shadow-light);
    --neu-flat: 0 0 0 transparent;

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

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

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

    /* Typography */
    --font-display: 'Baloo 2', cursive, sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

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

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

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

ul, ol {
    list-style: none;
}

::selection {
    background-color: var(--primary);
    color: var(--text-on-primary);
}

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

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

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--bg);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    box-shadow: var(--neu-shadow-sm);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-on-primary);
    box-shadow: 5px 5px 10px var(--shadow-dark), -3px -3px 8px var(--shadow-light), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--text-on-primary);
    box-shadow: 3px 3px 6px var(--shadow-dark), -2px -2px 5px var(--shadow-light), 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--neu-inset-sm);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text-primary);
    box-shadow: var(--neu-shadow);
}

.btn-secondary:hover {
    color: var(--primary);
    box-shadow: var(--neu-shadow-sm);
    transform: translateY(-2px);
}

.btn-secondary:active {
    box-shadow: var(--neu-inset);
    transform: translateY(0);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
    padding: 16px 28px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

/* ================================================================
   COOKIE CONSENT
   ================================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-toast);
    background: var(--bg);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: var(--space-lg);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

.cookie-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--neu-shadow-sm);
}

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

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

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

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

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 3px 3px 6px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
    transition: all var(--transition-base);
}

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

.btn-cookie-decline {
    background: var(--bg);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: var(--neu-shadow-sm);
    transition: all var(--transition-base);
}

.btn-cookie-decline:hover {
    color: var(--text-primary);
    box-shadow: var(--neu-inset-sm);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--primary);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-base);
    text-decoration: underline;
}

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

.cookie-settings-panel h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.cookie-option {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--neu-inset-sm);
}

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

.cookie-option p {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-left: 26px;
}

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

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--bg);
    transition: all var(--transition-base);
    padding: var(--space-md) 0;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: var(--space-sm) 0;
}

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

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

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

.logo-mark {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

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

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
}

.nav-link-cta {
    background: var(--primary) !important;
    color: var(--text-on-primary) !important;
    box-shadow: 3px 3px 6px var(--shadow-dark), -2px -2px 4px var(--shadow-light) !important;
    margin-left: var(--space-sm);
}

.nav-link-cta:hover {
    background: var(--primary-light) !important;
    box-shadow: 2px 2px 4px var(--shadow-dark), -1px -1px 3px var(--shadow-light), 0 0 15px var(--primary-glow) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--neu-shadow-sm);
    transition: all var(--transition-base);
}

.mobile-menu-toggle:active {
    box-shadow: var(--neu-inset-sm);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    position: relative;
    overflow: hidden;
}

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

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

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -150px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 40%;
    left: 20%;
    animation: floatShape 25s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 20%;
    right: 30%;
    animation: floatShape 18s ease-in-out infinite reverse;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: var(--primary);
    bottom: 30%;
    right: 10%;
    animation: floatShape 12s ease-in-out infinite;
}

@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-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    box-shadow: var(--neu-shadow-sm);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-line-1 {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-secondary);
}

.title-line-2 {
    display: block;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    color: var(--primary);
    letter-spacing: -0.03em;
    text-shadow: 2px 2px 0 var(--shadow-light);
}

.title-line-3 {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--accent);
    font-weight: 600;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

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

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--shadow-dark);
    opacity: 0.4;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-image-frame {
    position: relative;
    width: 340px;
    height: 340px;
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--neu-shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gentlePulse 4s ease-in-out infinite;
}

.hero-app-icon {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

@keyframes gentlePulse {
    0%, 100% { box-shadow: var(--neu-shadow-xl); }
    50% { box-shadow: 18px 18px 36px var(--shadow-dark), -18px -18px 36px var(--shadow-light); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg);
    border-radius: var(--radius-full);
    box-shadow: var(--neu-shadow-sm);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20px;
    left: -40px;
    animation-delay: 1s;
}

.badge-3 {
    top: 50%;
    right: -50px;
    animation-delay: 2s;
}

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

/* Scroll Indicator */
.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);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

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

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

.scroll-indicator span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ================================================================
   SOCIAL PROOF TICKER
   ================================================================ */
.social-proof-ticker {
    background: var(--bg);
    padding: var(--space-md) 0;
    overflow: hidden;
    box-shadow: var(--neu-inset-sm);
}

.ticker-container {
    overflow: hidden;
    position: relative;
}

.ticker-container::before,
.ticker-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ticker-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.ticker-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.ticker-track {
    display: flex;
    gap: var(--space-2xl);
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
    font-size: 0.84rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

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

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

.feature-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--neu-shadow);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card:hover .feature-icon-wrap {
    box-shadow: var(--neu-inset);
}

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

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: var(--radius-md);
    box-shadow: var(--neu-shadow-sm);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-tag-list {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: var(--neu-inset-sm);
}

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

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

.gallery-main {
    width: 100%;
}

.gallery-main-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--neu-shadow-xl);
    aspect-ratio: 16/9;
    max-height: 500px;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.gallery-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

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

.gallery-thumbs {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.gallery-thumb {
    width: 120px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--neu-shadow-sm);
    transition: all var(--transition-base);
    padding: 0;
    border: 3px solid transparent;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    box-shadow: var(--neu-shadow);
    transform: translateY(-3px);
}

.gallery-thumb.active {
    border-color: var(--primary);
    box-shadow: var(--neu-inset-sm), 0 0 0 2px var(--primary);
}

/* ================================================================
   LIVE COUNTER SECTION
   ================================================================ */
.live-counter-section {
    padding: var(--space-3xl) 0;
}

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

.counter-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--neu-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.counter-card.animated {
    opacity: 1;
    transform: translateY(0);
}

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

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

.counter-value {
    margin-bottom: var(--space-xs);
}

.counter-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.counter-label {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 600;
}

.counter-pulse {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */
.testimonials-section {
    padding: var(--space-4xl) 0;
}

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

.testimonials-track {
    display: flex;
    gap: var(--space-lg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card {
    flex: 0 0 calc(50% - var(--space-sm));
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--neu-shadow);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--neu-shadow-lg);
}

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

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

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

.author-avatar {
    flex-shrink: 0;
}

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

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

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

.carousel-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    box-shadow: var(--neu-shadow-sm);
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    box-shadow: var(--neu-shadow);
    color: var(--primary);
    transform: scale(1.05);
}

.carousel-btn:active {
    box-shadow: var(--neu-inset-sm);
}

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

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg);
    box-shadow: var(--neu-inset-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    width: 28px;
    border-radius: var(--radius-full);
}

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

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

.faq-item {
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    transition: color var(--transition-fast);
    background: transparent;
    cursor: pointer;
}

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

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

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

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

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

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

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

/* ================================================================
   CONTACT / LEAD FORM SECTION
   ================================================================ */
.contact-section {
    padding: var(--space-4xl) 0;
}

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

.contact-info .section-tag {
    margin-bottom: var(--space-md);
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: var(--space-md);
}

.contact-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-xl);
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-channels {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.contact-channels h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.channel-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

/* Form */
.contact-form-wrap {
    position: relative;
}

.contact-form {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--neu-shadow-lg);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.input-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 14px var(--space-md);
    box-shadow: var(--neu-inset);
    transition: all var(--transition-base);
}

.input-wrap:focus-within {
    box-shadow: var(--neu-inset), 0 0 0 2px var(--primary);
}

.input-wrap svg {
    flex-shrink: 0;
}

.input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
}

.input-wrap input::placeholder {
    color: var(--text-light);
}

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

/* Checkbox */
.form-consent {
    margin-bottom: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.82rem !important;
    font-weight: 400 !important;
}

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

.checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--bg);
    border-radius: 6px;
    box-shadow: var(--neu-inset-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-top: 1px;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    box-shadow: 2px 2px 4px var(--shadow-dark), -1px -1px 3px var(--shadow-light);
}

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

.checkbox-text {
    color: var(--text-secondary);
    line-height: 1.5;
}

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

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

/* Form Success */
.form-success {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-xl);
    box-shadow: var(--neu-shadow-lg);
    text-align: center;
}

.success-icon {
    margin-bottom: var(--space-lg);
    animation: successBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

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

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

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

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

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

.trust-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--neu-shadow);
    text-align: center;
    transition: all var(--transition-base);
}

.trust-card:hover {
    box-shadow: var(--neu-shadow-lg);
    transform: translateY(-3px);
}

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

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: var(--bg);
    padding: var(--space-3xl) 0 0;
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.04);
}

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

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

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

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

.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links-group h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

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

.footer-links-group a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--space-lg) 0;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-bottom-left p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-address {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-bottom-right p {
    font-size: 0.75rem;
    color: var(--text-light);
    max-width: 400px;
    line-height: 1.6;
    text-align: right;
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-page-hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
}

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

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

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

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

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

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

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

.legal-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

.legal-content .last-updated {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-xl);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

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

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

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

    .hero-image-frame {
        width: 260px;
        height: 260px;
    }

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

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

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

    .testimonial-card {
        flex: 0 0 calc(100% - 0px);
    }

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

    .contact-info .section-title {
        text-align: center;
    }

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

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

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: var(--space-md);
        right: var(--space-md);
        background: var(--bg);
        border-radius: var(--radius-lg);
        box-shadow: var(--neu-shadow-lg);
        padding: var(--space-md);
        flex-direction: column;
        gap: var(--space-xs);
    }

    .nav-links.open {
        display: flex;
        animation: fadeInDown 0.3s ease;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .nav-link-cta {
        margin-left: 0 !important;
        margin-top: var(--space-sm);
    }

    .hero-section {
        min-height: auto;
        padding: calc(70px + var(--space-2xl)) 0 var(--space-2xl);
    }

    .hero-image-frame {
        width: 200px;
        height: 200px;
    }

    .floating-badge {
        display: none;
    }

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

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

    .counter-number {
        font-size: 1.4rem;
    }

    .gallery-thumbs {
        gap: var(--space-sm);
    }

    .gallery-thumb {
        width: 80px;
        height: 55px;
    }

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

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

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

    .footer-bottom-right p {
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }

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

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

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

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

    .btn-lg {
        width: 100%;
    }

    .gallery-thumbs {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ================================================================
   ACCESSIBILITY: 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;
    }

    .ticker-track {
        animation: none;
    }

    .feature-card,
    .counter-card {
        opacity: 1;
        transform: none;
    }

    .hero-content,
    .hero-visual {
        opacity: 1;
        animation: none;
    }
}

/* ================================================================
   PRINT STYLES
   ================================================================ */
@media print {
    .site-header,
    .cookie-consent,
    .social-proof-ticker,
    .scroll-indicator,
    .carousel-controls,
    .hero-bg-shapes {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section-container {
        max-width: 100%;
    }
}
