﻿@font-face {
    font-family: "Creato Display";
    src: url("/tipografias/creato-display/CreatoDisplay-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Creato Display";
    src: url("/tipografias/creato-display/CreatoDisplay-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Creato Display";
    src: url("/tipografias/creato-display/CreatoDisplay-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Creato Display";
    src: url("/tipografias/creato-display/CreatoDisplay-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-heading: "Roboto", Arial, Helvetica, sans-serif;
    --font-body: "Creato Display", Arial, Helvetica, sans-serif;
    --color-ink: #111318;
    --color-muted: #5e6470;
    --color-soft: #f7f8fa;
    --color-line: #e7e9ee;
    --color-brand: #ef0016;
    --color-brand-dark: #c90012;
    --color-white: #ffffff;
    --shadow-card: 0 18px 45px rgba(17, 19, 24, .08);
    --container: 1360px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-white);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.brand__name {
    font-family: var(--font-heading);
}

button,
input {
    font: inherit;
}

img,
svg {
    display: block;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
a,
input {
    outline-offset: 4px;
}

:focus-visible {
    outline: 3px solid rgba(239, 0, 22, .35);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes soft-scale {
    from {
        opacity: 0;
        transform: scale(.965);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes demo-pulse {
    0%,
    100% {
        background: #101115;
        box-shadow: 0 0 0 rgba(239, 0, 22, 0), inset 0 0 0 rgba(255, 255, 255, 0);
    }

    45%,
    55% {
        background: #ff0018;
        box-shadow: 0 0 18px rgba(255, 0, 24, .65), 0 0 34px rgba(255, 0, 24, .38), inset 0 0 10px rgba(255, 255, 255, .18);
    }
}

@keyframes loader-button-pulse {
    0%,
    100% {
        background: #151820;
        box-shadow:
            0 0 0 rgba(239, 0, 22, 0),
            0 18px 42px rgba(17, 19, 24, .2),
            inset 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }

    46%,
    56% {
        background: #ff0018;
        box-shadow:
            0 0 26px rgba(255, 0, 24, .72),
            0 0 62px rgba(255, 0, 24, .36),
            0 18px 42px rgba(17, 19, 24, .22),
            inset 0 0 18px rgba(255, 255, 255, .22);
        transform: scale(1.035);
    }
}

@keyframes loader-logo-breathe {
    0%,
    100% {
        opacity: .78;
        transform: scale(.94);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loader-logo-color {
    0%,
    100% {
        background: #050506;
        filter: drop-shadow(0 0 0 rgba(239, 0, 22, 0));
        transform: scale(.96);
    }

    46%,
    56% {
        background: #ff0018;
        filter: drop-shadow(0 0 24px rgba(255, 0, 24, .72)) drop-shadow(0 0 54px rgba(255, 0, 24, .34));
        transform: scale(1.03);
    }
}

.page-loader {
    display: none;
}

.has-loader .page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 22px;
    background:
        radial-gradient(circle at center, rgba(239, 0, 22, .22) 0%, rgba(239, 0, 22, 0) 38%),
        #050506;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0;
    transition: opacity .46s ease, visibility .46s ease;
}

.has-loader .page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__button {
    display: grid;
    place-items: center;
    width: clamp(168px, 27vw, 246px);
    aspect-ratio: 1;
    position: relative;
    background: transparent;
}

.page-loader__button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #050506;
    animation: loader-logo-color 1.5s ease-in-out infinite;
    mask: url('/images/logo/bci-red.svg') center / contain no-repeat;
    -webkit-mask: url('/images/logo/bci-red.svg') center / contain no-repeat;
}

.page-loader__button img {
    width: 100%;
    height: auto;
    opacity: 0;
}

.page-loader span {
    font-size: clamp(.95rem, 2vw, 1.08rem);
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 1.15s cubic-bezier(.22, 1, .36, 1),
        transform 1.15s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal--fade {
    transform: none;
}

.reveal--scale {
    transform: scale(.965);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal.is-visible.hero-copy {
    transition-duration: 1.25s;
}

.reveal.is-visible.hero-media {
    transition-duration: 1.35s;
}

.hero-copy h1,
.hero-copy > p,
.hero-stats,
.hero-actions,
.demo-note {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 1.05s cubic-bezier(.22, 1, .36, 1),
        transform 1.05s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.hero-copy.is-visible h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .12s;
}

.hero-copy.is-visible > p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .28s;
}

.hero-copy.is-visible .hero-stats {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .44s;
}

.hero-copy.is-visible .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .6s;
}

.hero-copy.is-visible .demo-note {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .76s;
}

.hero-media img {
    transform: scale(1.08) translateX(18px);
    transition: transform 2.2s cubic-bezier(.22, 1, .36, 1), filter 2.2s cubic-bezier(.22, 1, .36, 1);
    filter: saturate(.96) contrast(.98);
    will-change: transform;
}

.hero-media.is-visible img {
    transform: scale(1) translateX(0);
    filter: saturate(1) contrast(1);
}

.hero-media::before {
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 1.45s cubic-bezier(.22, 1, .36, 1), transform 1.45s cubic-bezier(.22, 1, .36, 1);
}

.hero-media.is-visible::before {
    opacity: 1;
    transform: translateX(0);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    z-index: 100;
    translate: 0 -160%;
    padding: 10px 14px;
    border-radius: 6px;
    background: var(--color-ink);
    color: var(--color-white);
    font-weight: 800;
}

.skip-link:focus {
    translate: 0;
}

.site-header {
    position: sticky;
    inset-block-start: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-block-end: 1px solid rgba(231, 233, 238, .65);
}

.top-strip {
    min-height: 48px;
    border-block-end: 1px solid var(--color-line);
    background: linear-gradient(90deg, #ffffff 0%, #f4f6f9 100%);
    color: #2f333b;
    font-size: .94rem;
}

.top-strip__inner,
.header-main {
    display: flex;
    align-items: center;
}

.top-strip__inner {
    min-height: 48px;
    gap: 12px;
}

.top-strip__icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--color-brand);
    font-size: 1rem;
}

.header-main {
    min-height: 116px;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-grid;
    gap: 0;
    min-width: 185px;
}

.brand__name {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 900;
    line-height: 1;
}

.brand__tagline {
    color: #2f333b;
    font-size: 1.12rem;
    line-height: 1.2;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 58px);
    min-height: 72px;
}

.primary-nav__item {
    position: relative;
}

.primary-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    color: #1f232b;
    font-weight: 700;
    font-size: .95rem;
}

.primary-nav__button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.primary-nav__button i {
    color: #79808b;
    font-size: .72rem;
    transition: transform .22s ease, color .22s ease;
}

.primary-nav__link::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    inset-block-end: 6px;
    height: 5px;
    border-radius: 999px;
    background: transparent;
    transform: scaleX(.72);
    transform-origin: left center;
    transition: background-color .2s ease, transform .24s ease;
}

.primary-nav__link:hover,
.primary-nav__link--active,
.primary-nav__item--dropdown:hover > .primary-nav__link,
.primary-nav__item--dropdown:focus-within > .primary-nav__link {
    color: var(--color-brand);
}

.primary-nav__link--active::after,
.primary-nav__link:hover::after,
.primary-nav__item--dropdown:hover > .primary-nav__link::after,
.primary-nav__item--dropdown:focus-within > .primary-nav__link::after {
    background: var(--color-brand);
    transform: scaleX(1);
}

.primary-nav__item--dropdown:hover .primary-nav__button i,
.primary-nav__item--dropdown:focus-within .primary-nav__button i,
.primary-nav__item--dropdown.is-open .primary-nav__button i,
.primary-nav__button[aria-expanded="true"] i {
    color: var(--color-brand);
    transform: rotate(180deg);
}

.primary-nav__submenu {
    position: absolute;
    inset-block-start: calc(100% - 6px);
    inset-inline-start: 50%;
    z-index: 25;
    display: grid;
    gap: 2px;
    width: min(310px, calc(100vw - 32px));
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 44px rgba(17, 19, 24, .14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.primary-nav__item--dropdown:hover .primary-nav__submenu,
.primary-nav__item--dropdown:focus-within .primary-nav__submenu,
.primary-nav__item--dropdown.is-open .primary-nav__submenu,
.primary-nav__button[aria-expanded="true"] + .primary-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.primary-nav__submenu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 6px;
    color: #252a33;
    font-weight: 800;
    line-height: 1.25;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.primary-nav__submenu a:hover,
.primary-nav__submenu a:focus-visible {
    background: #fff1f3;
    color: var(--color-brand);
    transform: translateX(2px);
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-block: 58px 30px;
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 38%, rgba(246, 247, 249, .9) 72%, #f3f4f6 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .83fr) minmax(520px, 1.17fr);
    align-items: stretch;
    gap: clamp(26px, 4vw, 70px);
    height: 100%;
    min-height: 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding-block: 26px 34px;
}

.hero-copy h1 {
    max-width: 620px;
    margin: 0 0 28px;
    font-size: clamp(2.4rem, 3.5vw, 3.45rem);
    line-height: 1.14;
    font-weight: 900;
}

.hero-copy h1 span {
    color: var(--color-brand);
}

.hero-copy p {
    max-width: 565px;
    margin: 0;
    color: #323741;
    font-size: clamp(1.02rem, 1.3vw, 1.25rem);
}

.hero-media {
    position: relative;
    width: min(100%, 920px);
    height: 100%;
    max-height: 100%;
    min-height: 0;
    margin: 0;
    justify-self: end;
    overflow: hidden;
    border-radius: 0;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset-block: 0;
    inset-inline-start: 0;
    z-index: 1;
    width: min(42%, 360px);
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .88) 32%, rgba(255, 255, 255, .36) 68%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 600px;
    margin: 44px 0 44px;
    padding: 0;
    list-style: none;
}

.hero-stats li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    min-height: 72px;
    padding-inline: 0 18px;
    color: #151820;
    font-weight: 700;
    font-size: .88rem;
}

.hero-stats li + li {
    padding-inline-start: 20px;
    border-inline-start: 1px solid var(--color-line);
}

.icon-ring {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--color-brand);
    font-size: 1.55rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-block-end: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 204px;
    min-height: 60px;
    padding: 14px 28px;
    border: 2px solid var(--color-brand);
    border-radius: 8px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--color-brand);
    color: var(--color-white);
    box-shadow: 0 18px 28px rgba(239, 0, 22, .18);
}

.button--primary:hover {
    background: var(--color-brand-dark);
}

.button--outline {
    color: var(--color-brand);
    background: var(--color-white);
}

.button--outline:hover {
    box-shadow: 0 16px 26px rgba(17, 19, 24, .08);
}

.demo-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4d5562;
    font-weight: 600;
}

.demo-note i {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #747b87;
    font-size: 1.1rem;
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    padding-block: 24px 52px;
}

.feature-card,
.model-card,
.choice-panel,
.compatibility-band {
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: var(--shadow-card);
}

.feature-card {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    column-gap: 18px;
    min-height: 178px;
    padding: 26px 24px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.feature-card:hover,
.model-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 0, 22, .26);
    box-shadow: 0 24px 52px rgba(17, 19, 24, .12);
}

