:root {
    --audio-bg: #020617;
    --audio-card-bg: #0f172a;
    --audio-card-hover: #1e293b;
    --audio-border: #1e293b;
    --audio-border-hover: #334155;

    --audio-text: #ffffff;
    --audio-text-light: #e2e8f0;
    --audio-text-muted: #94a3b8;
    --audio-text-dark-muted: #64748b;

    --audio-red: #dc2626;
    --audio-red-light: #ef4444;
    --audio-orange: #fb923c;
    --audio-amber: #fcd34d;

    --audio-radius-md: 12px;
    --audio-radius-lg: 16px;
    --audio-radius-xl: 24px;
}

.audio-analytics,
.audio-analytics * {
    box-sizing: border-box;
}

.audio-analytics {
    min-height: 100%;
    overflow: hidden;
    color: var(--audio-text);
    background: var(--audio-bg);
    font-family: inherit;
}

.audio-analytics a {
    color: inherit;
    text-decoration: none;
}

.audio-analytics button,
.audio-analytics a {
    -webkit-tap-highlight-color: transparent;
}

.audio-container,
.audio-section {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
}

/* =========================
   HERO
========================= */

.audio-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;

    min-height: 100svh;
    padding: clamp(70px, 16vh, 90px) 15px clamp(60px, 8vh, 100px);

    overflow: hidden;
    text-align: center;
    background-color: #08070b;
}

/* Фоновое изображение */

.audio-hero__image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;
    overflow: hidden;
}

.audio-hero__image-wrap img {
    position: absolute;
    inset: 0;

    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

/* Затемнение изображения */

.audio-hero__image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(3, 3, 5, 0.78) 0%,
            rgba(3, 3, 5, 0.42) 35%,
            rgba(3, 3, 5, 0.58) 70%,
            rgba(3, 3, 5, 0.92) 100%
        ),
        radial-gradient(circle at center 38%, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.4) 48%, rgba(0, 0, 0, 0.72) 100%);

    pointer-events: none;
}

/* Контент */

.audio-hero__wrap {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
}

