

:root {
    --bg-color: #080b11;
    --bg-card: #0f1524;
    --bg-header: rgba(8, 11, 17, 0.85);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --border-color: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(0, 242, 254, 0.25);
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-tech: 'Space Grotesk', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    font-family: var(--font-sans);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}
.orb-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 80%);
}
.orb-2 {
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 80%);
}

.container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}
.header__container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-tech);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}
.logo__tech {
    color: var(--text-main);
}
.logo__it {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav {
    display: flex;
    gap: 32px;
}
.nav__link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav__link:hover {
    color: var(--accent-cyan);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--header {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-mono);
    font-size: 13px;
}
.btn--header:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    color: var(--accent-cyan);
}
.btn--primary {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    color: #04060a;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.4);
}
.btn--secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.btn--secondary:hover {
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.02);
}

.hero {
    padding-top: 180px;
    padding-bottom: 100px;
}
.hero__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.badge__dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    animation: blink 2s infinite;
}
.badge__text {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero__text {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 36px;
    font-weight: 300;
}
.hero__actions {
    display: flex;
    gap: 16px;
}

.tech-circuit {
    width: 100%;
    height: auto;
    max-width: 420px;
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.1));
}
.circuit-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
.line-1 { animation: drawLine 4s infinite linear; }
.line-2 { animation: drawLine 5s infinite linear; }
.line-3 { animation: drawLine 3s infinite linear; }
.line-4 { animation: drawLine 6s infinite linear; }

.pulse-cpu {
    animation: cpuGlow 3s infinite alternate;
}
.radar-circle {
    transform-origin: 250px 250px;
    animation: radarExpand 4s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}
.moving-dot-1 {
    animation: moveDot1 6s infinite linear;
}

/* ==========================================================================\n   СТИЛИ ДЛЯ СТРОКИ ДИАГНОСТИКИ С ЗЕЛЕНОЙ ГАЛОЧКОЙ\n   ========================================================================== */

/* Родоначальник-контейнер для обеих строк преимуществ */
.diagnostic-container {
    display: flex;
    flex-direction: column;    /* Строго выстраивает элементы друг под другом */
    align-items: flex-start;   /* Выравнивает их по левому краю контейнера */
    width: max-content;        /* Контейнер сжимается под максимальную длину текста */
    margin: 16px 0;            /* Обнуляем правый и левый отступы, прижимая блок строго к левому краю контента */
    text-align: left;
}

.diagnostic-benefit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;           /* Сделано чуть крупнее для читаемости */
    font-weight: 500;
    color: var(--text-main);
    margin: 8px 0;
    padding-left: 0px;         /* Базовое положение без смещения */
    box-sizing: border-box;
}

/* Контейнер иконки SVG */
.diagnostic-check-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

/* Постоянная живая микро-пульсация галочки */
.check-icon-path {
    animation: checkPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
}

/* Легкое вращение внешнего пунктирного кольца вокруг галочки */
.check-icon-circle {
    transform-origin: 12px 12px;
    animation: checkRotate 20s linear infinite;
}

@keyframes checkPulse {
    0% {
        opacity: 0.8;
        stroke-width: 2;
    }
    100% {
        opacity: 1;
        stroke-width: 2.5;
        filter: drop-shadow(0 0 3px rgba(16, 185, 129, 0.6));
    }
}

@keyframes checkRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.section-title-block {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.services {
    padding: 100px 0;
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.service-card__icon {
    margin-bottom: 24px;
}
.service-card__icon svg {
    transition: transform 0.3s ease, filter 0.3s ease;
}
.service-card:hover .service-card__icon svg {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px currentColor);
}
.service-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.service-card__list {
    list-style: none;
}
.service-card__list li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
}
.service-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.3);
}

/* Стили виджета слогана (Оптимизированные и адаптивные) */
.hero-slogan-widget {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(15, 21, 36, 0.5);
    border: 1px solid var(--border-color);
    padding: 16px 24px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 620px;
    width: 100%;
}

.slogan-shifted {
    padding-left: 35px;
}