.feature-card__icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    color: #111318;
    font-size: 3.1rem;
    transition: color .24s ease, transform .28s ease;
}

.feature-card:hover .feature-card__icon {
    transform: translateY(-2px) scale(1.04);
    color: var(--color-brand);
}

.feature-card:nth-child(1) .feature-card__icon,
.feature-card:nth-child(4) .feature-card__icon {
    color: var(--color-brand);
}

.feature-card h2,
.feature-card p,
.model-card h3,
.model-card p {
    margin: 0;
}

.feature-card h2,
.feature-card p {
    grid-column: 2;
}

.feature-card h2 {
    font-size: 1.02rem;
    line-height: 1.18;
    font-weight: 900;
}

.feature-card p {
    margin-block-start: 10px;
    color: #333944;
    font-size: .91rem;
    line-height: 1.45;
}

.models-section {
    padding-block: 8px 28px;
}

.category-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(58px, 7vw, 96px);
    background:
        linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, .94) 42%, rgba(247, 248, 250, .76) 100%);
}

.category-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(34px, 5vw, 82px);
    align-items: center;
}

.category-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-block-end: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff1f3;
    color: var(--color-brand);
    font-weight: 900;
}

.category-hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(2.35rem, 4.5vw, 4.35rem);
    line-height: 1.05;
    font-weight: 900;
}

