*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--arp-text);
    background: var(--arp-bg);
    font-family: var(--arp-font);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body,
main {
    overflow-x: clip;
}

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

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.arp-shell {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.arp-narrow {
    width: min(780px, calc(100% - 32px));
}

.arp-skip {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 100;
    transform: translateY(-160%);
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
}

.arp-skip:focus {
    transform: translateY(0);
}

.arp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 24, 39, .08);
}

.arp-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.arp-logo {
    display: inline-flex;
    align-items: center;
}

.arp-logo img,
.arp-footer__logo {
    display: block;
    width: 180px;
    object-fit: contain;
}

.arp-nav {
    margin-left: auto;
}

.arp-nav__list,
.arp-nav ul,
.arp-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.arp-nav__list,
.arp-nav > ul {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 700;
}

.arp-nav li {
    position: relative;
}

.arp-nav .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 20;
    display: grid;
    min-width: 230px;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(6, 26, 68, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(6, 26, 68, .15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .16s ease, transform .16s ease;
}

.arp-nav li:hover > .sub-menu,
.arp-nav li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.arp-nav .sub-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
}

.arp-nav .sub-menu a:hover {
    background: #EAF3FF;
}

.arp-nav a,
.arp-footer a {
    text-decoration: none;
}

.arp-nav a:hover,
.arp-footer a:hover {
    color: var(--arp-primary);
}

.arp-header__cta {
    display: none;
    align-items: center;
    gap: 12px;
}

.arp-link-call {
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.arp-menu-toggle {
    margin-left: auto;
    border: 1px solid rgba(17, 24, 39, .14);
    background: #fff;
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 800;
}

.arp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 0;
    border-radius: var(--arp-button-radius);
    background: var(--arp-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(6, 59, 143, .2);
}

.arp-btn--small {
    min-height: 40px;
    padding: 9px 14px;
}

.arp-btn--accent {
    background: var(--arp-accent);
    box-shadow: 0 14px 28px rgba(227, 6, 19, .22);
}

.arp-btn--ghost {
    background: #fff;
    color: var(--arp-secondary);
    border: 1px solid rgba(17, 24, 39, .12);
    box-shadow: none;
}

.arp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.arp-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 48px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86)),
        url("../images/logo-icon.png") right 8% center / 280px auto no-repeat,
        #F4F8FF;
}

.arp-drive-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 46px;
    background:
        linear-gradient(120deg, rgba(6, 26, 68, .96), rgba(6, 59, 143, .86)),
        url("../images/logo-icon.png") right 10% center / 360px auto no-repeat,
        #061A44;
    color: #fff;
}

.arp-drive-hero__grid,
.arp-drive-map {
    display: grid;
    gap: 28px;
}

.arp-drive-hero h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(40px, 8vw, 74px);
    line-height: .96;
    letter-spacing: 0;
}

.arp-drive-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
}

.arp-drive-hero .arp-breadcrumbs {
    color: rgba(255, 255, 255, .68);
}

.arp-drive-console {
    align-self: stretch;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(6, 26, 68, .08);
    border-radius: var(--arp-card-radius);
    background: #fff;
    color: var(--arp-text);
    box-shadow: 0 18px 46px rgba(6, 26, 68, .08);
}

.arp-drive-console p {
    margin: 0;
    color: var(--arp-primary);
    font-weight: 900;
}

.arp-drive-console strong {
    color: var(--arp-secondary);
    font-size: 48px;
    line-height: 1;
}

.arp-drive-console > span {
    color: rgba(7, 22, 47, .7);
    font-weight: 700;
}

.arp-drive-console__metrics {
    display: grid;
    gap: 10px;
}

.arp-drive-console__metrics div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #F4F8FF;
}

.arp-drive-console__metrics b,
.arp-drive-console__metrics small {
    color: var(--arp-secondary);
}

.arp-drive-console__metrics small {
    color: rgba(7, 22, 47, .64);
    text-align: right;
}

