﻿/* ============================================
   DVZH — Ровный Движ Landing Page
   Visual Style: Night Orbit (Default)
   Палитра: #0B0E11, #E6E8EB, #9AA3AB, #2FB9B3, #4DA3FF
   ============================================ */

/* ── CSS Variables ── */
:root {
    /* Night Orbit — Default */
    --bg-primary: #0B0E11;
    --bg-secondary: #10141A;
    --bg-card: #141920;
    --bg-card-hover: #1A2030;
    --text-primary: #E6E8EB;
    --text-secondary: #9AA3AB;
    --text-muted: #6B7280;
    --accent-1: #2FB9B3;
    --accent-1-rgb: 47, 185, 179;
    --accent-2: #4DA3FF;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --gradient-accent: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 60px rgba(var(--accent-1-rgb), 0.08);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --section-pad: 100px;
    --section-pad-mobile: 48px;
    --container-max: 1200px;
    --container-pad: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 0.4s;
    --duration-slow: 0.8s;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ── Alternative Palettes (via body class) ── */

/* Graphite Performance */
body.theme-graphite {
    --bg-primary: #111111;
    --bg-secondary: #161616;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-primary: #F2F2F2;
    --text-secondary: #7A7A7A;
    --accent-1: #00D1C1;
    --accent-1-rgb: 0, 209, 193;
    --accent-2: #3B82F6;
}

/* Deep Space Minimal */
body.theme-deepspace {
    --bg-primary: #0A0A12;
    --bg-secondary: #0F0F1A;
    --bg-card: #141422;
    --bg-card-hover: #1A1A2E;
    --text-primary: #E0E6ED;
    --text-secondary: #6B7280;
    --accent-1: #1FB6FF;
    --accent-1-rgb: 31, 182, 255;
    --accent-2: #67E8F9;
}

/* ── Dark Editorial — премиальная, editorial, строгая ── */
body.theme-editorial {
    --bg-primary: #0F0F0F;
    --bg-secondary: #141414;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    --text-primary: #DCDCDC;
    --text-secondary: #8C8C8C;
    --text-muted: #6B6B6B;
    --accent-1: #38A3FF;
    --accent-1-rgb: 56, 163, 255;
    --accent-2: #5BC4E0;
}

/* ── Mono — строгий, для логотипа и чистых макетов ── */
body.theme-mono {
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-card: #111111;
    --bg-card-hover: #1A1A1A;
    --text-primary: #E5E5E5;
    --text-secondary: #808080;
    --text-muted: #5C5C5C;
    --accent-1: #2FB9B3;
    --accent-1-rgb: 47, 185, 179;
    --accent-2: #62CDC7;
}

/* ── Neon Pulse — неон, энергия, яркий бирюзовый ── */
body.theme-neon-pulse {
    --bg-primary: #050A0A;
    --bg-secondary: #081010;
    --bg-card: #0A1515;
    --bg-card-hover: #0F1E1E;
    --text-primary: #E8F5F4;
    --text-secondary: #7DBFBA;
    --text-muted: #4A8A85;
    --accent-1: #00FFE5;
    --accent-1-rgb: 0, 255, 229;
    --accent-2: #38F5D4;
    --gradient-accent: linear-gradient(135deg, #00FFE5, #38F5D4);
    --border: rgba(0, 255, 229, 0.08);
    --border-hover: rgba(0, 255, 229, 0.16);
    --shadow-glow: 0 0 80px rgba(0, 255, 229, 0.12);
}

/* ── Cyber Grid — электрический голубой, сетки, sci-fi ── */
body.theme-cyber-grid {
    --bg-primary: #060810;
    --bg-secondary: #0A0D18;
    --bg-card: #0E1220;
    --bg-card-hover: #141A2E;
    --text-primary: #E2EAFF;
    --text-secondary: #7B93C0;
    --text-muted: #4E6590;
    --accent-1: #00C8FF;
    --accent-1-rgb: 0, 200, 255;
    --accent-2: #64FFDA;
    --gradient-accent: linear-gradient(135deg, #00C8FF, #64FFDA);
    --border: rgba(0, 200, 255, 0.07);
    --border-hover: rgba(0, 200, 255, 0.14);
    --shadow-glow: 0 0 80px rgba(0, 200, 255, 0.10);
}

/* ── Aurora — северное сияние, мятно-голубые переливы ── */
body.theme-aurora {
    --bg-primary: #080C12;
    --bg-secondary: #0C1018;
    --bg-card: #101620;
    --bg-card-hover: #161E2E;
    --text-primary: #E4ECF2;
    --text-secondary: #84A0B5;
    --text-muted: #567082;
    --accent-1: #00E5A0;
    --accent-1-rgb: 0, 229, 160;
    --accent-2: #4AA8FF;
    --gradient-accent: linear-gradient(135deg, #00E5A0, #4AA8FF);
    --border: rgba(0, 229, 160, 0.07);
    --border-hover: rgba(0, 229, 160, 0.14);
    --shadow-glow: 0 0 80px rgba(0, 229, 160, 0.10);
}


/* ============================================
   VISUAL STYLES (independent of color themes)
   Combine: body class="theme-X vstyle-Y"
   Colors stay from theme, visuals from vstyle
   ============================================ */

/* ── Minimal Tech — чистый технологичный минимализм ── */
body.vstyle-minimal-tech {
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}
body.vstyle-minimal-tech .hero__title {
    letter-spacing: 0.01em;
    font-weight: 600;
}
body.vstyle-minimal-tech .section-title {
    font-weight: 500;
    letter-spacing: 0.02em;
}
body.vstyle-minimal-tech .hero__orbit {
    border-width: 1px;
    opacity: 0.12;
}
body.vstyle-minimal-tech .nav__logo-symbol {
    letter-spacing: 0.15em;
    font-weight: 600;
}
body.vstyle-minimal-tech .hero__badge {
    border-width: 1px;
    font-weight: 400;
    letter-spacing: 0.05em;
}
body.vstyle-minimal-tech .btn--primary {
    font-weight: 500;
    letter-spacing: 0.03em;
}
/* Тонкие линии-разделители */
body.vstyle-minimal-tech .services__card,
body.vstyle-minimal-tech .problem__card,
body.vstyle-minimal-tech .cases__card {
    border: 1px solid var(--border);
}

/* ── Street Graffiti — мягкая уличная эстетика с реальным граффити ── */

/* === GRAIN / NOISE OVERLAY (очень лёгкий) === */
body.vstyle-street::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
}

/* === TYPOGRAPHY === */
body.vstyle-street .hero__title {
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 800;
}
body.vstyle-street .section-title {
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 700;
}
body.vstyle-street .nav__logo-symbol {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}
body.vstyle-street .btn--primary {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    border-radius: 4px;
}
body.vstyle-street .hero__badge {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
body.vstyle-street .approach__step {
    border-left: 3px solid rgba(var(--accent-1-rgb), 0.3);
    padding-left: 24px;
}
body.vstyle-street .marquee__item {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
}

/* === HERO BACKGROUND === */
body.vstyle-street .hero__bg {
    overflow: hidden;
}
/* Очень мягкая кирпичная текстура */
body.vstyle-street .hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 30px,
            rgba(255,255,255,0.02) 30px,
            rgba(255,255,255,0.02) 31px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.015) 60px,
            rgba(255,255,255,0.015) 61px
        );
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Мягкое spray-пятно */
body.vstyle-street .hero__bg::after {
    content: '';
    position: absolute;
    top: 5%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        ellipse at 40% 40%,
        rgba(var(--accent-1-rgb), 0.05) 0%,
        rgba(var(--accent-1-rgb), 0.02) 40%,
        transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

body.vstyle-street .hero__grid {
    background-image: none;
    background: none;
}
body.vstyle-street .hero__grid::before,
body.vstyle-street .hero__grid::after {
    display: none;
}

body.vstyle-street .hero__orbit {
    display: none;
}
body.vstyle-street .hero__aurora {
    display: none;
}

/* === STREET OVERLAY ELEMENTS === */
.street-overlay {
    display: none;
}
body.vstyle-street .street-overlay {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Мягкие потёки краски */
.street-drip-1 {
    top: 0;
    left: 8%;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, rgba(var(--accent-1-rgb), 0.4), transparent);
    opacity: 0;
    animation: drip-down 5s ease-in 1s forwards;
}
.street-drip-2 {
    top: 0;
    left: 28%;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, rgba(var(--accent-1-rgb), 0.3), transparent);
    opacity: 0;
    animation: drip-down 6s ease-in 2.5s forwards;
}
.street-drip-3 {
    top: 0;
    right: 15%;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, rgba(var(--accent-1-rgb), 0.35), transparent);
    opacity: 0;
    animation: drip-down 4.5s ease-in 0.8s forwards;
}

@keyframes drip-down {
    0% { height: 0; opacity: 0; }
    10% { opacity: 0.4; }
    100% { height: 25vh; opacity: 0.1; }
}

/* Spray-пятна (мягкие) */
.street-spray-1 {
    bottom: 25%;
    left: 5%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-1-rgb), 0.04), transparent 70%);
    filter: blur(30px);
}
.street-spray-2 {
    top: 35%;
    right: 3%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-1-rgb), 0.03), transparent 70%);
    filter: blur(25px);
}

/* Трафарет-крестик (мягче) */
.street-stencil {
    top: 22%;
    left: 10%;
    width: 30px;
    height: 30px;
    opacity: 0.05;
}
.street-stencil::before,
.street-stencil::after {
    content: '';
    position: absolute;
    background: var(--accent-1);
}
.street-stencil::before {
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.street-stencil::after {
    width: 3px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

/* Стрелка (мягче) */
.street-arrow {
    bottom: 30%;
    right: 10%;
    width: 40px;
    height: 40px;
    opacity: 0.04;
    border-right: 3px solid var(--accent-1);
    border-bottom: 3px solid var(--accent-1);
    transform: rotate(-45deg);
}

/* Горизонтальная spray-полоса (тоньше) */
.street-stripe {
    bottom: 18%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(var(--accent-1-rgb), 0.08) 25%,
        rgba(var(--accent-1-rgb), 0.03) 50%,
        rgba(var(--accent-1-rgb), 0.1) 75%,
        transparent 100%
    );
}

/* Граффити на секциях */
body.vstyle-street .problem,
body.vstyle-street .services,
body.vstyle-street .approach,
body.vstyle-street .cta-final {
    position: relative;
}

/* === КАРТОЧКИ (мягче) === */
body.vstyle-street .problem__card,
body.vstyle-street .services__card,
body.vstyle-street .cases__card {
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

/* Очень лёгкий noise на карточках */
body.vstyle-street .problem__card::before,
body.vstyle-street .services__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

/* === СЕКЦИИ — без агрессивного кирпича === */
body.vstyle-street .problem,
body.vstyle-street .about {
    position: relative;
}

/* === МАРКИЗ === */
body.vstyle-street .marquee {
    border-top: 1px solid rgba(var(--accent-1-rgb), 0.2);
    border-bottom: 1px solid rgba(var(--accent-1-rgb), 0.2);
}

/* === СЕКЦИЯ ТЭГИ === */
body.vstyle-street .section-tag {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 1px solid rgba(var(--accent-1-rgb), 0.3);
    background: rgba(var(--accent-1-rgb), 0.05);
    padding: 6px 16px;
}

/* === ПОДХОД === */
body.vstyle-street .approach__line {
    width: 3px;
    background: var(--border-hover);
}
body.vstyle-street .approach__line-fill {
    width: 3px;
}
body.vstyle-street .approach__step-num {
    font-weight: 800;
    font-size: 28px;
    color: var(--accent-1);
    opacity: 0.6;
}
body.vstyle-street .approach__step h3 {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* === FAQ === */
body.vstyle-street .faq__item {
    border-left: 2px solid rgba(var(--accent-1-rgb), 0.3);
}
body.vstyle-street .faq__question {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
}

/* === CTA === */
body.vstyle-street .cta-final__inner {
    border: 1px solid rgba(var(--accent-1-rgb), 0.2);
    position: relative;
    overflow: hidden;
}
body.vstyle-street .cta-final__orbit {
    display: none;
}
body.vstyle-street .cta-final__title {
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* === FOOTER === */
body.vstyle-street .footer {
    border-top: 1px solid rgba(var(--accent-1-rgb), 0.15);
}

/* === FLOAT TAGS === */
body.vstyle-street .hero__float-tag {
    border: 1px solid var(--border-hover);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 11px;
}

/* === HERO STATS === */
body.vstyle-street .hero__stat-value {
    color: var(--accent-1);
}
body.vstyle-street .hero__stat-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
}

/* === NAV === */
body.vstyle-street .nav {
    border-bottom: 1px solid var(--border);
}

/* === MODEL === */
body.vstyle-street .model__month-num {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
}

/* === SERVICES === */
body.vstyle-street .services__card h3 {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ── Performance Lab — лаборатория аналитики ── */
body.vstyle-lab .hero__badge,
body.vstyle-lab .nav__link,
body.vstyle-lab .hero__stat-value,
body.vstyle-lab .process__item-time,
body.vstyle-lab .cases__metric-value,
body.vstyle-lab .section-tag {
    font-family: 'JetBrains Mono', monospace;
}
body.vstyle-lab .nav__logo-symbol::after {
    content: '://';
    opacity: 0.4;
    font-weight: 400;
}
body.vstyle-lab .hero__stat-value::before {
    content: '> ';
    opacity: 0.3;
    font-size: 0.7em;
}
body.vstyle-lab .section-tag {
    border: 1px solid var(--accent-1);
    padding: 4px 12px;
}
body.vstyle-lab .hero__badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.05em;
}
/* Сетка для дашборд-эффекта */
body.vstyle-lab .hero__grid {
    background-size: 30px 30px;
    opacity: 0.8;
}
body.vstyle-lab .hero__orbit {
    border-style: dashed;
    border-width: 1px;
    opacity: 0.1;
}

/* ── Orbit System — космическая метафора роста ── */
body.vstyle-orbit .hero__orbit {
    border-width: 1px;
    opacity: 0.3;
}
body.vstyle-orbit .hero__orbit--1 { width: 600px; height: 600px; }
body.vstyle-orbit .hero__orbit--2 { width: 900px; height: 900px; }
body.vstyle-orbit .hero__orbit--3 { width: 1200px; height: 1200px; }
body.vstyle-orbit .cta-final__orbit--1 { width: 500px; height: 500px; opacity: 0.3; }
body.vstyle-orbit .cta-final__orbit--2 { width: 700px; height: 700px; opacity: 0.2; }
body.vstyle-orbit .hero__title {
    letter-spacing: 0.02em;
}
body.vstyle-orbit .section-title {
    letter-spacing: 0.02em;
}
/* Звёзды-частицы ярче */
body.vstyle-orbit .particle {
    box-shadow: 0 0 8px var(--accent-1);
}
body.vstyle-orbit .hero__aurora {
    opacity: 0.15;
}

/* ── Monolith DVZH — типографический монолит ── */
body.vstyle-monolith {
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
    --section-pad: 72px;
    --section-pad-mobile: 40px;
}
body.vstyle-monolith .hero__title {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 900;
    font-size: clamp(38px, 6vw, 72px);
    margin-left: 0;
    position: relative;
    padding-left: 28px;
}
/* Вертикальная акцентная полоса слева от заголовка */
body.vstyle-monolith .hero__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8%;
    width: 4px;
    height: 84%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--accent-1) 15%,
        var(--accent-1) 70%,
        rgba(var(--accent-1-rgb), 0.3) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(var(--accent-1-rgb), 0.3);
}
/* Геометрическая графика слева в hero */
body.vstyle-monolith .hero__content::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 280px;
    pointer-events: none;
    z-index: 1;
    background:
        /* Вертикальная пунктирная линия */
        repeating-linear-gradient(
            to bottom,
            rgba(var(--accent-1-rgb), 0.25) 0px,
            rgba(var(--accent-1-rgb), 0.25) 8px,
            transparent 8px,
            transparent 16px
        ) 30px 0 / 1px 100% no-repeat,
        /* Горизонтальные метки-засечки */
        linear-gradient(rgba(var(--accent-1-rgb), 0.15), rgba(var(--accent-1-rgb), 0.15)) 18px 40px / 24px 1px no-repeat,
        linear-gradient(rgba(var(--accent-1-rgb), 0.12), rgba(var(--accent-1-rgb), 0.12)) 22px 80px / 16px 1px no-repeat,
        linear-gradient(rgba(var(--accent-1-rgb), 0.18), rgba(var(--accent-1-rgb), 0.18)) 16px 120px / 28px 1px no-repeat,
        linear-gradient(rgba(var(--accent-1-rgb), 0.10), rgba(var(--accent-1-rgb), 0.10)) 24px 160px / 12px 1px no-repeat,
        linear-gradient(rgba(var(--accent-1-rgb), 0.15), rgba(var(--accent-1-rgb), 0.15)) 20px 200px / 20px 1px no-repeat,
        linear-gradient(rgba(var(--accent-1-rgb), 0.12), rgba(var(--accent-1-rgb), 0.12)) 26px 240px / 8px 1px no-repeat;
}
/* Ромб-маркер */
body.vstyle-monolith .hero__content::after {
    content: '';
    position: absolute;
    left: -56px;
    top: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border: 1.5px solid rgba(var(--accent-1-rgb), 0.4);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
    pointer-events: none;
}
body.vstyle-monolith .hero__content {
    position: relative;
    text-align: left;
    margin-left: -6%;
}
@media (max-width: 768px) {
    body.vstyle-monolith .hero__content {
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
}
body.vstyle-monolith .nav__logo-symbol {
    letter-spacing: 0.3em;
    font-weight: 900;
    font-size: 30px;
}
body.vstyle-monolith .section-title {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
}
body.vstyle-monolith .hero__badge {
    display: inline-flex;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid rgba(var(--accent-1-rgb), 0.2);
    background: transparent;
    padding: 8px 20px;
    color: var(--accent-1);
    margin-bottom: 16px;
}
body.vstyle-monolith .hero__badge-dot {
    display: none;
}
body.vstyle-monolith .hero__orbit {
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-1-rgb), 0.06);
}

body.vstyle-monolith .hero__orbit--1 {
    width: 500px;
    height: 500px;
    animation: mono-orbit-rotate 40s linear infinite;
}

body.vstyle-monolith .hero__orbit--2 {
    width: 750px;
    height: 750px;
    animation: mono-orbit-rotate 60s linear infinite reverse;
    border-color: rgba(var(--accent-1-rgb), 0.04);
}

body.vstyle-monolith .hero__orbit--3 {
    width: 1000px;
    height: 1000px;
    animation: mono-orbit-rotate 80s linear infinite;
    border-color: rgba(var(--accent-1-rgb), 0.03);
}

/* Орбитальная точка на первой орбите */
body.vstyle-monolith .hero__orbit--1::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-1);
    box-shadow: 0 0 12px rgba(var(--accent-1-rgb), 0.6);
}

