/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    /* Colors */
    --color-primary: #4ade80;
    --color-primary-dark: #22c55e;
    --color-primary-light: #86efac;
    --color-secondary: #818cf8;
    --color-secondary-dark: #6366f1;
    --color-secondary-light: #a5b4fc;
    --color-accent: #c084fc;
    --color-accent-dark: #a855f7;
    --color-accent-light: #d8b4fe;

    /* Backgrounds */
    --bg-deep: #050a0e;
    --bg-dark: #0a1018;
    --bg-card: #0f1923;
    --bg-card-hover: #141f2d;
    --bg-surface: #1a2736;

    /* Text */
    --text-primary: #f0f4f8;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(74, 222, 128, 0.3);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-max: 1280px;
    --container-padding: clamp(1rem, 4vw, 2rem);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

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

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

ul {
    list-style: none;
}

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

input, textarea {
    font-family: inherit;
    color: inherit;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ========================================
   ANIMATION ON SCROLL
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--bg-deep);
    border: none;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 222, 128, 0.3), 0 4px 16px rgba(129, 140, 248, 0.2);
}

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

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

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

.btn--glow {
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
}

.btn--glow:hover {
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.3), 0 8px 32px rgba(129, 140, 248, 0.2);
}

/* ========================================
   NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.site-header.is-scrolled {
    background: rgba(5, 10, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    z-index: 1001;
}

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

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav__link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--bg-deep) !important;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.nav__link--cta:hover {
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav__toggle.is-active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.is-active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.is-active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 10, 14, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-smooth);
    }

    .nav__menu.is-open {
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }
}

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

.hero__aurora-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: auroraFloat 20s ease-in-out infinite;
}

.aurora--1 {
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--color-primary) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.aurora--2 {
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, var(--color-secondary) 0%, transparent 70%);
    top: 10%;
    right: -15%;
    animation-delay: -5s;
    animation-duration: 22s;
}

.aurora--3 {
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, var(--color-accent) 0%, transparent 70%);
    bottom: -10%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 28s;
}

.aurora--4 {
    width: 500px;
    height: 350px;
    background: radial-gradient(ellipse, var(--color-primary-light) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: -15s;
    animation-duration: 30s;
    opacity: 0.25;
}

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

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

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.6rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero__title-line {
    display: block;
}

.hero__title-line--gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* Hero Visual / Image */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero__image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, rgba(129, 140, 248, 0.1) 40%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

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