.category-hero h1 span {
    color: var(--color-brand);
}

.category-hero p {
    max-width: 650px;
    margin: 24px 0 0;
    color: #323741;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.category-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-block-start: 34px;
}

.category-hero__media {
    position: relative;
    margin: 0;
    min-height: 430px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(17, 19, 24, .14);
}

.category-hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, 0) 38%);
    pointer-events: none;
}

.category-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.category-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    padding-block: 54px 24px;
}

.category-overview__intro {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.category-overview__icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 8px;
    background: #fff1f3;
    color: var(--color-brand);
    font-size: 2.25rem;
}

.category-overview h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.7vw, 2.25rem);
    line-height: 1.15;
}

.category-overview p {
    margin: 12px 0 0;
    color: #4d5562;
    font-size: 1.04rem;
}

.category-tabs {
    display: grid;
    gap: 10px;
}

.category-tabs__link {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
    color: #252a33;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(17, 19, 24, .05);
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.category-tabs__link i {
    color: var(--color-brand);
    font-size: 1.25rem;
    text-align: center;
}

.category-tabs__link:hover,
.category-tabs__link--active {
    border-color: rgba(239, 0, 22, .34);
    color: var(--color-brand);
    transform: translateY(-2px);
}

.category-value {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-block: 28px 52px;
}

.category-products {
    padding-block: 10px 42px;
}

.model-grid--category {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.section-heading {
    margin-block-end: 30px;
    text-align: center;
}

.section-heading h2,
.choice-section h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    line-height: 1.2;
    font-weight: 900;
}

.section-heading p {
    margin: 10px 0 0;
    color: #555d69;
    font-size: 1.05rem;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(100%, 1150px);
    margin-inline: auto;
}

.model-card {
    display: grid;
    grid-template-rows: 220px auto auto 1fr auto;
    min-height: 448px;
    padding: 0 30px 30px;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.model-card__image {
    width: calc(100% + 60px);
    height: 220px;
    margin-inline: -30px;
    padding: 22px 34px 10px;
    object-fit: contain;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    transition: transform .36s ease;
}

.model-card:hover .model-card__image {
    transform: scale(1.035);
}

.model-card h3 {
    margin-block-start: 18px;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    line-height: 1.08;
    font-weight: 900;
}

.model-card p {
    max-width: 260px;
    margin-block-start: 14px;
    color: #5b6370;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.model-card ul {
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
    color: #333944;
    font-size: .95rem;
}

.model-card li {
    display: flex;
    gap: 10px;
}

.model-card li::before {
    content: "\f00c";
    font: var(--fa-font-solid);
    color: var(--color-brand);
    font-weight: 900;
}

.model-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-block-start: auto;
    font-weight: 900;
}

.model-card__resource-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    padding: 0;
    color: #151820;
    background: transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.model-card__resource-button:hover {
    color: var(--color-brand);
}

.model-card__resource-button:disabled {
    color: #8b929e;
    cursor: not-allowed;
}

.model-card__actions i {
    margin-inline-start: 6px;
    font-size: .85em;
}

.model-card__actions a:last-child {
    color: var(--color-brand);
}

.resource-modal {
    width: min(620px, calc(100vw - 32px));
    max-height: min(760px, calc(100vh - 32px));
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--color-ink);
}