/* Орбитальная точка на второй орбите */
body.vstyle-monolith .hero__orbit--2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-2);
    box-shadow: 0 0 8px rgba(var(--accent-1-rgb), 0.4);
}

@keyframes mono-orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
body.vstyle-monolith .hero__aurora {
    display: none;
}
body.vstyle-monolith .marquee__item {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 900;
}
body.vstyle-monolith .btn--primary {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.08em;
    border-radius: 2px;
}

/* Monolith hero interactive elements — hidden by default */
.mono-scanline,
.mono-crosshair,
.mono-data,
.mono-corner {
    display: none;
}

body.vstyle-monolith .mono-scanline {
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, transparent, rgba(var(--accent-1-rgb), 0.3), transparent);
    z-index: 2;
    animation: mono-scan-h 8s linear infinite;
    pointer-events: none;
}

@keyframes mono-scan-h {
    0% { left: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

body.vstyle-monolith .mono-crosshair {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

body.vstyle-monolith .mono-crosshair::before,
body.vstyle-monolith .mono-crosshair::after {
    content: '';
    position: absolute;
    background: var(--accent-1);
}

body.vstyle-monolith .mono-crosshair::before {
    width: 1px;
    height: 100%;
    left: 50%;
}

body.vstyle-monolith .mono-crosshair::after {
    width: 100%;
    height: 1px;
    top: 50%;
}

body.vstyle-monolith .mono-data {
    display: block;
    position: absolute;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--accent-1);
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    text-transform: uppercase;
}

body.vstyle-monolith .mono-data--tl { top: 24px; left: 24px; }
body.vstyle-monolith .mono-data--tr { top: 24px; right: 24px; }
body.vstyle-monolith .mono-data--bl { bottom: 24px; left: 24px; }
body.vstyle-monolith .mono-data--br { bottom: 24px; right: 24px; }

body.vstyle-monolith .mono-data--tl,
body.vstyle-monolith .mono-data--br {
    animation: mono-blink 4s ease-in-out infinite;
}

body.vstyle-monolith .mono-data--tr,
body.vstyle-monolith .mono-data--bl {
    animation: mono-blink 4s ease-in-out 2s infinite;
}

@keyframes mono-blink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.45; }
}

body.vstyle-monolith .mono-corner {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

body.vstyle-monolith .mono-corner--tl {
    top: 16px;
    left: 16px;
    border-top: 1px solid var(--accent-1);
    border-left: 1px solid var(--accent-1);
}

body.vstyle-monolith .mono-corner--tr {
    top: 16px;
    right: 16px;
    border-top: 1px solid var(--accent-1);
    border-right: 1px solid var(--accent-1);
}

body.vstyle-monolith .mono-corner--bl {
    bottom: 16px;
    left: 16px;
    border-bottom: 1px solid var(--accent-1);
    border-left: 1px solid var(--accent-1);
}

body.vstyle-monolith .mono-corner--br {
    bottom: 16px;
    right: 16px;
    border-bottom: 1px solid var(--accent-1);
    border-right: 1px solid var(--accent-1);
}

body.vstyle-monolith .hero__grid {
    opacity: 0.15;
    background-size: 80px 80px;
}

body.vstyle-monolith .hero__stats {
    border-top-color: rgba(var(--accent-1-rgb), 0.15);
}

body.vstyle-monolith .hero__float-tag {
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 10px;
    font-weight: 700;
}

@media (max-width: 768px) {
    body.vstyle-monolith .mono-data { font-size: 8px; }
    body.vstyle-monolith .mono-corner { width: 14px; height: 14px; }
    body.vstyle-monolith .mono-data--tl,
    body.vstyle-monolith .mono-data--tr { top: 16px; }
    body.vstyle-monolith .mono-data--bl,
    body.vstyle-monolith .mono-data--br { bottom: 16px; }
    body.vstyle-monolith .hero__orbit--1 { width: 300px; height: 300px; }
    body.vstyle-monolith .hero__orbit--2 { width: 450px; height: 450px; }
    body.vstyle-monolith .hero__orbit--3 { width: 600px; height: 600px; }
    body.vstyle-monolith .hero__content::before,
    body.vstyle-monolith .hero__content::after { display: none; }
    body.vstyle-monolith .hero__title { margin-left: 0; }
}

/* Monolith — орбитальные акценты по секциям */
body.vstyle-monolith .section-header {
    position: relative;
}

body.vstyle-monolith .section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid rgba(var(--accent-1-rgb), 0.04);
    border-radius: 50%;
    animation: mono-orbit-rotate 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

body.vstyle-monolith .section-tag {
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

/* Orbital dots на карточках */
body.vstyle-monolith .problem__card::before,
body.vstyle-monolith .model__month::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 4px;
    height: 4px;
    background: var(--accent-1);
    opacity: 0.3;
    animation: mono-blink 3s ease-in-out infinite;
}

body.vstyle-monolith .problem__card,
body.vstyle-monolith .model__month {
    position: relative;
}

/* Орбита вокруг CTA кнопки */
body.vstyle-monolith .cta-mid__inner {
    position: relative;
    overflow: hidden;
}

body.vstyle-monolith .cta-mid__inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 1px solid rgba(var(--accent-1-rgb), 0.06);
    border-radius: 50%;
    animation: mono-orbit-rotate 20s linear infinite;
    pointer-events: none;
}

/* Пульсирующая точка в footer */
body.vstyle-monolith .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-1);
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(var(--accent-1-rgb), 0.4);
    animation: mono-blink 3s ease-in-out infinite;
}

body.vstyle-monolith .footer {
    position: relative;
}

/* ── Blueprint — техническая чертёжная эстетика (авторский) ── */
body.vstyle-blueprint .hero__grid {
    background-size: 40px 40px;
    opacity: 1;
}
body.vstyle-blueprint .hero__orbit {
    border-style: dashed;
    border-width: 1px;
}
body.vstyle-blueprint .services__card,
body.vstyle-blueprint .problem__card,
body.vstyle-blueprint .cases__card,
body.vstyle-blueprint .model__month {
    border: 1px dashed var(--border-hover);
}
body.vstyle-blueprint .section-tag {
    font-family: 'JetBrains Mono', monospace;
    border: 1px dashed var(--accent-1);
    padding: 4px 12px;
}
body.vstyle-blueprint .approach__step-num {
    font-family: 'JetBrains Mono', monospace;
    border: 1px dashed var(--accent-1);
}
body.vstyle-blueprint .nav__logo-symbol {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
}
body.vstyle-blueprint .hero__badge {
    border-style: dashed;
}

/* ── Glitch Protocol — цифровая дисторция (авторский) ── */
body.vstyle-glitch .hero__title-accent {
    animation: glitch 3s infinite;
}
body.vstyle-glitch .nav__logo-symbol {
    animation: glitch 5s infinite;
    letter-spacing: 0.1em;
}
/* Сканлайны */
body.vstyle-glitch::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
    z-index: 10000;
}
body.vstyle-glitch .hero__orbit {
    animation: glitch 8s infinite;
}
body.vstyle-glitch .marquee__item {
    letter-spacing: 0.05em;
}
body.vstyle-glitch .section-tag {
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
}


/* ── Handtag — сухой маркер инженера. Точечные акценты, чертёжный характер ── */

/* Курсор — чертёжный перекрестие */
body.vstyle-handtag {
    cursor: crosshair;
}
body.vstyle-handtag a,
body.vstyle-handtag button,
body.vstyle-handtag .btn--primary,
body.vstyle-handtag [onclick] {
    cursor: crosshair;
}

/* Лого — подпись инженера на документе */
body.vstyle-handtag .nav__logo-symbol {
    font-family: 'Kalam', cursive;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.01em;
    -webkit-text-fill-color: var(--accent-1);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    animation: handtag-write 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}

@keyframes handtag-write {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

/* Заголовки — геометрика + точечные рукописные акценты */
body.vstyle-handtag .hero__title {
    font-weight: 800;
}
/* Только акцентное слово — Kalam, остальное остаётся геометрическим */
body.vstyle-handtag .hero__title-accent {
    font-family: 'Kalam', cursive;
    font-weight: 700;
    font-size: 1.08em;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}
/* Маркерная подчёркивание под акцентами */
body.vstyle-handtag .hero__title-accent::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 2px;
    height: 6px;
    background: rgba(var(--accent-1-rgb), 0.2);
    transform: skewX(-8deg) scaleY(0.8);
    border-radius: 1px;
    z-index: -1;
}
body.vstyle-handtag .section-title .text-accent {
    font-family: 'Kalam', cursive;
    font-weight: 700;
    font-size: 1.08em;
    position: relative;
    display: inline-block;
}
body.vstyle-handtag .section-title .text-accent::after {
    content: '';
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 2px;
    height: 5px;
    background: rgba(var(--accent-1-rgb), 0.18);
    transform: skewX(-6deg) scaleY(0.8);
    border-radius: 1px;
    z-index: -1;
}

/* Бэдж — геометрический, строгий. БЕЗ рукописного шрифта */
body.vstyle-handtag .hero__badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(var(--accent-1-rgb), 0.3);
    background: rgba(var(--accent-1-rgb), 0.04);
}
body.vstyle-handtag .section-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Кнопки — рукописный текст внутри строгой формы (контраст = современность) */
body.vstyle-handtag .btn--primary {
    font-family: 'Kalam', cursive;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 2px;
}

/* Марки — Kalam для бегущей строки */
body.vstyle-handtag .marquee__item {
    font-family: 'Kalam', cursive;
    font-weight: 700;
    -webkit-text-stroke-width: 1px;
}

/* Номера — рукописные, как пометки на схеме */
body.vstyle-handtag .approach__step-num {
    font-family: 'Kalam', cursive;
    font-size: 26px;
    font-weight: 700;
}
body.vstyle-handtag .process__item-marker span {
    font-family: 'Kalam', cursive;
    font-size: 20px;
    font-weight: 700;
}
body.vstyle-handtag .services__card-num {
    font-family: 'Kalam', cursive;
    font-size: 18px;
    font-weight: 700;
}

/* Карточки — тонкие рамки, острые углы */
body.vstyle-handtag .services__card,
body.vstyle-handtag .problem__card,
body.vstyle-handtag .cases__card,
body.vstyle-handtag .model__month {
    border-width: 1px;
    border-radius: 2px;
}

/* Орбиты — чертёжные прямоугольные рамки */
body.vstyle-handtag .hero__orbit {
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(var(--accent-1-rgb), 0.06);
}
body.vstyle-handtag .hero__orbit--1 {
    transform: rotate(12deg);
}
body.vstyle-handtag .hero__orbit--2 {
    transform: rotate(-8deg);
}
body.vstyle-handtag .hero__orbit--3 {
    transform: rotate(3deg);
}

/* Грид — чертёжная сетка, чуть заметнее */
body.vstyle-handtag .hero__grid {
    opacity: 0.06;
    background-size: 40px 40px;
}

/* Аврора — сдержанное свечение */
body.vstyle-handtag .hero__aurora {
    opacity: 0.25;
}

/* Футер — подпись */
body.vstyle-handtag .footer__logo {
    font-family: 'Kalam', cursive;
    font-size: 34px;
    font-weight: 700;
    -webkit-text-fill-color: var(--accent-1);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* CTA — рукописный заголовок, сдержанно */
body.vstyle-handtag .cta-final__title {
    font-family: 'Kalam', cursive;
    font-weight: 700;
}
body.vstyle-handtag .cta-mid h2 {
    font-family: 'Kalam', cursive;
    font-weight: 700;
}

/* FAQ — оставляем геометрику, только маркерный акцент */
body.vstyle-handtag .faq__question {
    position: relative;
}
body.vstyle-handtag .faq__question::before {
    content: '/';
    font-family: 'Kalam', cursive;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-1);
    margin-right: 8px;
    opacity: 0.7;
}

/* Статы — рукописные цифры (как быстрая пометка) */
body.vstyle-handtag .hero__stat-value {
    font-family: 'Kalam', cursive;
    font-size: 1.2em;
    font-weight: 700;
}

/* Номера месяцев — рукописные */
body.vstyle-handtag .model__month-num {
    font-family: 'Kalam', cursive;
    font-size: 30px;
    font-weight: 700;
}

/* Showcase — лого как подпись */
body.vstyle-handtag .showcase__logo {
    font-family: 'Kalam', cursive;
    font-weight: 700;
    animation: handtag-write 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) both;
}


/* ============================================
   VSTYLE: COSMOS — Глубина, масштаб, параллакс
   ============================================ */

/* Орбитальные кольца на фоне */
body.vstyle-cosmos::before,
body.vstyle-cosmos::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-1-rgb), 0.06);
    pointer-events: none;
    z-index: 0;
}
body.vstyle-cosmos::before {
    width: 60vw;
    height: 60vw;
    margin-top: -30vw;
    margin-left: -30vw;
    animation: cosmos-orbit 90s linear infinite;
}
body.vstyle-cosmos::after {
    width: 90vw;
    height: 90vw;
    margin-top: -45vw;
    margin-left: -45vw;
    opacity: 0.03;
    animation: cosmos-orbit 150s linear infinite reverse;
}

@keyframes cosmos-orbit {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Типографика: лёгкая, парящая */
body.vstyle-cosmos .hero__title {
    font-weight: 300;
    letter-spacing: -0.02em;
}
body.vstyle-cosmos .section-title {
    font-weight: 300;
    letter-spacing: -0.02em;
}
body.vstyle-cosmos .hero__subtitle {
    animation: cosmos-text-float 6s ease-in-out infinite;
}
@keyframes cosmos-text-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* Кнопки — капсульные */
body.vstyle-cosmos .btn--primary {
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 0.04em;
}
body.vstyle-cosmos .nav__cta {
    border-radius: 50px;
    font-weight: 400;
}

/* Орбиты hero — усиленный glow */
body.vstyle-cosmos .hero__orbit {
    border-color: rgba(var(--accent-1-rgb), 0.1);
    box-shadow: 0 0 60px rgba(var(--accent-1-rgb), 0.04);
}

/* Карточки — стеклянный морфизм */
body.vstyle-cosmos .services__card,
body.vstyle-cosmos .problem__card,
body.vstyle-cosmos .model__month,
body.vstyle-cosmos .cases__card {
    background: rgba(var(--accent-1-rgb), 0.02);
    backdrop-filter: blur(8px);
    border-color: rgba(var(--accent-1-rgb), 0.08);
    border-radius: 20px;
}
body.vstyle-cosmos .services__card:hover,
body.vstyle-cosmos .problem__card:hover,
body.vstyle-cosmos .model__month:hover,
body.vstyle-cosmos .cases__card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(var(--accent-1-rgb), 0.06);
}

/* Grid — рассеянный */
body.vstyle-cosmos .hero__grid {
    opacity: 0.15;
    background-size: 80px 80px;
}

/* Aurora — усиленная */
body.vstyle-cosmos .hero__aurora {
    opacity: 0.1;
    filter: blur(80px);
}

/* Лого — лёгкая */
body.vstyle-cosmos .nav__logo-symbol {
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* Статы — мягкий glow */
body.vstyle-cosmos .hero__stat-value {
    text-shadow: 0 0 20px rgba(var(--accent-1-rgb), 0.2);
}

/* Бейдж — капсула */
body.vstyle-cosmos .hero__badge {
    border-radius: 50px;
    backdrop-filter: blur(12px);
}

/* Section tags — мягкие */
body.vstyle-cosmos .section-tag {
    border-radius: 50px;
    font-weight: 400;
}

/* FAQ — скруглённые */
body.vstyle-cosmos .faq__item {
    border-radius: 16px;
}

/* Showcase лого */
body.vstyle-cosmos .showcase__logo {
    font-weight: 300;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(var(--accent-1-rgb), 0.15);
}


/* ============================================
   VSTYLE: PULSE — Энергия, шум, андерграунд
   ============================================ */

/* Noise overlay */
body.vstyle-pulse::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
    animation: pulse-noise-shift 0.15s steps(3) infinite;
}
@keyframes pulse-noise-shift {
    0%   { transform: translate(0, 0); }
    33%  { transform: translate(-2px, 1px); }
    66%  { transform: translate(1px, -1px); }
    100% { transform: translate(0, 0); }
}

/* Scanlines */
body.vstyle-pulse::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    opacity: 0.015;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
}

/* Типографика: тяжёлая, uppercase */
body.vstyle-pulse .hero__title {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 900;
}
body.vstyle-pulse .section-title {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 900;
}
body.vstyle-pulse .hero__title-accent {
    animation: pulse-text-glitch 4s steps(1) infinite;
}
@keyframes pulse-text-glitch {
    0%, 90%, 100% { transform: none; opacity: 1; }
    91% { transform: translateX(-3px); opacity: 0.8; }
    93% { transform: translateX(3px); opacity: 0.9; }
    95% { transform: translateX(-2px); opacity: 0.7; }
    97% { transform: none; opacity: 1; }
}

/* Кнопки — рубленые, обводка */
body.vstyle-pulse .btn--primary {
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 2px solid var(--accent-1);
}
body.vstyle-pulse .nav__cta {
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
}

/* Карточки — острые углы, грубые */
body.vstyle-pulse .services__card,
body.vstyle-pulse .problem__card,
body.vstyle-pulse .model__month,
body.vstyle-pulse .cases__card {
    border-radius: 0;
    border-width: 2px;
}

/* Акцентная полоска — мгновенная */
body.vstyle-pulse .services__card::before {
    transition: height 0.1s steps(3);
}