.hero__image-frame {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: var(--bg-card);
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero__image-frame:hover .hero__image {
    transform: scale(1.03);
}

/* Floating Badges */
.hero__floating-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(15, 25, 35, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: floatBadge 6s ease-in-out infinite;
}

.hero__floating-badge--1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero__floating-badge--2 {
    bottom: 20%;
    left: -15%;
    animation-delay: -2s;
}

.hero__floating-badge--3 {
    bottom: 5%;
    right: -5%;
    animation-delay: -4s;
}

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

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

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

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

@media (max-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero__description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image-wrapper {
        max-width: 280px;
    }

    .hero__floating-badge--1 { right: 0; }
    .hero__floating-badge--2 { left: 0; }
    .hero__floating-badge--3 { right: 0; }

    .hero__scroll-indicator {
        display: none;
    }
}

/* ========================================
   SOCIAL PROOF TICKER
   ======================================== */
.ticker {
    padding: 1rem 0;
    background: rgba(10, 16, 24, 0.8);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    position: relative;
}

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

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

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

.ticker__track {
    display: flex;
    width: max-content;
}

.ticker__content {
    display: flex;
    gap: 3rem;
    animation: tickerScroll 40s linear infinite;
}

.ticker__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

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

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header__tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(129, 140, 248, 0.1);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.about__aurora-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(74, 222, 128, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about__card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.about__card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about__card:hover::before {
    opacity: 1;
}

.about__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.about__card-icon--green {
    background: rgba(74, 222, 128, 0.1);
    color: var(--color-primary);
}

.about__card-icon--purple {
    background: rgba(192, 132, 252, 0.1);
    color: var(--color-accent);
}

.about__card-icon--blue {
    background: rgba(129, 140, 248, 0.1);
    color: var(--color-secondary);
}

.about__card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about__card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
    .about__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.gallery__bg-effect {
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery__item--large {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 250px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__image-wrapper:hover .gallery__image {
    transform: scale(1.06);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 14, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery__image-wrapper:hover .gallery__overlay {
    opacity: 1;
}

.gallery__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

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

    .gallery__item--large {
        grid-row: span 1;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.features__aurora {
    position: absolute;
    top: 0;
    left: -200px;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(129, 140, 248, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.feature-item:hover {
    background: var(--bg-card-hover);
    border-color: rgba(74, 222, 128, 0.2);
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(74, 222, 128, 0.1);
}

.feature-item__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.5;
    flex-shrink: 0;
    width: 40px;
}

.feature-item:hover .feature-item__number {
    opacity: 1;
}

.feature-item__content {
    flex: 1;
}

.feature-item__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-item__arrow {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.feature-item:hover .feature-item__arrow {
    color: var(--color-primary);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .feature-item {
        padding: 1.25rem;
        gap: 1rem;
    }
}

/* ========================================
   COUNTERS SECTION
   ======================================== */
.counters {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.counters__aurora {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.counters__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.counter-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.counter-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.counter-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.counter-card:hover::after {
    transform: scaleX(1);
}

.counter-card__icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.counter-card__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-card__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.counter-card__live {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.counter-card__pulse {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    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); }
}

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

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

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

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

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

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bg-deep);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 500;
    font-size: 0.9rem;
}

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

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

@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

.faq__item {
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: all var(--transition-smooth);
}

.faq__item:hover {
    border-color: var(--border-light);
}

.faq__item.is-open {
    border-color: rgba(74, 222, 128, 0.2);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.05);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

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

.faq__icon {
    flex-shrink: 0;
    transition: transform var(--transition-smooth);
    color: var(--text-muted);
}

.faq__item.is-open .faq__icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.is-open .faq__answer {
    max-height: 400px;
}

.faq__answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq__answer a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.contact__aurora {
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(192, 132, 252, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    margin-top: 0.75rem;
}

.contact__description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 222, 128, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.contact__detail p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Form */
.contact__form-wrapper {
    position: relative;
}

.contact__form {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.contact__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-optional {
    font-weight: 300;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-input.is-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
    display: block;
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 0.35rem;
    min-height: 1.1em;
}

/* Checkbox */
.form-group--checkbox {
    margin-bottom: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.form-checkbox__mark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

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

.form-checkbox input:checked + .form-checkbox__mark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--bg-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.form-checkbox__text a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Form Message */
.form-message {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-align: center;
}

.form-message--success {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: var(--color-primary);
}

.form-message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.contact__form-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact__form {
        padding: 1.75rem;
    }
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust {
    padding: 4rem 0;
    border-top: 1px solid var(--border-subtle);
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust__item svg {
    margin: 0 auto 1rem;
}

.trust__item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.trust__item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .trust__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
    overflow: hidden;
}

.footer__aurora {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(74, 222, 128, 0.03) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer__brand-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

.footer__links-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer__links ul li {
    margin-bottom: 0.5rem;
}

.footer__links ul li a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer__links ul li a:hover {
    color: var(--color-primary);
}

.footer__links ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.footer__address {
    font-size: 0.78rem !important;
    color: var(--text-muted) !important;
}

.footer__legal-note {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    max-width: 600px;
    margin: 0.5rem auto 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 16, 24, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

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

.cookie-consent__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent__text h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

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

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

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

.cookie-setting {
    margin-bottom: 0.75rem;
}

.cookie-setting label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.cookie-setting p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 1.5rem;
    margin-top: 0.15rem;
}

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

@media (max-width: 768px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-hero {
    position: relative;
    padding: 10rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.legal-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.legal-hero__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    color: #1a1a2e;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-xl);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

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

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #334155;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

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

.legal-content li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #334155;
}

.legal-content strong {
    color: #0f172a;
    font-weight: 600;
}

.legal-content a {
    color: #6366f1;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: #818cf8;
}

.legal-content__footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

.legal-content__footer p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

/* ========================================
   PARTICLE EFFECTS (Created via JS)
   ======================================== */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ========================================
   RESPONSIVE FINE-TUNING
   ======================================== */
@media (max-width: 480px) {
    .hero__badge {
        font-size: 0.7rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .contact__form {
        padding: 1.5rem;
    }
}

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

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

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

/* Print styles */
@media print {
    .site-header,
    .cookie-consent,
    .hero__aurora-bg,
    .hero__particles,
    .hero__scroll-indicator,
    .ticker,
    .footer__aurora {
        display: none !important;
    }

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

Now the JavaScript file:

```javascript