.resource-modal::backdrop {
    background: rgba(17, 19, 24, .58);
    backdrop-filter: blur(4px);
}

.resource-modal__panel {
    position: relative;
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(17, 19, 24, .24);
}

.resource-modal__close {
    position: absolute;
    inset-block-start: 16px;
    inset-inline-end: 16px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #ffffff;
    color: #252a33;
    cursor: pointer;
}

.resource-modal__close:hover {
    color: var(--color-brand);
    border-color: rgba(239, 0, 22, .34);
}

.resource-modal__eyebrow {
    display: inline-flex;
    margin-block-end: 12px;
    color: var(--color-brand);
    font-weight: 900;
}

.resource-modal h2 {
    max-width: calc(100% - 42px);
    margin: 0 0 20px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.15;
}

.resource-modal__list {
    display: grid;
    gap: 10px;
    max-height: min(460px, 58vh);
    margin: 0;
    padding: 0;
    overflow: auto;
    list-style: none;
}

.resource-modal__list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 12px 14px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    color: #252a33;
    font-weight: 800;
    transition: border-color .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}

.resource-modal__list a:hover {
    border-color: rgba(239, 0, 22, .34);
    background: #fff1f3;
    color: var(--color-brand);
    transform: translateY(-1px);
}

.choice-section {
    padding-block: 0 18px;
    text-align: center;
}