/* Lого — тяжёлый */
body.vstyle-pulse .nav__logo-symbol {
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Grid — жёсткий */
body.vstyle-pulse .hero__grid {
    opacity: 0.6;
    background-size: 40px 40px;
}

/* Орбиты — скрыты (не в тему) */
body.vstyle-pulse .hero__orbit {
    display: none;
}

/* Aurora — нет */
body.vstyle-pulse .hero__aurora {
    display: none;
}

/* Бейдж — квадратный */
body.vstyle-pulse .hero__badge {
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
body.vstyle-pulse .hero__badge-dot {
    border-radius: 0;
    width: 8px;
    height: 8px;
    animation: none;
}

/* Section tags — брутальные */
body.vstyle-pulse .section-tag {
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* FAQ — квадратные */
body.vstyle-pulse .faq__item {
    border-radius: 0;
    border-width: 2px;
}

/* CTA — грубые */
body.vstyle-pulse .cta-mid__inner,
body.vstyle-pulse .cta-final__inner {
    border-radius: 0;
    border-width: 2px;
}

/* Showcase лого */
body.vstyle-pulse .showcase__logo {
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Мерцание акцентного текста */
body.vstyle-pulse .text-accent {
    animation: pulse-flicker 2.5s ease-in-out infinite;
}
@keyframes pulse-flicker {
    0%, 100% { opacity: 1; }
    4%       { opacity: 0.2; }
    6%       { opacity: 1; }
    60%      { opacity: 1; }
    62%      { opacity: 0.4; }
    64%      { opacity: 1; }
    64.5%    { opacity: 0.3; }
    65%      { opacity: 1; }
}


/* ============================================
   VSTYLE: KINETIC — Скорость, вектор, движение
   ============================================ */

/* Световой шлейф */
body.vstyle-kinetic::before {
    content: '';
    position: fixed;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background: linear-gradient(
        135deg,
        transparent 30%,
        var(--accent-1) 45%,
        transparent 55%,
        transparent 70%,
        var(--accent-2) 80%,
        transparent 90%
    );
    animation: kinetic-light-streak 8s ease-in-out infinite alternate;
}
@keyframes kinetic-light-streak {
    0%   { transform: translateX(-10%) skewX(-5deg); }
    100% { transform: translateX(10%) skewX(5deg); }
}

/* Типографика: italic, динамичный */
body.vstyle-kinetic .hero__title {
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.01em;
}
body.vstyle-kinetic .section-title {
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.01em;
}

/* Скошенные элементы */
body.vstyle-kinetic .hero__badge {
    transform: skewX(-3deg);
    border-radius: 4px;
}
body.vstyle-kinetic .section-tag {
    transform: skewX(-3deg);
    border-radius: 4px;
}

/* Кнопки — скошенные */
body.vstyle-kinetic .btn--primary {
    border-radius: 4px;
    font-weight: 700;
    font-style: italic;
    transform: skewX(-3deg);
}
body.vstyle-kinetic .btn--primary:hover {
    transform: skewX(-3deg) translateY(-3px);
}
body.vstyle-kinetic .nav__cta {
    border-radius: 4px;
    font-style: italic;
    transform: skewX(-3deg);
}

/* Карточки — скошенные с motion-тенью */
body.vstyle-kinetic .services__card,
body.vstyle-kinetic .problem__card,
body.vstyle-kinetic .model__month,
body.vstyle-kinetic .cases__card {
    border-radius: 4px;
    transition: all var(--duration) var(--ease-out), transform 0.3s ease;
}
body.vstyle-kinetic .services__card:hover,
body.vstyle-kinetic .problem__card:hover,
body.vstyle-kinetic .model__month:hover,
body.vstyle-kinetic .cases__card:hover {
    transform: translateY(-6px) skewX(-1deg);
    box-shadow: 8px 20px 50px rgba(0, 0, 0, 0.3),
                -4px 0 20px rgba(var(--accent-1-rgb), 0.05);
}

/* Акцентная полоска — диагональная */
body.vstyle-kinetic .services__card::before {
    width: 3px;
    transform: skewY(-15deg);
    transform-origin: top left;
}

/* Grid — динамичный, скошенный */
body.vstyle-kinetic .hero__grid {
    transform: skewX(-3deg);
    opacity: 0.3;
}

/* Орбиты — эллиптические (как движение) */
body.vstyle-kinetic .hero__orbit--1 {
    border-radius: 40% 60% 60% 40%;
    animation: kinetic-morph-orbit 20s ease-in-out infinite;
}
body.vstyle-kinetic .hero__orbit--2 {
    border-radius: 60% 40% 40% 60%;
    animation: kinetic-morph-orbit 30s ease-in-out infinite reverse;
}
@keyframes kinetic-morph-orbit {
    0%, 100% { border-radius: 40% 60% 60% 40%; }
    50%      { border-radius: 60% 40% 40% 60%; }
}

/* Лого — курсивный */
body.vstyle-kinetic .nav__logo-symbol {
    font-style: italic;
    letter-spacing: 0.01em;
}

/* Статы — motion blur */
body.vstyle-kinetic .hero__stat-value {
    font-style: italic;
    text-shadow: 4px 0 8px rgba(var(--accent-1-rgb), 0.1);
}

/* FAQ, CTA — лёгкий скос */
body.vstyle-kinetic .faq__item {
    border-radius: 4px;
}
body.vstyle-kinetic .cta-mid__inner,
body.vstyle-kinetic .cta-final__inner {
    border-radius: 8px;
}

/* Speed lines — декоративные */
body.vstyle-kinetic .hero__bg::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-1), transparent);
    opacity: 0.1;
    transform: rotate(-5deg);
    animation: kinetic-speed-lines 3s ease-in-out infinite alternate;
}
@keyframes kinetic-speed-lines {
    0%   { opacity: 0.05; width: 80px; }
    100% { opacity: 0.15; width: 150px; }
}

/* Showcase лого */
body.vstyle-kinetic .showcase__logo {
    font-style: italic;
    transform: skewX(-3deg);
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  LAYOUT ENGINE 1: ORBITAL LAYERS — Глубина и Центр             ║
   ║  Отказ от колонок. Всё вращается вокруг ядра.                  ║
   ║  Многослойность: видео → карточки → векторные орбиты.          ║
   ║  mix-blend-mode: screen. Текст по дугам.                       ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ── Глобальная трансформация: радиальная система ── */
body.vstyle-orbital {
    --section-pad: 100px;
    overflow-x: hidden;
}

/* Видео-фон туманностей (JS создаёт #orbital-video-bg) */
#orbital-video-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    filter: blur(4px) saturate(0.4);
    transition: opacity 1.5s ease;
}
body.vstyle-orbital #orbital-video-bg {
    opacity: 0.15;
}

/* Орбитные линии на переднем плане (JS создаёт #orbital-svg-overlay) */
#orbital-svg-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}
body.vstyle-orbital #orbital-svg-overlay {
    opacity: 1;
}

/* Двойное фоновое кольцо через псевдоэлементы */
body.vstyle-orbital::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 120vmax;
    height: 120vmax;
    margin: -60vmax 0 0 -60vmax;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-1-rgb), 0.04);
    pointer-events: none;
    z-index: 0;
    animation: orbital-ring-spin 120s linear infinite;
}
body.vstyle-orbital::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80vmax;
    height: 80vmax;
    margin: -40vmax 0 0 -40vmax;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-1-rgb), 0.06);
    pointer-events: none;
    z-index: 0;
    animation: orbital-ring-spin 80s linear infinite reverse;
}
@keyframes orbital-ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── HERO: Центральное ядро ── */
body.vstyle-orbital .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
}
body.vstyle-orbital .hero__content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}
body.vstyle-orbital .hero__title {
    font-weight: 200;
    font-size: clamp(40px, 7vw, 80px);
    letter-spacing: -0.04em;
    line-height: 1.0;
    text-shadow: 0 0 60px rgba(var(--accent-1-rgb), 0.15);
}
body.vstyle-orbital .hero__subtitle {
    margin: 0 auto 40px;
    text-align: center;
    opacity: 0.7;
    font-weight: 300;
    font-size: clamp(16px, 2.5vw, 22px);
}
body.vstyle-orbital .hero__actions {
    justify-content: center;
}
body.vstyle-orbital .hero__badge {
    margin: 0 auto 32px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    background: rgba(var(--accent-1-rgb), 0.05);
    border-color: rgba(var(--accent-1-rgb), 0.12);
}

/* Орбиты hero — усиленные, многослойные */
body.vstyle-orbital .hero__orbit {
    border-width: 1px;
    border-style: dashed;
    border-color: rgba(var(--accent-1-rgb), 0.08);
}
body.vstyle-orbital .hero__orbit--1 { width: 500px; height: 500px; animation-duration: 40s; }
body.vstyle-orbital .hero__orbit--2 { width: 800px; height: 800px; animation-duration: 70s; }
body.vstyle-orbital .hero__orbit--3 { width: 1100px; height: 1100px; animation-duration: 100s; }

/* Грид — радиальный вместо прямого */
body.vstyle-orbital .hero__grid {
    background-image: none;
    background: radial-gradient(circle at center, rgba(var(--accent-1-rgb), 0.04) 0%, transparent 60%);
    opacity: 1;
}

/* Aurora — усиленная центральная */
body.vstyle-orbital .hero__aurora {
    opacity: 0.12;
    filter: blur(60px);
}

/* Статы — по кругу / в линию с glow */
body.vstyle-orbital .hero__stats {
    justify-content: center;
    gap: 64px;
    border-top: none;
    padding-top: 48px;
}
body.vstyle-orbital .hero__stat-value {
    font-weight: 200;
    font-size: 42px;
    text-shadow: 0 0 30px rgba(var(--accent-1-rgb), 0.25);
}

/* ── Кнопки: капсульные, стеклянные ── */
body.vstyle-orbital .btn--primary {
    border-radius: 50px;
    font-weight: 400;
    padding: 16px 36px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(var(--accent-1-rgb), 0.12);
}
body.vstyle-orbital .btn--ghost {
    border-radius: 50px;
    backdrop-filter: blur(12px);
}
body.vstyle-orbital .nav__cta {
    border-radius: 50px;
}

/* ── Секции: центрированные заголовки ── */
body.vstyle-orbital .section-header {
    text-align: center;
}
body.vstyle-orbital .section-title {
    font-weight: 200;
    letter-spacing: -0.03em;
    text-align: center;
}
body.vstyle-orbital .section-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
body.vstyle-orbital .section-tag {
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    display: table;
}

/* ── Карточки: полупрозрачные, парящие ── */
body.vstyle-orbital .services__card,
body.vstyle-orbital .problem__card,
body.vstyle-orbital .cases__card,
body.vstyle-orbital .model__month {
    background: rgba(var(--accent-1-rgb), 0.02);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--accent-1-rgb), 0.06);
    border-radius: 24px;
    position: relative;
    z-index: 2;
}
body.vstyle-orbital .services__card:hover,
body.vstyle-orbital .problem__card:hover,
body.vstyle-orbital .cases__card:hover,
body.vstyle-orbital .model__month:hover {
    border-color: rgba(var(--accent-1-rgb), 0.15);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(var(--accent-1-rgb), 0.06);
    transform: translateY(-8px);
}

/* mix-blend-mode: screen для декоративных элементов */
body.vstyle-orbital .services__card::after {
    mix-blend-mode: screen;
}

/* Грид карточек — ярче центральная */
body.vstyle-orbital .problem__grid {
    gap: 32px;
}

/* ── Навигация: воздушная ── */
body.vstyle-orbital .nav__logo-symbol {
    font-weight: 200;
    letter-spacing: 0.15em;
    font-size: 28px;
}

/* ── CTA блоки ── */
body.vstyle-orbital .cta-mid__inner,
body.vstyle-orbital .cta-final__inner {
    border-radius: 32px;
    backdrop-filter: blur(16px);
    background: rgba(var(--accent-1-rgb), 0.02);
}

/* FAQ */
body.vstyle-orbital .faq__item {
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

/* Float tags — orbital */
body.vstyle-orbital .hero__float-tag {
    border-radius: 50px;
    backdrop-filter: blur(16px);
}

/* Showcase logo */
body.vstyle-orbital .showcase__logo {
    font-weight: 200;
    letter-spacing: 0.15em;
    text-shadow: 0 0 50px rgba(var(--accent-1-rgb), 0.2);
}

/* Orbital: pulsing center glow — Рек.1 */
body.vstyle-orbital .hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-1-rgb), 0.06) 0%, transparent 70%);
    animation: orbital-pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes orbital-pulse-glow {
    0%, 100% { transform: scale(0.9); opacity: 0.4; }
    50%      { transform: scale(1.15); opacity: 0.8; }
}

/* Trusted strip */
body.vstyle-orbital .trusted {
    border: none;
    background: transparent;
}

/* Crossfade overlay — Рек.4 */
#engine-crossfade-wrapper {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: var(--bg-primary, #0B0E11);
}

@media (max-width: 768px) {
    body.vstyle-orbital::before,
    body.vstyle-orbital::after { display: none; }
    body.vstyle-orbital .hero__title { font-size: clamp(28px, 8vw, 48px); }
    body.vstyle-orbital .hero__stat-value { font-size: 28px; }
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  LAYOUT ENGINE 2: STREET COLLAGE — Андеграундный Хаос          ║
   ║  Сломанная верстка. Overlap. Рваные маски. Шум и "краска".     ║
   ║  Текст под углом. Заголовки вылезают за экран.                 ║
   ║  Максимально грубый гротеск.                                   ║
   ╚══════════════════════════════════════════════════════════════════╝ */

body.vstyle-collage {
    --section-pad: 72px;
    --section-pad-mobile: 40px;
    overflow-x: hidden;
}

/* Глобальные плавные переходы для всех элементов */
body.vstyle-collage *:not(.collage-dragging) {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease,
                opacity 0.3s ease;
}

/* Шум-оверлей (мягче) */
body.vstyle-collage::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 512px 512px;
    mix-blend-mode: overlay;
    animation: collage-noise-drift 0.3s steps(3) infinite;
}
@keyframes collage-noise-drift {
    0%   { transform: translate(0, 0); }
    33%  { transform: translate(-2px, 1px); }
    66%  { transform: translate(1px, -1px); }
    100% { transform: translate(0, 0); }
}

/* "Протекающая краска" — мягче и тоньше */
body.vstyle-collage::after {
    content: '';
    position: fixed;
    top: 0;
    right: 7%;
    width: 2px;
    height: 100vh;
    z-index: 4;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(var(--accent-1-rgb), 0.1) 20%,
        rgba(var(--accent-1-rgb), 0.05) 45%,
        transparent 65%,
        rgba(var(--accent-1-rgb), 0.08) 80%,
        transparent 100%
    );
    animation: collage-drip 8s ease-in-out infinite alternate;
}
@keyframes collage-drip {
    0%   { height: 75vh; opacity: 0.5; }
    100% { height: 100vh; opacity: 0.8; }
}

/* ── HERO: Структурированный хаос ── */
body.vstyle-collage .hero {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 60px;
}
body.vstyle-collage .hero__content {
    max-width: none;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
}

/* Заголовок — крупный, но влезает в экран */
body.vstyle-collage .hero__title {
    font-size: clamp(40px, 9vw, 100px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-left: -1%;
    margin-right: 0;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
}
body.vstyle-collage .hero__title-accent {
    display: inline-block;
    transform: rotate(-1deg);
    position: relative;
}
/* "Рваная подложка" под акцентным текстом */
body.vstyle-collage .hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -6px;
    right: -6px;
    height: 35%;
    background: rgba(var(--accent-1-rgb), 0.1);
    z-index: -1;
    transform: rotate(0.3deg) skewX(-1deg);
    clip-path: polygon(0% 20%, 3% 0%, 8% 30%, 15% 5%, 22% 25%, 30% 0%, 38% 20%, 45% 5%, 55% 25%, 65% 0%, 72% 30%, 80% 5%, 88% 20%, 95% 0%, 100% 25%, 100% 100%, 0% 100%);
}

/* Подзаголовок */
body.vstyle-collage .hero__subtitle {
    transform: rotate(-0.8deg);
    max-width: 520px;
    font-weight: 600;
    font-size: clamp(15px, 2vw, 19px);
    margin-top: 28px;
    padding-left: 24px;
    border-left: 3px solid var(--accent-1);
}

/* Бейдж */
body.vstyle-collage .hero__badge {
    border-radius: 0;
    transform: rotate(-1.5deg);
    border-width: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.6);
}

/* Actions */
body.vstyle-collage .hero__actions {
    transform: rotate(-0.5deg);
    margin-left: 24px;
    margin-top: 32px;
}

/* Статы — лёгкий overlap */
body.vstyle-collage .hero__stats {
    border-top: none;
    gap: 12px;
    flex-wrap: wrap;
    transform: rotate(0.5deg) translateX(8px);
    padding-top: 36px;
}
body.vstyle-collage .hero__stat {
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.6);
    border: 1px solid var(--border-hover);
    border-radius: 0;
    padding: 16px 24px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body.vstyle-collage .hero__stat:nth-child(2) {
    transform: rotate(-1deg) translate(-6px, 4px);
    z-index: 2;
}
body.vstyle-collage .hero__stat:nth-child(3) {
    transform: rotate(0.8deg) translate(-12px, -3px);
    z-index: 1;
}
body.vstyle-collage .hero__stat-value {
    font-weight: 900;
    font-size: 32px;
}

/* Орбиты и aurora: ВЫКЛЮЧЕНЫ */
body.vstyle-collage .hero__orbit,
body.vstyle-collage .hero__aurora {
    display: none;
}

/* Grid → лёгкие линии */
body.vstyle-collage .hero__grid {
    opacity: 0.35;
    background-size: 30px 30px;
    transform: rotate(1deg) scale(1.05);
}

/* ── Кнопки: грубые, квадратные ── */
body.vstyle-collage .btn--primary {
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transform: rotate(-0.5deg);
    padding: 16px 32px;
    box-shadow: 4px 4px 0 rgba(var(--accent-1-rgb), 0.15);
}
body.vstyle-collage .btn--primary:hover {
    transform: rotate(-0.5deg) translateY(-3px);
    box-shadow: 6px 8px 0 rgba(var(--accent-1-rgb), 0.2);
}
body.vstyle-collage .btn--ghost {
    border-radius: 0;
    border-width: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
body.vstyle-collage .nav__cta {
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Секции: лёгкая асимметрия ── */
body.vstyle-collage .section-header {
    text-align: left;
    transform: rotate(-0.5deg);
    padding-left: 2%;
}
body.vstyle-collage .section-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 0.95;
    margin-left: -1%;
}
body.vstyle-collage .section-tag {
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transform: rotate(-1deg);
    box-shadow: 3px 3px 0 rgba(var(--accent-1-rgb), 0.1);
}

/* ── Карточки: overlap, рваные маски, повёрнуты ── */
body.vstyle-collage .services__card,
body.vstyle-collage .problem__card,
body.vstyle-collage .cases__card,
body.vstyle-collage .model__month {
    border-radius: 0;
    border-width: 2px;
    overflow: visible;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.65);
}

/* Overlap через отрицательные margins */
body.vstyle-collage .problem__grid {
    gap: 12px;
}
body.vstyle-collage .problem__card:nth-child(1) { transform: rotate(-0.8deg); z-index: 4; }
body.vstyle-collage .problem__card:nth-child(2) { transform: rotate(0.5deg) translate(-4px, 8px); z-index: 3; }
body.vstyle-collage .problem__card:nth-child(3) { transform: rotate(-0.3deg) translate(3px, -5px); z-index: 2; }
body.vstyle-collage .problem__card:nth-child(4) { transform: rotate(1deg) translate(-4px, 3px); z-index: 1; }

body.vstyle-collage .problem__card:hover {
    z-index: 10 !important;
    transform: rotate(0deg) scale(1.02) !important;
}

/* Services — overlap */
body.vstyle-collage .services__grid {
    gap: 10px;
}
body.vstyle-collage .services__card:nth-child(odd) {
    transform: rotate(-0.4deg);
    margin-right: -4px;
}
body.vstyle-collage .services__card:nth-child(even) {
    transform: rotate(0.3deg);
    margin-left: -4px;
    margin-top: -6px;
}
body.vstyle-collage .services__card:hover {
    z-index: 10 !important;
    transform: rotate(0deg) scale(1.01) !important;
}

