   :root {
        --black: #0a0a0a;
        --black-alt: #0d0d0d;
        --black-card: #111111;
        --black-surface: #141414;
        --blue: #0075e7;
        --blue-glow: rgba(0, 117, 231, 0.5);
        --blue-glow-soft: rgba(0, 117, 231, 0.25);
        --blue-light: #0099ff;
        --blue-dark: #005bb5;
        --white: #ffffff;
        --white-90: rgba(255, 255, 255, 0.9);
        --white-70: rgba(255, 255, 255, 0.7);
        --white-50: rgba(255, 255, 255, 0.5);
        --white-30: rgba(255, 255, 255, 0.3);
        --white-10: rgba(255, 255, 255, 0.1);
        --white-05: rgba(255, 255, 255, 0.05);
        --white-03: rgba(255, 255, 255, 0.03);
        --font-primary: 'Inter', sans-serif;
        --font-heading: 'Manrope', sans-serif;
        --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        --section-padding: 120px 0;
        --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
        --border-blue-subtle: 1px solid rgba(0, 117, 231, 0.2);
        --radius-sm: 8px;
        --radius-md: 14px;
        --radius-lg: 20px;
        --radius-xl: 28px;
    }

    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: #0075e7 #0a0a0a;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Премиальный технологичный скроллбар */
    ::-webkit-scrollbar {
        width: 8px;
        background: transparent;
    }

    ::-webkit-scrollbar-track {
        background: repeating-linear-gradient(
            to bottom,
            transparent,
            transparent 8px,
            rgba(255, 255, 255, 0.04) 8px,
            rgba(255, 255, 255, 0.04) 10px
        );
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 10px;
        margin: 6px 0;
    }

    ::-webkit-scrollbar-thumb {
        background: 
            linear-gradient(90deg, 
                rgba(255, 255, 255, 0.15) 0%, 
                rgba(255, 255, 255, 0.05) 50%, 
                rgba(0, 0, 0, 0.2) 100%
            ),
            linear-gradient(180deg, #0075e7 0%, #00b4ff 100%);
        border-radius: 20px;
        box-shadow: 
            0 0 25px rgba(0, 117, 231, 0.7),
            inset 0 1px 2px rgba(255, 255, 255, 0.4),
            inset 0 -1px 2px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(6px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    ::-webkit-scrollbar-thumb:hover {
        background: 
            linear-gradient(90deg, 
                rgba(255, 255, 255, 0.25) 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                rgba(0, 0, 0, 0.3) 100%
            ),
            linear-gradient(180deg, #0099ff 0%, #00d4ff 100%);
        box-shadow: 
            0 0 45px rgba(0, 180, 255, 0.9),
            inset 0 1px 3px rgba(255, 255, 255, 0.6),
            inset 0 -1px 3px rgba(0, 0, 0, 0.4);
        width: 12px;
    }

    body {
        font-family: var(--font-primary);
        background-color: var(--black);
        color: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
        min-height: 100vh;
    }

    /* ============ CANVAS BACKGROUND ============ */
    #bg-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        opacity: 0.7;
    }

    /* ============ HEADER ============ */
.logo-img {
    height: 48px;
    width: auto;
    margin-top: 15px;
    display: block;
    max-height: 100%;
    filter: drop-shadow(0 0 20px #0075e7) drop-shadow(0 0 40px #0075e7);
    animation: logoPulse 3.5s ease-in-out infinite;
    transition: filter var(--transition-smooth);
}

.logo-area:hover .logo-img {
    filter: drop-shadow(0 0 30px #0099ff) drop-shadow(0 0 60px #0075e7);
    animation: none;
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 0 15px #0075e7) drop-shadow(0 0 30px #0075e7);
    }
    50% {
        filter: drop-shadow(0 0 30px #00aaff) drop-shadow(0 0 55px #0075e7);
    }
    100% {
        filter: drop-shadow(0 0 15px #0075e7) drop-shadow(0 0 30px #0075e7);
    }
}
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 20px 0;
        transition: all var(--transition-smooth);
        background: transparent;
    }

    .header.scrolled {
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

    .header-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    /* Логотип */
    .logo-area {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-shrink: 0;
        cursor: pointer;
        text-decoration: none;
    }

    .logo-placeholder {
        width: 48px;
        height: 48px;
        border: 2px solid var(--blue);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 117, 231, 0.08);
        transition: all var(--transition-smooth);
        position: relative;
        overflow: hidden;
    }

    .logo-placeholder::after {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: var(--radius-sm);
        background: var(--blue);
        opacity: 0;
        transition: opacity var(--transition-smooth);
        z-index: -1;
    }

    .logo-area:hover .logo-placeholder::after {
        opacity: 0.2;
    }

    .logo-placeholder svg {
        width: 26px;
        height: 26px;
        fill: var(--blue);
        transition: transform var(--transition-smooth);
    }

    .logo-area:hover .logo-placeholder svg {
        transform: scale(1.1);
    }

    .logo-text {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.35rem;
        letter-spacing: -0.02em;
        color: var(--white);
        white-space: nowrap;
        transition: color var(--transition-fast);
    }

    .logo-text span {
        color: var(--blue);
        font-weight: 800;
    }

    /* Навигация */
    .nav {
        display: flex;
        align-items: center;
        gap: 36px;
        list-style: none;
    }

    .nav a {
        text-decoration: none;
        color: var(--white-70);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        position: relative;
        padding: 6px 0;
        transition: color var(--transition-fast);
        white-space: nowrap;
    }

    .nav a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--blue);
        border-radius: 2px;
        transition: width var(--transition-smooth);
        box-shadow: 0 0 12px var(--blue-glow);
    }

    .nav a:hover,
    .nav a.active {
        color: var(--white);
    }

    .nav a:hover::after,
    .nav a.active::after {
        width: 100%;
    }

    /* Кнопка контакта в шапке */
    .header-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        background: var(--blue);
        color: var(--white);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        transition: all var(--transition-smooth);
        white-space: nowrap;
        box-shadow: 0 0 30px rgba(0, 117, 231, 0.35);
        position: relative;
        overflow: hidden;
    }

    .header-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
        border-radius: 50px;
    }

    .header-cta:hover {
        box-shadow: 0 0 50px rgba(0, 117, 231, 0.6);
        transform: translateY(-2px);
        background: var(--blue-light);
    }

    /* Бургер */
    .burger {
        display: none;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 8px;
    }

    .burger span {
        display: block;
        width: 28px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all var(--transition-fast);
    }

    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* ============ HERO ============ */
    .hero {
        position: relative;
        z-index: 1;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 140px 40px 80px;
        max-width: 1400px;
        margin: 0 auto;
        gap: 60px;
    }

    .hero-content {
        flex: 1 1 50%;
        max-width: 600px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 18px;
        border: 1px solid rgba(0, 117, 231, 0.4);
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 32px;
        animation: fadeInUp 0.8s ease forwards;
        background: rgba(0, 117, 231, 0.05);
    }

    .hero-badge .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--blue);
        box-shadow: 0 0 10px var(--blue-glow);
        animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
        0%,
        100% {
            box-shadow: 0 0 10px var(--blue-glow);
        }
        50% {
            box-shadow: 0 0 25px var(--blue), 0 0 40px var(--blue-glow);
        }
    }

    .hero h1 {
        font-family: var(--font-heading);
        font-size: clamp(2.6rem, 5.5vw, 4.8rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.08;
        margin-bottom: 24px;
        animation: fadeInUp 0.8s 0.15s ease forwards;
        opacity: 0;
        animation-fill-mode: forwards;
    }

    .hero h1 .highlight {
        color: var(--blue);
        position: relative;
        text-shadow: 0 0 60px var(--blue-glow);
    }

    .hero-subtitle {
        font-size: 1.15rem;
        color: var(--white-50);
        max-width: 550px;
        margin-bottom: 40px;
        font-weight: 400;
        letter-spacing: 0.01em;
        line-height: 1.7;
        animation: fadeInUp 0.8s 0.3s ease forwards;
        opacity: 0;
        animation-fill-mode: forwards;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s 0.45s ease forwards;
        opacity: 0;
        animation-fill-mode: forwards;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 32px;
        background: var(--blue);
        color: var(--white);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: all var(--transition-smooth);
        box-shadow: 0 0 40px rgba(0, 117, 231, 0.4);
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
    }

    .btn-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 60%);
        border-radius: 50px;
    }

    .btn-primary:hover {
        box-shadow: 0 0 60px rgba(0, 117, 231, 0.7);
        transform: translateY(-3px);
        background: var(--blue-light);
    }

    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 32px;
        background: transparent;
        color: var(--white);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: all var(--transition-smooth);
        border: 1px solid rgba(255, 255, 255, 0.25);
        cursor: pointer;
    }

    .btn-outline:hover {
        border-color: var(--blue);
        box-shadow: 0 0 30px rgba(0, 117, 231, 0.25);
        background: rgba(0, 117, 231, 0.06);
        transform: translateY(-3px);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(35px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Баннер вместо слайдера */
    .hero-banner-wrapper {
        flex: 1 1 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
    }

    .hero-banner {
        width: 100%;
        height: auto;
        max-width: 100%;
        border: none;
        box-shadow: none;
        animation: bannerFloat 6s ease-in-out infinite;
        object-fit: contain;
        aspect-ratio: auto;
    }

    @keyframes bannerFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
    }

    /* ============ SCROLL INDICATOR ============ */
    .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        animation: fadeInUp 1s 0.8s ease forwards;
        opacity: 0;
        animation-fill-mode: forwards;
        z-index: 2;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--white-30);
    }

    .scroll-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, var(--white-50), transparent);
        animation: scrollPulse 2s infinite;
    }

    @keyframes scrollPulse {
        0%,
        100% {
            opacity: 0.3;
            height: 40px;
        }
        50% {
            opacity: 1;
            height: 55px;
        }
    }

    /* ============ SECTIONS GENERAL ============ */
    .section {
        position: relative;
        z-index: 1;
        padding: var(--section-padding);
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 40px;
        padding-right: 40px;
    }

    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 16px;
    }

    .section-label::before {
        content: '';
        width: 28px;
        height: 1px;
        background: var(--blue);
        box-shadow: 0 0 6px var(--blue-glow);
    }

    .section-title {
        font-family: var(--font-heading);
        font-size: clamp(2rem, 3.5vw, 3.2rem);
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.15;
        margin-bottom: 20px;
        color: var(--white);
    }

    .section-desc {
        font-size: 1.05rem;
        color: var(--white-50);
        max-width: 600px;
        line-height: 1.7;
        margin-bottom: 50px;
    }

    /* ============ ABOUT SECTION ============ */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-visual {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        aspect-ratio: 4/3;
        background: var(--black-surface);
        border: var(--border-subtle);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-visual-inner {
        text-align: center;
        padding: 40px;
    }

    .about-big-number {
        font-family: var(--font-heading);
        font-size: 8rem;
        font-weight: 900;
        color: var(--blue);
        line-height: 1;
        text-shadow: 0 0 80px var(--blue-glow);
        opacity: 0.9;
    }

    .about-big-number-sub {
        font-size: 1rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--white-50);
        margin-top: 8px;
    }

    .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .stat-card {
        background: var(--black-card);
        border: var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 24px;
        text-align: center;
        transition: all var(--transition-smooth);
    }

    .stat-card:hover {
        border-color: rgba(0, 117, 231, 0.4);
        box-shadow: 0 0 30px rgba(0, 117, 231, 0.1);
        transform: translateY(-4px);
    }

    .stat-number {
        font-family: var(--font-heading);
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--blue);
        text-shadow: 0 0 20px var(--blue-glow-soft);
    }

    .stat-label {
        font-size: 0.8rem;
        color: var(--white-50);
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-top: 4px;
    }

    /* ============ PRODUCTS SECTION ============ */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        align-items: stretch; /* ячейки сетки растягиваются по высоте */
    }

    .product-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%; /* ссылка занимает всю высоту карточки */
    }

    .product-card {
        background: var(--black-card);
        border: var(--border-subtle);
        border-radius: var(--radius-lg);
        padding: 32px 28px;
        transition: all var(--transition-smooth);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%; /* карточка растягивается на всю высоту строки */
    }

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--blue);
        opacity: 0;
        transition: opacity var(--transition-smooth);
        box-shadow: 0 0 20px var(--blue-glow);
    }

    .product-card:hover::before {
        opacity: 1;
    }

    .product-card:hover {
        border-color: rgba(0, 117, 231, 0.5);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 117, 231, 0.08);
        transform: translateY(-6px);
        background: var(--black-surface);
    }

    .product-icon {
        width: 50px;
        height: 50px;
        border-radius: var(--radius-sm);
        background: rgba(0, 117, 231, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all var(--transition-smooth);
    }

    .product-card:hover .product-icon {
        background: rgba(0, 117, 231, 0.2);
        box-shadow: 0 0 25px rgba(0, 117, 231, 0.3);
    }

    .product-icon svg {
        width: 24px;
        height: 24px;
        fill: var(--blue);
    }

    .product-card h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--white);
        letter-spacing: -0.01em;
    }

    .product-card p {
        font-size: 0.9rem;
        color: var(--white-50);
        line-height: 1.6;
        margin-bottom: 16px;
        flex: 1; /* забирает всё свободное пространство, прижимая тег вниз */
    }

    .product-tag {
        display: inline-block;
        font-size: 0.7rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--blue);
        padding: 5px 12px;
        border-radius: 50px;
        border: 1px solid rgba(0, 117, 231, 0.3);
        background: rgba(0, 117, 231, 0.04);
        transition: all var(--transition-fast);
        align-self: flex-start; /* тег не растягивается на всю ширину */
    }

    .product-card:hover .product-tag {
        background: rgba(0, 117, 231, 0.1);
        border-color: var(--blue);
    }

    .product-arrow {
        position: absolute;
        bottom: 28px;
        right: 28px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-smooth);
        opacity: 0;
        transform: translateX(-10px);
    }

    .product-card:hover .product-arrow {
        opacity: 1;
        transform: translateX(0);
        border-color: var(--blue);
        background: rgba(0, 117, 231, 0.1);
    }

    .product-arrow svg {
        width: 14px;
        height: 14px;
        fill: var(--blue);
    }

    /* ============ CERTIFICATES SECTION ============ */
    .certs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
        align-items: stretch;
    }

    .cert-card {
        background: var(--black-card);
        border: var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 30px 24px;
        text-align: center;
        transition: all var(--transition-smooth);
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .cert-card:hover {
        border-color: rgba(0, 117, 231, 0.4);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 117, 231, 0.06);
        transform: translateY(-4px);
    }

    .cert-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 18px;
        border-radius: 50%;
        background: rgba(0, 117, 231, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0, 117, 231, 0.2);
        transition: all var(--transition-smooth);
        flex-shrink: 0;
    }

    .cert-card:hover .cert-icon {
        box-shadow: 0 0 30px rgba(0, 117, 231, 0.2);
        border-color: var(--blue);
    }

    .cert-icon svg {
        width: 26px;
        height: 26px;
        fill: var(--blue);
    }

    .cert-card h4 {
        font-weight: 600;
        font-size: 1rem;
        color: var(--white);
        margin-bottom: 6px;
        letter-spacing: -0.01em;
    }

    .cert-card span {
        font-size: 0.8rem;
        color: var(--white-50);
        letter-spacing: 0.03em;
    }

    /* ============ CONTACTS SECTION ============ */
    .contacts-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }

    .contact-info-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-info-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
        background: rgba(0, 117, 231, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border: 1px solid rgba(0, 117, 231, 0.2);
    }

    .contact-info-icon svg {
        width: 18px;
        height: 18px;
        fill: var(--blue);
    }

    .contact-info-text h4 {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--white-90);
        margin-bottom: 3px;
        letter-spacing: 0.01em;
    }

    .contact-info-text span {
        font-size: 0.85rem;
        color: var(--white-50);
    }

    .contact-form {
        background: var(--black-card);
        border: var(--border-subtle);
        border-radius: var(--radius-lg);
        padding: 36px 30px;
        transition: all var(--transition-smooth);
    }

    .contact-form:hover {
        border-color: rgba(0, 117, 231, 0.3);
        box-shadow: 0 0 40px rgba(0, 117, 231, 0.05);
    }

    .contact-form h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 24px;
        letter-spacing: -0.01em;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        display: block;
        font-size: 0.75rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--white-50);
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        background: var(--black-surface);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        color: var(--white);
        font-family: var(--font-primary);
        font-size: 0.9rem;
        transition: all var(--transition-fast);
        outline: none;
        resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 20px rgba(0, 117, 231, 0.15);
        background: var(--black-alt);
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-submit {
        width: 100%;
        padding: 15px;
        background: var(--blue);
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all var(--transition-smooth);
        box-shadow: 0 0 30px rgba(0, 117, 231, 0.3);
    }

    .form-submit:hover {
        box-shadow: 0 0 50px rgba(0, 117, 231, 0.6);
        background: var(--blue-light);
        transform: translateY(-2px);
    }

    /* ============ FOOTER ============ */
    .footer {
        position: relative;
        z-index: 1;
        background: #0d0d0d99;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 60px 40px 30px;
    }

    .footer-inner {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.3fr;
        gap: 40px;
    }

    .footer-col h4 {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--white-70);
        margin-bottom: 20px;
    }

    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul a {
        text-decoration: none;
        color: var(--white-50);
        font-size: 0.85rem;
        transition: color var(--transition-fast);
        letter-spacing: 0.02em;
    }

    .footer-col ul a:hover {
        color: var(--blue);
    }

    .footer-brand .logo-area {
        margin-bottom: 14px;
    }

    .footer-brand p {
        font-size: 0.85rem;
        color: var(--white-50);
        line-height: 1.7;
        max-width: 280px;
    }

    .footer-bottom {
        max-width: 1400px;
        margin: 30px auto 0;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        font-size: 0.78rem;
        color: var(--white-30);
        letter-spacing: 0.03em;
    }

    .footer-bottom a {
        color: var(--white-50);
        text-decoration: none;
        transition: color var(--transition-fast);
    }
    .footer-bottom a:hover {
        color: var(--blue);
    }

    /* ============ REVEAL ANIMATIONS ============ */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ============ MOBILE NAV OVERLAY ============ */
    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-smooth);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-nav-list {
        list-style: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .mobile-nav-list a {
        text-decoration: none;
        color: var(--white);
        font-size: 1.4rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: color var(--transition-fast);
    }

    .mobile-nav-list a:hover {
        color: var(--blue);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1100px) {
        .footer-inner { grid-template-columns: 1fr 1fr; }
        .about-grid { grid-template-columns: 1fr; gap: 40px; }
        .contacts-wrapper { grid-template-columns: 1fr; gap: 40px; }
        .hero { flex-direction: column; padding: 120px 24px 60px; gap: 40px; }
        .hero-content, .hero-banner-wrapper { flex: auto; width: 100%; }
        .hero-banner { max-width: 100%; }
    }

    @media (max-width: 860px) {
        .nav, .header-cta { display: none; }
        .burger { display: flex; }
        .hero { padding: 120px 24px 60px; }
        .section { padding: 70px 24px; }
        .footer { padding: 40px 24px 20px; }
        .footer-inner { grid-template-columns: 1fr; gap: 30px; }
        .products-grid { grid-template-columns: 1fr; }
        .certs-grid { grid-template-columns: 1fr 1fr; }
        .header-inner { padding: 0 20px; }
    }

    @media (max-width: 480px) {
        .certs-grid { grid-template-columns: 1fr; }
        .hero h1 { font-size: 2rem; }
        .hero-buttons { flex-direction: column; }
        .btn-primary, .btn-outline { width: 100%; justify-content: center; }
        .about-big-number { font-size: 5rem; }
        .about-stats { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* Социальные сети */
    .social-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(0, 117, 231, 0.08);
        border: 1px solid rgba(0, 117, 231, 0.2);
        border-radius: 50px;
        color: var(--white);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        transition: all var(--transition-smooth);
    }

    .social-link:hover {
        background: rgba(0, 117, 231, 0.2);
        border-color: var(--blue);
        box-shadow: 0 0 20px rgba(0, 117, 231, 0.3);
        transform: translateY(-2px);
    }

    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        color: var(--blue);
    }

    /* ========== FLOATING CONTACT BUTTONS ========== */
    .fab-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 10000;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 14px;
    }

    .fab-main {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--blue);
        border: none;
        color: var(--white);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 25px rgba(0, 117, 231, 0.6);
        transition: all var(--transition-smooth);
        position: relative;
        z-index: 2;
        order: 1;
    }

    .fab-main:hover {
        box-shadow: 0 0 40px rgba(0, 117, 231, 0.9);
        transform: scale(1.08);
    }

    .fab-main::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: rgba(0, 117, 231, 0.2);
        animation: fabPulse 2s infinite;
        z-index: -1;
    }

    @keyframes fabPulse {
        0% { transform: scale(1); opacity: 0.7; }
        100% { transform: scale(1.4); opacity: 0; }
    }

    .fab-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        order: 0;
    }

    .fab-container.active .fab-actions {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .fab-action-button {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--black-card);
        border: 1px solid rgba(0, 117, 231, 0.3);
        color: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all var(--transition-smooth);
        text-decoration: none;
        box-shadow: 0 0 15px rgba(0, 117, 231, 0.15);
    }

    .fab-action-button:hover {
        background: var(--blue);
        color: var(--white);
        border-color: var(--blue);
        box-shadow: 0 0 30px rgba(0, 117, 231, 0.6);
        transform: scale(1.1);
    }

    /* Стили для счётчика */