.choice-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-block-start: 22px;
    padding: 25px 34px;
    text-align: start;
}

.choice-panel article {
    transition: transform .24s ease;
}

.choice-panel article:hover {
    transform: translateY(-3px);
}

.choice-panel article {
    position: relative;
    display: grid;
    grid-template-columns: 74px 34px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding-inline: 24px 48px;
}

.choice-panel article + article {
    border-inline-start: 1px solid var(--color-line);
}

.choice-panel article:not(:last-child)::after {
    content: "\f061";
    font: var(--fa-font-solid);
    position: absolute;
    inset-block-start: 24px;
    inset-inline-end: 18px;
    color: #1c2027;
    font-size: 1.4rem;
}

.choice-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--color-brand);
    color: var(--color-white);
    font-weight: 900;
}

.choice-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: #2f333b;
    font-size: 2.8rem;
    transition: color .24s ease, transform .28s ease;
}

.choice-panel article:hover .choice-icon {
    transform: scale(1.05);
    color: var(--color-brand);
}

.choice-panel article:nth-child(2) .choice-icon {
    font-size: 2.55rem;
}

.choice-panel article:nth-child(3) .choice-icon {
    width: 68px;
    height: 68px;
    border: 2px solid #2f333b;
    border-radius: 999px;
    color: var(--color-brand);
    font-size: 2rem;
}

.choice-panel h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
}

.choice-panel p {
    margin: 4px 0 0;
    color: #5b6370;
    font-size: .9rem;
}

.demo-section {
    padding-block: 0 20px;
}

.demo-panel {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 36px;
    align-items: center;
    padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 56px);
    border-radius: 8px;
    background: linear-gradient(135deg, #f00018 0%, #c90012 58%, #a90010 100%);
    color: var(--color-white);
}

.demo-copy {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.demo-icon {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-brand);
}

.demo-icon i {
    font-size: 2.65rem;
}

.demo-copy h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.4vw, 2.12rem);
    line-height: 1.2;
    font-weight: 900;
}

.demo-copy p {
    max-width: 540px;
    margin: 12px 0 8px;
    font-size: 1.04rem;
}

.demo-copy span {
    font-weight: 900;
}