.slogan-widget__graphic {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slogan-widget__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    transform: translateX(-16px); /* Смещение текста слогана на 11px влево */
}
.slogan-phrase {
    font-family: var(--font-mono);
    font-size: clamp(13px, 1.2vw, 15px); /* Динамический размер текста */
    line-height: 1.4;
    color: var(--text-muted);
    white-space: nowrap; /* Предотвращает некрасивый перенос отдельных слов на десктопах */
}
.slogan-highlight {
    color: var(--accent-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

/* ==========================================================================
   КИБЕРПАНК СЕКЦИЯ ПРОФИЛАКТИКИ УСТРОЙСТВ
   ========================================================================== */
.cyber-preventive {
    padding: 100px 0;
    background-color: var(--bg-color);
    position: relative;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

/* Инженерная сетка на заднем плане блока */
.cyber-preventive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.cyber-preventive__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.cyber-preventive__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cyber-preventive__badge {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.cyber-preventive__title {
    font-family: var(--font-sans);
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.cyber-preventive__highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.cyber-preventive__lead {
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 18px;
}

.cyber-preventive__text-block {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Высокотехнологичный чеклист аргументов */
.cyber-preventive__checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

.cyber-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    padding: 16px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.cyber-check-item:hover {
    border-color: var(--border-hover);
    transform: translateX(5px);
}

.cyber-check-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.cyber-check-item__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.cyber-check-item__text strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 2px;
}

/* Кнопка в стиле киберпанк с эффектом глитча */
.cyber-btn {
    position: relative;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--text-main);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

.cyber-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.2);
}

/* Графическая визуализация справа */
.cyber-preventive__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cyber-graphic-wrapper {
    width: 100%;
    max-width: 440px;
    position: relative;
}

.cyber-mesh-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   МАТЕМАТИЧЕСКИ ТОЧНЫЕ И СТАБИЛЬНЫЕ АНИМАЦИИ
   ========================================================================== */

/* Вращение большая шестеренки по часовой стрелке */
.cyber-rotate-cw {
    transform-origin: 200px 180px;
    animation: cyberSpinClockwise 30s linear infinite;
}

/* Вращение малой шестеренки против часовой стрелки */
.cyber-rotate-ccw {
    transform-origin: 104px 256px;
    animation: cyberSpinCounter 20s linear infinite;
}

@keyframes cyberSpinClockwise {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cyberSpinCounter {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Бегущие лазерные потоки данных */
.cyber-laser-flow {
    stroke-dasharray: 12 120;
    animation: cyberLaserRun 3s linear infinite;
}

@keyframes cyberLaserRun {
    0% { stroke-dashoffset: 260; }
    100% { stroke-dashoffset: -260; }
}

/* Анимация строк терминала (Мерцание матричного лога) */
.cyber-terminal-text {
    font-family: var(--font-mono);
    font-size: 9px;
    fill: var(--accent-blue);
}

.term-line {
    opacity: 0.35;
    animation: cyberTermPulse 4s infinite ease-in-out;
}

.term-line--delayed {
    animation-delay: 2s;
    fill: var(--accent-cyan);
}

@keyframes cyberTermPulse {
    0%, 100% { opacity: 0.25; filter: drop-shadow(0 0 0px transparent); }
    50% { opacity: 0.65; filter: drop-shadow(0 0 2px var(--accent-cyan)); }
}

.cyber-hud-badge {
    animation: cyberHudMove 5s ease-in-out infinite;
}

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

/* ==========================================================================
   АДАПТИВНОСТЬ КИБЕР-БЛОКА
   ========================================================================== */
@media (max-width: 992px) {
    .cyber-preventive__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .cyber-preventive__content {
        align-items: center;
        text-align: center;
    }
    .cyber-preventive__title {
        font-size: 36px;
    }
    .cyber-graphic-wrapper {
        max-width: 380px;
    }
}

@media (max-width: 480px) {
    .cyber-preventive {
        padding: 60px 0;
    }
    .cyber-preventive__title {
        font-size: 28px;
    }
    .cyber-check-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* СТИЛИ БЛОКА 1: Почему выбирают нас */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 254, 0.01), transparent);
}
.why-us__wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.why-us__infographics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.why-card {
    background: rgba(15, 21, 36, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}
.why-card:hover {
    border-color: rgba(0, 242, 254, 0.15);
    background: rgba(15, 21, 36, 0.8);
    transform: translateX(5px);
}
.why-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.why-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}
.why-card__title {
    font-size: 18px;
    font-weight: 600;
}
.why-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.why-us__visual-panel {
    display: flex;
    justify-content: center;
}
.live-status-board {
    width: 100%;
    max-width: 360px;
    background: #0b101d;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 15px 40px rgba(0, 242, 254, 0.05);
    border-radius: 12px;
    padding: 24px;
}
.board-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
    margin-bottom: 16px;
}
.status-dot.online {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: blink 1.5s infinite;
}
.board-title {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-main);
}
.board-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--text-muted);
}
.val-code {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
}
.board-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
    margin-top: 24px;
    padding-top: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-cyan), transparent);
    border-radius: 4px 4px 0 0;
    opacity: 0.7;
    animation: barGrow 4s infinite alternate ease-in-out;
}
.chart-bar:nth-child(2) { animation-delay: 0.5s; }
.chart-bar:nth-child(3) { animation-delay: 1s; }
.chart-bar:nth-child(4) { animation-delay: 1.5s; }
.chart-bar:nth-child(5) { animation-delay: 2s; }