/* Cases — рваная маска */
body.vstyle-collage .cases__card {
    clip-path: polygon(
        0% 3%, 4% 0%, 10% 2%, 18% 0%, 25% 3%, 35% 0%, 45% 2%,
        55% 0%, 65% 3%, 75% 0%, 85% 2%, 92% 0%, 100% 1%,
        100% 97%, 96% 100%, 88% 98%, 80% 100%, 72% 97%, 62% 100%,
        52% 98%, 42% 100%, 32% 97%, 22% 100%, 12% 98%, 5% 100%, 0% 99%
    );
    padding: 44px 36px;
}

/* Model months — stacked */
body.vstyle-collage .model__months {
    gap: 12px;
}
body.vstyle-collage .model__month:nth-child(1) { transform: rotate(0.5deg); z-index: 3; }
body.vstyle-collage .model__month:nth-child(2) { transform: rotate(-0.8deg) translate(-3px, 10px); z-index: 2; }
body.vstyle-collage .model__month:nth-child(3) { transform: rotate(0.3deg) translate(3px, -5px); z-index: 1; }

body.vstyle-collage .model__month:hover {
    z-index: 10 !important;
    transform: rotate(0deg) translateY(-5px) !important;
}

/* ── Навигация: грубая, тяжёлая ── */
body.vstyle-collage .nav__logo-symbol {
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 28px;
}

/* ── CTA: наклон, тень, стекло ── */
body.vstyle-collage .cta-mid__inner {
    border-radius: 0;
    border-width: 2px;
    transform: rotate(-0.3deg);
    box-shadow: 5px 5px 0 rgba(var(--accent-1-rgb), 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.6);
}
body.vstyle-collage .cta-final__inner {
    border-radius: 0;
    border-width: 2px;
    transform: rotate(0.2deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.6);
}

/* FAQ — квадратные, стекло */
body.vstyle-collage .faq__item {
    border-radius: 0;
    border-width: 2px;
    margin-bottom: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.55);
}
body.vstyle-collage .faq__item:nth-child(odd) {
    transform: rotate(-0.3deg);
}
body.vstyle-collage .faq__item:nth-child(even) {
    transform: rotate(0.3deg);
    margin-top: -2px;
}

/* About founder — наклон */
body.vstyle-collage .about__founder {
    border-radius: 0;
    border-width: 2px;
    transform: rotate(0.8deg);
}

/* Not-for cards */
body.vstyle-collage .not-for__item {
    border-radius: 0;
    border-width: 2px;
}
body.vstyle-collage .not-for__item:nth-child(odd) { transform: rotate(-0.5deg); }
body.vstyle-collage .not-for__item:nth-child(even) { transform: rotate(0.4deg); }

/* Float tags — грубые, стеклянные + мягкий влёт → парение */
body.vstyle-collage .hero__float-tag {
    border-radius: 0;
    border-width: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 20;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.7);
    opacity: 0;
}
/* Каждый бабл: мягкий влёт → затем оригинальный float-drift парение */
body.vstyle-collage .hero__float-tag--1 {
    --ufo-from-x: 60vw;
    --ufo-from-y: -40px;
    animation:
        collage-ufo-enter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 1.4s forwards,
        float-drift-1 14s ease-in-out 3.2s infinite;
}
body.vstyle-collage .hero__float-tag--2 {
    --ufo-from-x: -50vw;
    --ufo-from-y: -60px;
    animation:
        collage-ufo-enter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 1.8s forwards,
        float-drift-2 18s ease-in-out 3.6s infinite;
}
body.vstyle-collage .hero__float-tag--3 {
    --ufo-from-x: 55vw;
    --ufo-from-y: 30px;
    animation:
        collage-ufo-enter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 2.2s forwards,
        float-drift-3 16s ease-in-out 4.0s infinite;
}
body.vstyle-collage .hero__float-tag--4 {
    --ufo-from-x: -60vw;
    --ufo-from-y: -20px;
    animation:
        collage-ufo-enter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 2.5s forwards,
        float-drift-4 20s ease-in-out 4.3s infinite;
}

/* Мягкий влёт баблов: плавная дуга, минимальное покачивание */
@keyframes collage-ufo-enter {
    0% {
        opacity: 0;
        transform: translate(var(--ufo-from-x), var(--ufo-from-y)) rotate(1.5deg);
        filter: blur(3px);
    }
    30% {
        opacity: 0.3;
        transform: translate(10px, -4px) rotate(-0.5deg);
        filter: blur(1px);
    }
    55% {
        opacity: 0.45;
        transform: translate(-3px, 2px) rotate(0.2deg);
        filter: blur(0);
    }
    75% {
        opacity: 0.55;
        transform: translate(1px, -0.5px) rotate(-0.1deg);
    }
    90% {
        opacity: 0.58;
        transform: translate(-0.5px, 0.3px) rotate(0deg);
    }
    100% {
        opacity: 0.6;
        transform: translate(0, 0) rotate(0deg);
        filter: blur(0);
    }
}

/* Showcase logo */
body.vstyle-collage .showcase__logo {
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(-1deg);
}

/* Marquee — agressive */
body.vstyle-collage .marquee__item {
    -webkit-text-stroke-width: 2px;
    letter-spacing: 0.02em;
}

/* Рек.5 — Drag-to-rearrange: grab/dragging cursor */
body.vstyle-collage .services__card,
body.vstyle-collage .model__month {
    cursor: grab;
    user-select: none;
}
body.vstyle-collage .collage-dragging {
    cursor: grabbing !important;
    z-index: 50 !important;
    box-shadow: 12px 12px 0 rgba(var(--accent-1-rgb), 0.15) !important;
    opacity: 0.92;
}

/* Trusted — жёсткая напечатанная полоса */
body.vstyle-collage .trusted {
    transform: rotate(-0.5deg);
}

@media (max-width: 768px) {
    body.vstyle-collage .hero__title {
        font-size: clamp(36px, 10vw, 70px);
        white-space: normal;
        margin-right: 0;
    }
    body.vstyle-collage .hero__subtitle { padding-left: 16px; }
    body.vstyle-collage .hero__actions { margin-left: 0; transform: none; }
    body.vstyle-collage .hero__stats { transform: none; }
    body.vstyle-collage .hero__stat:nth-child(2),
    body.vstyle-collage .hero__stat:nth-child(3) { transform: none; }
    body.vstyle-collage .problem__card,
    body.vstyle-collage .services__card,
    body.vstyle-collage .model__month {
        transform: none !important;
        margin: 0 !important;
    }
    body.vstyle-collage .problem__grid,
    body.vstyle-collage .services__grid,
    body.vstyle-collage .model__months { gap: 16px; }

    body.vstyle-collage .collage-glass-float { display: none; }
}

/* ── Collage: Декоративные «Paint drops + liquid glass» ── */
body.vstyle-collage .collage-glass-float {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
    /* Тонкая стеклянная рамка */
    border: 1px solid rgba(var(--accent-1-rgb), 0.10);
    background:
        /* Блик жидкого стекла */
        radial-gradient(
            ellipse at 25% 20%,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 40%,
            transparent 65%
        ),
        /* Ядро капли краски */
        radial-gradient(
            ellipse at 45% 50%,
            rgba(var(--accent-1-rgb), 0.16) 0%,
            rgba(var(--accent-1-rgb), 0.08) 35%,
            rgba(var(--accent-1-rgb), 0.03) 60%,
            transparent 80%
        ),
        /* Стеклянная подложка */
        linear-gradient(
            160deg,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(var(--accent-1-rgb), 0.02) 50%,
            rgba(255, 255, 255, 0.01) 100%
        );
    /* Жидкое стекло */
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    /* Начальная форма — органическая клякса */
    border-radius: 60% 40% 55% 45% / 50% 62% 38% 50%;
    opacity: 0;
    transition: opacity 1.5s ease;
    will-change: border-radius, transform;
    /* Свечение */
    box-shadow:
        inset 0 0 40px rgba(var(--accent-1-rgb), 0.04),
        0 4px 40px rgba(var(--accent-1-rgb), 0.06),
        0 0 100px rgba(var(--accent-1-rgb), 0.04);
    mix-blend-mode: screen;
}

body.vstyle-collage .collage-glass-float.glass-visible {
    opacity: 1;
}

/* Morph-drift — капли краски живут: круглые → овальные → рваные кляксы */
@keyframes spray-drift-1 {
    0%   { border-radius: 60% 40% 55% 45% / 50% 62% 38% 50%;
           transform: translate(0, 0) rotate(var(--glass-rot, 0deg)) scale(1, 1); }
    12%  { border-radius: 48% 52% 48% 52% / 48% 52% 48% 52%;
           transform: translate(6px, -5px) rotate(calc(var(--glass-rot, 0deg) + 2deg)) scale(1.06, 0.95); }
    28%  { border-radius: 72% 28% 65% 35% / 35% 70% 30% 65%;
           transform: translate(-4px, -18px) rotate(calc(var(--glass-rot, 0deg) - 1.5deg)) scale(0.92, 1.08); }
    42%  { border-radius: 40% 60% 35% 65% / 65% 40% 60% 35%;
           transform: translate(10px, -8px) rotate(calc(var(--glass-rot, 0deg) + 3deg)) scale(1.1, 0.9); }
    58%  { border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
           transform: translate(-7px, -22px) rotate(calc(var(--glass-rot, 0deg) - 2deg)) scale(0.95, 1.05); }
    72%  { border-radius: 30% 70% 62% 38% / 58% 35% 65% 42%;
           transform: translate(8px, -12px) rotate(calc(var(--glass-rot, 0deg) + 1deg)) scale(1.04, 0.96); }
    88%  { border-radius: 65% 35% 42% 58% / 38% 62% 42% 58%;
           transform: translate(-3px, -6px) rotate(calc(var(--glass-rot, 0deg) - 0.5deg)) scale(0.97, 1.03); }
    100% { border-radius: 60% 40% 55% 45% / 50% 62% 38% 50%;
           transform: translate(0, 0) rotate(var(--glass-rot, 0deg)) scale(1, 1); }
}
@keyframes spray-drift-2 {
    0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
           transform: translate(0, 0) rotate(var(--glass-rot, 0deg)) scale(1, 1); }
    15%  { border-radius: 68% 32% 55% 45% / 42% 65% 35% 58%;
           transform: translate(-8px, -10px) rotate(calc(var(--glass-rot, 0deg) - 2.5deg)) scale(0.9, 1.1); }
    30%  { border-radius: 35% 65% 70% 30% / 60% 38% 62% 40%;
           transform: translate(5px, -25px) rotate(calc(var(--glass-rot, 0deg) + 1.5deg)) scale(1.08, 0.93); }
    48%  { border-radius: 55% 45% 40% 60% / 35% 55% 45% 65%;
           transform: translate(-10px, -14px) rotate(calc(var(--glass-rot, 0deg) - 1deg)) scale(0.94, 1.06); }
    62%  { border-radius: 45% 55% 58% 42% / 52% 42% 58% 48%;
           transform: translate(7px, -20px) rotate(calc(var(--glass-rot, 0deg) + 3deg)) scale(1.1, 0.92); }
    78%  { border-radius: 62% 38% 32% 68% / 40% 60% 35% 65%;
           transform: translate(-5px, -8px) rotate(calc(var(--glass-rot, 0deg) - 1.8deg)) scale(0.96, 1.04); }
    90%  { border-radius: 42% 58% 52% 48% / 58% 45% 55% 42%;
           transform: translate(3px, -4px) rotate(calc(var(--glass-rot, 0deg) + 0.5deg)) scale(1.02, 0.98); }
    100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
           transform: translate(0, 0) rotate(var(--glass-rot, 0deg)) scale(1, 1); }
}
@keyframes spray-drift-3 {
    0%   { border-radius: 45% 55% 60% 40% / 55% 40% 60% 45%;
           transform: translate(0, 0) rotate(var(--glass-rot, 0deg)) scale(1, 1); }
    10%  { border-radius: 70% 30% 45% 55% / 32% 68% 38% 62%;
           transform: translate(9px, -8px) rotate(calc(var(--glass-rot, 0deg) + 3.5deg)) scale(1.12, 0.88); }
    25%  { border-radius: 38% 62% 55% 45% / 48% 52% 48% 52%;
           transform: translate(-6px, -20px) rotate(calc(var(--glass-rot, 0deg) - 2deg)) scale(0.93, 1.07); }
    40%  { border-radius: 52% 48% 35% 65% / 65% 35% 55% 45%;
           transform: translate(12px, -15px) rotate(calc(var(--glass-rot, 0deg) + 1deg)) scale(1.05, 0.95); }
    55%  { border-radius: 28% 72% 62% 38% / 42% 58% 40% 60%;
           transform: translate(-8px, -28px) rotate(calc(var(--glass-rot, 0deg) - 3deg)) scale(0.88, 1.12); }
    70%  { border-radius: 58% 42% 48% 52% / 52% 48% 52% 48%;
           transform: translate(5px, -10px) rotate(calc(var(--glass-rot, 0deg) + 2deg)) scale(1.08, 0.94); }
    85%  { border-radius: 42% 58% 68% 32% / 38% 62% 45% 55%;
           transform: translate(-3px, -5px) rotate(calc(var(--glass-rot, 0deg) - 0.8deg)) scale(0.97, 1.03); }
    100% { border-radius: 45% 55% 60% 40% / 55% 40% 60% 45%;
           transform: translate(0, 0) rotate(var(--glass-rot, 0deg)) scale(1, 1); }
}

body.vstyle-collage .collage-glass-float.glass-visible {
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}
body.vstyle-collage .collage-glass-float:nth-child(3n+1) { animation-name: spray-drift-1; animation-duration: 14s; }
body.vstyle-collage .collage-glass-float:nth-child(3n+2) { animation-name: spray-drift-2; animation-duration: 18s; }
body.vstyle-collage .collage-glass-float:nth-child(3n)   { animation-name: spray-drift-3; animation-duration: 16s; }

@media (prefers-reduced-motion: reduce) {
    body.vstyle-collage .collage-glass-float.glass-visible { animation: none; }
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  COLLAGE OLD — Чистый CSS Collage (первая итерация)            ║
   ║  Наклоны, рваные края, hover → выравнивание.                   ║
   ║  Без JS-движка: нет drag, нет scroll jitter, нет FLIP scatter. ║
   ╚══════════════════════════════════════════════════════════════════╝ */

body.vstyle-collage-old {
    --section-pad: 80px;
    overflow-x: hidden;
}

body.vstyle-collage-old *{
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease,
                opacity 0.3s ease;
}

/* Шум-оверлей */
body.vstyle-collage-old::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 512px 512px;
    mix-blend-mode: overlay;
    animation: collage-noise-drift 0.3s steps(3) infinite;
}

/* Протекающая краска */
body.vstyle-collage-old::after {
    content: '';
    position: fixed;
    top: 0;
    right: 7%;
    width: 2px;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(var(--accent-1-rgb), 0.1) 20%,
        rgba(var(--accent-1-rgb), 0.05) 45%,
        transparent 65%,
        rgba(var(--accent-1-rgb), 0.08) 80%,
        transparent 100%
    );
    animation: collage-drip 8s ease-in-out infinite alternate;
}

/* ── HERO ── */
body.vstyle-collage-old .hero {
    text-align: left;
    padding-top: 100px;
    padding-bottom: 60px;
}
body.vstyle-collage-old .hero__content {
    max-width: none;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
}
body.vstyle-collage-old .hero__title {
    font-size: clamp(40px, 9vw, 100px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-left: -1%;
    margin-right: 0;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
}
body.vstyle-collage-old .hero__title-accent {
    display: inline-block;
    transform: rotate(-1deg);
    position: relative;
}
body.vstyle-collage-old .hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -6px;
    right: -6px;
    height: 35%;
    background: rgba(var(--accent-1-rgb), 0.1);
    z-index: -1;
    transform: rotate(0.3deg) skewX(-1deg);
    clip-path: polygon(0% 20%, 3% 0%, 8% 30%, 15% 5%, 22% 25%, 30% 0%, 38% 20%, 45% 5%, 55% 25%, 65% 0%, 72% 30%, 80% 5%, 88% 20%, 95% 0%, 100% 25%, 100% 100%, 0% 100%);
}
body.vstyle-collage-old .hero__subtitle {
    transform: rotate(-0.8deg);
    max-width: 520px;
    font-weight: 600;
    font-size: clamp(15px, 2vw, 19px);
    margin-top: 28px;
    padding-left: 24px;
    border-left: 3px solid var(--accent-1);
}
body.vstyle-collage-old .hero__badge {
    border-radius: 0;
    transform: rotate(-1.5deg);
    border-width: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.6);
}
body.vstyle-collage-old .hero__actions {
    transform: rotate(-0.5deg);
    margin-left: 24px;
    margin-top: 32px;
}
body.vstyle-collage-old .hero__stats {
    border-top: none;
    gap: 12px;
    flex-wrap: wrap;
    transform: rotate(0.5deg) translateX(8px);
    padding-top: 36px;
}
body.vstyle-collage-old .hero__stat {
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.6);
    border: 1px solid var(--border-hover);
    border-radius: 0;
    padding: 16px 24px;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body.vstyle-collage-old .hero__stat:nth-child(2) {
    transform: rotate(-1deg) translate(-6px, 4px);
    z-index: 2;
}
body.vstyle-collage-old .hero__stat:nth-child(3) {
    transform: rotate(0.8deg) translate(-12px, -3px);
    z-index: 1;
}
body.vstyle-collage-old .hero__stat-value {
    font-weight: 900;
    font-size: 32px;
}
body.vstyle-collage-old .hero__orbit,
body.vstyle-collage-old .hero__aurora {
    display: none;
}
body.vstyle-collage-old .hero__grid {
    opacity: 0.35;
    background-size: 30px 30px;
    transform: rotate(1deg) scale(1.05);
}

/* ── Кнопки ── */
body.vstyle-collage-old .btn--primary {
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transform: rotate(-0.5deg);
    padding: 16px 32px;
    box-shadow: 4px 4px 0 rgba(var(--accent-1-rgb), 0.15);
}
body.vstyle-collage-old .btn--primary:hover {
    transform: rotate(-0.5deg) translateY(-3px);
    box-shadow: 6px 8px 0 rgba(var(--accent-1-rgb), 0.2);
}
body.vstyle-collage-old .btn--ghost {
    border-radius: 0;
    border-width: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
body.vstyle-collage-old .nav__cta {
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Секции ── */
body.vstyle-collage-old .section-header {
    text-align: left;
    transform: rotate(-0.5deg);
    padding-left: 2%;
}
body.vstyle-collage-old .section-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 0.95;
    margin-left: -1%;
}
body.vstyle-collage-old .section-tag {
    border-radius: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transform: rotate(-1deg);
    box-shadow: 3px 3px 0 rgba(var(--accent-1-rgb), 0.1);
}

/* ── Карточки: наклоны, hover → выравнивание ── */
body.vstyle-collage-old .services__card,
body.vstyle-collage-old .problem__card,
body.vstyle-collage-old .cases__card,
body.vstyle-collage-old .model__month {
    border-radius: 0;
    border-width: 2px;
    overflow: visible;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.65);
}

