/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
    --primary: #1a1a2e;
    --primary-light: #242443;
    --primary-dark: #0f0f1e;
    --secondary: #eaeaea;
    --secondary-dark: #c8c8c8;
    --accent: #e94560;
    --accent-dark: #c73652;
    --accent-light: #ff6b81;
    --accent-glow: rgba(233, 69, 96, 0.4);
    --accent-glow-strong: rgba(233, 69, 96, 0.6);
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f7f7f8;
    --gray-200: #ededef;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;

    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-round: 50%;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
    --shadow-accent: 0 8px 32px rgba(233, 69, 96, 0.25);
    --shadow-accent-lg: 0 12px 48px rgba(233, 69, 96, 0.35);

    --transition-fast: 200ms ease;
    --transition-base: 350ms ease;
    --transition-slow: 500ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    --z-base: 1;
    --z-above: 10;
    --z-nav: 100;
    --z-overlay: 500;
    --z-modal: 1000;

    --container-max: 1240px;
    --section-pad: 100px;
    --header-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary);
    background-color: var(--primary);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

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

.section-padding {
    padding: var(--section-pad) 0;
}

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

/* ============================================================
   ANIMATIONS KEYFRAMES
   ============================================================ */

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 0 16px rgba(233, 69, 96, 0); }
}

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

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

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

@keyframes scrollWheel {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    80% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 0; transform: translateY(12px); }
}

@keyframes morphBlob {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
    50% { border-color: var(--accent-light); box-shadow: 0 0 20px var(--accent-glow-strong); }
}

/* Scroll-triggered animation base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border-top: 1px solid rgba(233, 69, 96, 0.2);
    z-index: var(--z-modal);
    padding: 20px;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    backdrop-filter: blur(20px);
}

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

.cookie-banner.is-hidden {
    transform: translateY(100%);
    pointer-events: none;
}

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

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--white);
}

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

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

.btn-cookie-accept:hover {
    background: var(--accent-dark);
    transform: scale(1.03);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--gray-600);
}

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

.btn-cookie-settings {
    background: transparent;
    color: var(--gray-400);
    text-decoration: underline;
}

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

.cookie-settings-panel {
    max-width: var(--container-max);
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid var(--gray-700);
}

.cookie-setting-item {
    padding: 8px 0;
}

.cookie-setting-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 0.9rem;
    cursor: pointer;
}

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

.cookie-settings-panel .btn-cookie {
    margin-top: 12px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: var(--z-nav);
    transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.main-header.scrolled {
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    transition: transform var(--transition-spring);
}

.nav-logo:hover {
    transform: scale(1.04);
    color: var(--white);
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-radius var(--transition-slow);
}

.nav-logo:hover .logo-icon {
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base), left var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 60%;
    left: 20%;
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 10px 22px;
    transition: all var(--transition-base);
}

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

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

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: var(--z-nav);
}

.hamburger-line {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

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

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 16px;
        width: 100%;
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
        width: 100%;
        display: block;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

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

/* Background layers for parallax depth */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-layer-1 {
    background: radial-gradient(ellipse at 20% 50%, rgba(233, 69, 96, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero-bg-layer-2 {
    background: radial-gradient(ellipse at 80% 30%, rgba(233, 69, 96, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.hero-bg-layer-3 {
    background: linear-gradient(180deg, transparent 0%, var(--primary) 100%);
    z-index: 3;
    top: auto;
    bottom: 0;
    height: 200px;
}

/* Floating decorative shapes */
.hero-floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

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

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 10%;
    left: -5%;
    animation: floatSlow 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-light);
    top: 60%;
    right: 5%;
    animation: floatReverse 10s ease-in-out infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--accent);
    top: 20%;
    right: 20%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent);
    background: transparent;
    bottom: 15%;
    left: 10%;
    animation: rotateShape 25s linear infinite;
    opacity: 0.05;
}

.shape-5 {
    width: 40px;
    height: 40px;
    background: var(--accent-light);
    top: 40%;
    left: 30%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-6 {
    width: 120px;
    height: 120px;
    border: 1px solid var(--accent);
    background: transparent;
    top: 70%;
    left: 60%;
    animation: rotateShape 20s linear infinite reverse;
    opacity: 0.04;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-7 {
    width: 60px;
    height: 60px;
    background: var(--accent);
    top: 85%;
    right: 30%;
    animation: floatSlow 7s ease-in-out infinite;
    animation-delay: 3s;
}

.shape-8 {
    width: 24px;
    height: 24px;
    background: var(--accent-light);
    top: 15%;
    left: 55%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 69, 96, 0.12);
    border: 1px solid rgba(233, 69, 96, 0.25);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: pulseGlow 3s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: liveDot 1.5s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.title-line-2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--secondary);
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.title-line-3 {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-accent-lg);
    color: var(--white);
}

.btn-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.btn-glow:hover {
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--gray-600);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.15);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-700);
}