.arp-drive-hero .arp-drive-console {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.arp-drive-hero .arp-drive-console p {
    color: #fff;
}

.arp-drive-hero .arp-drive-console strong {
    color: #fff;
    text-shadow: 0 0 28px rgba(41, 171, 226, .42);
}

.arp-drive-hero .arp-drive-console > span {
    color: rgba(255, 255, 255, .76);
}

.arp-drive-hero .arp-drive-console__metrics div {
    background: rgba(255, 255, 255, .12);
}

.arp-drive-hero .arp-drive-console__metrics b,
.arp-drive-hero .arp-drive-console__metrics small {
    color: #fff;
}

.arp-area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.arp-area-cloud span {
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .1);
    font-weight: 800;
}

.arp-home-form,
.arp-zone-check {
    display: grid;
    gap: 14px;
}

.arp-home-form label,
.arp-zone-check label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.arp-home-form input,
.arp-home-form select,
.arp-home-form textarea,
.arp-zone-check input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(17, 24, 39, .14);
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
}

.arp-zone-check p {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: #EAF3FF;
    color: var(--arp-secondary);
    font-weight: 800;
}

.arp-zone-check p.is-ok {
    background: #EAF3FF;
    color: #063B8F;
    border: 1px solid rgba(41, 171, 226, .28);
}

.arp-zone-check p.is-warn {
    background: #FFF1F2;
    color: #B00012;
    border: 1px solid rgba(227, 6, 19, .22);
}

.arp-form-note {
    margin: 0;
    color: rgba(17, 24, 39, .64);
    font-size: 14px;
}

.arp-drive-flow {
    display: grid;
    gap: 14px;
}

.arp-drive-flow article {
    min-height: 220px;
    padding: 22px;
    border-radius: var(--arp-card-radius);
    background: linear-gradient(180deg, #fff, #f7fbff);
    border: 1px solid rgba(17, 24, 39, .08);
}

.arp-drive-flow span {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--arp-primary);
    font-weight: 950;
}

.arp-config-page-hero {
    padding-bottom: 42px;
}

.arp-configurator {
    display: grid;
    gap: 28px;
}

.arp-configurator__top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.arp-configurator__top h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.02;
}

.arp-config-back {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: #eef2f7;
    color: var(--arp-secondary);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}

.arp-config-stage {
    display: none;
}

.arp-config-stage.is-active {
    display: block;
}