body.vstyle-collage-old .problem__grid { gap: 12px; }
body.vstyle-collage-old .problem__card:nth-child(1) { transform: rotate(-0.8deg); z-index: 4; }
body.vstyle-collage-old .problem__card:nth-child(2) { transform: rotate(0.5deg) translate(-4px, 8px); z-index: 3; }
body.vstyle-collage-old .problem__card:nth-child(3) { transform: rotate(-0.3deg) translate(3px, -5px); z-index: 2; }
body.vstyle-collage-old .problem__card:nth-child(4) { transform: rotate(1deg) translate(-4px, 3px); z-index: 1; }

body.vstyle-collage-old .problem__card:hover {
    z-index: 10 !important;
    transform: rotate(0deg) scale(1.02) !important;
}

body.vstyle-collage-old .services__grid { gap: 10px; }
body.vstyle-collage-old .services__card:nth-child(odd) {
    transform: rotate(-0.4deg);
    margin-right: -4px;
}
body.vstyle-collage-old .services__card:nth-child(even) {
    transform: rotate(0.3deg);
    margin-left: -4px;
    margin-top: -6px;
}
body.vstyle-collage-old .services__card:hover {
    z-index: 10 !important;
    transform: rotate(0deg) scale(1.01) !important;
}

/* Cases — рваная маска */
body.vstyle-collage-old .cases__card {
    clip-path: polygon(
        0% 3%, 4% 0%, 10% 2%, 18% 0%, 25% 3%, 35% 0%, 45% 2%,
        55% 0%, 65% 3%, 75% 0%, 85% 2%, 92% 0%, 100% 1%,
        100% 97%, 96% 100%, 88% 98%, 80% 100%, 72% 97%, 62% 100%,
        52% 98%, 42% 100%, 32% 97%, 22% 100%, 12% 98%, 5% 100%, 0% 99%
    );
    padding: 44px 36px;
}

body.vstyle-collage-old .model__months { gap: 12px; }
body.vstyle-collage-old .model__month:nth-child(1) { transform: rotate(0.5deg); z-index: 3; }
body.vstyle-collage-old .model__month:nth-child(2) { transform: rotate(-0.8deg) translate(-3px, 10px); z-index: 2; }
body.vstyle-collage-old .model__month:nth-child(3) { transform: rotate(0.3deg) translate(3px, -5px); z-index: 1; }

body.vstyle-collage-old .model__month:hover {
    z-index: 10 !important;
    transform: rotate(0deg) translateY(-5px) !important;
}

/* ── Навигация ── */
body.vstyle-collage-old .nav__logo-symbol {
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 28px;
}

/* ── CTA ── */
body.vstyle-collage-old .cta-mid__inner {
    border-radius: 0;
    border-width: 2px;
    transform: rotate(-0.3deg);
    box-shadow: 5px 5px 0 rgba(var(--accent-1-rgb), 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.6);
}
body.vstyle-collage-old .cta-final__inner {
    border-radius: 0;
    border-width: 2px;
    transform: rotate(0.2deg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.6);
}

/* FAQ */
body.vstyle-collage-old .faq__item {
    border-radius: 0;
    border-width: 2px;
    margin-bottom: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.55);
}
body.vstyle-collage-old .faq__item:nth-child(odd) { transform: rotate(-0.3deg); }
body.vstyle-collage-old .faq__item:nth-child(even) { transform: rotate(0.3deg); margin-top: -2px; }

/* About founder */
body.vstyle-collage-old .about__founder {
    border-radius: 0;
    border-width: 2px;
    transform: rotate(0.8deg);
}

/* Not-for cards */
body.vstyle-collage-old .not-for__item {
    border-radius: 0;
    border-width: 2px;
}
body.vstyle-collage-old .not-for__item:nth-child(odd) { transform: rotate(-0.5deg); }
body.vstyle-collage-old .not-for__item:nth-child(even) { transform: rotate(0.4deg); }

/* Float tags */
body.vstyle-collage-old .hero__float-tag {
    border-radius: 0;
    border-width: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 20;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.7);
    opacity: 0.6;
}

body.vstyle-collage-old .showcase__logo {
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(-1deg);
}
body.vstyle-collage-old .marquee__item {
    -webkit-text-stroke-width: 2px;
    letter-spacing: 0.02em;
}
body.vstyle-collage-old .hero__orbit,
body.vstyle-collage-old .hero__aurora {
    display: none;
}
body.vstyle-collage-old .trusted {
    transform: rotate(-0.5deg);
}

/* Collage Old: скрываем fly-in по аналогии с collage */
body.vstyle-collage-old .problem__grid > .problem__card,
body.vstyle-collage-old .problem__grid.stagger-children.animated > .problem__card {
    opacity: 1 !important;
    filter: none !important;
}

body.vstyle-collage-old [data-animate="fade-up"] {
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    body.vstyle-collage-old .hero__title {
        font-size: clamp(36px, 10vw, 70px);
        white-space: normal;
        margin-right: 0;
    }
    body.vstyle-collage-old .hero__subtitle { padding-left: 16px; }
    body.vstyle-collage-old .hero__actions { margin-left: 0; transform: none; }
    body.vstyle-collage-old .hero__stats { transform: none; }
    body.vstyle-collage-old .hero__stat:nth-child(2),
    body.vstyle-collage-old .hero__stat:nth-child(3) { transform: none; }
    body.vstyle-collage-old .problem__card,
    body.vstyle-collage-old .services__card,
    body.vstyle-collage-old .model__month {
        transform: none !important;
        margin: 0 !important;
    }
    body.vstyle-collage-old .problem__grid,
    body.vstyle-collage-old .services__grid,
    body.vstyle-collage-old .model__months { gap: 16px; }
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  LAYOUT ENGINE 3: KINETIC VECTOR — Движение и Скорость         ║
   ║  Весь сайт под углом -5°. Никакого курсива.                    ║
   ║  Motion blur на фото. Стрелки-векторы. Текст в потоке.         ║
   ║  Острые углы. Энергия через геометрию.                         ║
   ╚══════════════════════════════════════════════════════════════════╝ */

body.vstyle-vector {
    --section-pad: 100px;
    overflow-x: hidden;
}

/* ── Глобальный наклон всего контента ── */
body.vstyle-vector .hero,
body.vstyle-vector .problem,
body.vstyle-vector .approach,
body.vstyle-vector .model,
body.vstyle-vector .services,
body.vstyle-vector .cases,
body.vstyle-vector .cta-mid,
body.vstyle-vector .process,
body.vstyle-vector .about,
body.vstyle-vector .not-for,
body.vstyle-vector .faq,
body.vstyle-vector .cta-final,
body.vstyle-vector .trusted,
body.vstyle-vector .marquee,
body.vstyle-vector .footer {
    transform: rotate(-3deg);
    transform-origin: center center;
}

/* Компенсация: расширяем чтобы не было видно краёв */
body.vstyle-vector .hero,
body.vstyle-vector .problem,
body.vstyle-vector .model,
body.vstyle-vector .services,
body.vstyle-vector .cases,
body.vstyle-vector .process,
body.vstyle-vector .about,
body.vstyle-vector .not-for,
body.vstyle-vector .faq,
body.vstyle-vector .cta-final,
body.vstyle-vector .trusted,
body.vstyle-vector .footer {
    margin-left: -5%;
    margin-right: -5%;
    padding-left: calc(5% + var(--container-pad));
    padding-right: calc(5% + var(--container-pad));
    width: 110%;
}

/* Световые шлейфы — длинная выдержка */
body.vstyle-vector::before {
    content: '';
    position: fixed;
    top: 0;
    left: -30%;
    width: 160%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.05;
    background:
        linear-gradient(160deg, transparent 25%, var(--accent-1) 40%, transparent 50%),
        linear-gradient(160deg, transparent 55%, var(--accent-2) 70%, transparent 80%),
        linear-gradient(160deg, transparent 75%, var(--accent-1) 85%, transparent 92%);
    animation: vector-multi-streak 10s ease-in-out infinite alternate;
    transform: rotate(-3deg);
}
@keyframes vector-multi-streak {
    0%   { transform: translateX(-8%) rotate(-3deg); opacity: 0.03; }
    100% { transform: translateX(8%) rotate(-3deg); opacity: 0.06; }
}

/* Направляющие стрелки (JS создаёт #vector-arrows-overlay) */
#vector-arrows-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}
body.vstyle-vector #vector-arrows-overlay {
    opacity: 1;
}

/* ── HERO: наклон + острота ── */
body.vstyle-vector .hero__title {
    font-weight: 800;
    letter-spacing: -0.03em;
    font-style: normal !important;
    /* НИКАКОГО курсива */
}
body.vstyle-vector .section-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    font-style: normal !important;
}

/* Подзаголовок — линейный, стремительный */
body.vstyle-vector .hero__subtitle {
    font-weight: 500;
    max-width: 480px;
    letter-spacing: 0.01em;
    font-style: normal !important;
}

/* Бейдж — скошенный параллелограмм */
body.vstyle-vector .hero__badge {
    border-radius: 2px;
    transform: skewX(-8deg);
    padding: 8px 20px;
}
body.vstyle-vector .hero__badge > * {
    transform: skewX(8deg);
}

body.vstyle-vector .section-tag {
    border-radius: 2px;
    transform: skewX(-8deg);
}

/* ── Кнопки: параллелограммы ── */
body.vstyle-vector .btn--primary {
    border-radius: 2px;
    transform: skewX(-8deg);
    font-weight: 700;
    font-style: normal !important;
    padding: 14px 32px;
    letter-spacing: 0.02em;
}
body.vstyle-vector .btn--primary > * {
    display: inline-block;
    transform: skewX(8deg);
}
body.vstyle-vector .btn--primary:hover {
    transform: skewX(-8deg) translateY(-3px);
}
body.vstyle-vector .btn--ghost {
    border-radius: 2px;
    transform: skewX(-8deg);
    font-style: normal !important;
}
body.vstyle-vector .nav__cta {
    border-radius: 2px;
    transform: skewX(-8deg);
    font-style: normal !important;
}

/* ── Карточки: острые углы, direction-based shadows ── */
body.vstyle-vector .services__card,
body.vstyle-vector .problem__card,
body.vstyle-vector .cases__card,
body.vstyle-vector .model__month {
    border-radius: 2px;
    overflow: hidden;
    font-style: normal !important;
}
body.vstyle-vector .services__card:hover,
body.vstyle-vector .problem__card:hover,
body.vstyle-vector .cases__card:hover,
body.vstyle-vector .model__month:hover {
    transform: translateY(-6px) translateX(4px);
    box-shadow: -8px 20px 50px rgba(0, 0, 0, 0.35),
                4px 0 30px rgba(var(--accent-1-rgb), 0.05);
}

/* Акцентная полоска — наклонная */
body.vstyle-vector .services__card::before {
    width: 3px;
    transform: skewY(-20deg);
    transform-origin: top left;
}

/* ── Grid: диагональный ── */
body.vstyle-vector .hero__grid {
    background-image:
        linear-gradient(160deg, var(--border) 1px, transparent 1px),
        linear-gradient(70deg, var(--border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Орбиты → линейные направляющие */
body.vstyle-vector .hero__orbit {
    border-radius: 0 !important;
    border: none;
    border-bottom: 1px solid rgba(var(--accent-1-rgb), 0.06);
    animation: none !important;
    transform: translate(-50%, -50%) rotate(-3deg) !important;
}

/* Aurora */
body.vstyle-vector .hero__aurora {
    opacity: 0.06;
    transform: rotate(-3deg);
}

/* ── Навигация ── */
body.vstyle-vector .nav__logo-symbol {
    font-weight: 800;
    letter-spacing: 0.08em;
    font-style: normal !important;
}

/* ── CTA: sharp corners ── */
body.vstyle-vector .cta-mid__inner {
    border-radius: 2px;
}
body.vstyle-vector .cta-final__inner {
    border-radius: 2px;
}

/* FAQ */
body.vstyle-vector .faq__item {
    border-radius: 2px;
}

/* Stats — direction shadows */
body.vstyle-vector .hero__stat-value {
    font-weight: 800;
    font-style: normal !important;
    text-shadow: 6px 0 12px rgba(var(--accent-1-rgb), 0.08);
}

/* Float tags — parallelogram */
body.vstyle-vector .hero__float-tag {
    border-radius: 2px;
    transform: skewX(-5deg);
}

/* About founder */
body.vstyle-vector .about__founder {
    border-radius: 4px;
}

/* Marquee — скорость x2 */
body.vstyle-vector .marquee__track {
    animation-duration: 30s;
}

/* Showcase logo */
body.vstyle-vector .showcase__logo {
    font-weight: 800;
    letter-spacing: 0.05em;
    font-style: normal !important;
    transform: skewX(-5deg);
}

/* Horizontal scroll text created by JS */
.vector-hscroll-text {
    position: fixed;
    z-index: 1;
    pointer-events: none;
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    -webkit-text-stroke: 1px rgba(var(--accent-1-rgb), 0.08);
    color: transparent;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-style: normal !important;
}
body.vstyle-vector .vector-hscroll-text {
    opacity: 1;
}
.vector-hscroll-text--top {
    top: 15%;
}
.vector-hscroll-text--bottom {
    bottom: 10%;
}

@media (max-width: 768px) {
    body.vstyle-vector .hero,
    body.vstyle-vector .problem,
    body.vstyle-vector .approach,
    body.vstyle-vector .model,
    body.vstyle-vector .services,
    body.vstyle-vector .cases,
    body.vstyle-vector .cta-mid,
    body.vstyle-vector .process,
    body.vstyle-vector .about,
    body.vstyle-vector .not-for,
    body.vstyle-vector .faq,
    body.vstyle-vector .cta-final,
    body.vstyle-vector .trusted,
    body.vstyle-vector .marquee,
    body.vstyle-vector .footer {
        transform: rotate(-2deg);
        margin-left: -3%;
        margin-right: -3%;
        width: 106%;
        padding-left: calc(3% + var(--container-pad));
        padding-right: calc(3% + var(--container-pad));
    }

    body.vstyle-vector .hero__badge { transform: skewX(-5deg); }
    body.vstyle-vector .btn--primary { transform: skewX(-5deg); }
}


/* ============================================
   THEME SWITCHER
   ============================================ */
.theme-switcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.theme-switcher__toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    color: var(--text-secondary);
    font-size: 20px;
    backdrop-filter: blur(12px);
}

.theme-switcher__toggle:hover {
    transform: scale(1.1);
    border-color: var(--accent-1);
    color: var(--accent-1);
    box-shadow: 0 0 24px rgba(var(--accent-1-rgb), 0.15);
}

.theme-switcher__panel {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
}

.theme-switcher__panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.theme-switcher__title {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.theme-switcher__divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.theme-switcher__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.theme-switcher__swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.theme-switcher__swatch:hover {
    transform: scale(1.2);
}

.theme-switcher__swatch.active {
    border-color: var(--accent-1);
    box-shadow: 0 0 12px rgba(var(--accent-1-rgb), 0.3);
}

.theme-switcher__swatch::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
}

.theme-switcher__label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
    grid-column: 1 / -1;
    font-family: var(--font-mono);
}

/* Style Switcher Items */
.style-switcher__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.style-switcher__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--text-secondary);
    width: 100%;
    text-align: left;
}

.style-switcher__item:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: var(--border);
}

.style-switcher__item.active {
    background: var(--bg-card-hover);
    color: var(--accent-1);
    border-color: var(--accent-1);
}

.style-switcher__icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.style-switcher__name {
    flex: 1;
}

.style-switcher__tag {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-1-rgb), 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    will-change: left, top;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    /* iPhone notch / safe area support */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-bottom: env(safe-area-inset-bottom);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease-out);
}

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

ul, ol {
    list-style: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
    background: none;
}

::selection {
    background: var(--accent-1);
    color: var(--bg-primary);
}

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

/* ============================================
   TYPOGRAPHY UTILS
   ============================================ */
.text-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-1);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(var(--accent-1-rgb), 0.08);
    border: 1px solid rgba(var(--accent-1-rgb), 0.15);
    border-radius: 100px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-accent);
    color: #000;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(var(--accent-1-rgb), 0.3), 0 0 0 1px rgba(var(--accent-1-rgb), 0.2);
}

.btn--primary:active {
    transform: translateY(0);
}

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

.btn--ghost:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

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

.btn__arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--duration) var(--ease-out);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--container-pad);
    transition: all var(--duration) var(--ease-out);
}

.nav--scrolled {
    background: rgba(11, 14, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav__logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
    gap: 2px;
}

.nav__logo-symbol {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.12em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__logo-tagline {
    font-family: var(--font-mono, var(--font-body));
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Tagline vstyle adaptations */
body.vstyle-collage .nav__logo-tagline,
body.vstyle-collage-old .nav__logo-tagline {
    transform: rotate(-1deg);
    font-weight: 800;
    letter-spacing: 0.12em;
}
body.vstyle-monolith .nav__logo-tagline {
    letter-spacing: 0.3em;
    font-weight: 700;
    opacity: 0.4;
}
body.vstyle-street .nav__logo-tagline {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
}
body.vstyle-handtag .nav__logo-tagline {
    font-family: 'Kalam', cursive;
    font-weight: 400;
    letter-spacing: 0.02em;
    transform: rotate(-2deg);
    opacity: 0.7;
}
body.vstyle-orbital .nav__logo-tagline {
    font-weight: 300;
    letter-spacing: 0.2em;
    opacity: 0.4;
}
body.vstyle-glitch .nav__logo-tagline {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
    animation: glitch 5s infinite;
}
body.vstyle-kinetic .nav__logo-tagline {
    font-style: italic;
    font-weight: 700;
    transform: skewX(-3deg);
}
body.vstyle-vector .nav__logo-tagline {
    font-weight: 700;
    transform: skewX(-5deg);
    letter-spacing: 0.06em;
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration) var(--ease-out);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-1);
    transition: width var(--duration) var(--ease-out);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: var(--gradient-accent);
    color: #000;
    transition: all var(--duration) var(--ease-out);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(var(--accent-1-rgb), 0.3), 0 0 0 1px rgba(var(--accent-1-rgb), 0.2);
    filter: brightness(1.1);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration) var(--ease-out);
}

.nav__burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav__burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

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

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 20%, transparent 100%);
}