/* Hero Visual Block */
.hero-visual-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow), border-radius var(--transition-slow);
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper:hover {
    transform: scale(1.02) translateY(-8px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-main-image {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 46, 0.4) 100%);
    z-index: 2;
    border-radius: var(--radius-lg);
    pointer-events: none;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(233, 69, 96, 0.2);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--secondary);
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-spring), border-radius var(--transition-slow);
}

.hero-floating-card:hover {
    transform: scale(1.05);
    border-radius: 24% 76% 60% 40% / 50% 30% 70% 50%;
}

.card-1 {
    top: 15%;
    right: -10%;
    animation: floatSlow 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.card-2 {
    bottom: 10%;
    left: -5%;
    animation: floatReverse 6s ease-in-out infinite;
    animation-delay: 1s;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

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

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

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 24px;
    }

    .hero-text-block {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

    .hero-visual-block {
        order: -1;
    }

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

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

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

/* ============================================================
   SOCIAL PROOF TICKER
   ============================================================ */

.social-proof-ticker {
    background: var(--primary-dark);
    border-top: 1px solid rgba(233, 69, 96, 0.1);
    border-bottom: 1px solid rgba(233, 69, 96, 0.1);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    overflow: hidden;
    width: 100%;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--gray-400);
    flex-shrink: 0;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: rgba(233, 69, 96, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text p {
    color: var(--gray-400);
    margin-bottom: 16px;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 69, 96, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.highlight-item:hover .highlight-icon {
    background: rgba(233, 69, 96, 0.2);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: scale(1.08) rotate(3deg);
}

.highlight-item h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-radius var(--transition-slow), transform var(--transition-slow);
}

.about-image-wrapper:hover {
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    transform: scale(1.02);
}

.about-image-wrapper img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    inset: 0;
    border: 3px solid var(--accent);
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.about-image-wrapper:hover .about-image-accent {
    opacity: 0.3;
}

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

    .about-image {
        order: -1;
    }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
    position: relative;
    overflow: hidden;
}

.features-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 69, 96, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    transition-delay: calc(var(--delay, 0) * 100ms);
}

.feature-card-inner {
    position: relative;
    background: var(--primary-light);
    border: 1px solid rgba(233, 69, 96, 0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    height: 100%;
    overflow: hidden;
    transition: all var(--transition-base);
}

.feature-card-inner:hover {
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-accent);
    border-radius: 20% 80% 60% 40% / 70% 30% 70% 30%;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 69, 96, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    color: var(--accent);
    transition: all var(--transition-base);
}

.feature-card-inner:hover .feature-icon-wrap {
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    transform: rotate(10deg) scale(1.1);
}

.feature-card-inner h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

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

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3rem;
    color: rgba(233, 69, 96, 0.06);
    line-height: 1;
    transition: color var(--transition-base);
}