.demo-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-inline-start: 34px;
    border-inline-start: 1px solid rgba(255, 255, 255, .46);
}

.demo-form label,
.demo-form input,
.demo-form select,
.demo-form button {
    min-height: 54px;
}

.demo-form input,
.demo-form select,
.demo-form button {
    width: 100%;
    border: 0;
    border-radius: 6px;
}

.demo-form input,
.demo-form select {
    padding: 0 18px;
    color: #151820;
    background: var(--color-white);
}

.demo-form select {
    appearance: none;
    padding-inline-end: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, #596170 50%),
        linear-gradient(135deg, #596170 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.demo-submit-button {
    grid-column: 1 / -1;
}

.demo-form button {
    padding-inline: 18px;
    background: #101115;
    color: var(--color-white);
    font-weight: 900;
    cursor: pointer;
    transition: background-color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.demo-submit-button {
    animation: none;
}

.demo-submit-button:not(:disabled):not(.is-clicked):hover,
.demo-submit-button:not(:disabled):not(.is-clicked):focus-visible {
    animation: demo-pulse 1.5s ease-in-out infinite;
}

.demo-submit-button.is-clicked,
.demo-submit-button.is-sending,
.demo-submit-button.is-sent {
    animation: none;
}

.demo-submit-button.is-sending {
    background: #2a2d35;
    cursor: wait;
}

.demo-submit-button.is-sent {
    background: #087f3f;
    box-shadow: 0 0 20px rgba(8, 127, 63, .35);
}

.demo-submit-button:disabled {
    background: rgba(16, 17, 21, .42);
    color: rgba(255, 255, 255, .72);
    cursor: not-allowed;
}

.demo-form button:not(:disabled):hover {
    background: #1d1f27;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, .22);
}

.demo-submit-button:not(:disabled):not(.is-clicked):hover {
    background: #ff0018;
    box-shadow: 0 0 20px rgba(255, 0, 24, .58), 0 14px 26px rgba(0, 0, 0, .22);
}

.demo-form__status {
    grid-column: 1 / -1;
    min-height: 22px;
    color: var(--color-white);
    font-size: .95rem;
    font-weight: 800;
    text-align: center;
}

.demo-form p {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 42px;
    margin: 24px 0 0;
    font-weight: 900;
}

.compatibility-band {
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    margin-block: 0 54px;
    padding: 22px 42px;
}

.compatibility-copy {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
}

.compatibility-copy i {
    color: #2f333b;
    font-size: 2.7rem;
}

.compatibility-band p {
    margin: 0;
    color: #3b424d;
    font-weight: 700;
    line-height: 1.4;
}

.compatibility-band ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
    justify-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.compatibility-band li {
    display: grid;
    place-items: center;
    min-height: 52px;
}

.compatibility-band img {
    display: block;
    max-width: 140px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .24s ease, filter .24s ease;
}

.compatibility-band li:hover img {
    transform: translateY(-2px) scale(1.04);
    filter: saturate(1.08);
}

.site-footer {
    padding-block: 48px 24px;
    border-block-start: 1px solid var(--color-line);
    background: #fbfbfc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: clamp(28px, 6vw, 92px);
}

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 900;
}

.footer-brand h2 {
    margin-block-end: 0;
    font-size: 1.9rem;
}

.footer-brand p,
.site-footer address,
.site-footer ul,
.footer-copy {
    margin: 0;
    color: #3f4652;
    font-style: normal;
    font-size: .95rem;
}

.footer-brand p + p {
    max-width: 245px;
    margin-block-start: 18px;
}

.site-footer address,
.site-footer ul {
    display: grid;
    gap: 9px;
    padding: 0;
    list-style: none;
}

.site-footer address a,
.site-footer address > span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer address i {
    width: 16px;
    color: #747b87;
    text-align: center;
}

.site-footer a:hover {
    color: var(--color-brand);
}

.footer-highlight {
    display: inline-block;
    max-width: 230px;
    margin-block-start: 18px;
    color: var(--color-brand);
    font-weight: 900;
}

.social-list {
    display: flex !important;
    gap: 14px !important;
    margin-block-start: 24px !important;
}

.social-list a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: #333842;
    color: var(--color-white);
    font-weight: 900;
    line-height: 1;
    transition: background-color .22s ease, transform .22s ease;
}