/* СТИЛИ БЛОКА 2: Только качественные комплектующие */
.components {
    padding: 100px 0;
    background: rgba(15, 21, 36, 0.2);
}
.components__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.component-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.component-item-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.comp-icon-box {
    display: inline-flex;
    margin-bottom: 24px;
}
.component-item-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
}
.component-item-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* СТИЛИ БЛОКА 3: Весь спектр ремонтных услуг и настройки */
.software-spec {
    padding: 100px 0;
}
.software-spec__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.terminal-box {
    background: #05080e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 13px;
}
.terminal-header {
    background: #0f1422;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
}
.term-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.fill-r { background: #ef4444; }
.fill-y { background: #f59e0b; }
.fill-g { background: #10b981; }
.term-title {
    color: var(--text-muted);
    font-size: 11px;
    margin-left: 10px;
}
.terminal-body {
    padding: 24px;
    min-height: 240px;
    line-height: 1.7;
}
.t-green { color: var(--accent-green); }
.t-white { color: #e5e7eb; }
.t-blue { color: var(--accent-blue); }
.t-orange { color: var(--accent-orange); }
.t-cursor {
    animation: blink 1s infinite;
    color: var(--accent-cyan);
    font-weight: bold;
}
.software-spec__details {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.spec-list-item__title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}
.spec-list-item__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Базовые анимации и ховеры иконок */
.icon-spin:hover svg {
    animation: rotater 2s linear infinite;
}
.icon-pulse:hover svg {
    animation: strokePulse 1.2s ease-in-out infinite;
}
.icon-wave:hover svg {
    animation: waveEffect 0.6s ease-in-out infinite alternate;
}

.component-item-card:hover .anim-chip {
    animation: rotater 8s linear infinite;
}
.component-item-card:hover .anim-battery {
    animation: strokePulse 1.5s infinite alternate;
}
.component-item-card:hover .anim-display {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px var(--accent-blue));
    transition: all 0.3s ease;
}

.advantages {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.02), transparent);
}
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.adv-card {
    border-left: 2px solid var(--border-color);
    padding: 20px 0 20px 30px;
    transition: border-color 0.3s ease;
}
.adv-card:hover {
    border-left-color: var(--accent-cyan);
}
.adv-card__number {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}
.adv-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.adv-card__text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.prices {
    padding: 100px 0;
}
.prices__table-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}
.prices__table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.prices__table th, .prices__table td {
    padding: 20px 30px;
    font-size: 15px;
}
.prices__table th {
    background-color: rgba(255,255,255,0.02);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}
.prices__table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}
.prices__table tbody tr:last-child {
    border-bottom: none;
}
.prices__table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.01);
}
.price-val {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-weight: 500;
}

.contacts {
    padding: 100px 0 140px 0;
}
.contacts__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}
.contact-item__icon {
    margin-top: 4px;
}
.contact-item__label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.contact-item__value {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 400;
}
.contact-link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-link:hover {
    color: var(--accent-cyan);
}
.contacts__map-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.contacts__map-panel iframe {
    max-width: 100%;
}
.map-placeholder {
    text-align: center;
    padding: 40px;
}
.map-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 4px;
}