.feature-card-inner:hover .feature-number {
    color: rgba(233, 69, 96, 0.15);
}

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

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

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section {
    background: var(--primary-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

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

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

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: border-radius var(--transition-slow), transform var(--transition-base);
}

.gallery-image-wrapper:hover {
    border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
    transform: scale(1.02);
}

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

.gallery-image-wrapper:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(10px);
    transition: transform var(--transition-base);
}

.gallery-image-wrapper:hover .gallery-overlay-content {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

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

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

/* ============================================================
   COUNTERS SECTION
   ============================================================ */

.counters-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.counters-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    z-index: 0;
}

.counters-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(233, 69, 96, 0.06) 0%, transparent 70%);
}

.counters-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.counter-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(233, 69, 96, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    transition-delay: calc(var(--delay, 0) * 100ms);
}

.counter-item:hover {
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-accent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.counter-icon {
    margin-bottom: 16px;
}

.counter-number {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.1;
}

.counter-suffix {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--accent);
}

.counter-label {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.counter-live-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: liveDot 1.2s ease-in-out infinite;
}

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

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

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
    background: var(--primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--primary-light);
    border: 1px solid rgba(233, 69, 96, 0.08);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition-base);
    transition-delay: calc(var(--delay, 0) * 120ms);
}

.testimonial-card:hover {
    border-color: rgba(233, 69, 96, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-accent);
    border-radius: 24% 76% 60% 40% / 50% 30% 70% 50%;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: border-radius var(--transition-base);
}

.testimonial-card:hover .author-avatar {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

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

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto;
    }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    background: var(--primary-dark);
}

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

.faq-item {
    border: 1px solid rgba(233, 69, 96, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--primary-light);
    transition: all var(--transition-base);
    transition-delay: calc(var(--delay, 0) * 80ms);
}

.faq-item:hover {
    border-color: rgba(233, 69, 96, 0.2);
}

.faq-item.active {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
    transition: color var(--transition-base);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-display);
}

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

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon-line {
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.faq-icon-h {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon-v {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon-v {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

/* ============================================================
   REGISTRATION / LEAD FORM SECTION
   ============================================================ */

.registration-section {
    position: relative;
    overflow: hidden;
}

.registration-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

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

.reg-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -10%;
    right: -5%;
    animation: morphBlob 12s ease-in-out infinite;
}

.reg-shape-2 {
    width: 250px;
    height: 250px;
    border: 3px solid var(--accent);
    background: transparent;
    bottom: 10%;
    left: -3%;
    animation: rotateShape 20s linear infinite;
}

.reg-shape-3 {
    width: 120px;
    height: 120px;
    background: var(--accent-light);
    top: 50%;
    left: 40%;
    animation: floatSlow 9s ease-in-out infinite;
}

.registration-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.registration-info {
    max-width: 520px;
}

.registration-info .section-tag {
    margin-bottom: 12px;
}

.registration-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.registration-desc {
    color: var(--gray-400);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-size: 0.95rem;
}

.registration-trust {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: rgba(233, 69, 96, 0.05);
    border: 1px solid rgba(233, 69, 96, 0.1);
    border-radius: var(--radius-sm);
}

.registration-trust span {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.registration-trust svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Form */
.registration-form-wrapper {
    background: var(--primary-light);
    border: 1px solid rgba(233, 69, 96, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: border-color var(--transition-base);
}

.registration-form-wrapper:hover {
    border-color: rgba(233, 69, 96, 0.25);
}

.registration-form {
    width: 100%;
}

.form-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 14px;
    color: var(--gray-500);
    pointer-events: none;
    transition: color var(--transition-base);
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    background: var(--primary);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-base);
    outline: none;
}

.input-wrapper input::placeholder {
    color: var(--gray-600);
}

.input-wrapper input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

.input-wrapper input:focus + svg,
.input-wrapper:focus-within svg {
    color: var(--accent);
}

.input-wrapper input.error {
    border-color: #ff4444;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #ff6b6b;
    margin-top: 4px;
    min-height: 0;
}

/* Checkbox */
.form-checkbox-group {
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.4;
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--gray-600);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    margin-top: 1px;
    position: relative;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
}

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

/* Submit Button */
#submitBtn {
    margin-top: 8px;
    font-size: 1.05rem;
    padding: 16px 32px;
}

.btn-text,
.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spin-icon {
    animation: rotateShape 1s linear infinite;
}

/* Success / Error Messages */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease forwards;
}