.social-list a:hover {
    background: var(--color-brand);
    color: var(--color-white);
    transform: translateY(-2px);
}

.social-list i {
    font-size: .9rem;
}

.footer-copy {
    width: min(calc(100% - 48px), var(--container));
    margin: 36px auto 0;
    text-align: center;
    color: #626a76;
}

.whatsapp-float {
    position: fixed;
    inset-inline-end: clamp(18px, 3vw, 34px);
    inset-block-end: clamp(18px, 3vw, 34px);
    z-index: 60;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(37, 211, 102, .34), 0 8px 18px rgba(17, 19, 24, .18);
    font-size: 2rem;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #1fb85a;
    color: #ffffff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 22px 44px rgba(37, 211, 102, .42), 0 10px 22px rgba(17, 19, 24, .22);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1180px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        overflow: visible;
        padding-block: 42px 38px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-media {
        justify-self: center;
        width: 100%;
        height: clamp(420px, 58vw, 620px);
        min-height: 0;
    }

    .feature-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .demo-panel,
    .compatibility-band,
    .category-hero__grid,
    .category-overview {
        grid-template-columns: 1fr;
    }

    .category-hero {
        min-height: clamp(640px, 82svh, 860px);
        padding-block: clamp(48px, 8vw, 82px);
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .9) 56%, rgba(255, 255, 255, .62) 100%),
            var(--category-hero-image) center right / cover no-repeat;
    }

    .category-hero__grid {
        display: block;
    }

    .category-hero__copy {
        position: relative;
        z-index: 1;
        max-width: 690px;
    }

    .category-hero__media {
        display: none;
    }

    .category-value {
        grid-template-columns: 1fr;
    }

    .demo-form {
        padding-inline-start: 0;
        border-inline-start: 0;
    }
}

@media (min-width: 961px) and (max-width: 1180px) {
    .hero-section {
        height: 100vh;
        min-height: 760px;
        overflow: hidden;
        padding-block: 44px 30px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, .85fr) minmax(430px, 1fr);
        align-items: stretch;
        height: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 4.4vw, 3.25rem);
    }

    .hero-stats {
        margin-block: 32px;
    }

    .hero-media {
        width: 100%;
        height: 100%;
        justify-self: end;
    }
}