.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    background-color: #05070b;
}
.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* СТИЛИ БРЕНДИНГА QXSYSTEMS LAB В ФУТЕРЕ */
.developer-credits {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-sans);
}
.developer-credits__text {
    font-size: 13px;
    font-weight: 400;
    position: relative;
}
.developer-credits__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-name {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #ffffff;
}
.brand-lab {
    color: var(--accent-cyan);
    font-weight: 400;
}
.qx-logo-icon {
    display: block;
    transition: transform 0.3s ease;
}
/* Анимация сердцебиения для SVG */
.qx-heart-pulse {
    transform-origin: 12px 13px;
    animation: qxHeartbeat 2s infinite ease-in-out;
}

/* Ховер эффекты футера */
.developer-credits:hover {
    color: #ffffff;
}
.developer-credits:hover .developer-credits__brand {
    border-color: var(--border-hover);
    background: rgba(0, 242, 254, 0.04);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}
.developer-credits:hover .qx-logo-icon {
    transform: scale(1.05);
}
.developer-credits:hover .qx-heart-pulse {
    animation: qxHeartbeat 0.8s infinite ease-in-out;
}

@keyframes drawLine {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}
@keyframes blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
@keyframes cpuGlow {
    0% { stroke-width: 1; filter: drop-shadow(0 0 5px rgba(0,242,254,0.2)); }
    100% { stroke-width: 2.5; filter: drop-shadow(0 0 15px rgba(0,242,254,0.6)); }
}
@keyframes radarExpand {
    0% { r: 10px; opacity: 1; }
    100% { r: 120px; opacity: 0; }
}
@keyframes moveDot1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(120px, 40px); }
    100% { transform: translate(0, 0); }
}
@keyframes rotater {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes strokePulse {
    0% { stroke-width: 1.5; opacity: 0.6; }
    100% { stroke-width: 2.5; opacity: 1; }
}
@keyframes waveEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
@keyframes barGrow {
    0% { transform: scaleY(0.8); }
    100% { transform: scaleY(1.1); }
}
@keyframes qxHeartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.12); }
    40% { transform: scale(1.02); }
    60% { transform: scale(1.15); }
}

