/* site.css — консолидированные стили LOVII (theme+core+main+components+responsive). Сгенерировано при рефакторинге. */

:root {
    --bg-color: #FFFFFF;
    --text-color: #1A202C;
    --text-secondary: #64748B;
    --accent-color: #0D9488;
    --accent-secondary: #14B8A6;
    --accent-light: #5EEAD4;
    --card-bg: #FFFFFF;
    --card-bg-alt: rgba(13, 148, 136, 0.03);
    --border-color: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #0D9488, #14B8A6);
    --gradient-accent: linear-gradient(135deg, #0D9488, #5EEAD4);
    --gradient-dark: linear-gradient(135deg, #FFFFFF, #F8FAFC);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(13, 148, 136, 0.12);
    --blue-accent: #3B82F6;
    --gold-accent: #F59E0B;
    --section-alt: #F8FAFC;
    --overlay-bg: rgba(0, 0, 0, 0.3);
    --drawer-bg: rgba(255, 255, 255, 0.95);
    --drawer-border: rgba(13, 148, 136, 0.12);
    --drawer-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
            --bg-color: #0F172A;
            --text-color: #F1F5F9;
            --text-secondary: #94A3B8;
            --accent-color: #14B8A6;
            --accent-secondary: #5EEAD4;
            --card-bg: #1E293B;
            --border-color: #334155;
            --section-alt: #1E293B;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 8px 30px rgba(13, 148, 136, 0.2);
            --overlay-bg: rgba(0, 0, 0, 0.5);
            --drawer-bg: rgba(30, 41, 59, 0.95);
            --drawer-border: rgba(20, 184, 166, 0.15);
            --drawer-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
        }



[data-theme="light"] {
    --bg-color: #F8FAFC;
    --text-color: #0F172A;
    --text-secondary: #475569;
    --accent-color: #0D9488;
    --accent-secondary: #0F766E;
    --accent-light: #5EEAD4;
    --card-bg: #FFFFFF;
    --card-bg-alt: rgba(13, 148, 136, 0.05);
    --border-color: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #0D9488, #14B8A6);
    --gradient-accent: linear-gradient(135deg, #0D9488, #5EEAD4);
    --gradient-dark: linear-gradient(135deg, #FFFFFF, #F8FAFC);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(13, 148, 136, 0.15);
}

/* === core.css (reset, body, container, keyframes) === */
/* core.css — CSS-переменные, reset, типографика, body, контейнеры */

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

        html {
            overflow-x: hidden;
            width: 100%;
        }

body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            overflow-y: scroll;
            hyphens: auto;
            lang: ru;
        }

        /* Russian hyphenation: safe wrapping without mid-syllable breaks */
        p, li, td, th, .card-text, .faq-item p, .roadmap-content p,
        .case-body p, .step-card p, .doc-body p, .doc-info p,
        .details-value, .issuer-desc, .hero-subtitle, .section-subtitle {
            overflow-wrap: anywhere;
            word-break: normal;
        }

        img, svg, video {
            max-width: 100%;
            height: auto;
        }

.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
@keyframes pageFadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

main, .main, .doc-wrapper {
            animation: pageFadeIn 0.4s ease-out;
        }

/* === components.css === */
/* components.css — header, footer, floating-nav, mobile-nav, drawer, status-bar, кнопки, карточки, анимации */

/* === Header & Status Bar === */
/* Status Bar */
        .status-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            padding: 6px 20px;
            background: var(--accent-color);
            color: white;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .status-step {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 16px;
            opacity: 0.5;
            transition: opacity 0.3s;
        }

        .status-step .step-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: white;
            flex-shrink: 0;
        }

        .status-bar > .step-line {
            width: 24px;
            height: 1px;
            
            background: rgba(255,255,255,0.3);
            flex-shrink: 0;
        }

        .status-step.active {
            opacity: 1;
        }

        .status-step.active .step-dot {
            box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
        }

        .status-label {
            display: inline;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 40px;
        }

        .logo img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .logo .logo-dark {
            display: none;
        }

        [data-theme="dark"] .logo .logo-light {
            display: none;
        }

        [data-theme="dark"] .logo .logo-dark {
            display: block;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .header-link {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .header-link:hover {
            color: var(--accent-color);
        }
        .header-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .theme-toggle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            background: var(--card-bg);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            border-color: var(--accent-color);
            transform: scale(1.05);
        }

        .theme-icon {
            width: 20px;
            height: 20px;
            color: var(--text-color);
            transition: all 0.3s ease;
        }

        .theme-icon.sun {
            display: none;
        }

        .theme-icon.moon {
            display: block;
        }

        [data-theme="dark"] .theme-icon.sun {
            display: block;
        }
[data-theme="dark"] .theme-icon.moon {
            display: none;
        }

        /* Header Hamburger — visible at 768-1024px */
        .header-hamburger {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            background: var(--card-bg);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .header-hamburger:hover {
            border-color: var(--accent-color);
            transform: scale(1.05);
        }

        .header-hamburger svg {
            width: 22px;
            height: 22px;
            color: var(--text-color);
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .header-hamburger {
                display: flex;
            }
        }

        @media (max-width: 768px) {
            .header-hamburger {
                display: none;
            }
            .floating-nav {
                display: none !important;
            }
        }
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
    .mobile-nav-list {
        display: none !important;
    }

    .floating-nav {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .header-hamburger {
        display: none;
    }
}


        /* ===== Floating Nav (global, loads on all pages) ===== */
        .floating-nav {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 900;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 12px 8px;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(13, 148, 136, 0.15);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            width: 52px;
            transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        [data-theme="dark"] .floating-nav {
            background: rgba(30, 41, 59, 0.7);
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .floating-nav:hover {
            width: 190px;
        }

        .floating-nav a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            padding: 10px 0;
            text-decoration: none;
            color: var(--text-secondary);
            border-radius: 10px;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            position: relative;
        }

        .floating-nav:hover a {
            justify-content: flex-start;
            gap: 12px;
            padding: 10px 12px;
        }

        .floating-nav a svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            stroke: currentColor;
            stroke-width: 1.8;
            fill: none;
            transition: stroke 0.25s;
        }

        .floating-nav a .nav-label {
            font-size: 0.85rem;
            font-weight: 500;
            opacity: 0;
            width: 0;
            overflow: hidden;
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .floating-nav:hover a .nav-label {
            opacity: 1;
            width: auto;
        }

        .floating-nav a:hover {
            background: rgba(13, 148, 136, 0.08);
            color: var(--accent-color);
        }

        .floating-nav a:hover svg {
            stroke: var(--accent-color);
        }

        .floating-nav a.active {
            color: var(--accent-color);
        }

        .floating-nav a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 20px;
            background: var(--accent-color);
            border-radius: 0 3px 3px 0;
        }

        [data-theme="dark"] .floating-nav a:hover {
            background: rgba(20, 184, 166, 0.12);
        }

[data-theme="dark"] .header {
            background: rgba(15, 23, 42, 0.98);
        }

[data-theme="dark"] .hero {
            background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
        }

[data-theme="dark"] .about,
        [data-theme="dark"] .investment {
            background: var(--card-bg);
        }

/* === Footer === */
/* Footer */
footer {
            background: var(--card-bg);
            border-top: 1px solid var(--border-color);
            padding: 60px 20px;
            text-align: center;
        }

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

        footer a:hover {
            text-decoration: underline;
        }

        .disclaimer {
            color: var(--text-secondary);
            font-size: 0.85rem;
            max-width: 700px;
            margin: 15px auto 0;
        }

/* === Mobile Nav & Drawer === */

/* Mobile Nav - hidden by default, shown on mobile */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 8px 0 12px;
    z-index: 2000;
    justify-content: space-around;
}

[data-theme="dark"] .mobile-nav {
    background: var(--card-bg);
}

.mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 6px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    min-width: 55px;
}

#mobile-nav-list,
.mobile-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.mobile-nav a svg {
    width: 20px;
    height: 22px;
    margin-bottom: 4px;
    fill: var(--text-secondary);
}

.mobile-nav a.active,
.mobile-nav a:hover {
    color: var(--accent-color);
}

.mobile-nav a.active svg,
.mobile-nav a:hover svg {
    fill: var(--accent-color);
}

/* Drawer Overlay */
.drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-bg);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
    height: 100vh; /* Ensure full height for child fixed positioning */
}