@media (max-width: 960px) {
    .hero-section {
        height: auto;
        min-height: clamp(680px, 88svh, 900px);
        overflow: hidden;
        padding-block: clamp(42px, 8vw, 72px);
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .9) 54%, rgba(255, 255, 255, .58) 100%),
            url('/images/banner/banner.jpg') center right / cover no-repeat;
    }

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: rgba(255, 255, 255, .08);
        pointer-events: none;
    }

    .hero-grid {
        position: relative;
        z-index: 1;
        display: block;
        min-height: 100%;
    }

    .hero-copy {
        max-width: 660px;
    }

    .hero-media {
        display: none;
    }

    .top-strip {
        min-height: 40px;
    }

    .top-strip__inner {
        min-height: 40px;
    }

    .header-main {
        min-height: auto;
        padding-block: 18px 12px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .brand__name {
        font-size: 2.25rem;
    }

    .brand__tagline {
        font-size: 1rem;
    }

    .primary-nav {
        width: 100%;
        min-height: auto;
        flex-wrap: wrap;
        align-items: flex-start;
        overflow: visible;
        overflow-y: visible;
        gap: 10px 26px;
        padding-block-end: 0;
    }

    .primary-nav__link {
        min-height: 42px;
        white-space: nowrap;
    }

    .primary-nav__item--dropdown {
        position: static;
        display: grid;
        width: 100%;
    }

    .primary-nav__button {
        justify-self: start;
    }

    .primary-nav__submenu {
        position: static;
        width: min(300px, calc(100vw - 32px));
        max-height: 0;
        margin-block-start: 0;
        padding-block: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: 0 14px 34px rgba(17, 19, 24, .12);
        transition: max-height .28s ease, opacity .2s ease, visibility .2s ease, padding .2s ease, margin .2s ease;
    }

    .primary-nav__item--dropdown:hover .primary-nav__submenu,
    .primary-nav__item--dropdown:focus-within .primary-nav__submenu,
    .primary-nav__item--dropdown.is-open .primary-nav__submenu,
    .primary-nav__button[aria-expanded="true"] + .primary-nav__submenu {
        max-height: 320px;
        margin-block-start: 8px;
        padding-block: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .primary-nav__submenu a {
        white-space: normal;
    }

    .model-grid,
    .choice-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .choice-panel article {
        grid-template-columns: 70px 34px minmax(0, 1fr);
        padding: 18px 0;
    }

    .choice-panel article + article {
        border-inline-start: 0;
        border-block-start: 1px solid var(--color-line);
    }

    .choice-panel article:not(:last-child)::after {
        display: none;
    }

    .demo-form {
        grid-template-columns: 1fr 1fr;
    }

    .demo-form button {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .top-strip {
        font-size: .83rem;
    }

    .brand__name {
        font-size: 2rem;
    }

    .hero-section {
        min-height: auto;
        padding-block: 34px 38px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .97) 0%, rgba(255, 255, 255, .9) 48%, rgba(255, 255, 255, .76) 100%),
            url('/images/banner/banner.jpg') 68% center / cover no-repeat;
    }

    .hero-copy {
        padding-block-start: 0;
    }

    .hero-media {
        display: none;
    }

    .hero-stats,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        margin-block: 26px;
    }

    .hero-stats li,
    .hero-stats li + li {
        padding: 14px 0;
        border-inline-start: 0;
        border-block-start: 1px solid var(--color-line);
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .feature-card {
        grid-template-columns: 62px minmax(0, 1fr);
        min-height: 150px;
        padding: 22px 18px;
    }

    .category-hero {
        min-height: auto;
        padding-block: 38px 46px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .91) 48%, rgba(255, 255, 255, .78) 100%),
            var(--category-hero-image) 68% center / cover no-repeat;
    }

    .category-overview {
        padding-block-start: 36px;
    }

    .category-overview__intro {
        grid-template-columns: 1fr;
    }

    .category-tabs__link {
        min-height: 54px;
    }

    .model-card {
        padding-inline: 22px;
    }

    .model-card__image {
        width: calc(100% + 44px);
        margin-inline: -22px;
    }

    .choice-panel {
        padding: 12px 24px;
    }

    .choice-panel article {
        grid-template-columns: 56px 32px minmax(0, 1fr);
        gap: 10px;
    }

    .choice-icon {
        width: 50px;
        height: 50px;
        font-size: 2.15rem;
    }

    .choice-panel article:nth-child(2) .choice-icon {
        font-size: 2rem;
    }

    .choice-panel article:nth-child(3) .choice-icon {
        width: 52px;
        height: 52px;
        font-size: 1.55rem;
    }

    .demo-panel {
        padding: 26px 20px;
        gap: 24px;
    }

    .demo-copy,
    .demo-form {
        grid-template-columns: 1fr;
    }

    .demo-icon {
        width: 76px;
        height: 76px;
    }

    .demo-form button {
        grid-column: auto;
    }

    .demo-form p {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .compatibility-band {
        padding: 22px;
        gap: 20px;
    }

    .compatibility-copy {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .compatibility-copy i {
        font-size: 2.15rem;
    }

    .compatibility-band ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader__button,
    .page-loader__button img {
        animation: none !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