.arp-config-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.arp-config-card {
    display: grid;
    place-items: center;
    min-height: 168px;
    padding: 18px;
    border: 1px solid rgba(6, 26, 68, .08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(6, 26, 68, .06);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.arp-config-card:hover,
.arp-config-card:focus {
    transform: translateY(-2px);
    border-color: rgba(227, 6, 19, .32);
    box-shadow: 0 20px 54px rgba(6, 59, 143, .14);
}

.arp-config-card__icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border: 2px solid rgba(6, 26, 68, .18);
    border-radius: 22px;
    color: var(--arp-primary);
    font-size: 42px;
    line-height: 1;
}

.arp-config-card__image {
    display: grid;
    place-items: center;
    width: 104px;
    height: 94px;
    margin-bottom: 14px;
}

.arp-config-card__image img {
    max-height: 94px;
    object-fit: contain;
}

.arp-config-card strong {
    color: rgba(7, 22, 47, .78);
    text-align: center;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.arp-config-card small {
    margin-top: 6px;
    color: rgba(7, 22, 47, .55);
}

.arp-config-card--brand strong {
    color: rgba(7, 22, 47, .54);
    font-size: 13px;
    text-transform: none;
}

.arp-config-card__brandmark {
    display: grid;
    place-items: center;
    width: min(100%, 154px);
    min-height: 74px;
    margin-bottom: 12px;
    color: #5E6066;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.arp-config-card--brand:hover .arp-config-card__brandmark,
.arp-config-card--brand:focus .arp-config-card__brandmark {
    color: var(--arp-primary);
}

.arp-config-repairs {
    display: grid;
    gap: 24px;
}

.arp-selected-device {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(6, 26, 68, .08);
    border-radius: 14px;
    background: #fff;
}

.arp-selected-device strong,
.arp-selected-device span {
    display: block;
}

.arp-selected-device span {
    color: rgba(7, 22, 47, .6);
}

.arp-repair-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.arp-repair-option {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    align-items: start;
    min-height: 116px;
    padding: 16px;
    border: 1px solid rgba(6, 26, 68, .08);
    border-radius: 12px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(6, 26, 68, .05);
}

.arp-repair-option.is-selected {
    border-color: var(--arp-primary);
    box-shadow: 0 0 0 3px rgba(6, 59, 143, .12);
}

.arp-repair-option span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #EAF3FF;
    color: var(--arp-primary);
    font-weight: 900;
}

.arp-repair-option__image {
    overflow: hidden;
    background: #F4F8FF;
}

.arp-repair-option__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arp-repair-option strong {
    display: block;
    color: var(--arp-secondary);
    text-transform: uppercase;
    font-size: 13px;
}

.arp-repair-option small {
    grid-column: 2 / 3;
    color: rgba(7, 22, 47, .62);
}

.arp-repair-option b {
    grid-row: 1 / span 2;
    grid-column: 3;
    padding: 6px 9px;
    border-radius: 8px;
    background: #4E4747;
    color: #fff;
}

.arp-cart {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 24px;
    border: 1px solid rgba(6, 26, 68, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(6, 26, 68, .1);
}

.arp-cart h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.arp-cart-item,
.arp-cart__line,
.arp-cart__total {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(6, 26, 68, .08);
}

.arp-cart-item button {
    border: 0;
    background: transparent;
    color: rgba(7, 22, 47, .44);
    font-size: 22px;
    cursor: pointer;
}

.arp-cart-item span {
    font-weight: 800;
    text-transform: uppercase;
}

.arp-cart-item small {
    display: inline-block;
    margin-left: 0;
    margin-top: 4px;
    padding: 2px 7px;
    border-radius: 6px;
    background: #DFF5FF;
    color: var(--arp-primary);
    font-size: 12px;
}

.arp-cart__line {
    grid-template-columns: 1fr auto;
}

.arp-cart__discount strong {
    color: #9B0010;
}

.arp-cart__hint {
    color: #0494C7;
    font-weight: 800;
}

.arp-coupon {
    display: grid;
    gap: 8px;
    margin: 16px 0;
}

.arp-coupon span {
    display: flex;
    gap: 8px;
}

.arp-coupon input {
    min-width: 0;
    width: 100%;
    border: 1px solid rgba(6, 26, 68, .12);
    border-radius: 9px;
    padding: 10px;
}

.arp-coupon button {
    width: 40px;
    border: 0;
    border-radius: 9px;
    background: #eef2f7;
    font-weight: 950;
}

.arp-cart__total {
    grid-template-columns: 1fr auto;
    border-bottom: 0;
    margin: 12px 0;
}

.arp-cart__total span,
.arp-final-price span {
    display: grid;
    color: rgba(7, 22, 47, .68);
}

.arp-cart__total strong,
.arp-final-price strong {
    color: #4E4747;
    font-size: 34px;
}

.arp-config-final {
    display: grid;
    gap: 40px;
}

.arp-final-methods,
.arp-final-details {
    display: grid;
    gap: 14px;
}

.arp-final-methods h2 {
    margin: 0;
    font-size: 30px;
}

.arp-final-methods label {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(6, 26, 68, .09);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(6, 26, 68, .05);
}

.arp-final-methods span {
    display: grid;
}

.arp-final-methods small {
    color: rgba(7, 22, 47, .58);
}

.arp-final-methods b {
    color: var(--arp-primary);
    font-size: 12px;
}

.arp-final-methods input,
.arp-customer-type input {
    width: 22px;
    height: 22px;
    accent-color: var(--arp-secondary);
}

.arp-final-device {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.arp-final-device img {
    max-height: 86px;
    object-fit: contain;
}

.arp-final-device strong {
    font-size: 20px;
}

.arp-final-price {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(6, 26, 68, .09);
    border-radius: 12px;
    background: #fff;
}

.arp-customer-type {
    display: flex;
    gap: 18px;
    margin: 12px 0;
}

.arp-customer-type label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.arp-hero__grid,
.arp-split {
    display: grid;
    gap: 28px;
}

.arp-hero h1,
.arp-page-hero h1,
.arp-final h2 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1;
    letter-spacing: 0;
}

.arp-hero p,
.arp-page-hero p,
.arp-section__head p,
.arp-final p {
    max-width: 680px;
    font-size: 18px;
    color: rgba(17, 24, 39, .74);
}

.arp-kicker {
    margin: 0 0 12px;
    color: var(--arp-primary) !important;
    font-size: 13px !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.arp-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 28px 0 0;
}

.arp-trust-strip div,
.arp-card,
.arp-hero__panel,
.arp-feature-list div,
.arp-price-list a,
.arp-steps div,
.arp-alert,
.arp-faq details {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: var(--arp-card-radius);
    box-shadow: 0 12px 28px rgba(17, 24, 39, .06);
}

.arp-trust-strip div {
    padding: 14px;
}

.arp-trust-strip dt {
    font-size: 24px;
    font-weight: 950;
}

.arp-trust-strip dd {
    margin: 0;
    color: rgba(17, 24, 39, .64);
    font-size: 13px;
}

.arp-hero__panel {
    padding: 22px;
}

.arp-hero-device {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(6, 59, 143, .14);
    border-radius: var(--arp-card-radius);
    background: #F4F8FF;
}

.arp-hero-device img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.arp-hero-device strong,
.arp-hero-device span {
    display: block;
}

.arp-hero-device strong {
    color: var(--arp-secondary);
    font-size: 20px;
    line-height: 1.15;
}

.arp-hero-device span {
    margin-top: 4px;
    color: rgba(7, 22, 47, .68);
}

.arp-hero-checklist {
    display: grid;
    gap: 10px;
    margin: 18px 0 20px;
    padding: 0;
    list-style: none;
}

.arp-hero-checklist li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: center;
    color: rgba(7, 22, 47, .76);
    font-weight: 800;
}

.arp-hero-checklist li::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--arp-primary);
    box-shadow: inset 0 0 0 8px #EAF3FF;
}