.hero__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-1-rgb), 0.06);
}

.hero__orbit--1 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 60s linear infinite;
}

.hero__orbit--2 {
    width: 900px;
    height: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 90s linear infinite reverse;
    border-color: rgba(77, 163, 255, 0.04);
}

.hero__orbit--3 {
    width: 1200px;
    height: 1200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 120s linear infinite;
    border-color: rgba(var(--accent-1-rgb), 0.03);
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-1);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--accent-1-rgb), 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(var(--accent-1-rgb), 0); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

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

.hero__subtitle {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__stats {
    display: flex;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    animation: heroStatFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--stat-i, 0) * 1.2s);
}
.hero__stat:nth-child(1) { --stat-i: 0; }
.hero__stat:nth-child(2) { --stat-i: 1; }
.hero__stat:nth-child(3) { --stat-i: 2; }

@keyframes heroStatFloat {
    0%, 100% { transform: translate(0, 0); }
    25%      { transform: translate(2px, -4px); }
    50%      { transform: translate(-1px, 3px); }
    75%      { transform: translate(3px, -2px); }
}

.hero__stat-value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-suffix {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-1);
}

.hero__stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    font-family: var(--font-mono);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-1), transparent);
    animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── Hero floating anti-promise tags ── */
.hero__float-tag {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 20px;
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.45);
    border: 1px solid rgba(var(--accent-1-rgb), 0.08);
    border-radius: 24px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0.55;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 20;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15),
               inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* --1: «Не обещаем быстрые чудеса» — правый верх */
.hero__float-tag--1 {
    top: 13.8%;
    right: 10.8%;
    animation: float-drift-1 14s ease-in-out infinite;
}

/* --2: «Не продаём секретные связки» — поднимаем выше */
.hero__float-tag--2 {
    top: 30.4%;
    right: 4%;
    animation: float-drift-2 18s ease-in-out infinite;
}

/* --3: «Не гонимся за инфо-шумом» — справа, ниже всех, ближе к центру */
.hero__float-tag--3 {
    top: 66.1%;
    right: 25.1%;
    left: auto;
    animation: float-drift-3 16s ease-in-out infinite;
}

/* --4: «Не стремимся к просто красивым отчётам» — справа, чуть ниже */
.hero__float-tag--4 {
    top: 53.7%;
    right: 12%;
    left: auto;
    animation: float-drift-4 20s ease-in-out infinite;
}

@keyframes float-drift-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-8px, 14px) rotate(0.8deg); }
    40% { transform: translate(5px, -8px) rotate(-0.5deg); }
    60% { transform: translate(-10px, 6px) rotate(1deg); }
    80% { transform: translate(7px, -5px) rotate(-0.3deg); }
}

@keyframes float-drift-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(10px, -10px) rotate(-0.6deg); }
    40% { transform: translate(-6px, 16px) rotate(0.8deg); }
    60% { transform: translate(12px, -4px) rotate(-0.4deg); }
    80% { transform: translate(-8px, 8px) rotate(0.6deg); }
}

@keyframes float-drift-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(6px, 12px) rotate(0.7deg); }
    40% { transform: translate(-10px, -6px) rotate(-0.9deg); }
    60% { transform: translate(8px, -10px) rotate(0.5deg); }
    80% { transform: translate(-5px, 8px) rotate(-0.3deg); }
}

@keyframes float-drift-4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(-7px, -10px) rotate(-0.5deg); }
    40% { transform: translate(10px, 5px) rotate(0.7deg); }
    60% { transform: translate(-5px, 8px) rotate(-0.4deg); }
    80% { transform: translate(8px, -6px) rotate(0.3deg); }
}

@media (max-width: 768px) {
    .hero__float-tag {
        font-size: 10px;
        padding: 4px 10px;
        opacity: 0.35;
    }
    .hero__float-tag--1 { top: 10%; right: 3%; }
    .hero__float-tag--2 { top: 30%; right: 2%; }
    .hero__float-tag--3 { top: 65%; right: 10%; left: auto; }
    .hero__float-tag--4 { top: 42%; right: 8%; left: auto; }
}

@media (max-width: 480px) {
    .hero__float-tag--3,
    .hero__float-tag--4 {
        display: none;
    }
}

/* ============================================
   PROBLEM
   ============================================ */
.problem {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

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

.problem__card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease-out);
}

.problem__card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-1);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 0 40px rgba(var(--accent-1-rgb), 0.06);
}

.problem__card:hover .problem__card-icon {
    transform: scale(1.1) rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem__card-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-1);
    margin-bottom: 24px;
}

.problem__card-icon svg {
    width: 100%;
    height: 100%;
}

.problem__card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem__card-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================
   APPROACH
   ============================================ */
.approach {
    padding: var(--section-pad) 0;
}

.approach__pipeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.approach__line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-1), var(--accent-2), transparent);
}

.approach__step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.approach__step-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-1);
    background: var(--bg-primary);
    border: 1px solid rgba(var(--accent-1-rgb), 0.2);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.approach__step-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.approach__step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   3-MONTH MODEL
   ============================================ */
.model {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

.model__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.model__desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

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

.model__month {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease-out);
}

.model__month:hover {
    border-color: var(--accent-1);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(var(--accent-1-rgb), 0.1);
}

.model__month-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.model__month-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.model__month-label {
    font-size: 13px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.model__month h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.model__month p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.model__month-tag {
    display: inline-block;
    font-size: 12px;
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 14px;
    background: rgba(var(--accent-1-rgb), 0.08);
    border: 1px solid rgba(var(--accent-1-rgb), 0.15);
    color: var(--text-secondary);
    border-radius: 100px;
}

.model__month-tag--active {
    background: rgba(var(--accent-1-rgb), 0.15);
    border-color: var(--accent-1);
    color: var(--accent-1);
}

/* ============================================
   MID CTA
   ============================================ */
.cta-mid {
    padding: 64px 0;
}

.cta-mid__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 40px;
    padding: 36px 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-mid__inner .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-mid__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
    opacity: 0.5;
}

.cta-mid__text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-mid__text p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.6;
    max-width: 600px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

/* ── Единая сетка всех карточек ── */
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

/* ── Карточка услуги (единый стиль) ── */
.services__card {
    display: flex;
    flex-direction: column;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* Акцентная полоска слева — анимированная */
.services__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gradient-accent);
    transition: height 0.6s var(--ease-out);
    border-radius: 0 0 2px 0;
}

.services__card:hover::before {
    height: 100%;
}

/* Градиентное свечение при ховере */
.services__card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-1-rgb), 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.services__card:hover::after {
    opacity: 1;
}

.services__card:hover {
    border-color: var(--accent-1);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(var(--accent-1-rgb), 0.1);
}

.services__card:hover .services__card-title {
    color: var(--accent-1);
}

/* ── Номер и заголовок ── */
.services__card-num {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent-1);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
}

.services__card:hover .services__card-num {
    transform: translateX(4px);
}

.services__card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.services__card-subtitle {
    font-size: 14px;
    color: var(--accent-1);
    font-family: var(--font-mono);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

/* ── Лейбл над каналами ── */
.services__channels-label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
    margin-top: auto;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* ── Каналы внутри карточки ── */
.services__channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

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

.services__channels--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Full-width карточки (Контекст / Таргет) */
.services__card--wide {
    grid-column: 1 / -1;
}

.services__channel {
    padding: 20px;
    background: rgba(var(--accent-1-rgb), 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.services__channel:hover {
    border-color: rgba(var(--accent-1-rgb), 0.3);
    background: rgba(var(--accent-1-rgb), 0.06);
    transform: translateY(-2px);
}

.services__channel-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.services__channel:hover .services__channel-name {
    color: var(--accent-1);
}

.services__channel-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Скоуп — пилл-теги ── */
.services__scope {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.services__scope li {
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    padding: 5px 12px;
    background: rgba(var(--accent-1-rgb), 0.04);
    border: 1px solid rgba(var(--accent-1-rgb), 0.08);
    border-radius: 100px;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.services__scope li:hover {
    color: var(--accent-1);
    border-color: rgba(var(--accent-1-rgb), 0.3);
    background: rgba(var(--accent-1-rgb), 0.08);
    transform: translateY(-1px);
}

/* ── Список услуг ── */
.services__card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services__card-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.services__card-list li:hover {
    transform: translateX(4px);
    color: var(--text-primary);
}

.services__card-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.services__card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-1);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.services__card-list li:hover::before {
    transform: translateX(3px);
}

.services__card-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ── Бейдж ── */
.services__card-badge {
    display: inline-block;
    margin-top: auto;
    padding-top: 20px;
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent-1);
    background: rgba(var(--accent-1-rgb), 0.08);
    border: 1px solid rgba(var(--accent-1-rgb), 0.2);
    border-radius: 100px;
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-1-rgb), 0.15); }
    50% { box-shadow: 0 0 0 6px rgba(var(--accent-1-rgb), 0); }
}

/* ============================================
   CASES
   ============================================ */
.cases {
    padding: var(--section-pad) 0;
}

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

.cases__card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.cases__card:hover {
    border-color: var(--accent-1);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(var(--accent-1-rgb), 0.1);
}

.cases__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cases__card-niche {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cases__card-period {
    font-size: 12px;
    color: var(--text-muted);
}

.cases__card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cases__card-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(var(--accent-1-rgb), 0.04);
    border-radius: var(--radius-md);
}

.cases__metric {
    text-align: center;
}

.cases__metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cases__metric-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cases__card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cases__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cases__card-tags span {
    font-size: 12px;
    font-family: var(--font-mono);
    padding: 4px 10px;
    background: var(--bg-card-hover);
    border-radius: 100px;
    color: var(--text-muted);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

.process__timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process__item {
    display: flex;
    gap: 32px;
    padding-bottom: 40px;
    position: relative;
}

.process__item:last-child {
    padding-bottom: 0;
}

.process__item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 48px;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.process__item:last-child::before {
    display: none;
}

.process__item-marker {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.process__item-marker span {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-1);
}

.process__item-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process__item-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.process__item-time {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-1);
    letter-spacing: 0.05em;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: var(--section-pad) 0;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
}

.about__text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__text--accent {
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
    border-left: 3px solid var(--accent-1);
}

.about__values {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.about__value {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
    min-height: 220px;
}

.about__value:hover {
    border-color: rgba(var(--accent-1-rgb), 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.about__value-icon {
    flex-shrink: 0;
    color: var(--accent-1);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.about__value:hover .about__value-icon {
    transform: scale(1.3);
}

.about__value strong {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.about__value:hover strong {
    color: var(--accent-1);
}

.about__value p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Founder — вертикальная плашка справа ── */
.about__founder {
    position: sticky;
    top: 120px;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    transition: border-color 0.4s ease;
}

.about__founder:hover {
    border-color: rgba(var(--accent-1-rgb), 0.3);
}

/* Анимированное свечение */
.about__founder-glow {
    position: absolute;
    top: -40%;
    left: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--accent-1-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: founder-glow-drift 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes founder-glow-drift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(20px, 30px) scale(1.15); opacity: 1; }
}

.about__founder-photo {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.about__founder-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-md);
    border: 2px solid rgba(var(--accent-1-rgb), 0.15);
    transition: opacity 0.4s ease, transform 0.4s ease;
    /* Убираем овал — прямоугольные углы */
    clip-path: none;
}

.about__founder-img:hover {
    transform: scale(1.02);
}

.about__founder-photo-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.about__founder-photo-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.about__founder-photo-btn.active,
.about__founder-photo-btn:hover {
    background: var(--accent-1);
    border-color: var(--accent-1);
    transform: scale(1.3);
}

.about__founder-info {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.about__founder-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.about__founder-role {
    font-size: 14px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-weight: 600;
}

.about__founder-motto {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 8px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.about__founder-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.about__founder-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.about__founder-stat:hover {
    border-color: rgba(var(--accent-1-rgb), 0.3);
    transform: translateY(-2px);
}

.about__founder-stat-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-1);
    line-height: 1;
}

.about__founder-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================
   NOT FOR
   ============================================ */
.not-for {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

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

.not-for__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.not-for__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease-out);
}

.not-for__item:hover {
    border-color: rgba(255, 80, 80, 0.2);
    background: rgba(255, 80, 80, 0.03);
    transform: translateY(-2px);
}

.not-for__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #ff5050;
    background: rgba(255, 80, 80, 0.1);
    border-radius: 50%;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.not-for__item:hover .not-for__icon {
    transform: scale(1.15);
}

.not-for__text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.not-for__item:hover .not-for__text strong {
    color: #ff5050;
}

.not-for__text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 8px;
    /* Scroll reveal initial state */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__item.faq-visible {
    opacity: 1;
    transform: none;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    transition: color var(--duration) var(--ease-out);
}

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

.faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--duration) var(--ease-out);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration) var(--ease-out);
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-final {
    padding: var(--section-pad) 0;
    background: var(--bg-secondary);
}

.cta-final__inner {
    position: relative;
    padding: 64px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: ctaSway 8s ease-in-out infinite;
}

@keyframes ctaSway {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25%      { transform: translateY(-6px) rotate(0.3deg); }
    50%      { transform: translateY(3px) rotate(-0.2deg); }
    75%      { transform: translateY(-4px) rotate(0.15deg); }
}

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

.cta-final__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-1-rgb), 0.05);
}

.cta-final__orbit--1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
    animation: orbit-rotate 60s linear infinite;
}

.cta-final__orbit--2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    animation: orbit-rotate 40s linear infinite reverse;
    border-color: rgba(77, 163, 255, 0.05);
}

.cta-final__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.cta-final__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-final__desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-final__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-final__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-final__input,
.cta-final__select,
.cta-final__textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    transition: border-color var(--duration) var(--ease-out);
}

.cta-final__input::placeholder,
.cta-final__textarea::placeholder {
    color: var(--text-muted);
}

.cta-final__input:focus,
.cta-final__textarea:focus,
.cta-final__select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(var(--accent-1-rgb), 0.1);
}

.cta-final__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cta-final__select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.cta-final__textarea {
    resize: vertical;
    min-height: 80px;
}

.cta-final__privacy {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.cta-final__privacy a {
    color: var(--accent-1);
    text-decoration: underline;
    text-decoration-color: rgba(var(--accent-1-rgb), 0.3);
}

.cta-final__privacy a:hover {
    text-decoration-color: var(--accent-1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
}

.footer__tagline {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.footer__desc {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__links {
    display: flex;
    gap: 80px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer__col a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--duration) var(--ease-out);
}

.footer__col a:hover {
    color: var(--accent-1);
}

.footer__bottom {
    padding-top: 24px;
}

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

/* ============================================
   DVZH WATERMARK — пасхалки по лендингу
   ============================================ */
.dvzh-watermark {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    font-family: var(--font-display);
    font-size: clamp(120px, 15vw, 220px);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: transparent;
    -webkit-text-stroke: 2px rgba(var(--accent-1-rgb), 0.14);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    /* Scroll-driven reveal */
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

/* Появление при скролле */
.dvzh-watermark.wm-visible {
    opacity: 1;
}

/* Hover easter egg — кто заметит, приятно удивится */
.dvzh-watermark:hover {
    pointer-events: auto;
    -webkit-text-stroke-color: rgba(var(--accent-1-rgb), 0.25);
    transition: -webkit-text-stroke-color 0.6s ease;
    cursor: default;
}

.dvzh-watermark--right {
    left: auto;
    right: 2%;
    transform: translateY(-50%) rotate(90deg);
}

.dvzh-watermark--center {
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    font-size: clamp(100px, 20vw, 300px);
    -webkit-text-stroke: 2px rgba(var(--accent-1-rgb), 0.10);
}


/* Делаем секции position: relative для корректного позиционирования вотермарок */
.problem,
.services,
.cases,
.not-for,
.faq,
.cta-final,
.approach,
.process {
    position: relative;
    overflow: clip;
    overflow-clip-margin: 40px;
}

@media (max-width: 768px) {
    .dvzh-watermark {
        font-size: 80px;
        -webkit-text-stroke-width: 0.5px;
    }
    .dvzh-watermark--center {
        font-size: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dvzh-watermark {
        opacity: 1;
        transition: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
/* ── Base reveal ── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ── Fade Directions ── */
[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

[data-animate="scale-up"] {
    transform: scale(0.9);
}

[data-animate="scale-up"].animated {
    transform: scale(1);
}

[data-animate="blur-in"] {
    filter: blur(8px);
    transform: translateY(20px);
}

[data-animate="blur-in"].animated {
    filter: blur(0);
    transform: translateY(0);
}

/* ── Marquee / Infinite scroll ── */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.marquee__track {
    display: inline-flex;
    animation: marquee 60s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.marquee__item {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    color: transparent;
    padding: 0 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    user-select: none;
    -webkit-text-stroke: 1px var(--border-hover);
    transition: all 0.4s ease;
}

.marquee__item:hover {
    -webkit-text-stroke-color: var(--accent-1);
    text-shadow: 0 0 40px rgba(var(--accent-1-rgb), 0.15);
}

.marquee__item--accent {
    -webkit-text-stroke: 1px var(--accent-1);
    color: transparent;
}

/* ── Card tilt glow ── */
.card-glow {
    position: relative;
    overflow: hidden;
}

.card-glow::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-1-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

.card-glow:hover::after {
    opacity: 1;
}

/* ── Magnetic button effect ── */
.btn--magnetic {
    transition: transform 0.2s var(--ease-out),
                box-shadow var(--duration) var(--ease-out);
}

/* ── Stagger children animation ── */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out),
                transform 0.5s var(--ease-out);
}

.stagger-children.animated > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.animated > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.animated > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.animated > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.animated > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.animated > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ── Floating particles ── */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-1);
    opacity: 0.3;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    8% {
        opacity: 0.35;
    }
    50% {
        opacity: 0.25;
    }
    88% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

/* ── Glitch text ── */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitch-1 0.3s linear;
    opacity: 0.8;
    color: var(--accent-1);
    z-index: -1;
}

.glitch:hover::after {
    animation: glitch-2 0.3s linear;
    opacity: 0.8;
    color: var(--accent-2);
    z-index: -2;
}

@keyframes glitch {
    0%   { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 1px); }
    20%  { clip-path: inset(40% 0 20% 0); transform: translate(2px, -1px); }
    40%  { clip-path: inset(60% 0 10% 0); transform: translate(-1px, 2px); }
    60%  { clip-path: inset(10% 0 70% 0); transform: translate(1px, -2px); }
    80%  { clip-path: inset(50% 0 30% 0); transform: translate(-1px, 1px); }
    100% { clip-path: inset(0 0 0 0); transform: translate(0); }
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 2px); }
    20% { clip-path: inset(40% 0 20% 0); transform: translate(3px, -1px); }
    40% { clip-path: inset(60% 0 10% 0); transform: translate(-2px, 3px); }
    60% { clip-path: inset(10% 0 70% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(50% 0 30% 0); transform: translate(-1px, 1px); }
    100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(60% 0 0% 0); transform: translate(3px, -2px); }
    20% { clip-path: inset(20% 0 40% 0); transform: translate(-3px, 1px); }
    40% { clip-path: inset(70% 0 5% 0); transform: translate(2px, -3px); }
    60% { clip-path: inset(30% 0 50% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(10% 0 60% 0); transform: translate(1px, -1px); }
    100% { clip-path: inset(100% 0 0% 0); transform: translate(0); }
}

/* ── Approach line animated fill (scroll-driven via JS) ── */
.approach__line-fill {
    position: absolute;
    left: 28px;
    top: 0;
    width: 1px;
    height: 0;
    background: var(--gradient-accent);
    z-index: 1;
    border-radius: 0 0 2px 2px;
    transition: box-shadow 0.3s ease;
}

/* ============================================
   SHOWCASE PANEL — Style & Palette Viewer
   ============================================ */
.showcase {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #0B0E11;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.showcase.active {
    transform: translateY(0);
    opacity: 1;
}

.showcase__close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 10001;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: #9AA3AB;
    background: rgba(20, 25, 32, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.04em;
}

.showcase__close:hover {
    color: #fff;
    border-color: var(--accent-1);
    background: rgba(var(--accent-1-rgb), 0.1);
}

.showcase__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 32px 100px;
}

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

.showcase__logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.showcase__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #9AA3AB;
    letter-spacing: 0.02em;
}

.showcase__section {
    margin-bottom: 72px;
}

.showcase__section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #E6E8EB;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.showcase__section-desc {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 32px;
}