.form-success h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-400);
    line-height: 1.6;
}

.form-error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 16px;
    text-align: center;
}

.form-error-message p {
    color: #ff6b6b;
    font-size: 0.9rem;
}

.form-error-message a {
    color: var(--accent);
}

@media (max-width: 900px) {
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .registration-info {
        max-width: 100%;
        text-align: center;
    }

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

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

    .registration-trust {
        justify-content: center;
        text-align: center;
    }

    .registration-form-wrapper {
        padding: 28px 20px;
    }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-section {
    background: var(--primary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--primary-light);
    border: 1px solid rgba(233, 69, 96, 0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
    transition-delay: calc(var(--delay, 0) * 100ms);
}

.contact-card:hover {
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-accent);
    border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
}

.contact-card-icon {
    margin-bottom: 20px;
    transition: transform var(--transition-base);
}

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

.contact-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    word-break: break-all;
}

.contact-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================================
   TRUST & SECURITY SECTION
   ============================================================ */

.trust-section {
    background: var(--primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    transition-delay: calc(var(--delay, 0) * 100ms);
}

.trust-item:hover {
    background: var(--primary-light);
    transform: translateY(-6px);
}

.trust-icon {
    margin-bottom: 16px;
    transition: transform var(--transition-spring);
}

.trust-item:hover .trust-icon {
    transform: scale(1.2) rotate(8deg);
}

.trust-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.trust-item p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

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

/* ============================================================
   FOOTER
   ============================================================ */

.main-footer {
    background: var(--primary-dark);
    padding-top: 0;
    position: relative;
}

.footer-top-accent {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: transform var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.03);
    color: var(--white);
}

.footer-logo img {
    border-radius: 6px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-age-badge {
    font-size: 0.8rem;
    color: var(--gray-500);
    background: rgba(233, 69, 96, 0.05);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(233, 69, 96, 0.1);
}

.footer-age-badge span {
    color: var(--accent);
    font-weight: 600;
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links-col ul li {
    margin-bottom: 8px;
}

.footer-links-col ul li a {
    color: var(--gray-500);
    font-size: 0.9rem;
    transition: color var(--transition-base), transform var(--transition-base);
    display: inline-block;
}

.footer-links-col ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-address {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-700);
}

.footer-address p {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.85rem;
}

.footer-responsible {
    margin-top: 6px;
    font-size: 0.8rem !important;
    color: var(--gray-600);
}

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

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

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-page {
    padding-top: var(--header-height);
}

.legal-hero {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(233, 69, 96, 0.08) 0%, transparent 60%);
}

.legal-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.legal-subtitle {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.legal-content {
    background: var(--white);
    color: var(--gray-800);
    border-radius: var(--radius-lg);
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(233, 69, 96, 0.15);
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 14px;
    color: var(--gray-700);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

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

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

.legal-content li {
    margin-bottom: 8px;
    color: var(--gray-700);
}

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

.legal-content strong {
    color: var(--primary);
}

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

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

/* GDPR Rights Grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0 32px;
}

.gdpr-right-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition-base);
}

.gdpr-right-card:hover {
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.1);
}

.gdpr-right-icon {
    margin-bottom: 12px;
}

.gdpr-right-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 8px;
    border-bottom: none;
    padding-bottom: 0;
}

.gdpr-right-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 32px 20px;
    }

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

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */

@media (max-width: 480px) {
    :root {
        --section-pad: 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ============================================================
   NOISE TEXTURE OVERLAY (global atmosphere)
   ============================================================ */

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

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

/* ============================================================
   FOCUS STYLES (Accessibility)
   ============================================================ */

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

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

/* Skip to content for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}
```

Now the JavaScript:

```js