.about-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.about-header-text {
    flex: 1.2;        /* текст занимает 1.5 части */
    min-width: 280px;
}
.about-header-timer {
    flex: 1.2;        /* счётчик чуть уже текста, но заметно шире, чем был */
    min-width: 320px;  /* минимальная ширина увеличена */
    display: flex;
    align-items: center;
}
.timer-card {
    background: rgba(0, 117, 231, 0.03);
    border: 1px solid rgba(0, 117, 231, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 24px;  /* увеличены отступы */
    width: 100%;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: all var(--transition-smooth);
}
.timer-digits {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.timer-unit {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;  /* больше отступы */
    border-radius: var(--radius-md);
    min-width: 80px;     /* ширина каждой ячейки увеличена */
    text-align: center;
}
.timer-unit span:first-child {
    font-family: var(--font-heading);
    font-size: 2.5rem;   /* крупнее цифры */
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    display: block;
}
.unit-label {
    font-size: 0.8rem;   /* чуть крупнее подпись */
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 6px;
}
.timer-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}
.timer-sub {
    font-size: 0.9rem;
    color: var(--white-50);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 14px;
    margin-top: 10px;
}
@media (max-width: 860px) {
    .about-header-wrapper {
        flex-direction: column;
    }
    .about-header-text, .about-header-timer {
        flex: auto;
        width: 100%;
    }
    .timer-unit {
        min-width: 70px;
        padding: 10px 12px;
    }
    .timer-unit span:first-child {
        font-size: 2rem;
    }
}

/* ============ БЛОГ ============ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 30px;
}
.blog-card {
    background: var(--black-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
}
.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 117, 231, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0, 117, 231, 0.1);
}
.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-content {
    padding: 24px;
}
.blog-date {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}
.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.blog-excerpt {
    font-size: 0.9rem;
    color: var(--white-50);
    line-height: 1.6;
}
.blog-more {
    text-align: center;
    margin-top: 20px;
}
.blog-more .btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
}

/* ============ КОМАНДА ============ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.team-card {
    background: var(--black-card);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition-smooth);
}
.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 117, 231, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 2px solid var(--blue);
    box-shadow: 0 0 20px rgba(0,117,231,0.3);
}
.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.team-position {
    font-size: 0.85rem;
    color: var(--blue);
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}
.team-quote {
    font-size: 0.9rem;
    color: var(--white-70);
    font-style: italic;
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .blog-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ ЗАКЛЮЧИТЕЛЬНЫЙ БЛОК (КАЧЕСТВО, ДЕТАЛИ, ИННОВАЦИИ) ============ */
/* ============ ЗАКЛЮЧИТЕЛЬНЫЙ БЛОК (БЕЗ ОБВОДОК) ============ */
.conclusion-section {
    background: linear-gradient(135deg, rgba(0, 117, 231, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    /* Убираем верхнюю и нижнюю обводку */
    margin-top: 40px;
    margin-bottom: 40px;
}
.conclusion-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}
.conclusion-logo {
    margin-bottom: 24px;
}
.conclusion-logo-img {
    max-width: 80px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 0 8px var(--blue-glow));
}
.conclusion-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 24px;
}
.blue-accent {
    color: var(--blue);
    text-shadow: 0 0 15px var(--blue-glow);
}
.conclusion-text {
    max-width: 800px;
    margin: 0 auto 32px;
}
.conclusion-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--white-70);
    margin-bottom: 20px;
}
.conclusion-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 40px 0 32px;
}
.conclusion-stat-item {
    text-align: center;
}
.conclusion-stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    display: block;
    text-shadow: 0 0 20px var(--blue-glow);
}
.conclusion-stat-item .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-50);
}
.conclusion-quote {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    color: var(--white-80);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    margin-top: 20px;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .conclusion-title {
        font-size: 1.6rem;
    }
    .conclusion-stats {
        gap: 24px;
    }
    .conclusion-stat-item .stat-number {
        font-size: 1.6rem;
    }
    .conclusion-quote {
        font-size: 1rem;
    }
}