/* ── Palette Cards ── */
.palette-card {
    background: #141920;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.palette-card:hover {
    border-color: rgba(255,255,255,0.12);
}

.palette-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.palette-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #E6E8EB;
}

.palette-card__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
    color: #6B7280;
}

.palette-card__tag--active {
    background: rgba(var(--accent-1-rgb), 0.12);
    color: var(--accent-1);
}

.palette-card__desc {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.palette-card__swatches {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.palette-swatch {
    flex: 1;
    min-width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease;
    cursor: default;
    position: relative;
}

.palette-swatch:hover {
    transform: scale(1.05);
}

.palette-swatch--light {
    color: #1a1a1a;
}

.palette-swatch__hex {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.palette-swatch__label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.palette-card__apply {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-1);
    background: rgba(var(--accent-1-rgb), 0.08);
    border: 1px solid rgba(var(--accent-1-rgb), 0.15);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.palette-card__apply:hover {
    background: rgba(var(--accent-1-rgb), 0.15);
    border-color: rgba(var(--accent-1-rgb), 0.3);
    transform: translateX(4px);
}

/* ── Style Grid ── */
.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.style-card {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #141920;
}

.style-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.style-card--active {
    border-color: var(--accent-1) !important;
    box-shadow: 0 0 0 1px var(--accent-1), 0 8px 32px rgba(var(--accent-1-rgb), 0.15) !important;
}

.style-card__preview {
    height: 200px;
    padding: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.style-card__preview-nav {
    padding-bottom: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.style-card__preview-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.style-card__preview-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    font-weight: 500;
    padding: 3px 8px;
    border: 1px solid;
    border-radius: 20px;
    width: fit-content;
    letter-spacing: 0.05em;
}

.style-card__preview-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.style-card__preview-btn {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    width: fit-content;
    margin-top: auto;
}

.style-card__preview-orbit {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    opacity: 0.5;
}

.style-card__info {
    padding: 16px 20px 20px;
    background: #141920;
}

.style-card__info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #E6E8EB;
    margin-bottom: 4px;
}

.style-card__info p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
}

.style-card__badge {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.style-card__badge--default {
    background: rgba(var(--accent-1-rgb), 0.12);
    color: var(--accent-1);
}

.style-card__badge--light {
    background: rgba(var(--accent-1-rgb), 0.12);
    color: var(--accent-1);
}

/* ── Showcase Status Bar ── */
.showcase__status {
    position: sticky;
    bottom: 0;
    background: rgba(11, 14, 17, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 14px;
    color: #9AA3AB;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
}

.showcase__status strong {
    color: var(--accent-1);
}

.showcase__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-1);
    animation: pulse-dot 2s ease infinite;
    flex-shrink: 0;
}

.showcase__status-hint {
    color: #4B5563;
    font-size: 13px;
}

/* ── Showcase Trigger Button ── */
.showcase-trigger {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-trigger:hover {
    color: var(--accent-1);
    border-color: var(--accent-1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-1-rgb), 0.12);
}

.showcase-trigger svg {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.showcase-trigger:hover svg {
    opacity: 1;
    stroke: var(--accent-1);
}

/* ============================================
   HERO AURORA GRADIENT
   ============================================ */
.hero__aurora {
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 180deg at 50% 50%,
        var(--accent-1) 0deg,
        transparent 60deg,
        var(--accent-2) 120deg,
        transparent 180deg,
        var(--accent-1) 240deg,
        transparent 300deg,
        var(--accent-2) 360deg
    );
    opacity: 0.06;
    filter: blur(100px);
    animation: aurora-spin 25s linear infinite;
    pointer-events: none;
}

.hero__aurora--2 {
    background: conic-gradient(
        from 90deg at 40% 60%,
        var(--accent-2) 0deg,
        transparent 90deg,
        var(--accent-1) 180deg,
        transparent 270deg
    );
    opacity: 0.04;
    filter: blur(120px);
    animation: aurora-spin 35s linear infinite reverse;
}

@keyframes aurora-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   TRUSTED / INDUSTRIES STRIP
   ============================================ */
.trusted {
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.trusted__label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.trusted__strip {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.trusted__track {
    display: flex;
    gap: 24px;
    align-items: center;
    white-space: nowrap;
    animation: trusted-scroll 30s linear infinite;
    width: max-content;
}

.trusted__item {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.trusted__item:hover {
    opacity: 1;
    color: var(--accent-1);
}

.trusted__dot {
    color: var(--accent-1);
    opacity: 0.3;
    font-size: 10px;
}

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

/* ============================================
   STICKY CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9993;
    background: rgba(11, 14, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 12px 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sticky-cta__text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.sticky-cta__btn {
    flex-shrink: 0;
    white-space: nowrap;
}



/* ============================================
   PROBLEM CARD ICON ANIMATIONS
   ============================================ */
.problem__card:nth-child(1) .problem__card-icon svg {
    animation: icon-shake 3s ease-in-out infinite;
}

.problem__card:nth-child(2) .problem__card-icon svg {
    animation: icon-dash 4s linear infinite;
}

.problem__card:nth-child(3) .problem__card-icon svg {
    animation: icon-pulse-opacity 2.5s ease-in-out infinite;
}

.problem__card:nth-child(4) .problem__card-icon svg {
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-3px) rotate(-3deg); }
    20% { transform: translateX(3px) rotate(3deg); }
    30% { transform: translateX(-2px) rotate(-2deg); }
    40% { transform: translateX(2px) rotate(2deg); }
    50% { transform: translateX(0) rotate(0deg); }
}

@keyframes icon-dash {
    0% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 20; }
    100% { stroke-dashoffset: 0; }
}

@keyframes icon-pulse-opacity {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.95); }
}

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

/* ============================================
   STYLE TOGGLE BUTTON (monolith ↔ collage)
   ============================================ */
.style-toggle {
    position: fixed;
    bottom: 148px;
    right: 24px;
    z-index: 9993;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: rgba(var(--bg-card-rgb, 15, 18, 22), 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.style-toggle:hover {
    transform: scale(1.1);
    border-color: var(--accent-1);
    box-shadow: 0 4px 20px rgba(var(--accent-1-rgb), 0.25);
}
.style-toggle:active {
    transform: scale(0.92);
}
.style-toggle__icon {
    font-size: 18px;
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
}
/* Показываем иконку противоположного стиля (куда переключимся) */
.style-toggle__icon--monolith {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}
.style-toggle__icon--collage {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
/* Когда активен collage — показываем иконку monolith (для переключения) */
body.vstyle-collage .style-toggle__icon--monolith {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
body.vstyle-collage .style-toggle__icon--collage {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

@media (max-width: 768px) {
    .style-toggle {
        width: 38px;
        height: 38px;
        bottom: 138px;
        right: 16px;
    }
    .style-toggle__icon {
        font-size: 15px;
    }
}

/* ============================================
   FLOATING TELEGRAM BUTTON
   ============================================ */
.tg-float {
    position: fixed;
    bottom: 80px;
    right: 24px;
    z-index: 9992;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(42, 171, 238, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: white;
    opacity: 0;
    transform: scale(0) translateY(20px);
}

.tg-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.tg-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 30px rgba(42, 171, 238, 0.6);
}

.tg-float svg {
    width: 28px;
    height: 28px;
}

.tg-float__tooltip {
    position: absolute;
    right: 64px;
    white-space: nowrap;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--border);
}

.tg-float:hover .tg-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   CONFETTI CANVAS
   ============================================ */
.confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .tg-float {
        bottom: 70px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .tg-float__tooltip {
        display: none;
    }
}

/* ── Showcase Responsive ── */
@media (max-width: 768px) {
    .showcase__inner {
        padding: 60px 16px 100px;
    }

    .showcase__logo {
        font-size: 36px;
    }

    .palette-card {
        padding: 20px;
    }

    .palette-card__swatches {
        flex-wrap: wrap;
    }

    .palette-swatch {
        min-width: 70px;
        height: 80px;
    }

    .palette-swatch__hex {
        font-size: 11px;
    }

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

    .showcase__status {
        flex-wrap: wrap;
        font-size: 13px;
    }

    .showcase__status-hint {
        display: none;
    }

    .showcase-trigger span {
        display: none;
    }

    .showcase-trigger {
        padding: 12px;
        border-radius: 50%;
    }
}

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

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .hero__stats {
        gap: 32px;
    }

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

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .about__founder {
        position: static;
        max-width: 340px;
        margin: 0 auto;
    }

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

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

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

    .cta-mid__inner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-pad: var(--section-pad-mobile);
        --container-pad: 20px;
    }

    /* Nav mobile */
    .nav__links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        background: rgba(11, 14, 17, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
    }

    .nav__links.active {
        display: flex;
    }

    .nav__link {
        font-size: 20px;
    }

    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    /* Hero mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(28px, 8vw, 44px);
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__actions {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero__stat {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .hero__scroll {
        display: none;
    }

    /* Problem mobile */
    .problem__grid {
        grid-template-columns: 1fr;
    }

    .problem__card {
        padding: 28px;
    }

    /* Approach mobile */
    .approach__step {
        gap: 20px;
        padding: 24px 0;
    }

    .approach__step-num {
        width: 44px;
        height: 44px;
        font-size: 12px;
    }

    .approach__line {
        left: 22px;
    }

    .approach__line-fill {
        left: 22px;
    }

    /* Model mobile */
    .model__month {
        padding: 28px;
    }

    /* Services mobile */
    .services__channels,
    .services__channels--2x2 {
        grid-template-columns: 1fr;
    }

    .services__channel {
        padding: 16px;
    }

    .services__scope {
        gap: 6px;
    }

    .services__scope li {
        font-size: 11px;
        padding: 4px 10px;
    }

    .services__card {
        padding: 28px;
    }

    /* Not-for mobile */
    .not-for__grid {
        grid-template-columns: 1fr;
    }

    /* CTA Final mobile */
    .cta-final__inner {
        padding: 40px 24px;
    }

    .cta-final__form-row {
        grid-template-columns: 1fr;
    }

    /* Footer mobile */
    .footer__inner {
        flex-direction: column;
    }

    .footer__links {
        gap: 40px;
    }

    /* Trusted strip mobile */
    .trusted__item {
        font-size: 14px;
    }

    .trusted {
        padding: 24px 0;
    }

    /* Sticky CTA mobile */
    .sticky-cta__text {
        display: none;
    }

    .sticky-cta__inner {
        justify-content: center;
    }

    .sticky-cta__btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================
   COSMIC RHYTHM ANIMATIONS
   ============================================ */

/* ── Механика роста: пульсирующий ритм вылета ── */
.model__month {
    opacity: 1;
    transform: translateY(0);
}
.model__month.cosmic-hidden {
    opacity: 0;
    transform: translateY(60px) scale(0.92);
}
.model__month.cosmic-pulse-enter {
    animation: cosmicPulseIn 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cosmicPulseIn {
    0%   {
        opacity: 0;
        transform: translateY(50px) scale(0.92);
        filter: blur(6px);
    }
    60%  {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
        filter: blur(0);
    }
    80%  {
        transform: translateY(2px) scale(0.995);
    }
    100% {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

/* Пульсирующее свечение после появления */
.model__month.cosmic-pulse-enter {
    box-shadow: 0 0 0 rgba(var(--accent-1-rgb), 0);
}
.model__month.cosmic-glow {
    animation: cosmicGlowPulse 2s ease-in-out 3;
}
@keyframes cosmicGlowPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(var(--accent-1-rgb), 0); }
    50%      { box-shadow: 0 0 30px rgba(var(--accent-1-rgb), 0.15), 0 0 60px rgba(var(--accent-1-rgb), 0.05); }
}

/* Скролл-свечение карточек модели */
.model__month.scroll-glow {
    border-color: var(--accent-1) !important;
    box-shadow: 0 0 25px rgba(var(--accent-1-rgb), 0.2),
               0 0 60px rgba(var(--accent-1-rgb), 0.06),
               inset 0 0 30px rgba(var(--accent-1-rgb), 0.03);
    transition: box-shadow 0.6s ease, border-color 0.6s ease;
}
.model__month:not(.scroll-glow) {
    transition: box-shadow 0.6s ease, border-color 0.6s ease, transform var(--duration) var(--ease-out);
}

/* Прогресс-линия модели */
.model__months {
    position: relative;
}
.model__scroll-line {
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(var(--accent-1-rgb), 0.1);
    border-radius: 2px;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}
.model__scroll-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2, var(--accent-1)));
    border-radius: 2px;
    transition: width 0.15s linear;
    box-shadow: 0 0 8px rgba(var(--accent-1-rgb), 0.4),
               0 0 20px rgba(var(--accent-1-rgb), 0.15);
}

/* ── Как мы работаем: ритмичный pulse-вход ── */
.process__item.cosmic-hidden {
    opacity: 0;
    transform: translateX(-40px);
}
.process__item.cosmic-step-enter {
    animation: cosmicStepPulse 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes cosmicStepPulse {
    0%   { opacity: 0; transform: translateX(-40px) scale(0.95); }
    35%  { opacity: 1; transform: translateX(6px) scale(1.02); }
    65%  { transform: translateX(-3px) scale(0.99); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* Маркер пульсирует при входе */
.process__item.cosmic-step-enter .process__item-marker {
    animation: markerCosmicPulse 0.6s ease 0.3s;
}
@keyframes markerCosmicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-1-rgb), 0.4); }
    50%      { box-shadow: 0 0 0 12px rgba(var(--accent-1-rgb), 0); }
}

