:root {
    --bg: #09111f;
    --panel: rgba(10, 22, 40, 0.74);
    --panel-light: rgba(255, 255, 255, 0.04);
    --line: rgba(171, 196, 255, 0.18);
    --text: #edf3ff;
    --muted: #aab9d5;
    --brand: #003261;
    --brand-2: #1e5da8;
    --accent: #ffb84d;
    --shadow: 0 24px 80px rgba(3, 8, 20, 0.45);
    --radius: 28px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Manrope, sans-serif;
    color: var(--text);
    background:
        radial-gradient(
            circle at top left,
            rgba(30, 93, 168, 0.35),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 184, 77, 0.18),
            transparent 20%
        ),
        linear-gradient(180deg, #08101c, #0a1422 45%, #09111f);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
button,
input,
textarea {
    font: inherit;
}
#root {
    min-height: 100vh;
}
.page-shell {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0 72px;
}
.panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}
.panel:before {
    content: "";
    position: absolute;
    inset: auto -20% -65% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(30, 93, 168, 0.2),
        transparent 70%
    );
    pointer-events: none;
}
.panel--light {
    background: var(--panel-light);
}
.topbar {
    position: sticky;
    top: 16px;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px 22px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #08101cc2;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}
.brand {
    display: grid;
    justify-items: center;
    gap: 2px;
}
.brand__eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.brand__title {
    font-family: Oswald, sans-serif;
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
}
.topbar__nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    color: var(--muted);
}
.topbar__nav a:hover,
.topbar__phone:hover {
    color: #fff;
}
.topbar__phone {
    white-space: nowrap;
    font-weight: 700;
}
.topbar__phone-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.topbar__phone-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: #ffffff0a;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease;
}
.topbar__phone-toggle:hover {
    border-color: #ffb84d73;
}
.topbar__phone-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.18s ease;
}
.topbar__phone-toggle.is-open svg {
    transform: rotate(180deg);
}
.topbar__phone-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #08101cf5;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}
.topbar__phone-menu a {
    display: block;
    font-weight: 700;
    white-space: nowrap;
}
.section {
    margin-top: 96px;
}
.section-kicker {
    margin: 0 0 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 800;
}
.section-heading {
    max-width: 760px;
    margin-bottom: 4vw;
}
.section-heading h2,
.hero h1,
.cta__box h2 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.1;
}
.section-heading h2,
.cta__box h2 {
    font-size: clamp(30px, 2.4vw, 46px);
}
.section-heading p,
.hero__lead,
.product-card p,
.info-card p,
.benefit p,
.cta__copy p,
.lead-form__hint {
    color: var(--muted);
    line-height: 1.7;
}
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 20px;
    align-items: stretch;
    height: calc(100dvh - 126px);
    min-height: 520px;
    max-height: 700px;
}
.hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 28px;
    min-height: 100%;
}
.hero h1 {
    max-width: 14ch;
    font-size: clamp(32px, 3.3vw, 56px);
    line-height: 1.1;
}
.hero__lead {
    max-width: 42rem;
    font-size: clamp(15px, 0.82vw, 18px);
    line-height: 1.4;
}
.hero__actions {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 0 12px;
}
.hero__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}
.hero-detail {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #ffffff08;
}
.hero-detail span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-detail strong {
    font-size: 15px;
    line-height: 1.35;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
}
.button:hover {
    transform: translateY(-2px);
}
.button:disabled {
    cursor: wait;
    opacity: 0.78;
    transform: none;
}
.button--primary {
    background: linear-gradient(135deg, #1959a5, #003261);
}
.button--ghost {
    border-color: var(--line);
    background: #ffffff0a;
}
.hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    margin-top: 18px;
    list-style: none;
}
.hero__facts li {
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 56px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff08;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
}
.hero__visual {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px;
    min-height: 100%;
}
.hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.hero-card--main {
    min-height: 0;
}
.hero-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 18px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(4, 11, 20, 0.95) 100%
    );
}
.hero-card__overlay span {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    color: #08101c;
    background: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.hero-card__overlay strong {
    display: block;
    max-width: 320px;
    font-size: 18px;
    line-height: 1.15;
}
.hero-card--accent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255, 184, 77, 0.18), transparent 35%),
        linear-gradient(120deg, #0f2038, #0d1a2c);
}
.hero-card__number {
    font-family: Oswald, sans-serif;
    font-size: 56px;
    line-height: 0.9;
    color: var(--accent);
}
.hero-card__caption {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-size: clamp(22px, 1.7vw, 30px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1;
    color: var(--muted);
}
.trust-strip,
.catalog-grid,
.about-grid {
    gap: 18px;
}
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
}
.catalog-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.trust-strip__item {
    display: grid;
    align-content: start;
    min-height: 94px;
    padding: 14px 18px;
}
.trust-strip__item strong {
    margin-bottom: 4px;
    font-size: 16px;
}
.trust-strip__item span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
}
.catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-card,
.info-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
}
.product-card {
    flex: 0 1 calc((100% - 54px) / 4);
    padding: 0;
    min-height: 0;
    align-self: start;
}
.about-grid {
    display: grid;
}
.product-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 24px;
}
.product-card:not(.is-open) {
    height: 560px;
}
.product-card:not(.is-open) .product-card__content {
    height: 100%;
}
.product-card__media {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 184, 77, 0.14), transparent 35%),
        linear-gradient(135deg, #ffffff0a, #ffffff05);
}
.product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}
.product-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
}
.product-card__placeholder span {
    font-family: Oswald, sans-serif;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #edf3ffc7;
}
.product-card__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding: 12px 14px;
    border: 0;
    color: inherit;
    text-align: left;
    background: #ffffff0a;
    border-radius: 18px;
    cursor: pointer;
}
.product-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}
.product-card__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: #ffffff0a;
    flex-shrink: 0;
}
.product-card__chevron svg {
    width: 16px;
    height: 16px;
    transition: transform 0.18s ease;
}
.product-card__chevron.is-open svg {
    transform: rotate(180deg);
}
.product-card__power {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 12px;
    margin-top: 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #08101c;
    background: #d3e6ff;
    font-size: 12px;
    font-weight: 800;
}
.product-card h3,
.info-card h3,
.benefit h3,
.spec-panel h3,
.contact-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
}
.product-card h3 {
    min-height: 58px;
}
.product-card__price {
    margin-top: 18px;
    padding-top: 18px;
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
}
.product-card__text {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: 4.65em;
    max-height: 4.65em;
}
.product-card__details {
    display: grid;
    gap: 12px;
    padding: 0 24px 24px;
}
.product-card__detail {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff08;
}
.product-card__detail span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.product-card__detail strong {
    font-size: 15px;
    line-height: 1.35;
}
.category-link {
    margin-top: auto;
    align-self: flex-start;
}
.section-heading--compact {
    margin-top: 4vw;
}
.tech-table-block {
    margin-top: 28px;
    padding: 24px;
}
.tech-table-block__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.tech-table-block__head h3 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-size: clamp(28px, 2vw, 36px);
    line-height: 1.05;
}
.tech-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #07101fd1;
}
.tech-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
}
.tech-table th,
.tech-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}
.tech-table th {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #ffffff08;
}
.tech-table td {
    font-size: 15px;
    line-height: 1.35;
}
.tech-table tbody tr:last-child td {
    border-bottom: 0;
}
.tech-table tbody tr:nth-child(2n) td {
    background: #ffffff05;
}
.benefits-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 22px;
}
.benefits-list {
    display: grid;
    gap: 18px;
}
.benefit {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
}
.benefit span {
    font-family: Oswald, sans-serif;
    font-size: 42px;
    color: var(--accent);
}
.spec-panel,
.contact-card,
.lead-form {
    padding: 28px;
}
.spec-panel {
    display: grid;
    align-content: start;
}
.spec-panel__kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.spec-panel ul {
    padding-left: 18px;
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}
.spec-panel__note {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff08;
}
.spec-panel__note strong {
    font-size: 18px;
    line-height: 1.3;
}
.spec-panel__note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}
.spec-panel__note .button {
    justify-self: center;
}
.cta__box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
    padding: 34px;
    background:
        linear-gradient(110deg, rgba(255, 184, 77, 0.16), transparent 35%),
        linear-gradient(135deg, #10233f, #0a1626);
}
.cta__copy {
    max-width: 760px;
}
.contact-card,
.lead-form {
    min-height: 100%;
}
.contact-list {
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.contact-list li {
    display: grid;
    gap: 6px;
}
.contact-list span {
    color: var(--muted);
    font-size: 14px;
}
.contact-list a,
.contact-list strong {
    font-size: 22px;
    line-height: 1.35;
}
.contact-list__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    align-self: center;
    margin: 0 auto;
    margin-top: 3vw;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f7cff, #4da7ff);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 16px 36px #2f7cff47;
    transition:
        transform 0.16s ease,
        box-shadow 0.16s ease;
}
.contact-list__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 42px #2f7cff57;
}
.lead-form {
    display: grid;
    gap: 16px;
}
.lead-form label {
    display: grid;
    gap: 8px;
}
.lead-form span {
    color: var(--muted);
    font-size: 14px;
}
.lead-form__status {
    margin: 0;
    color: var(--accent);
    line-height: 1.5;
}
.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(214, 227, 255, 0.16);
    border-radius: 18px;
    color: var(--text);
    background: #ffffff0a;
    outline: none;
}
.lead-form input:focus,
.lead-form textarea:focus {
    border-color: #ffb84d8c;
}
.footer-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 72px;
    padding: 18px 8px 0;
    color: var(--muted);
    border-top: 1px solid var(--line);
}
.footer-note span {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer-note a {
    font-weight: 800;
    color: var(--text);
}
.floating-actions {
    position: fixed;
    right: 12px;
    bottom: 16px;
    z-index: 30;
    display: grid;
    gap: 12px;
}
.floating-actions__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(214, 227, 255, 0.2);
    border-radius: 50%;
    background: #08101cdb;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px #03081459;
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text);
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease,
        opacity 0.18s ease;
}
.floating-actions__button:hover {
    transform: translateY(-2px);
    border-color: #ffb84d73;
}
.floating-actions__button--up {
    color: #08101c;
    background: linear-gradient(135deg, #ffcf70, #ffb84d);
}
.floating-actions__button--up svg {
    width: 24px;
    height: 24px;
}
.floating-actions__button--phone {
    color: #fff;
    background: linear-gradient(135deg, #1f8f5f, #146947);
    border-color: #74e2ad47;
    font-size: 24px;
    line-height: 1;
}
.floating-actions__button--vk {
    color: #fff;
    background: linear-gradient(135deg, #2787f5, #1266d3);
    border-color: #78b2ff52;
}
.floating-actions__button--vk svg {
    width: 24px;
    height: 24px;
}
.floating-actions__button--vk img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-height: 940px) and (min-width: 1121px) {
    .page-shell {
        padding-top: 12px;
    }
    .topbar {
        top: 12px;
        padding: 12px 20px;
        margin-bottom: 14px;
    }
    .hero {
        height: calc(100dvh - 114px);
        min-height: 480px;
    }
    .hero__copy {
        padding: 20px 24px;
    }
    .hero h1 {
        max-width: 15ch;
        font-size: clamp(28px, 3vw, 50px);
    }
    .hero__lead {
        font-size: clamp(14px, 0.8vw, 17px);
        line-height: 1.35;
    }
    .hero__details {
        gap: 10px;
    }
    .hero-detail {
        padding: 12px 14px;
    }
    .hero-detail strong {
        font-size: 14px;
    }
    .hero__facts li {
        min-height: 50px;
        font-size: 12px;
    }
    .hero__visual {
        gap: 8px;
        padding: 12px;
    }
    .hero-card__overlay {
        padding: 16px;
    }
    .hero-card__overlay strong {
        font-size: 16px;
    }
    .hero-card__number {
        font-size: 48px;
    }
    .hero-card__caption {
        font-size: clamp(18px, 1.5vw, 26px);
    }
}
@media (max-height: 820px) and (min-width: 1121px) {
    .hero {
        height: calc(100dvh - 104px);
        min-height: 430px;
    }
    .hero__copy {
        padding: 18px 22px;
    }
    .hero h1 {
        max-width: 16ch;
        font-size: clamp(24px, 2.6vw, 42px);
    }
    .hero__lead {
        font-size: 14px;
        line-height: 1.28;
    }
    .hero__details {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .hero-detail {
        padding: 10px 12px;
    }
    .hero-detail strong {
        font-size: 13px;
    }
    .button {
        min-height: 48px;
        padding: 0 20px;
    }
    .hero__actions {
        gap: 10px;
        margin: 12px 0 10px;
    }
    .hero__facts {
        gap: 10px;
        margin-top: 14px;
    }
    .hero__facts li {
        min-height: 44px;
        padding: 8px;
        font-size: 11px;
        border-radius: 18px;
    }
    .hero-card--accent {
        padding: 10px 14px;
    }
}
@media (max-width: 1120px) {
    .product-card {
        flex-basis: calc((100% - 18px) / 2);
    }
    .hero,
    .benefits-layout,
    .contact-layout,
    .catalog-grid,
    .about-grid,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .cta__box {
        grid-template-columns: 1fr;
        justify-items: start;
    }
    .hero {
        height: auto;
        min-height: 0;
        max-height: none;
    }
    .hero h1 {
        max-width: none;
    }
    .hero__details {
        grid-template-columns: 1fr;
    }
    .hero-card--main {
        min-height: 420px;
    }
}
@media (max-width: 820px) {
    .tech-table-block {
        padding: 20px;
    }
    .tech-table-block__head {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-card {
        flex-basis: 100%;
    }
    .page-shell {
        width: min(100% - 20px, 1220px);
        padding-top: 12px;
    }
    .topbar {
        position: static;
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 14px;
        border-radius: 28px;
    }
    .topbar__nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 18px;
    }
    .topbar__phone-group {
        flex-wrap: wrap;
    }
    .topbar__phone-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 8px;
    }
    .hero,
    .catalog-grid,
    .about-grid,
    .trust-strip,
    .benefits-layout,
    .parts-feature,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .hero__copy,
    .hero__visual,
    .cta__box,
    .contact-card,
    .lead-form,
    .spec-panel {
        padding: 22px;
    }
    .hero__facts,
    .hero__details {
        grid-template-columns: 1fr;
    }
    .hero-card--main {
        min-height: 360px;
    }
    .hero-card__number {
        font-size: 72px;
    }
    .contact-list a,
    .contact-list strong {
        font-size: 18px;
    }
    .footer-note {
        flex-direction: column;
        align-items: flex-start;
    }
    .floating-actions {
        right: 14px;
        bottom: 14px;
        gap: 10px;
    }
    .floating-actions__button {
        width: 52px;
        height: 52px;
        font-size: 16px;
    }
    .floating-actions__button--up {
        font-size: 22px;
    }
    .section {
        margin-top: 72px;
    }
}