/* ============ COOKIE CONSENT ============ */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 117, 231, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 117, 231, 0.1);
    z-index: 10001;
    padding: 16px 24px;
    transition: all 0.3s ease;
}
.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookie-icon {
    flex-shrink: 0;
}
.cookie-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--white-70);
}
.cookie-text a:hover {
    text-decoration: underline;
}
.cookie-btn {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.cookie-btn:hover {
    background: var(--blue-light);
    transform: scale(1.02);
    box-shadow: 0 0 12px var(--blue-glow);
}
@media (max-width: 640px) {
    .cookie-consent {
        bottom: 10px;
        width: 95%;
        padding: 14px 18px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* ============ ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКОВ (шапка) ============ */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    flex-shrink: 0;
}
.lang-dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;   /* убираем фон */
    border: none;              /* убираем рамку */
    padding: 4px 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-70);
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: inherit;
}
.lang-dropbtn img {
    border-radius: 2px;
    width: 20px;
    height: 15px;
    display: block;
}
.lang-dropbtn .dropdown-arrow {
    transition: transform 0.2s ease;
    margin-left: 4px;
    width: 10px;
    height: 10px;
    color: var(--white-50);
}
.lang-dropdown.active .lang-dropbtn .dropdown-arrow {
    transform: rotate(180deg);
}
.lang-dropbtn:hover {
    color: var(--white);
}
.lang-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 117, 231, 0.3);
    border-radius: 16px;
    padding: 8px;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1001;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.lang-dropdown.active .lang-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-radius: 30px;
    padding: 6px 12px;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white-70);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: left;
}
.lang-option img {
    border-radius: 2px;
    width: 20px;
    height: 15px;
}
.lang-option:hover {
    background: rgba(0, 117, 231, 0.2);
    color: var(--white);
}
/* На мобильных устройствах скрываем текст в кнопке, оставляем только флаг */
@media (max-width: 860px) {
    .lang-dropdown {
        margin-right: 10px;
    }
    .lang-dropbtn span {
        display: none;
    }
    .lang-dropbtn {
        padding: 4px 6px;
    }
    .lang-option span {
        display: inline-block;
    }
}