.audio-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: clamp(20px, 3vw, 32px);
    padding: 6px 14px;

    color: #f87171;
    font-size: 14px;
    font-weight: 600;

    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 999px;
    background: rgb(50, 10, 10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.audio-hero__badge-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;

    border-radius: 50%;
    background: var(--audio-red-light);

    animation: audio-ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.audio-hero__title {
    position: relative;
    z-index: 2;

    max-width: 1050px;
    margin: 0 auto clamp(24px, 4vw, 44px);

    color: var(--audio-text);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;

    text-wrap: balance;
    text-shadow:
        0 3px 16px rgba(0, 0, 0, 0.85),
        0 8px 40px rgba(0, 0, 0, 0.55);
}

.audio-hero__title-accent {
    color: transparent;
    background: linear-gradient(90deg, var(--audio-red-light), var(--audio-orange), var(--audio-amber));
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 45px;
}
.audio-hero__description {
    position: relative;
    z-index: 2;

    max-width: 780px;
    margin: 0 auto clamp(36px, 5vw, 60px);

    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 1.6vw, 20px);
    line-height: 1.65;

    text-wrap: pretty;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.audio-hero__actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.audio-button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    min-height: 60px;
    padding: 16px 32px;

    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;

    border: 1px solid transparent;
    border-radius: var(--audio-radius-md);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.audio-button:hover {
    transform: translateY(-2px);
}

.audio-button--primary {
    color: var(--audio-text);
    background: var(--audio-red);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.audio-button--secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(15, 15, 18, 0.58);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.audio-button--secondary:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(25, 25, 30, 0.8);
}
.audio-button--secondary {
    color: var(--audio-text-light);
    border-color: var(--audio-border-hover);
    background: var(--audio-border);
}

.audio-button--secondary:hover {
    background: var(--audio-card-hover);
}

/* =========================
   COMMON SECTIONS
========================= */

.audio-section {
    padding: 64px 16px;
}

.audio-section--tariffs {
    padding-top: 80px;
    padding-bottom: 80px;
}

.audio-section__header {
    margin-bottom: 56px;
    text-align: center;
}

.audio-section__header--compact {
    margin-bottom: 48px;
}

.audio-section__header--tariffs {
    margin-bottom: 64px;
}

.audio-section__title {
    margin: 0 0 16px;
    color: var(--audio-text);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.audio-section__subtitle {
    margin: 0;
    color: var(--audio-text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* =========================
   FEATURES
========================= */

.features-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 24px;
    border: 1px solid var(--audio-border);
    border-radius: var(--audio-radius-lg);
    background: var(--audio-card-bg);
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature-card:hover {
    border-color: var(--audio-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    border-radius: var(--audio-radius-md);
}

.feature-card__icon--blue {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.1);
}

.feature-card__icon--red {
    color: #f87171;
    background: rgba(239, 68, 68, 0.1);
}

.feature-card__icon--purple {
    color: #c084fc;
    background: rgba(168, 85, 247, 0.1);
}

.feature-card__icon--green {
    color: #34d399;
    background: rgba(16, 185, 129, 0.1);
}

.feature-card__icon--amber {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
}

.feature-card__title {
    margin: 0 0 8px;
    color: var(--audio-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}

.feature-card__text {
    margin: 0;
    color: var(--audio-text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.feature-card__accent {
    color: var(--audio-text-light);
    font-weight: 500;
}

/* =========================
   PAIN POINTS
========================= */

.pain-section {
    padding: 64px 0;
    border-top: 1px solid var(--audio-border);
    border-bottom: 1px solid var(--audio-border);
    background: rgba(15, 23, 42, 0.5);
}

.pain-section .audio-container {
    padding-right: 16px;
    padding-left: 16px;
}

.pain-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
}

.pain-card {
    padding: 32px;
    border: 1px solid var(--audio-border);
    border-radius: var(--audio-radius-lg);
    background: var(--audio-card-bg);
}

.pain-card__number {
    margin-bottom: 12px;
    color: var(--audio-red-light);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.pain-card__title {
    margin: 0 0 8px;
    color: var(--audio-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
}

.pain-card__text {
    margin: 0;
    color: var(--audio-text-muted);
    font-size: 14px;
    line-height: 1.65;
}

/* =========================
   TARIFFS
========================= */

.tariffs-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 32px;
    margin: 0 0 80px 0;
}

.tariff-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--audio-border);
    border-radius: var(--audio-radius-xl);
    background: var(--audio-card-bg);
}

.tariff-card--featured {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--audio-card-bg), var(--audio-card-bg)) padding-box,
        linear-gradient(135deg, var(--audio-red-light), var(--audio-orange), var(--audio-amber)) border-box;
    box-shadow: 0 25px 50px rgba(69, 10, 10, 0.5);
}

.tariff-card__badge {
    position: absolute;
    top: -16px;
    left: 50%;
    padding: 4px 16px;
    color: var(--audio-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 999px;
    background: var(--audio-red);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
}

.tariff-card__title {
    margin: 0 0 8px;
    color: var(--audio-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.tariff-card__description {
    margin: 0 0 24px;
    color: var(--audio-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.tariff-card__price {
    margin-bottom: 4px;
    color: #34d37e;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.tariff-card__price-note {
    margin: 0 0 24px;
    color: var(--audio-text-dark-muted);
    font-size: 12px;
    line-height: 1.5;
}

.tariff-card__content {
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--audio-border);
}

.tariff-card__caption {
    margin-bottom: 16px;
    color: var(--audio-text-muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tariff-card__caption--featured {
    color: #f87171;
}

.tariff-card__list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
    list-style: none;
}

.tariff-card__item {
    position: relative;
    padding-left: 22px;
}

.tariff-card__item::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #45b3f2;
    font-weight: 700;
    content: "✓";
}
.tariff-card--featured .tariff-card__item::before {
    color: #df686a;
}

.tariff-card__button {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    color: var(--audio-text);
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 0;
    border-radius: var(--audio-radius-md);
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.tariff-card__button:hover {
    transform: translateY(-2px);
}

.tariff-card__button--secondary {
    background: var(--audio-border);
}

.tariff-card__button--secondary:hover {
    background: var(--audio-card-hover);
}

.tariff-card__button--primary {
    font-weight: 700;
    background: var(--audio-red);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.tariff-card__button--primary:hover {
    background: var(--audio-red-light);
}

/* =========================
   ACCESSIBILITY
========================= */

.audio-button:focus-visible,
.tariff-card__button:focus-visible {
    outline: 3px solid rgba(248, 113, 113, 0.85);
    outline-offset: 3px;
}

/* =========================
   ANIMATION
========================= */

@keyframes audio-ping {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    75%,
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 640px) {
    .audio-hero,
    .audio-section {
        padding-right: 24px;
        padding-left: 24px;
    }

    .pain-section .audio-container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .audio-hero__title {
        font-size: 60px;
    }

    .audio-hero__description {
        font-size: 20px;
    }

    .audio-hero__actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-card--wide {
        grid-column: span 2;
    }

    .pain-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .audio-hero,
    .audio-section {
        padding-right: 32px;
        padding-left: 32px;
    }

    .pain-section .audio-container {
        padding-right: 32px;
        padding-left: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .feature-card--wide {
        grid-column: span 2;
    }

    .tariffs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 639px) {
    .audio-hero {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .audio-hero__title {
        overflow-wrap: anywhere;
    }

    .audio-button {
        width: 100%;
    }

    .tariff-card {
        padding: 24px;
    }

    .tariff-card__price {
        font-size: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .audio-hero__badge-dot {
        animation: none;
    }

    .audio-button,
    .feature-card,
    .tariff-card__button {
        transition: none;
    }
}

.audio-analytics .product-overview {
    width: min(100% - 32px, 1210px);
    margin: 0 auto;
    padding: 28px 0 80px;
    color: #f8fafc;
}

/* ---------- Header ---------- */

.audio-analytics .product-overview__header {
    padding-bottom: 20px;
    border-bottom: 2px solid #283548;
}
.audio-analytics .product-overview__title {
    margin: 0 0 20px;
    color: var(--audio-text);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.audio-analytics .product-overview__logo {
    display: inline-flex;
    align-items: baseline;
    color: #f8fafc;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.055em;
    text-decoration: none;
    text-transform: uppercase;
}

.audio-analytics .product-overview__logo-nei {
    color: #f8fafc;
}

.audio-analytics .product-overview__logo-marker {
    color: #ef4444;
}

.audio-analytics .product-overview__logo-ai {
    margin-left: 8px;
    color: #f8fafc;
}

.audio-analytics .product-overview__tagline {
    margin: 14px 0 0;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.55;
}

/* ---------- Intro card ---------- */

.audio-analytics .product-overview__intro {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-top: 22px;
    padding: 30px 34px 26px;
    overflow: hidden;
    border: 1px solid #334155;
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 100%, rgba(239, 68, 68, 0.11), transparent 25%),
        linear-gradient(135deg, rgba(30, 41, 59, 0.96), rgba(22, 30, 43, 0.96));
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.audio-analytics .product-overview__intro::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, rgba(239, 68, 68, 0.15) 48%, transparent);
    content: "";
}

.audio-analytics .product-overview__intro-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
}

.audio-analytics .product-overview__intro-title {
    max-width: 850px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.audio-analytics .product-overview__intro-text {
    max-width: 1000px;
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}

/* ---------- Tags ---------- */

.audio-analytics .product-overview__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.audio-analytics .product-overview__tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    color: #f87171;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    border: 1px solid rgba(239, 68, 68, 0.38);
    border-radius: 5px;
    background: rgba(127, 29, 29, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.audio-analytics .product-overview__tag:hover {
    color: #fecaca;
    border-color: rgba(248, 113, 113, 0.72);
    background: rgba(153, 27, 27, 0.48);
    transform: translateY(-2px);
}

/* ---------- Red status indicator ---------- */

.audio-analytics .product-overview__status {
    position: relative;
    z-index: 1;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    margin: 0 80px 0 0;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    box-shadow:
        0 0 0 7px rgba(239, 68, 68, 0.08),
        0 0 24px rgba(239, 68, 68, 0.24);
}

/* ---------- Modules ---------- */

.audio-analytics .solution-modules {
    margin-top: 30px;
}

.audio-analytics .solution-modules__heading {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 20px;
}

.audio-analytics .solution-modules__heading-line {
    width: 4px;
    flex: 0 0 4px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.audio-analytics .solution-modules__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(21px, 2.3vw, 26px);
    font-weight: 800;
    line-height: 1.35;
}

.audio-analytics .solution-modules__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.audio-analytics .solution-module {
    position: relative;
    min-width: 0;
    padding: 24px 26px;
    overflow: hidden;
    border: 1px solid #334155;
    border-radius: 7px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.94), rgba(22, 30, 43, 0.96));
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.audio-analytics .solution-module::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 0;
    background: linear-gradient(90deg, #3b82f6, transparent);
    content: "";
    transition: opacity 0.22s ease;
}

.audio-analytics .solution-module:hover {
    border-color: #475569;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.audio-analytics .solution-module:hover::before {
    opacity: 1;
}

.audio-analytics .solution-module__title {
    margin: 0 0 12px;
    color: #60a5fa;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    text-align: left;
}

.audio-analytics .solution-module__description {
    margin: 0 0 13px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.65;
}

.audio-analytics .solution-module__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    list-style: none;
}

.audio-analytics .solution-module__list li {
    position: relative;
    padding-left: 17px;
}

.audio-analytics .solution-module__list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #93c5fd;
    font-size: 16px;
    content: "•";
}

/* ---------- Animation ---------- */

@keyframes product-status-pulse {
    0%,
    100% {
        opacity: 0.75;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .audio-analytics .product-overview__intro {
        align-items: flex-start;
        padding: 26px;
    }

    .audio-analytics .product-overview__status {
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .audio-hero {
        min-height: 100svh;
        padding: 110px 16px 50px;
    }

    .audio-hero__image-wrap img {
        /*
         * Смещаем изображение, чтобы в кадре осталась
         * центральная часть с ноутбуком.
         */
        object-position: 43% center;
    }

    .audio-hero__image-wrap::before {
        background:
            linear-gradient(
                180deg,
                rgba(3, 3, 5, 0.86) 0%,
                rgba(3, 3, 5, 0.56) 38%,
                rgba(3, 3, 5, 0.74) 72%,
                rgba(3, 3, 5, 0.96) 100%
            ),
            radial-gradient(circle at center 35%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.66) 100%);
    }

    .audio-hero__title {
        font-size: clamp(32px, 10vw, 46px);
        line-height: 1.1;
        letter-spacing: -0.025em;
    }

    .audio-hero__title br {
        display: none;
    }

    .audio-hero__description {
        max-width: 560px;
        line-height: 1.55;
    }

    .audio-hero__actions {
        flex-direction: column;
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }
    .audio-analytics .solution-modules__grid {
        grid-template-columns: 1fr;
    }

    .audio-button {
        width: 100%;
        min-width: 0;
    }
}
.audio-analytics .product-overview {
    width: min(100% - 24px, 1210px);
    padding-top: 80px;
    padding-bottom: 56px;
}

.audio-analytics .product-overview__intro {
    display: block;
    padding: 24px 20px;
}

.audio-analytics .product-overview__status {
    display: none;
}

@media (max-width: 480px) {
    .audio-analytics .product-overview__logo {
        font-size: 23px;
    }

    .audio-analytics .product-overview__tagline {
        font-size: 13px;
    }

    .audio-analytics .product-overview__intro-title {
        font-size: 22px;
    }

    .audio-analytics .product-overview__tag {
        width: 100%;
    }

    .audio-analytics .solution-module {
        padding: 21px 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .audio-analytics .product-overview__status-core {
        animation: none;
    }

    .audio-analytics .product-overview__tag,
    .audio-analytics .solution-module {
        transition: none;
    }
}

/* =====================================================
   ECONOMIC EFFECT
===================================================== */

.audio-analytics .economic-effect {
    width: min(100% - 32px, 1210px);
    margin: 0 auto;
    padding: 0 0 80px;
}

.audio-analytics .economic-effect__heading {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 18px;
}

.audio-analytics .economic-effect__heading-line {
    width: 4px;
    flex: 0 0 4px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.28);
}

.audio-analytics .economic-effect__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(21px, 2.3vw, 26px);
    font-weight: 800;
    line-height: 1.35;
}

.audio-analytics .economic-effect__table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #334155;
    background: #172033;
    scrollbar-width: thin;
    scrollbar-color: #475569 #111827;
}

.audio-analytics .economic-effect__table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    table-layout: fixed;
    color: #dbeafe;
    background: #172033;
}

.audio-analytics .economic-effect__table th,
.audio-analytics .economic-effect__table td {
    padding: 17px 20px;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid rgba(51, 65, 85, 0.65);
    border-bottom: 1px solid #334155;
}

.audio-analytics .economic-effect__table th:last-child,
.audio-analytics .economic-effect__table td:last-child {
    border-right: 0;
}

.audio-analytics .economic-effect__table tbody tr:last-child td {
    border-bottom: 0;
}

.audio-analytics .economic-effect__table th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    background: #2f3b50;
}

.audio-analytics .economic-effect__table td {
    color: #d1d9e6;
    font-size: 14px;
    line-height: 1.5;
    background: #182131;
}

.audio-analytics .economic-effect__table tbody tr {
    transition: background-color 0.2s ease;
}

.audio-analytics .economic-effect__table tbody tr:hover td {
    background: #1d283b;
}

.audio-analytics .economic-effect__table th:nth-child(1),
.audio-analytics .economic-effect__table td:nth-child(1) {
    width: 25%;
}

.audio-analytics .economic-effect__table th:nth-child(2),
.audio-analytics .economic-effect__table td:nth-child(2) {
    width: 23%;
}

.audio-analytics .economic-effect__table th:nth-child(3),
.audio-analytics .economic-effect__table td:nth-child(3) {
    width: 26%;
}

.audio-analytics .economic-effect__table th:nth-child(4),
.audio-analytics .economic-effect__table td:nth-child(4) {
    width: 26%;
}

.audio-analytics .economic-effect__value {
    font-weight: 800;
}

.audio-analytics .economic-effect__value--positive {
    color: #34d399;
}

.audio-analytics .economic-effect__value--alert {
    color: #ff4f5e;
}

.audio-analytics .economic-effect__cta {
    margin-top: 26px;
    padding: 28px 30px;
    text-align: center;
    border: 1px solid #ef4444;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(47, 59, 80, 0.98), rgba(34, 44, 62, 0.98));
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.audio-analytics .economic-effect__cta-title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 800;
    line-height: 1.35;
}

.audio-analytics .economic-effect__cta-text {
    max-width: 980px;
    margin: 0 auto;
    color: #d1d9e6;
    font-size: 15px;
    line-height: 1.65;
}

.audio-analytics .economic-effect__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 20px;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    border: 1px solid #ef4444;
    border-radius: 8px;
    background: #dc2626;
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.25);
    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.audio-analytics .economic-effect__cta-button:hover {
    background: #ef4444;
    box-shadow: 0 16px 34px rgba(220, 38, 38, 0.34);
    transform: translateY(-2px);
}

.audio-analytics .economic-effect__cta-button:focus-visible {
    outline: 3px solid rgba(248, 113, 113, 0.85);
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .audio-analytics .economic-effect {
        width: min(100% - 24px, 1210px);
        padding-bottom: 56px;
    }

    .audio-analytics .economic-effect__table-wrapper {
        overflow: visible;
        border: 0;
        background: transparent;
    }

    .audio-analytics .economic-effect__table {
        min-width: 0;
        background: transparent;
    }

    .audio-analytics .economic-effect__table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .audio-analytics .economic-effect__table,
    .audio-analytics .economic-effect__table tbody,
    .audio-analytics .economic-effect__table tr,
    .audio-analytics .economic-effect__table td {
        display: block;
        width: 100%;
    }

    .audio-analytics .economic-effect__table tbody {
        display: grid;
        gap: 14px;
    }

    .audio-analytics .economic-effect__table tr {
        overflow: hidden;
        border: 1px solid #334155;
        border-radius: 8px;
        background: #182131;
    }

    .audio-analytics .economic-effect__table td,
    .audio-analytics .economic-effect__table td:nth-child(n) {
        display: grid;
        grid-template-columns: minmax(120px, 42%) 1fr;
        gap: 14px;
        width: 100%;
        padding: 14px 16px;
        border-right: 0;
        border-bottom: 1px solid #334155;
        background: #182131;
    }

    .audio-analytics .economic-effect__table td:last-child {
        border-bottom: 0;
    }

    .audio-analytics .economic-effect__table td::before {
        color: #94a3b8;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.45;
        text-transform: uppercase;
        content: attr(data-label);
    }

    .audio-analytics .economic-effect__cta {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .audio-analytics .economic-effect__table td,
    .audio-analytics .economic-effect__table td:nth-child(n) {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .audio-analytics .economic-effect__cta-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .audio-analytics .economic-effect__table tbody tr,
    .audio-analytics .economic-effect__cta-button {
        transition: none;
    }
}

@media (max-width: 420px) {
    .audio-hero {
        padding-top: 90px;
    }

    .audio-hero__badge {
        font-size: 12px;
    }

    .audio-hero__title {
        font-size: 31px;
    }

    .audio-hero__description {
        font-size: 15px;
    }

    .audio-button {
        min-height: 54px;
        padding: 14px 20px;
        font-size: 16px;
    }
}

.audio-comparison {
    padding: 80px 15px;
    color: #ffffff;
    background: #050a18;
}

.audio-comparison__container {
    width: 100%;
    max-width: 1210px;
    margin-inline: auto;
}

.audio-comparison__title {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
}

.audio-comparison__tables {
    display: grid;
    gap: 48px;
}

/* Обёртка для горизонтальной прокрутки */

.audio-comparison__scroll {
    width: 100%;
    overflow-x: auto;

    border: 1px solid #334158;
    border-radius: 0;
    background: #182335;
    box-shadow: none;

    scrollbar-width: thin;
    scrollbar-color: #43536d #182335;
}

.audio-comparison__scroll::-webkit-scrollbar {
    height: 7px;
}

.audio-comparison__scroll::-webkit-scrollbar-track {
    background: #182335;
}

.audio-comparison__scroll::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: #43536d;
}

/* Таблица */

.audio-comparison__table {
    width: 100%;
    min-width: 850px;

    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;

    color: #ffffff;
    background: #182335;
}

/* Общие стили ячеек */

.audio-comparison__table th,
.audio-comparison__table td {
    padding: 18px 20px;

    color: #f3f6ff;
    font-size: 14px;
    line-height: 1.45;
    vertical-align: middle;

    border-right: 1px solid #334158;
    border-bottom: 1px solid #334158;
}

.audio-comparison__table th:last-child,
.audio-comparison__table td:last-child {
    border-right: none;
}

.audio-comparison__table tbody tr:last-child th,
.audio-comparison__table tbody tr:last-child td {
    border-bottom: none;
}

/* Шапка таблицы */

.audio-comparison__table thead {
    background: #334158;
}

.audio-comparison__table thead th {
    padding-top: 18px;
    padding-bottom: 18px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-align: left;

    background: #334158;
}

/* Первый столбец */

.audio-comparison__table th:first-child {
    width: 40%;
    text-align: left;
}

/* Столбцы тарифов */

.audio-comparison__table th:not(:first-child),
.audio-comparison__table td:not(:first-child) {
    width: 20%;
    text-align: center;
}

/* Названия возможностей */

.audio-comparison__table tbody th {
    color: #f3f6ff;
    font-weight: 400;
    text-align: left;
    background: #182335;
}

/* Строки */

.audio-comparison__table tbody td {
    background: #182335;
}

.audio-comparison__table tbody tr {
    transition: background-color 0.2s ease;
}

.audio-comparison__table tbody tr:hover th,
.audio-comparison__table tbody tr:hover td {
    background: #1d2a40;
}

/* Галочка без круга */

.audio-comparison__check {
    display: inline;

    width: auto;
    height: auto;

    color: #27e6ad;
    font-size: 16px;
    font-weight: 800;

    border: none;
    border-radius: 0;
    background: none;
}

/* Недоступная функция */

.audio-comparison__dash {
    color: #718096;
    font-size: 18px;
    font-weight: 400;
}

/* Текст в скобках */

.audio-comparison__note {
    color: #c5cee0;
}