.drawer-overlay.open {
    display: block;
    opacity: 1;
}

/* Drawer Sheet */
.drawer-sheet {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85vw;
    max-width: 320px;
    height: 100vh; /* Explicit height for fixed positioning */
    z-index: 2001;
    background: var(--drawer-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--drawer-border);
    box-shadow: var(--drawer-shadow);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: env(safe-area-inset-top) 20px calc(20px + env(safe-area-inset-bottom)) 20px;
}

[data-theme="dark"] .drawer-sheet {
    background: var(--drawer-bg);
    border-color: var(--drawer-border);
}

.drawer-overlay.open .drawer-sheet {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--card-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    z-index: 1;
}

.drawer-section {
    margin-bottom: 24px;
}

.drawer-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding: 0 4px;
}

.drawer-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
}

.drawer-item:active {
    background: rgba(13,148,136,0.08);
}

.drawer-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.drawer-item.active {
    color: var(--accent-color);
}

/* Hide drawer on desktop */

/* === Design System: Base Components === */

        .card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .card-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .card-text {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        a.btn-primary {
            background: var(--gradient-primary);
            color: #ffffff !important;
            box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(13, 148, 136, 0.4);
        }

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

        .btn-secondary:hover {
            background: var(--accent-color);
            color: white;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        section {
            padding: 100px 20px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .issuer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .issuer-card {
            text-align: center;
            padding: 30px 20px;
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid var(--border-color);
        }

        .issuer-value {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--accent-color);
            margin-bottom: 8px;
        }

        .issuer-section {
            background: var(--bg-color);
            padding: 80px 20px;
        }

        .team-card-full {
            text-align: left;
            padding: 35px 30px;
        }

        .team-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .team-achievements {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 25px;
            padding: 20px;
            background: var(--bg-color);
            border-radius: 12px;
        }

        .investment-card {
            background: var(--bg-color);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            border: 2px solid var(--accent-color);
        }

        .investment-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .investment-value {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 20px 80px;
            background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

/* === main.css (scrollbar, selection, animations) === */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

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

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

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

/* === responsive.css === */
/* responsive.css — все адаптивные стили для основных страниц */
@media (max-width: 768px) {
            .mobile-nav {
                display: flex !important;
                padding: 6px 0 10px;
                width: 100%;
                box-sizing: border-box;
                bottom: 0;
                padding-bottom: env(safe-area-inset-bottom);
            }
            .mobile-nav a {
                min-width: 0;
                padding: 4px 4px;
            }
            .floating-nav {
                display: none !important;
            }

            .status-bar {
                font-size: 0.6rem;
                padding: 4px 10px;
                gap: 0;
            }

            .status-step {
                padding: 0 6px;
            }

            .status-bar > .step-line {
                width: 12px;
            }

            .status-label {
                display: none;
            }

            .drawer-overlay.open ~ .mobile-nav {
                display: flex !important;
            }

            .header-inner {
                padding: 12px 16px;
            }

            .header-actions .header-link {
                display: none;
            }

            .header-badge {
                font-size: 0.65rem;
                padding: 3px 8px;
            }

            .theme-toggle {
                width: 40px;
                height: 40px;
            }

            .floating-nav {
                display: none !important;
            }

            footer {
                padding-bottom: 80px;
            }

            body {
                padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom) 0;
                line-height: 1.7;
            }

            section {
                padding: 60px 20px;
            }

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

            .section-title {
                font-size: clamp(1.5rem, 6vw, 2rem);
                line-height: 1.2;
                margin-bottom: 12px;
            }

            .section-subtitle {
                font-size: clamp(0.9rem, 2.8vw, 1rem);
                color: var(--text-secondary);
            }

            .hero {
                padding: 80px 20px 60px;
            }

            .hero-title {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
                line-height: 1.15;
            }

            .hero-subtitle {
                font-size: clamp(0.95rem, 3vw, 1.15rem);
                line-height: 1.7;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }

            .hero-buttons .btn {
                width: 100%;
                min-width: auto;
                padding: 16px 24px;
            }

            .card,
            .issuer-card,
            .investment-card,
            .case-card,
            .step-card,
            .stat-box,
            .faq-item,
            .product-card,
            .fund-item,
            .partner-item {
                padding: 24px;
                border-radius: 20px;
            }

            .card-text,
            .issuer-desc,
            .case-body p,
            .step-card p,
            .faq-item p {
                font-size: 0.95rem;
                color: var(--text-secondary);
                line-height: 1.6;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .team-card-full {
                padding: 24px 20px;
            }

            .team-expertise {
                justify-content: center;
            }

            .issuer-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .issuer-value {
                font-size: 2rem;
            }

            .investment-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .investment-value {
                font-size: 2.5rem;
            }

            .funds-row {
                grid-template-columns: 60px 120px 1fr;
            }

            .funds-col.col-detail {
                display: none;
            }

            .funds-header .col-detail {
                display: flex;
            }

            .case-metric .cm-value {
                font-size: 0.9rem;
            }

            .case-metric .cm-label {
                font-size: 0.65rem;
            }

            .doc-table {
                display: block;
                border: none;
            }

            .doc-table thead {
                display: none;
            }

            .doc-table tbody tr {
                display: block;
                padding: 16px;
                margin-bottom: 12px;
                background: var(--card-bg);
                border: 1px solid var(--border-color);
                border-radius: 20px;
            }

            .doc-table tbody td {
                display: flex;
                justify-content: space-between;
                padding: 6px 0;
                border: none;
                font-size: 0.9rem;
            }

            .doc-table tbody td::before {
                content: attr(data-label);
                font-weight: 600;
                color: var(--text-secondary);
                font-size: 0.8rem;
            }

            .roadmap::before {
                left: 20px;
            }

            .roadmap-content h3 {
                font-size: 1rem;
            }

            .step-card {
                padding: 24px 18px;
            }

            .card {
                backdrop-filter: blur(4px);
            }

            .card:hover {
                box-shadow: 0 12px 40px rgba(13, 148, 136, 0.08);
            }

            .achievement-value {
                font-size: 1.2rem;
            }

            .investment-card {
                padding: 30px 24px;
            }

            .investment-details div {
                flex-direction: column;
                gap: 6px;
                font-size: 0.9rem;
            }

            .investment-details div span:first-child {
                color: var(--text-secondary);
                font-size: 0.8rem;
            }

            .issuer-section {
                padding: 60px 20px;
            }

            .issuer-card {
                padding: 24px 20px;
            }

            .calc-form {
                padding: 24px;
            }

            .calc-result-item {
                padding: 16px 20px;
            }

            .calc-result-item .crl-value {
                font-size: 1.1rem;
            }

            .calc-result-item.highlight .crl-value {
                font-size: 1.3rem;
            }

            .logo-showcase {
                padding: 40px 15px;
            }

            .logo-wrapper {
                max-width: 100%;
            }

            .doc-icon {
                width: 40px;
                height: 40px;
            }

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

            .doc-info h4 {
                font-size: 0.95rem;
            }

            .doc-info p {
                font-size: 0.8rem;
            }

            .doc-item {
                flex-wrap: wrap;
                gap: 12px;
            }

            .doc-tag { order: 1; }

            .doc-info { width: calc(100% - 64px); }

            .doc-arrow { margin-left: auto; }

            .onboarding-steps { grid-template-columns: 1fr; }

            .team-achievements {
                grid-template-columns: 1fr;
            }

            .team-header {
                flex-direction: column;
                text-align: center;
            }

            .calc-layout { grid-template-columns: 1fr; }

            .case-metrics { grid-template-columns: repeat(3, 1fr); }

            .details-row {
                flex-direction: column;
                gap: 8px;
                padding: 15px 20px;
            }

            .details-label {
                width: auto;
            }
        }



@media print {
            .status-bar, .status-step, .step-line, .step-dot {
                display: none !important;
            }
            .floating-nav {
                display: none !important;
            }
        }

@media (max-width: 480px) {
            .hero-title {
                font-size: clamp(1.5rem, 7vw, 1.8rem);
            }

            .section-title {
                font-size: clamp(1.2rem, 5vw, 1.4rem);
            }

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

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

            .issuer-card {
                padding: 20px 16px;
            }

            .funds-row {
                grid-template-columns: 50px 100px 1fr;
            }

            /* Цели продукта — адаптация */
            .investment-card {
                padding: 24px 20px;
            }

            .investment-value {
                font-size: 2rem;
            }

            .investment-details div {
                flex-direction: column;
                gap: 4px;
                font-size: 0.85rem;
            }

            .investment-details div span:first-child {
                color: var(--text-secondary);
                font-size: 0.75rem;
            }

            /* Документация выпуска — адаптация */
            .doc-item {
                flex-wrap: wrap;
                padding: 16px 18px;
                gap: 14px;
            }

            .doc-icon {
                width: 38px;
                height: 38px;
            }

            .doc-icon svg {
                width: 18px;
                height: 18px;
            }

            .doc-info h4 {
                font-size: 0.9rem;
                line-height: 1.3;
            }

            .doc-info p {
                font-size: 0.75rem;
                line-height: 1.4;
            }

            .doc-tag {
                font-size: 0.65rem;
                padding: 3px 8px;
                order: 3;
                width: 100%;
                text-align: center;
            }

            .doc-arrow {
                display: none;
            }
        }
