/* ════════════════════════════════════════════════════════════════
   UPRISE.BA — Premium one-page experience
   Mobile-first · GPU-accelerated · 60fps
   ════════════════════════════════════════════════════════════════ */

/* ---------- Tokens ---------- */
:root {
    /* Brand palette (from Uprise.ba) */
    --primary: #8B3FE5;
    --accent: #A855F7;
    --accent2: #C084FC;
    --accent3: #E879F9;
    --accent4: #2A2A2A;
    --primary-hover: #6A2FB8;

    /* Surface */
    --bg: #0A0A0A;
    --bg-2: #111114;
    --bg-3: #18181B;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);

    /* Text */
    --text: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-dim: rgba(255, 255, 255, 0.45);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #8B3FE5 0%, #A855F7 50%, #E879F9 100%);
    --grad-text: linear-gradient(120deg, #C084FC 0%, #E879F9 100%);

    /* Easing */
    --ease-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
    --ease-snappy: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-dramatic: cubic-bezier(0.6, 0.01, 0.05, 0.95);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container: 1240px;
    --gutter: clamp(20px, 5vw, 48px);
    --section-py: clamp(80px, 12vw, 160px);

    /* Typography */
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
}

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

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

html.lenis {
    height: auto;
}
html.lenis,
html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: clip;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body.is-loading {
    overflow: hidden;
    height: 100vh;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

::selection {
    background: var(--primary);
    color: #fff;
}

/* ---------- Custom scrollbar ---------- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--accent3));
    border-radius: 10px;
}

/* ════════════════════════════════════════════════════════════════
   PRELOADER
   ════════════════════════════════════════════════════════════════ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-smooth), visibility 0s linear 0s;
}

.preloader.is-done {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease-smooth), visibility 0s linear 0.6s;
}

.preloader.is-done * {
    pointer-events: none !important;
}

.preloader__noise {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(139, 63, 229, 0.18) 0%, transparent 60%);
    opacity: 1;
}

.preloader__center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 24px;
    text-align: center;
}

.preloader__logo-wrap {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floaty 4s ease-in-out infinite;
}

.preloader__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter:
        brightness(0) invert(1)
        drop-shadow(0 0 30px rgba(192, 132, 252, 0.7))
        drop-shadow(0 0 60px rgba(139, 63, 229, 0.45));
}

.preloader__brand {
    display: flex;
    gap: 2px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(28px, 6vw, 44px);
    letter-spacing: -0.03em;
    color: #fff;
}

.preloader__char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: brandReveal 0.6s var(--ease-smooth) forwards;
}

.preloader__char--accent {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.preloader__char:nth-child(1) { animation-delay: 0.05s; }
.preloader__char:nth-child(2) { animation-delay: 0.10s; }
.preloader__char:nth-child(3) { animation-delay: 0.15s; }
.preloader__char:nth-child(4) { animation-delay: 0.20s; }
.preloader__char:nth-child(5) { animation-delay: 0.25s; }
.preloader__char:nth-child(6) { animation-delay: 0.30s; }
.preloader__char:nth-child(7) { animation-delay: 0.35s; }
.preloader__char:nth-child(8) { animation-delay: 0.40s; }
.preloader__char:nth-child(9) { animation-delay: 0.45s; }

@keyframes brandReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader__bar {
    width: min(280px, 70vw);
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0;
}

.preloader__bar-fill {
    width: 0%;
    height: 100%;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: width 0.18s linear;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.7);
}

.preloader__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.preloader__counter {
    color: #fff;
    font-variant-numeric: tabular-nums;
    min-width: 36px;
    text-align: right;
}

.preloader__divider {
    width: 16px;
    height: 1px;
    background: var(--text-dim);
}

.preloader__curtain {
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    background: #0A0A0A;
    transform: scaleY(0);
    transform-origin: center;
    z-index: 3;
    transition: transform 0.9s var(--ease-dramatic);
}

.preloader__curtain--top {
    top: 0;
    transform-origin: top;
}

.preloader__curtain--bottom {
    bottom: 0;
    transform-origin: bottom;
}

.preloader.is-curtain .preloader__curtain {
    transform: scaleY(1);
}

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

/* ════════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════════════════════ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor.is-active {
    opacity: 1;
}

.cursor__dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease-spring), height 0.2s var(--ease-spring);
}

.cursor__ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring),
                background 0.3s ease;
}

.cursor.is-hover .cursor__ring {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

.cursor.is-hover .cursor__dot {
    width: 0;
    height: 0;
}

@media (hover: none), (pointer: coarse) {
    .cursor { display: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   SCROLL PROGRESS
   ════════════════════════════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.04);
    z-index: 100;
}

.scroll-progress__bar {
    width: 0%;
    height: 100%;
    background: var(--grad-primary);
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.6);
    transition: width 0.05s linear;
}

/* ════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: var(--border);
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav__logo {
    display: flex;
    align-items: center;
    height: 38px;
}

.nav__logo img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 4px 14px rgba(139, 63, 229, 0.4));
}

.nav__menu {
    display: none;
    gap: 8px;
    align-items: center;
}

.nav__link {
    position: relative;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 999px;
    transition: color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.nav__link span {
    position: relative;
    z-index: 2;
}

.nav__link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--surface);
    border-radius: 999px;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s var(--ease-spring), opacity 0.3s ease;
}

.nav__link:hover {
    color: var(--text);
}

.nav__link:hover::before {
    transform: scale(1);
    opacity: 1;
}

.nav__cta {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--grad-primary);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 999px;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
    box-shadow: 0 8px 30px -10px rgba(168, 85, 247, 0.6);
    position: relative;
    overflow: hidden;
}

.nav__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px -10px rgba(168, 85, 247, 0.8);
}

.nav__cta:hover svg {
    transform: translateX(3px);
}

.nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: background 0.3s ease;
}

.nav__burger span {
    width: 18px;
    height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.4s var(--ease-smooth), opacity 0.3s ease;
}

.nav__burger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 110px var(--gutter) 40px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.45s var(--ease-smooth), visibility 0s linear 0.45s;
    z-index: 110;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.nav__mobile.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition: opacity 0.45s var(--ease-smooth), visibility 0s linear 0s;
}

/* Subtle radial glow behind menu */
.nav__mobile::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vmin;
    height: 70vmin;
    background: radial-gradient(circle, rgba(139, 63, 229, 0.18), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth) 0.1s;
}

.nav__mobile.is-open::before {
    opacity: 1;
}

.nav__mobile-close {
    position: absolute;
    top: 22px;
    right: var(--gutter);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.4s var(--ease-smooth), background 0.3s ease;
}

.nav__mobile-close:hover {
    border-color: var(--accent);
    color: var(--accent2);
    transform: rotate(90deg);
    background: rgba(168, 85, 247, 0.08);
}

.nav__mobile-links {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.nav__mobile-links li {
    overflow: hidden;
    line-height: 1;
}

.nav__mobile-link {
    display: block;
    padding: 0.32rem 1.5rem;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 11vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    transform: translateY(110%);
    transition: transform 0.6s var(--ease-spring), color 0.3s ease;
}

.nav__mobile.is-open .nav__mobile-link {
    transform: translateY(0);
}

.nav__mobile.is-open .nav__mobile-links li:nth-child(1) .nav__mobile-link { transition-delay: 0.08s; }
.nav__mobile.is-open .nav__mobile-links li:nth-child(2) .nav__mobile-link { transition-delay: 0.14s; }
.nav__mobile.is-open .nav__mobile-links li:nth-child(3) .nav__mobile-link { transition-delay: 0.20s; }
.nav__mobile.is-open .nav__mobile-links li:nth-child(4) .nav__mobile-link { transition-delay: 0.26s; }
.nav__mobile.is-open .nav__mobile-links li:nth-child(5) .nav__mobile-link { transition-delay: 0.32s; }

.nav__mobile-link:hover {
    color: var(--accent2);
}

.nav__mobile-link--cta {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.nav__mobile-link--cta:hover {
    background: linear-gradient(120deg, #fff, var(--accent3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.nav__mobile-divider {
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 2rem auto 1.4rem;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.5s ease 0.45s, transform 0.5s var(--ease-smooth) 0.45s;
}

.nav__mobile.is-open .nav__mobile-divider {
    opacity: 1;
    transform: scaleX(1);
}

.nav__mobile-meta {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.9;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s var(--ease-smooth) 0.5s;
}

.nav__mobile.is-open .nav__mobile-meta {
    opacity: 1;
    transform: translateY(0);
}

.nav__mobile-meta a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
    letter-spacing: 0.1em;
    text-transform: none;
}

.nav__mobile-meta a:hover {
    color: var(--accent2);
}

@media (min-width: 900px) {
    .nav__menu, .nav__cta { display: flex; }
    .nav__burger { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   SHARED
   ════════════════════════════════════════════════════════════════ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.eyebrow__dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--accent);
}

.eyebrow--alt .eyebrow__dot {
    background: var(--accent3);
    box-shadow: 0 0 12px var(--accent3);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.section-sub {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 640px;
}

.grad {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 26px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
    will-change: transform;
}

.btn--primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow:
        0 12px 40px -10px rgba(168, 85, 247, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 60px -10px rgba(168, 85, 247, 0.85),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn--ghost {
    background: var(--surface);
    color: #fff;
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: var(--surface-2);
    border-color: var(--accent);
}

.btn--big {
    padding: 20px 32px;
    font-size: 16px;
    border-radius: 16px;
}

.btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn__icon svg {
    width: 18px;
    height: 18px;
}

.btn--primary:hover .btn__icon:not(.btn__icon--lead) {
    transform: translateX(4px);
}

.btn__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
}

.btn--primary:hover .btn__shine {
    left: 130%;
}

.btn__label {
    position: relative;
    z-index: 1;
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth);
    transition-delay: var(--delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding: 130px var(--gutter) 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: clamp(40px, 8vw, 80px) clamp(40px, 8vw, 80px);
    mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 80%);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.hero__orb--1 {
    width: 480px;
    height: 480px;
    background: var(--primary);
    top: -10%;
    left: -10%;
    opacity: 0.45;
    animation: orbDrift 18s ease-in-out infinite;
}

.hero__orb--2 {
    width: 420px;
    height: 420px;
    background: var(--accent3);
    bottom: -10%;
    right: -10%;
    opacity: 0.3;
    animation: orbDrift 22s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 320px;
    height: 320px;
    background: var(--accent);
    top: 40%;
    left: 60%;
    opacity: 0.18;
    animation: orbDrift 16s ease-in-out infinite;
    animation-delay: -8s;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero__content {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulseDot 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(40px, 9vw, 96px);
    line-height: 1.15;
    letter-spacing: -0.045em;
    color: #fff;
    margin-bottom: 32px;
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-line--accent .word__inner {
    background: linear-gradient(120deg, #C084FC 0%, #E879F9 60%, #F0A8FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Word splitter */
.word {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.18em;
    vertical-align: bottom;
}

.word__inner {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

.is-revealed .word__inner {
    transition: transform 1.05s var(--ease-dramatic);
    transition-delay: var(--word-delay, 0ms);
    transform: translateY(0);
}

.hero__sub {
    font-size: clamp(15px, 2vw, 19px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 60px;
    align-items: center;
}

@media (min-width: 600px) {
    .hero__cta { flex-direction: row; justify-content: center; }
}

.hero__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat {
    text-align: center;
}

.hero__stat-num {
    font-family: var(--font-heading);
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.hero__stat-label {
    font-size: 13px;
    color: var(--text-dim);
}

.hero__stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

@media (min-width: 600px) {
    .hero__stat-sep { display: block; }
}

/* Floating cards */
.float-card {
    position: absolute;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(20, 20, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
    will-change: transform;
    z-index: 3;
    animation: floaty 6s ease-in-out infinite;
}

.float-card--1 {
    top: 22%;
    left: 4%;
    animation-delay: -2s;
}

.float-card--2 {
    bottom: 22%;
    right: 4%;
    animation-delay: -4s;
}

.float-card--3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    top: 60%;
    left: 6%;
    animation-delay: -1s;
}

@media (min-width: 1100px) {
    .float-card { display: flex; }
}

.float-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.float-card__icon svg {
    width: 18px;
    height: 18px;
}

.float-card__icon--alt {
    background: rgba(139, 63, 229, 0.18);
    color: var(--primary);
}

.float-card__num {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.float-card__label {
    font-size: 11px;
    color: var(--text-dim);
}

.float-card__live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #fff;
    letter-spacing: 0.1em;
}

.float-card__live span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ef4444;
    animation: pulseDot 1.5s ease-in-out infinite;
}

.float-card__bars {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 36px;
}

.float-card__bars span {
    display: block;
    width: 6px;
    height: var(--h);
    background: var(--grad-primary);
    border-radius: 2px;
    animation: barPulse 1.4s ease-in-out infinite;
}

.float-card__bars span:nth-child(1) { animation-delay: -1.2s; }
.float-card__bars span:nth-child(2) { animation-delay: -1.0s; }
.float-card__bars span:nth-child(3) { animation-delay: -0.8s; }
.float-card__bars span:nth-child(4) { animation-delay: -0.6s; }
.float-card__bars span:nth-child(5) { animation-delay: -0.4s; }
.float-card__bars span:nth-child(6) { animation-delay: -0.2s; }

@keyframes barPulse {
    0%, 100% { transform: scaleY(0.6); }
    50% { transform: scaleY(1); }
}

/* Hero scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
}

.hero__scroll-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
}

.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    overflow: hidden;
    position: relative;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--accent3), transparent);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ════════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════════ */
.marquee {
    position: relative;
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee__track {
    display: flex;
    gap: 36px;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: marquee 35s linear infinite;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text);
}

.marquee__track span:not(.marquee__dot) {
    background: linear-gradient(120deg, #fff 30%, var(--accent3) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.marquee__dot {
    color: var(--accent);
    font-size: 16px;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════════ */
.services {
    position: relative;
    padding: var(--section-py) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}

.services__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.services__head .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 700px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
    .services__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.service {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    overflow: hidden;
    transition: transform 0.5s var(--ease-smooth), border-color 0.4s ease;
    will-change: transform;
    transform-style: preserve-3d;
}

.service:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.service__glow {
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(168, 85, 247, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.service:hover .service__glow {
    opacity: 1;
}

.service--feature {
    background: linear-gradient(135deg, rgba(139, 63, 229, 0.18), rgba(168, 85, 247, 0.06));
    border-color: rgba(139, 63, 229, 0.3);
}

.service__pill {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(139, 63, 229, 0.2);
    color: var(--accent2);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 999px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.service__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 22px;
    transition: transform 0.5s var(--ease-spring);
}

.service:hover .service__icon {
    transform: scale(1.1) rotate(-6deg);
}

.service__icon svg {
    width: 26px;
    height: 26px;
}

.service__icon--grad { background: linear-gradient(135deg, var(--primary), var(--accent3)); }
.service__icon--alt { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.service__icon--alt2 { background: linear-gradient(135deg, var(--accent2), var(--accent3)); }

.service__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.service__desc--light {
    color: rgba(255, 255, 255, 0.85);
}

.service__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent2);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.service__cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service:hover .service__cta {
    color: var(--accent3);
    gap: 10px;
}

.service:hover .service__cta svg {
    transform: translateX(3px);
}

/* Feature card spans 2 cols on tablet */
@media (min-width: 700px) and (max-width: 1079px) {
    .service--feature { grid-column: span 2; }
}

/* CTA service card */
.service--cta {
    background: var(--grad-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.service--cta:hover {
    box-shadow: 0 25px 80px -20px rgba(168, 85, 247, 0.6);
}

@media (min-width: 700px) {
    .service--cta { grid-column: span 2; }
}

@media (min-width: 1080px) {
    .service--cta { grid-column: span 1; }
}

.service__pattern {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px) 0 0 / 22px 22px;
    opacity: 0.4;
    pointer-events: none;
}

.service__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 12px 22px;
    background: #fff;
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

.service__btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service--cta:hover .service__btn {
    gap: 12px;
    transform: translateY(-2px);
}

.service--cta:hover .service__btn svg {
    transform: translateX(4px);
}

/* ════════════════════════════════════════════════════════════════
   BILLBOARD
   ════════════════════════════════════════════════════════════════ */
.billboard {
    position: relative;
    padding: var(--section-py) var(--gutter);
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 50%, var(--bg) 100%);
}

.billboard__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.billboard__head {
    position: relative;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
    z-index: 2;
}

.billboard__head .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.ledgo {
    position: relative;
    max-width: var(--container);
    margin: 0 auto 50px;
    background: linear-gradient(135deg, rgba(139, 63, 229, 0.18), rgba(168, 85, 247, 0.06), rgba(192, 132, 252, 0.05));
    border: 1px solid rgba(139, 63, 229, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    overflow: hidden;
    z-index: 2;
}

@media (min-width: 900px) {
    .ledgo {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 50px;
        padding: 56px;
        align-items: center;
    }
}

.ledgo__tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.tag svg {
    width: 14px;
    height: 14px;
}

.tag--accent {
    background: rgba(168, 85, 247, 0.2);
    color: var(--accent2);
}

.tag--new {
    background: rgba(250, 204, 21, 0.18);
    color: #facc15;
}

.tag--cyan {
    background: rgba(34, 211, 238, 0.18);
    color: #67e8f9;
}

.ledgo__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.ledgo__desc {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.ledgo__desc strong {
    color: #fff;
}

.ledgo__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ledgo__stat {
    flex: 1 1 130px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 18px;
    backdrop-filter: blur(10px);
}

.ledgo__stat-num {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.ledgo__stat-label {
    font-size: 12px;
    color: var(--text-dim);
}

/* LEDGO Van */
.ledgo__right {
    position: relative;
    margin-top: 40px;
}

@media (min-width: 900px) {
    .ledgo__right { margin-top: 0; }
}

.ledgo__van {
    position: relative;
    background: linear-gradient(135deg, var(--bg), var(--accent4));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px 24px 50px;
    overflow: hidden;
    height: 280px;
    animation: vanRoll 6s ease-in-out infinite;
}

@keyframes vanRoll {
    0%, 100% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
}

.ledgo__roof {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.ledgo__screen {
    position: relative;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent3));
    border-radius: 14px;
    margin-top: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 0 2px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(168, 85, 247, 0.5);
}

.ledgo__screen-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 6px 6px;
}

.ledgo__screen-text {
    position: relative;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.ledgo__screen-text span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.15em;
    display: block;
    line-height: 1;
}

.ledgo__screen-text small {
    font-size: 9px;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.ledgo__pixel {
    position: absolute;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    top: 12px;
    left: 12px;
    animation: pixelBlink 1.5s ease-in-out infinite;
}

.ledgo__pixel--2 {
    top: auto;
    left: auto;
    bottom: 12px;
    right: 12px;
    animation-delay: -0.7s;
}

@keyframes pixelBlink {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.ledgo__body {
    position: absolute;
    bottom: 38px;
    left: 0;
    right: 0;
    height: 18px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ledgo__wheels {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 30px;
    pointer-events: none;
}

.ledgo__wheel {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #555, #111);
    border: 2px solid rgba(255, 255, 255, 0.05);
    animation: wheelSpin 1s linear infinite;
}

@keyframes wheelSpin {
    to { transform: rotate(360deg); }
}

.ledgo__road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14px;
    background:
        linear-gradient(90deg, transparent 0, transparent 30px, rgba(168, 85, 247, 0.4) 30px, rgba(168, 85, 247, 0.4) 50px, transparent 50px, transparent 80px) repeat-x;
    background-size: 80px 100%;
    animation: roadMove 0.5s linear infinite;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes roadMove {
    to { background-position: -80px 0; }
}

.ledgo__exhaust {
    position: absolute;
    bottom: 30px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ledgo__exhaust span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(4px);
    animation: exhaust 2s ease-in-out infinite;
}

.ledgo__exhaust span:nth-child(2) { animation-delay: -0.7s; }
.ledgo__exhaust span:nth-child(3) { animation-delay: -1.4s; }

@keyframes exhaust {
    0% { opacity: 0; transform: translate(0, 0) scale(0.8); }
    50% { opacity: 0.6; transform: translate(20px, -10px) scale(1.4); }
    100% { opacity: 0; transform: translate(40px, -20px) scale(2); }
}

.ledgo__badge {
    position: absolute;
    top: -12px;
    right: 0;
    padding: 8px 14px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 999px;
    box-shadow: 0 10px 30px -10px rgba(239, 68, 68, 0.6);
    animation: floaty 3s ease-in-out infinite;
}

/* LEDGO Bus variant */
.ledgo--bus {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(168, 85, 247, 0.06), rgba(192, 132, 252, 0.04));
    border-color: rgba(34, 211, 238, 0.28);
}

.ledgo__badge--cyan {
    background: linear-gradient(135deg, #06b6d4, #8B3FE5);
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.6);
}

/* Bus illustration */
.bus {
    position: relative;
    background: linear-gradient(135deg, var(--bg), #112);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 30px 24px 50px;
    overflow: hidden;
    height: 280px;
    animation: vanRoll 6s ease-in-out infinite;
}

.bus__windows {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.bus__windows span {
    flex: 1;
    max-width: 36px;
    height: 22px;
    background: linear-gradient(180deg, rgba(103, 232, 249, 0.45), rgba(103, 232, 249, 0.12));
    border-radius: 4px 4px 2px 2px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bus__body {
    position: relative;
    height: 130px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.05);
}

.bus__ad {
    position: absolute;
    inset: 12px 56px 12px 12px;
    background: linear-gradient(135deg, #06b6d4, var(--accent), var(--accent3));
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 0 2px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(34, 211, 238, 0.4);
}

.bus__ad-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px);
    background-size: 6px 6px;
}

.bus__ad-text {
    position: relative;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.bus__ad-text span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.15em;
    display: block;
    line-height: 1;
}

.bus__ad-text small {
    font-size: 8px;
    letter-spacing: 0.2em;
    opacity: 0.85;
}

.bus__door {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: 32px;
    background: linear-gradient(180deg, rgba(103, 232, 249, 0.35), rgba(103, 232, 249, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.3);
}

.bus__wheels {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 38px;
    pointer-events: none;
}

.bus__wheel {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #555, #111);
    border: 2px solid rgba(255, 255, 255, 0.05);
    animation: wheelSpin 1s linear infinite;
}

.bus__road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 14px;
    background:
        linear-gradient(90deg, transparent 0, transparent 30px, rgba(34, 211, 238, 0.4) 30px, rgba(34, 211, 238, 0.4) 50px, transparent 50px, transparent 80px) repeat-x;
    background-size: 80px 100%;
    animation: roadMove 0.5s linear infinite;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cities grid */
.cities {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    z-index: 2;
}

@media (min-width: 600px) {
    .cities { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
    .cities { grid-template-columns: repeat(4, 1fr); }
}

.city {
    background: rgba(20, 20, 24, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease;
}

.city:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.4);
}

.city__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 16px;
    transition: transform 0.4s var(--ease-spring);
}

.city:hover .city__icon {
    transform: scale(1.1) rotate(-6deg);
}

.city__icon svg {
    width: 22px;
    height: 22px;
}

.city__icon--alt { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.city__icon--alt2 { background: linear-gradient(135deg, var(--accent2), var(--accent3)); }

.city__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
}

.city__plus {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.city__desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════════════ */
.why {
    position: relative;
    padding: var(--section-py) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1000px) {
    .why { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.why__visual {
    position: relative;
    order: 2;
}

@media (min-width: 1000px) {
    .why__visual { order: 1; }
}

.why__image-wrap {
    position: relative;
}

.why__image {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--bg-2), var(--accent4));
    border: 1px solid var(--border);
    overflow: hidden;
    padding: 36px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why__chart {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.3);
    padding: 24px;
    overflow: hidden;
}

.why__chart-grid {
    position: absolute;
    inset: 24px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.why__line {
    position: absolute;
    inset: 24px;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    overflow: visible;
}

#whyStroke {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s var(--ease-smooth);
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6));
}

.is-visible #whyStroke {
    stroke-dashoffset: 0;
}

.why__chart-label {
    position: relative;
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

.why__chart-value {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 56px);
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    z-index: 2;
}

.why__overlay {
    position: absolute;
    bottom: -14px;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(20, 20, 24, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.why__overlay-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 63, 229, 0.2);
    color: var(--accent2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why__overlay-icon svg {
    width: 22px;
    height: 22px;
}

.why__overlay-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    line-height: 1;
}

.why__overlay-label {
    font-size: 12px;
    color: var(--text-dim);
}

.why__glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at 50% 50%, rgba(139, 63, 229, 0.25), transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.why__content {
    order: 1;
}

@media (min-width: 1000px) {
    .why__content { order: 2; }
}

.why__list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.why__item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(139, 63, 229, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-spring), background 0.3s ease;
}

.why__item:hover .why__item-icon {
    transform: scale(1.08) rotate(-4deg);
    background: rgba(139, 63, 229, 0.3);
}

.why__item-icon svg {
    width: 20px;
    height: 20px;
}

.why__item-icon--alt { background: rgba(168, 85, 247, 0.15); color: var(--accent); }
.why__item-icon--alt2 { background: rgba(192, 132, 252, 0.15); color: var(--accent2); }
.why__item-icon--alt3 { background: rgba(232, 121, 249, 0.15); color: var(--accent3); }

.why__item h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    margin-bottom: 4px;
}

.why__item p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════════ */
.process {
    position: relative;
    padding: var(--section-py) var(--gutter);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    overflow: hidden;
}

.process__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.process__head .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.process__timeline {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 700px) {
    .process__timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
    .process__timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
}

.process__line {
    display: none;
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 1;
}

@media (min-width: 1080px) {
    .process__line { display: block; }
}

.process__line-fill {
    width: 0%;
    height: 100%;
    background: var(--grad-primary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
    transition: width 0.1s linear;
}

.step {
    position: relative;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    z-index: 2;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease;
}

.step:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.4);
}

.step__num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    color: rgba(139, 63, 229, 0.18);
    margin-bottom: 16px;
    letter-spacing: -0.05em;
}

.step__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 22px;
    transition: transform 0.4s var(--ease-spring);
}

.step:hover .step__icon {
    transform: scale(1.1) rotate(-6deg);
}

.step__icon svg {
    width: 22px;
    height: 22px;
}

.step__icon--alt { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.step__icon--alt2 { background: linear-gradient(135deg, var(--accent2), var(--accent3)); }

.step__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.step__desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════
   CTA / KONTAKT
   ════════════════════════════════════════════════════════════════ */
.cta {
    position: relative;
    padding: var(--section-py) var(--gutter);
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(139, 63, 229, 0.25), transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(232, 121, 249, 0.15), transparent 60%),
        var(--bg);
}

.cta__noise {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.cta__inner {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1000px) {
    .cta__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.cta__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(34px, 6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 22px;
}

.cta__sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
}

.cta__actions {
    margin-bottom: 36px;
}

.cta__trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta__avatars {
    display: flex;
}

.cta__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1, var(--primary)), var(--c2, var(--accent)));
    border: 2px solid var(--bg);
    margin-left: -8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta__avatar:first-child { margin-left: 0; }

.cta__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.cta__stars svg {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5));
}

.cta__trust p {
    font-size: 13px;
    color: var(--text-dim);
}

.cta__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cta__card {
    background: rgba(20, 20, 24, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s ease;
}

.cta__card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.4);
}

.cta__card--up {
    transform: translateY(20px);
}

.cta__card--up:hover {
    transform: translateY(14px);
}

.cta__card-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.cta__card p {
    font-size: 13px;
    color: var(--text-dim);
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    padding: 80px var(--gutter) 30px;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer__top {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (min-width: 800px) {
    .footer__top { grid-template-columns: 1.4fr 2fr; gap: 60px; }
}

.footer__brand {
    max-width: 360px;
}

.footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 4px 16px rgba(139, 63, 229, 0.5));
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
}

.footer__cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 600px) {
    .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

.footer__col h5 {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer__col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-dim);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer__col a:hover {
    color: var(--accent2);
    transform: translateX(4px);
}

.footer__big {
    max-width: var(--container);
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(80px, 18vw, 220px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(168, 85, 247, 0.25);
    text-align: center;
    margin-bottom: 30px;
    user-select: none;
}

.footer__big-dot {
    color: var(--accent3);
    -webkit-text-stroke: 0;
}

.footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
}

@media (min-width: 600px) {
    .footer__bottom { flex-direction: row; }
}

.footer__heart {
    color: var(--accent3);
    animation: heartBeat 1.4s ease-in-out infinite;
    display: inline-block;
}

.footer__credit {
    font-weight: 700;
    color: var(--accent2);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer__credit:hover {
    color: var(--accent3);
    text-shadow: 0 0 16px rgba(232, 121, 249, 0.6);
}

@media (max-width: 799px) {
    .footer__top { justify-items: center; text-align: center; }
    .footer__brand { display: flex; flex-direction: column; align-items: center; }
    .footer__logo { margin-left: auto; margin-right: auto; }
    .footer__cols { width: 100%; text-align: center; }
    .footer__col a { text-align: center; }
    .footer__col a:hover { transform: none; }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ---------- Final touches: prevent CLS, perf ---------- */
.tilt {
    will-change: transform;
}

img {
    height: auto;
}