.arp-btn--wide {
    width: 100%;
}

.arp-section,
.arp-page-hero,
.arp-final {
    padding: 72px 0;
}

.arp-page-hero {
    background: linear-gradient(180deg, #fff 0%, #EAF3FF 100%);
}

.arp-section--white {
    background: #fff;
}

.arp-section__head {
    margin-bottom: 28px;
}

.arp-section h2,
.arp-split h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1.04;
    letter-spacing: 0;
}

.arp-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.arp-card {
    min-height: 220px;
    padding: 22px;
}

.arp-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin: -6px -6px 18px;
    border-radius: calc(var(--arp-card-radius) - 6px);
    background: #EAF3FF;
}

.arp-card__image img,
.arp-content__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arp-card h2,
.arp-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.16;
}

.arp-card p {
    color: rgba(17, 24, 39, .68);
}

.arp-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.arp-card__meta span,
.arp-stars {
    color: var(--arp-accent);
    font-weight: 900;
}

.arp-brand-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.arp-brand-row a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 82px;
    padding: 18px;
    border: 1px solid rgba(17, 24, 39, .1);
    border-radius: var(--arp-card-radius);
    text-decoration: none;
    background: #fff;
    font-weight: 950;
}

.arp-feature-list {
    display: grid;
    gap: 12px;
}

.arp-feature-list div {
    padding: 18px;
}

.arp-feature-list__image {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.arp-feature-list strong,
.arp-feature-list span {
    display: block;
}

.arp-feature-list span {
    color: rgba(17, 24, 39, .64);
}

.arp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.arp-steps div {
    min-height: 120px;
    padding: 18px;
}

.arp-steps span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--arp-primary);
    color: #fff;
    font-weight: 900;
}

.arp-price-list {
    display: grid;
    gap: 10px;
}

.arp-price-list a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    align-items: center;
    padding: 16px;
    text-decoration: none;
}

.arp-price-list small {
    grid-column: 1 / -1;
    color: rgba(17, 24, 39, .62);
}

.arp-faq {
    display: grid;
    gap: 12px;
}

.arp-faq details {
    padding: 18px 20px;
}

.arp-faq summary {
    cursor: pointer;
    font-weight: 900;
}