/* ============ ФИКСЫ ШАПКИ, ЧТОБЫ КНОПКА "СВЯЗАТЬСЯ" НЕ ЛОМАЛАСЬ ============ */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.logo-area {
    flex-shrink: 0;
}
.nav {
    flex-wrap: wrap;
    gap: 20px;
}
.header-cta {
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 100px;   /* можно чуть меньше */
    text-align: center;
    padding: 8px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* На мобильных скрываем навигацию и кнопку, оставляем бургер */
@media (max-width: 860px) {
    .nav, .header-cta {
        display: none;
    }
    .burger {
        display: flex;
    }
    .header-inner {
        gap: 15px;
    }
}

        .faq-section {
            max-width: 1000px;
            margin: 0 auto;
        }
        .faq-item {
            background: rgba(17, 17, 17, 0.65);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(0, 117, 231, 0.2);
            border-radius: var(--radius-lg);
            margin-bottom: 16px;
            transition: all 0.2s ease;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 28px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--white);
            transition: all 0.2s;
        }
        .faq-question:hover {
            background: rgba(0, 117, 231, 0.08);
        }
        .faq-question .faq-icon {
            color: var(--blue);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .faq-item.active .faq-question .faq-icon {
            transform: rotate(180deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 28px;
            color: var(--white-70);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .faq-item.active .faq-answer {
            max-height: 300px; /* достаточно для ответа */
            padding-bottom: 20px;
        }
        @media (max-width: 768px) {
            .faq-question {
                padding: 16px 20px;
                font-size: 1rem;
            }
            .faq-answer {
                padding: 0 20px;
            }
            .faq-item.active .faq-answer {
                padding-bottom: 16px;
            }
        }