@media (max-width: 992px) {
    .hero__container, .contacts__wrapper, .why-us__wrapper, .software-spec__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero__visual, .why-us__visual-panel {
        display: flex;
        justify-content: center;
    }
    .services__grid, .components__grid, .advantages__grid {
        grid-template-columns: 1fr;
    }
    .footer__container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .hero__title {
        font-size: 34px;
    }
    .prices__table th, .prices__table td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* ==========================================================================
   СТИЛИ ДЛЯ ВИДЖЕТА СЛОГАНА (HERO-SLOGAN-WIDGET)
   ========================================================================== */

.hero-slogan-widget {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(15, 21, 36, 0.7) 0%, rgba(8, 11, 17, 0.9) 100%);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 16px;
    padding: 20px 32px;
    max-width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

/* Эффект наведения на весь виджет */
.hero-slogan-widget:hover {
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 242, 254, 0.15),
    inset 0 1px 0px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Декоративная фоновая подсветка внутри виджета */
.hero-slogan-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Контейнер графики */
.slogan-widget__graphic {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* АНИМАЦИИ SVG ЭЛЕМЕНТОВ */

/* Вращение внешнего пунктирного кольца */
.slogan-svg-ring {
    transform-origin: 36px 36px;
    animation: sloganSubtleRotate 20s linear infinite;
}

/* Пульсация линии ЭКГ / Лазера */
.slogan-pulse-line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: sloganDash 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Мерцание полумесяца */
.slogan-svg-moon {
    animation: sloganMoonGlow 4s ease-in-out infinite alternate;
}

/* Пульсация индикатора статуса */
.slogan-status-dot {
    animation: sloganDotPulse 1.8s ease-in-out infinite alternate;
}

/* Текстовый контейнер */
.slogan-widget__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

/* Общие правила для фраз */
.slogan-phrase {
    display: block;
    white-space: nowrap;
}

/* Первая фраза: "Мы не спим, когда устали..." */
.slogan-phrase.phrase--one {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    color: #9ca3af;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
    animation: sloganFadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Вторая фраза: "Мы отдыхаем, когда всё сделано!" */
.slogan-phrase.phrase--two {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f3f4f6;
    letter-spacing: -0.02em;
    line-height: 1.2;
    animation: sloganFadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Выделение главного акцента: "всё сделано!" */
.slogan-highlight {
    background: linear-gradient(90deg, #00f2fe 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 40px rgba(0, 242, 254, 0.3);
}

/* Нижняя неоновая черта под подсвеченным текстом */
.slogan-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00f2fe 0%, #10b981 100%);
    box-shadow: 0 2px 8px rgba(0, 242, 254, 0.5);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: sloganLineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}


/* КЛЮЧЕВЫЕ КАДРЫ (KEYFRAMES) ДЛЯ АНИМАЦИЙ */

@keyframes sloganSubtleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes sloganDash {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

@keyframes sloganMoonGlow {
    0% { opacity: 0.15; transform: scale(0.98); transform-origin: 36px 36px; }
    100% { opacity: 0.3; transform: scale(1.02); transform-origin: 36px 36px; }
}

@keyframes sloganDotPulse {
    0% { r: 2.5; opacity: 0.6; filter: drop-shadow(0 0 2px #10b981); }
    100% { r: 4; opacity: 1; filter: drop-shadow(0 0 8px #10b981); }
}

@keyframes sloganFadeInLeft {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes sloganLineGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}


/* Адаптивность для мобильных экранов */
@media (max-width: 640px) {
    .hero-slogan-widget {
        padding: 16px 20px;
        gap: 16px;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .slogan-widget__graphic svg {
        width: 56px;
        height: 56px;
    }

    .slogan-svg-ring, .slogan-pulse-spark {
        display: none; /* Облегчение рендеринга на мобильных устройствах */
    }

    .slogan-phrase.phrase--one {
        font-size: 13px;
    }

    .slogan-phrase.phrase--two {
        font-size: 18px;
    }
}

/* ==========================================================================
   СТИЛИ ДЛЯ СТРОКИ ДИАГНОСТИКИ С ЗЕЛЕНОЙ ГАЛОЧКОЙ
   ========================================================================== */

.diagnostic-benefit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px; /* Сделано чуть крупнее для читаемости */
    font-weight: 500;
    color: var(--text-main);
    margin: 8px 0;
}

/* Контейнер иконки SVG */
.diagnostic-check-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

/* Постоянная живая микро-пульсация галочки */
.check-icon-path {
    animation: checkPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
}

/* Легкое вращение внешнего пунктирного кольца вокруг галочки */
.check-icon-circle {
    transform-origin: 12px 12px;
    animation: checkRingRotate 12s linear infinite;
}

/* Анимации */
@keyframes checkPulse {
    0% {
        opacity: 0.8;
        filter: drop-shadow(0 0 1px rgba(16, 185, 129, 0.4));
    }
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.8));
    }
}

@keyframes checkRingRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Прогресс-бар */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Кнопки навигации */
.nav-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.nav-buttons button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(8, 11, 17, 0.8);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
    transition: all 0.3s ease;
}

.nav-buttons button:hover {
    background: var(--accent-cyan);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--accent-cyan);
    transform: scale(1.1);
}

/* Секция партнеров */
.partners-section {
    padding: 80px 0;
}

.partners-intro {
    font-size: 1.1rem;
    line-height: 1.5;
    padding: 0 20px;
}

.cert-wrapper {
    display: inline-block;
    padding: 10px;
    background: #0f1524;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.4s ease;
    cursor: zoom-in;
    width: 100%;
    max-width: 600px;
}

.cert-wrapper:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.3);
}

.cert-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Мобильная адаптация */
@media (max-width: 992px) {
    .partners-content {
        flex-direction: column;
        text-align: center;
    }
    .partners-text {
        text-align: center !important;
    }
    .partners-intro {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
}

/* Отступ для Desktop-версии */
@media (min-width: 993px) {
    .hero-slogan-widget {
        margin-bottom: 40px !important; /* Увеличивает отступ вниз, до кнопок */
    }

    .hero__actions {
        margin-top: 20px; /* Дополнительный отступ сверху для кнопок, если нужно */
    }
}