.arp-final {
    color: #fff;
    background: linear-gradient(135deg, var(--arp-secondary), var(--arp-primary) 58%, #9B0010);
}

.arp-final p {
    color: rgba(255, 255, 255, .74);
}

.arp-footer {
    padding: 56px 0 92px;
    background: #020A1B;
    color: #fff;
}

.arp-footer__grid {
    display: grid;
    gap: 26px;
}

.arp-footer p,
.arp-footer li {
    color: rgba(255, 255, 255, .72);
}

.arp-footer__menu li + li {
    margin-top: 8px;
}

.arp-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.arp-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.arp-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(17, 24, 39, .22);
}

.arp-sticky-cta a {
    padding: 13px 8px;
    background: var(--arp-secondary);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
}

.arp-sticky-cta a:nth-child(2) {
    background: var(--arp-accent);
}

.arp-sticky-cta a:nth-child(3) {
    background: var(--arp-primary);
}

.arp-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(17, 24, 39, .62);
    font-size: 14px;
}

.arp-breadcrumbs a {
    text-decoration: none;
}

.arp-content {
    font-size: 18px;
}

.arp-content__image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin: 0 0 24px;
    border-radius: var(--arp-card-radius);
    background: #EAF3FF;
}

.arp-alert {
    margin-top: 18px;
    padding: 16px;
    border-color: rgba(6, 59, 143, .22);
    color: #063B8F;
}

.arp-booking {
    display: grid;
    gap: 18px;
}

.arp-booking__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
    gap: 5px;
}

.arp-booking__progress span {
    min-height: 6px;
    overflow: hidden;
    text-indent: -999px;
    border-radius: 999px;
    background: rgba(17, 24, 39, .12);
}

.arp-booking__progress span.is-active {
    background: var(--arp-primary);
}

.arp-booking__step {
    display: none;
}

.arp-booking__step.is-active {
    display: block;
}

.arp-booking h3 {
    margin: 0 0 14px;
    font-size: 22px;
}

.arp-choice-grid,
.arp-form-grid {
    display: grid;
    gap: 10px;
}

.arp-choice {
    position: relative;
    display: block;
}

.arp-choice input {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.arp-choice span {
    position: relative;
    display: grid;
    gap: 2px;
    padding: 14px;
    border: 1px solid rgba(17, 24, 39, .12);
    border-radius: 14px;
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}

.arp-choice small {
    color: rgba(17, 24, 39, .62);
    font-weight: 700;
}

.arp-choice input:checked + span {
    border-color: var(--arp-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--arp-primary) 16%, transparent);
}

.arp-booking select,
.arp-booking input,
.arp-booking textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(17, 24, 39, .14);
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
}

.arp-form-grid label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.arp-booking__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 859px) {
    .arp-nav {
        position: fixed;
        top: 76px;
        right: 16px;
        left: 16px;
        display: none;
        padding: 18px;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 20px 60px rgba(17, 24, 39, .18);
    }

    .arp-nav.is-open {
        display: block;
    }

    .arp-nav__list,
    .arp-nav > ul {
        display: grid;
        gap: 12px;
    }

    .arp-nav .sub-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        min-width: 0;
        margin-top: 8px;
        box-shadow: none;
        background: #F4F8FF;
    }
}

@media (min-width: 700px) {
    .arp-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arp-brand-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .arp-steps {
        grid-template-columns: repeat(5, 1fr);
    }

    .arp-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arp-drive-flow {
        grid-template-columns: repeat(4, 1fr);
    }

    .arp-config-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .arp-span-2 {
        grid-column: 1 / -1;
    }
}

@media (min-width: 860px) {
    .arp-menu-toggle {
        display: none;
    }

    .arp-header__cta {
        display: flex;
    }

    .arp-hero__grid,
    .arp-split,
    .arp-drive-hero__grid,
    .arp-drive-map {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
        align-items: center;
    }

    .arp-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .arp-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }

    .arp-config-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .arp-config-repairs,
    .arp-config-final {
        grid-template-columns: minmax(0, 1fr) 340px;
        align-items: start;
    }

    .arp-sticky-cta {
        left: auto;
        width: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