/* ── О нас: карточки влетают как космические объекты ── */
.about__value.cosmic-hidden {
    opacity: 0;
    transform: translateY(80px) rotate(8deg) scale(0.8);
}
.about__value.cosmic-fly-in {
    animation: cosmicFlyIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.about__value:nth-child(1).cosmic-fly-in {
    animation: cosmicFlyIn1 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.about__value:nth-child(2).cosmic-fly-in {
    animation: cosmicFlyIn2 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.about__value:nth-child(3).cosmic-fly-in {
    animation: cosmicFlyIn3 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cosmicFlyIn {
    0%   { opacity: 0; transform: translateY(80px) rotate(8deg) scale(0.8); }
    50%  { opacity: 1; transform: translateY(-4px) rotate(-0.5deg) scale(1.02); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0) scale(1); }
}

@keyframes cosmicFlyIn1 {
    0%   { opacity: 0; transform: translate(-100px, 80px) rotate(-12deg) scale(0.6); }
    50%  { opacity: 1; transform: translate(8px, -4px) rotate(1deg) scale(1.03); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0) scale(1); }
}
@keyframes cosmicFlyIn2 {
    0%   { opacity: 0; transform: translate(0, 120px) rotate(0deg) scale(0.5); }
    50%  { opacity: 1; transform: translate(0, -6px) rotate(-1deg) scale(1.04); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0) scale(1); }
}
@keyframes cosmicFlyIn3 {
    0%   { opacity: 0; transform: translate(100px, 80px) rotate(12deg) scale(0.6); }
    50%  { opacity: 1; transform: translate(-8px, -4px) rotate(-1deg) scale(1.03); }
    100% { opacity: 1; transform: translate(0, 0) rotate(0) scale(1); }
}

/* Иконки карточек пульсируют после влёта */
.about__value.cosmic-fly-in .about__value-icon {
    animation: cosmicIconPulse 1.5s ease-in-out 0.9s 3;
}
@keyframes cosmicIconPulse {
    0%, 100% { transform: scale(1); text-shadow: 0 0 0 transparent; }
    50%      { transform: scale(1.3); text-shadow: 0 0 12px rgba(var(--accent-1-rgb), 0.6); }
}

/* ── Founder: чистый стиль без орбиты и овала ── */
/* Founder photo — прямоугольное, без овала, без орбит */
.about__founder-img {
    border-radius: var(--radius-md) !important;
    clip-path: none !important;
}

/* Fly-in + sway анимация для фото основателя */
.about__founder-img.founder-flew-in {
    animation: founderPhotoFlyIn 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               founderPhotoSway 6s ease-in-out 2.8s infinite;
}
@keyframes founderPhotoFlyIn {
    0%   { opacity: 0; transform: translateY(30px) scale(0.97); filter: blur(3px); }
    25%  { opacity: 0.4; transform: translateY(12px) scale(0.99); filter: blur(1.5px); }
    50%  { opacity: 0.8; transform: translateY(2px) scale(1.005); filter: blur(0.5px); }
    70%  { opacity: 0.95; transform: translateY(-2px) scale(1.002); filter: blur(0); }
    85%  { opacity: 1; transform: translateY(1px) scale(0.999); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes founderPhotoSway {
    0%, 100% { transform: rotate(0deg) translateX(0) translateY(0); }
    20%      { transform: rotate(0.25deg) translateX(1px) translateY(-1px); }
    40%      { transform: rotate(-0.15deg) translateX(-0.5px) translateY(0.5px); }
    60%      { transform: rotate(-0.25deg) translateX(-1px) translateY(-0.5px); }
    80%      { transform: rotate(0.15deg) translateX(0.5px) translateY(0.5px); }
}

/* ── Рек.1: Staggered scroll для collage карточек ── */
body.vstyle-collage [data-animate="fade-up"] {
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Collage: плавный влёт элементов hero ── */
body.vstyle-collage .hero__title {
    opacity: 0;
    animation: collage-fly-in 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
    --fly-from: -50vw;
}
body.vstyle-collage .hero__title-accent {
    opacity: 0;
    animation: collage-fly-in 1.4s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
    --fly-from: 40vw;
}
body.vstyle-collage .hero__subtitle {
    opacity: 0;
    animation:
        collage-fly-in-sub 1.4s cubic-bezier(0.25, 1, 0.5, 1) 0.9s forwards,
        collage-subtitle-float 8s ease-in-out 2.3s infinite;
    --fly-from: -35vw;
}
body.vstyle-collage .hero__actions {
    opacity: 0;
    animation: collage-fly-in-btn 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.1s forwards;
    --fly-from: 45vw;
}

/* Прямой влёт → ровно на место */
@keyframes collage-fly-in {
    0% {
        opacity: 0;
        transform: translateX(var(--fly-from));
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Влёт подзаголовка → остаётся с наклоном -0.8deg */
@keyframes collage-fly-in-sub {
    0% {
        opacity: 0;
        transform: translateX(var(--fly-from)) rotate(-0.8deg);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(-0.8deg);
        filter: blur(0);
    }
}

/* Влёт кнопки → остаётся с наклоном -0.5deg */
@keyframes collage-fly-in-btn {
    0% {
        opacity: 0;
        transform: translateX(var(--fly-from)) rotate(-0.5deg);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(-0.5deg);
        filter: blur(0);
    }
}

/* Парение подзаголовка */
@keyframes collage-subtitle-float {
    0%, 100% { transform: translateX(0) rotate(-0.8deg); }
    20% { transform: translateX(-1.5px) rotate(-0.9deg) translateY(1px); }
    40% { transform: translateX(1px) rotate(-0.7deg) translateY(-0.5px); }
    60% { transform: translateX(-0.5px) rotate(-0.85deg) translateY(0.5px); }
    80% { transform: translateX(1px) rotate(-0.75deg) translateY(-0.3px); }
}

/* ── Рек.5: Адаптивные float-теги на мобильных ── */
@media (max-width: 768px) {
    .hero__float-tag--3,
    .hero__float-tag--4 {
        display: none;
    }
    .hero__float-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .problem__card {
        padding: 24px;
    }

    .faq__question {
        padding: 20px;
        font-size: 15px;
    }

    .faq__answer p {
        padding: 0 20px 20px;
    }
}

/* ============================================
   PROBLEM CARDS: smooth scroll reveal
   ============================================ */
.problem__grid > .problem__card {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(3px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Override stagger system for problem cards */
.problem__grid.stagger-children.animated > .problem__card {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(3px);
}

.problem__card.problem-flew-in {
    opacity: 1 !important;
    transform: none !important;
    filter: blur(0) !important;
}

/* ── Collage fix: в collage-режиме fly-in отключён, отменяем скрытие ── */
/* Базовое состояние: stagger-children скрывает карточки (opacity:0, translateY:20px) — отменяем */
body.vstyle-collage .problem__grid > .problem__card,
body.vstyle-collage .problem__grid.stagger-children > .problem__card,
body.vstyle-collage .problem__grid.stagger-children.animated > .problem__card {
    opacity: 1 !important;
    filter: none !important;
}
/* Возвращаем CSS-наклоны для каждой карточки (stagger ставит translateY(0), перебивая rotate) */
body.vstyle-collage .problem__grid.stagger-children > .problem__card:nth-child(1),
body.vstyle-collage .problem__grid.stagger-children.animated > .problem__card:nth-child(1) {
    transform: rotate(-0.8deg) !important;
}
body.vstyle-collage .problem__grid.stagger-children > .problem__card:nth-child(2),
body.vstyle-collage .problem__grid.stagger-children.animated > .problem__card:nth-child(2) {
    transform: rotate(0.5deg) translate(-4px, 8px) !important;
}
body.vstyle-collage .problem__grid.stagger-children > .problem__card:nth-child(3),
body.vstyle-collage .problem__grid.stagger-children.animated > .problem__card:nth-child(3) {
    transform: rotate(-0.3deg) translate(3px, -5px) !important;
}
body.vstyle-collage .problem__grid.stagger-children > .problem__card:nth-child(4),
body.vstyle-collage .problem__grid.stagger-children.animated > .problem__card:nth-child(4) {
    transform: rotate(1deg) translate(-4px, 3px) !important;
}
/* Hover → выравнивание (поверх !important наклонов) */
body.vstyle-collage .problem__grid.stagger-children > .problem__card:hover,
body.vstyle-collage .problem__grid.stagger-children.animated > .problem__card:hover {
    z-index: 10 !important;
    transform: rotate(0deg) scale(1.02) !important;
}

/* ============================================
   CASES: sequential scroll reveal
   ============================================ */
.cases__card.case-hidden {
    opacity: 0;
    transform: translateY(35px) scale(0.95);
    filter: blur(3px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cases__card.case-visible {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

/* ============================================
   SERVICES CARDS: cosmic fly-in + sway
   ============================================ */
.services__card.service-cosmic-hidden {
    opacity: 0;
    transform: translateY(70px) scale(0.88);
}
/* Override stagger system for service cards */
.services__grid.stagger-children.animated > .services__card.service-cosmic-hidden {
    opacity: 0;
    transform: translateY(70px) scale(0.88);
    transition: none;
}

.services__card.service-flew-in {
    animation: serviceCardEntrance 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes serviceCardEntrance {
    0% {
        opacity: 0;
        transform: translateY(70px) scale(0.88);
    }
    28% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    /* sway phase */
    40% {
        transform: rotate(0.8deg) translateY(-2px);
    }
    52% {
        transform: rotate(-0.5deg) translateY(1.5px);
    }
    64% {
        transform: rotate(0.3deg) translateY(-1px);
    }
    76% {
        transform: rotate(-0.15deg);
    }
    88% {
        transform: rotate(0.05deg);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   HERO SUBTITLE: levitation float
   ============================================ */
.hero__subtitle {
    animation: subtitleLevitate 7s ease-in-out infinite;
}

@keyframes subtitleLevitate {
    0%, 100% { transform: translate(0, 0); }
    20%      { transform: translate(1px, -5px); }
    40%      { transform: translate(-1.5px, 2px); }
    60%      { transform: translate(2px, -3px); }
    80%      { transform: translate(-1px, 4px); }
}

/* ============================================
   ENHANCED MOBILE ADAPTATION
   ============================================ */
@media (max-width: 768px) {
    /* Hero: убираем min-height и большой padding */
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(26px, 7.5vw, 40px);
        line-height: 1.15;
    }

    .hero__subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero__actions {
        margin-bottom: 32px;
    }

    .hero__stats {
        gap: 16px;
        padding-top: 24px;
    }

    .hero__stat-value {
        font-size: 28px;
    }

    .hero__stat-suffix {
        font-size: 16px;
    }

    .hero__stat-label {
        font-size: 12px;
    }

    /* Hero BG: облегчаем на мобильных, но оставляем атмосферу */
    .hero__orbit {
        display: none;
    }

    .hero__grid {
        opacity: 0.2;
    }

    .hero__aurora {
        opacity: 0.4;
    }

    /* Мягкая анимация для badge dot */
    .hero__badge-dot {
        animation: pulse-dot 2.5s ease infinite;
    }

    /* Статы: лёгкая анимация парения */
    .hero__stat {
        animation: heroStatFloat 8s ease-in-out infinite;
    }

    /* Monolith: показываем одну орбиту */
    body.vstyle-monolith .hero__orbit {
        display: block;
    }

    body.vstyle-monolith .hero__orbit--1 {
        width: 250px;
        height: 250px;
    }

    body.vstyle-monolith .hero__orbit--2,
    body.vstyle-monolith .hero__orbit--3 {
        display: none;
    }

    /* Monolith hero: убираем scanline/crosshair */
    body.vstyle-monolith .mono-scanline,
    body.vstyle-monolith .mono-crosshair {
        display: none;
    }

    body.vstyle-monolith .mono-data {
        font-size: 7px;
        letter-spacing: 0.08em;
    }

    body.vstyle-monolith .hero__title {
        font-size: clamp(24px, 7vw, 36px);
        padding-left: 16px;
    }

    body.vstyle-monolith .hero__title::before {
        width: 3px;
    }

    /* Monolith sections: компактнее */
    body.vstyle-monolith .section-title {
        font-size: clamp(22px, 6vw, 32px);
        letter-spacing: 0.02em;
    }

    body.vstyle-monolith .hero__badge {
        font-size: 10px;
        letter-spacing: 0.1em;
        padding: 6px 14px;
    }

    /* Monolith section-header orbit — уменьшаем */
    body.vstyle-monolith .section-header::before {
        width: 120px;
        height: 120px;
    }

    /* Cases grid — 1 колонка */
    .cases__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cases__card {
        padding: 24px;
    }

    /* Collage: убираем clip-path на картах кейсов — контент обрезается */
    body.vstyle-collage .cases__card {
        clip-path: none;
        padding: 24px;
    }

    /* Services card */
    .services__card {
        padding: 24px;
    }

    .services__grid {
        gap: 16px;
    }

    /* Channels: 1 колонка на мобильных */
    .services__channels,
    .services__channels--2x2,
    .services__channels--4 {
        grid-template-columns: 1fr;
    }

    .services__channel {
        padding: 14px;
    }

    .services__card-title {
        font-size: 18px;
    }

    /* Section headers */
    .section-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .section-desc {
        font-size: 14px;
    }

    /* Collage section-header — выравниваем на мобильных */
    body.vstyle-collage .section-header {
        transform: none;
        padding-left: 0;
    }

    body.vstyle-collage .section-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-left: 0;
    }

    body.vstyle-collage .section-tag {
        transform: none;
    }

    /* Model months */
    .model__months {
        gap: 16px;
    }

    .model__month {
        padding: 24px;
    }

    .model__desc {
        font-size: 15px;
    }

    /* Process steps */
    .process__item {
        padding: 20px;
    }

    .process__item-content h3 {
        font-size: 17px;
    }

    .process__item-content p {
        font-size: 14px;
    }

    /* About section: grid 1 колонка + текст по левому краю */
    .about__inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about__content {
        order: 1;
    }

    .about__founder {
        order: 2;
        max-width: 100%;
        margin: 0;
    }

    .about__text {
        font-size: 15px;
    }

    .about__text--accent {
        font-size: 18px;
        padding-left: 16px;
    }

    .about__values {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about__value {
        padding: 24px 20px;
        min-height: auto;
        flex-direction: row;
        align-items: flex-start;
    }

    .about__founder-stat-value {
        font-size: 20px;
    }

    .about__founder-stat-label {
        font-size: 12px;
    }

    .about__founder-info strong {
        font-size: 16px;
    }

    .about__founder-motto {
        font-size: 14px;
    }

    /* Not-for */
    .not-for__grid {
        grid-template-columns: 1fr;
    }

    .not-for__item {
        padding: 20px 16px;
    }

    .not-for__text strong {
        font-size: 15px;
    }

    .not-for__text p {
        font-size: 13px;
    }

    /* FAQ */
    .faq__question {
        font-size: 15px;
        padding: 18px 20px;
    }

    .faq__answer p {
        font-size: 14px;
    }

    /* Collage FAQ — убираем наклоны */
    body.vstyle-collage .faq__item:nth-child(odd),
    body.vstyle-collage .faq__item:nth-child(even) {
        transform: none;
        margin-top: 0;
    }

    /* Collage cards — убираем наклоны и overlap */
    body.vstyle-collage .not-for__item:nth-child(odd),
    body.vstyle-collage .not-for__item:nth-child(even) {
        transform: none;
    }

    body.vstyle-collage .about__founder {
        transform: none;
    }

    /* CTA buttons full width */
    .btn--lg {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* CTA mid */
    .cta-mid__inner {
        padding: 32px 20px;
    }

    .cta-mid__inner h2 {
        font-size: clamp(20px, 5vw, 28px);
    }

    /* CTA Final mobile */
    .cta-final__inner {
        padding: 40px 24px;
    }

    .cta-final__form-row {
        grid-template-columns: 1fr;
    }

    .cta-final__title {
        font-size: clamp(22px, 5.5vw, 30px);
    }

    .cta-final__desc {
        font-size: 14px;
    }

    /* Marquee — компактнее */
    .marquee__item {
        font-size: clamp(32px, 6vw, 56px);
        padding: 0 20px;
    }

    /* Footer */
    .footer__inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer__links {
        flex-direction: column;
        gap: 24px;
    }

    .footer__tagline,
    .footer__desc {
        font-size: 14px;
    }

    /* Trusted strip mobile */
    .trusted__label {
        font-size: 13px;
        text-align: center;
    }

    /* Collage overlays — скрываем на мобильных */
    body.vstyle-collage .collage-tape,
    body.vstyle-collage .collage-drip,
    body.vstyle-collage .collage-glass-float {
        display: none;
    }

    /* Float-tags — показываем 2 из 4 на мобильных */
    .hero__float-tag {
        display: block;
        font-size: 9px;
        padding: 5px 10px;
        opacity: 0.35;
        animation-duration: 20s !important;
    }
    .hero__float-tag--1 {
        top: 8%;
        right: 4%;
    }
    .hero__float-tag--2 {
        top: 28%;
        right: 2%;
    }
    .hero__float-tag--3,
    .hero__float-tag--4 {
        display: none;
    }

    /* Style toggle — поближе к низу */
    #styleToggle {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Telegram float */
    .tg-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 70px;
    }

    /* Sticky CTA — текст обрезается */
    .sticky-cta__inner {
        padding: 0 16px;
    }

    /* Горизонтальный скролл — блокируем */
    html, body {
        overflow-x: hidden;
    }

    /* Micro interactions: подсветка карточек при скролле */
    .problem__card,
    .model__month,
    .services__card,
    .cases__card {
        transition: transform 0.4s var(--ease-out),
                    border-color 0.4s ease,
                    box-shadow 0.4s ease;
    }

    /* Monolith mobile: section-header центрирование */
    body.vstyle-monolith .section-header {
        text-align: center;
    }

    body.vstyle-monolith .section-header::before {
        width: 100px;
        height: 100px;
    }

    body.vstyle-monolith .section-tag {
        display: inline-block;
    }

    /* Monolith mobile: cards без orbital dots offset */
    body.vstyle-monolith .problem__card,
    body.vstyle-monolith .model__month {
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero__title {
        font-size: clamp(22px, 7vw, 32px);
        hyphens: auto;
        -webkit-hyphens: auto;
        word-break: break-word;
    }

    .hero__badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    /* Float-tags: все скрыть на 480px */
    .hero__float-tag {
        display: none !important;
    }

    .hero__actions .btn {
        font-size: 14px;
        padding: 14px 24px;
    }

    .hero__stats {
        gap: 12px;
    }

    .hero__stat-value {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    /* Approach */
    .approach__step {
        gap: 16px;
        padding: 16px 0;
    }

    .approach__step-content h3 {
        font-size: 16px;
    }

    .approach__step-content p {
        font-size: 13px;
    }

    /* Not-for cards */
    .not-for__item {
        padding: 16px 14px;
    }

    /* CTA final */
    .cta-final__inner {
        padding: 28px 14px;
    }

    .cta-final__title {
        font-size: 20px;
    }

    .cta-final__input,
    .cta-final__select,
    .cta-final__textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    /* Services on 480px */
    .services__card-title {
        font-size: 16px;
    }

    .services__channel-name {
        font-size: 13px;
    }

    .services__channel-desc {
        font-size: 12px;
    }

    /* Cases on 480px */
    .cases__card-title {
        font-size: 17px;
    }

    .cases__metric-value {
        font-size: 22px;
    }

    .cases__card-desc {
        font-size: 13px;
    }

    /* Model */
    .model__month h3 {
        font-size: 17px;
    }

    .model__month p {
        font-size: 13px;
    }

    .model__month-num {
        font-size: 22px;
    }

    /* About */
    .about__value strong {
        font-size: 17px;
    }

    .about__value p {
        font-size: 13px;
    }

    /* Monolith: все mono-data скрываем */
    body.vstyle-monolith .mono-data,
    body.vstyle-monolith .mono-corner {
        display: none;
    }

    /* Nav mobile menu */
    .nav__links {
        top: 60px;
    }

    .nav__link {
        font-size: 18px;
    }

    /* Footer */
    .footer__bottom p {
        font-size: 12px;
    }
}

/* ============================================
   TOUCH FEEDBACK — haptic-feel :active states
   ============================================ */
@media (hover: none) and (pointer: coarse) {
    .btn--primary:active {
        transform: scale(0.96);
        filter: brightness(0.92);
    }

    .btn--ghost:active {
        transform: scale(0.96);
        background: rgba(var(--accent-1-rgb), 0.08);
    }

    .problem__card:active,
    .services__card:active,
    .cases__card:active,
    .model__month:active {
        transform: scale(0.97);
        border-color: var(--accent-1);
        transition-duration: 0.1s;
    }

    .faq__question:active {
        background: rgba(var(--accent-1-rgb), 0.05);
        transition-duration: 0.1s;
    }

    .nav__link:active {
        color: var(--accent-1);
        transform: scale(0.95);
    }

    .style-toggle:active {
        transform: scale(0.9);
    }

    .tg-float:active {
        transform: scale(0.9);
    }

    /* Tap highlight для iOS */
    a, button {
        -webkit-tap-highlight-color: rgba(var(--accent-1-rgb), 0.15);
    }
}

/* ============================================
   SCROLL SNAP — soft proximity on mobile
   ============================================ */
@media (max-width: 768px) and (hover: none) {
    html {
        scroll-snap-type: y proximity;
    }

    .hero,
    .problem,
    .approach,
    .model,
    .services,
    .cases,
    .process,
    .about,
    .not-for,
    .faq,
    .cta-final {
        scroll-snap-align: start;
        scroll-snap-stop: normal;
    }
}

/* ============================================
   FONT LOADING — skeleton shimmer
   ============================================ */
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.fonts-loading .hero__title,
.fonts-loading .hero__subtitle {
    color: transparent;
    background: linear-gradient(90deg,
        var(--bg-card) 25%,
        rgba(var(--accent-1-rgb), 0.08) 50%,
        var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease infinite;
    border-radius: 4px;
}

/* ============================================
   ACCESSIBILITY: reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero__float-tag { animation: none !important; }
    .model__month.cosmic-hidden { opacity: 1; transform: none; }
    .process__item.cosmic-hidden { opacity: 1; transform: none; }
    .about__value.cosmic-hidden { opacity: 1; transform: none; }
    .problem__card { opacity: 1 !important; transform: none !important; animation: none !important; }
    .services__card { opacity: 1 !important; transform: none !important; animation: none !important; }
    .faq__item { opacity: 1 !important; transform: none !important; }
    .hero__subtitle { animation: none !important; }
    .cases__card { opacity: 1 !important; transform: none !important; filter: none !important; }
}
