

.cv-hero {
    position: relative;
    z-index: 1;
    min-height: 560px;
    display: flex;
    align-items: flex-start;
}

.cv-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.cv-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.cv-hero__content {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cv-hero__title {
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.cv-hero__search-wrap {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.cv-hero__search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 0 16px;
    height: 56px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: box-shadow 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.cv-hero__search-bar.is-focused {
    box-shadow: 0 0 0 3px rgba(0, 70, 213, 0.22), 0 6px 32px rgba(0,0,0,0.22);
    transform: scale(1.018);
}

.cv-hero__search-icon {
    color: #6b7a8d;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.cv-hero__search-bar.is-focused .cv-hero__search-icon {
    color: #0046d5;
}

.cv-hero__search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1a2b48;
    background: transparent;
}

.cv-hero__search-input::placeholder {
    color: #9aaec8;
}

.cv-hero__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 1100;
    max-height: 520px;
    overflow-y: auto;
}

.cv-hero__dropdown-inner {
    padding: 20px;
}

.cv-hero__section-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2b48;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.cv-hero__body-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.cv-hero__body-grid::-webkit-scrollbar {
    display: none;
}

.cv-hero__body-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    border: 1px solid #e8eaed;
    border-radius: 10px;
    text-decoration: none;
    color: #1a2b48;
    font-size: 12px;
    font-weight: 500;
    transition: border-color 0.15s, background 0.15s;
    text-align: center;
    flex-shrink: 0;
    min-width: 96px;
}

.cv-hero__body-card:hover {
    border-color: #0046d5;
    background: #f0f4ff;
    color: #0046d5;
}

.cv-hero__body-photo {
    width: 80px;
    height: 50px;
    background: #f0f4f8;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cv-hero__body-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cv-hero__body-photo-fallback {
    width: 64px;
    height: 32px;
}

.cv-hero__cars-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cv-hero__car-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #1a2b48;
    transition: background 0.12s;
}

.cv-hero__car-row:hover {
    background: #f5f7fa;
}

.cv-hero__car-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #eee;
}

.cv-hero__car-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.cv-hero__car-name {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cv-hero__car-meta {
    font-size: 12px;
    color: #6b7a8d;
}

.cv-hero__car-price {
    font-size: 14px;
    font-weight: 600;
    color: #0046d5;
    flex-shrink: 0;
}

.cv-hero__view-all {
    display: block;
    text-align: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f4f8;
    font-size: 14px;
    font-weight: 600;
    color: #0046d5;
    text-decoration: none;
}

.cv-hero__view-all:hover {
    text-decoration: underline;
}

@keyframes cv-dropdown-in {
    from { opacity: 0; transform: translateY(-14px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)     scale(1);    }
}
@keyframes cv-dropdown-out {
    from { opacity: 1; transform: translateY(0)    scale(1);    }
    to   { opacity: 0; transform: translateY(-8px)  scale(0.98); }
}
@keyframes cv-item-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0);   }
}

.cv-hero__dropdown.is-open {
    animation: cv-dropdown-in 0.26s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}
.cv-hero__dropdown.is-closing {
    animation: cv-dropdown-out 0.18s ease both;
}
.cv-hero__car-row.cv-animate {
    animation: cv-item-in 0.22s ease both;
}
.cv-hero__body-card.cv-animate {
    animation: cv-item-in 0.22s ease both;
}

.cv-hero__ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 760px;
    padding-bottom: 40px;
}

.cv-hero__cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: background 0.15s;
}

.cv-hero__cta-card:hover {
    background: rgba(255,255,255,0.2);
}

.cv-hero__cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cv-hero__cta-text strong {
    font-size: 15px;
    font-weight: 700;
}

.cv-hero__cta-text span {
    font-size: 13px;
    opacity: 0.8;
}

.cv-hero__cta-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    background: #fff;
    color: #0046d5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.cv-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: #fff;
    border-bottom: 1px solid #e8eaed;
    height: 64px;
}

.cv-header__inner {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    gap: 32px;
}

.cv-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.cv-header__logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.cv-header__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.cv-header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #1a2b48;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.cv-header__nav-link svg {
    color: #6b7a8d;
    flex-shrink: 0;
}

.cv-header__nav-link:hover {
    background: #f0f4f8;
    color: #0046d5;
}

.cv-header__nav-link.is-active {
    color: #0046d5;
}

.cv-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.cv-header__phone {
    font-size: 14px;
    font-weight: 500;
    color: #1a2b48;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #dde2e8;
    transition: border-color 0.15s, color 0.15s;
}

.cv-header__phone:hover {
    border-color: #0046d5;
    color: #0046d5;
}

.cv-header__icon-group {
    display: flex;
    align-items: center;
    border: 1px solid #dde2e8;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f7fa;
}

.cv-header__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #1a2b48;
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
    background: transparent;
}

.cv-header__icon-btn:hover {
    color: #0046d5;
    background: #eaeef4;
}

.cv-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-left: 1px solid #dde2e8;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s;
}

.cv-header__burger:hover {
    background: #eaeef4;
}

.cv-burger__icon { display: block; }
.cv-burger__icon--close { display: none; }
.cv-header__burger[aria-expanded="true"] .cv-burger__icon--menu { display: none; }
.cv-header__burger[aria-expanded="true"] .cv-burger__icon--close { display: block; }

.cv-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 100vw;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cv-mobile-menu.is-open {
    transform: translateX(0);
}

.cv-mobile-menu__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.cv-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e8eaed;
    flex-shrink: 0;
}

.cv-mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #dde2e8;
    background: none;
    cursor: pointer;
    color: #1a2b48;
    transition: border-color 0.15s;
}

.cv-mobile-menu__close:hover {
    border-color: #0046d5;
    color: #0046d5;
}

.cv-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}

.cv-mobile-menu__link {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #1a2b48;
    text-decoration: none;
    border-bottom: 1px solid #f0f4f8;
    transition: background 0.15s, color 0.15s;
}

.cv-mobile-menu__link:hover,
.cv-mobile-menu__link.is-active {
    background: #f0f4f8;
    color: #0046d5;
}

.cv-mobile-menu__footer {
    padding: 24px;
    border-top: 1px solid #e8eaed;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.cv-mobile-menu__phone {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a2b48;
    text-decoration: none;
}

.cv-btn-primary {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: #0046d5;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

.cv-btn-primary:hover {
    background: #0035a8;
}

.cv-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cv-overlay.is-visible {
    opacity: 1;
    pointer-events: all;
}

.cv-styles-section {
    background: #fff;
    padding: 40px 0 36px;
    border-bottom: 1px solid #eaeef4;
}

.cv-styles__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.cv-styles__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.cv-styles__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b48;
    margin: 0;
}

.cv-styles__arrows {
    display: flex;
    gap: 8px;
}

.cv-styles__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #c8d0dc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a2b48;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.cv-styles__arrow:hover {
    border-color: #0046d5;
    color: #0046d5;
    background: #f0f4ff;
}

.cv-styles__track-wrap {
    overflow: hidden;
}

.cv-styles__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.cv-styles__track::-webkit-scrollbar {
    display: none;
}

.cv-styles__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1a2b48;
    flex-shrink: 0;
    min-width: 140px;
}

.cv-styles__label {
    font-size: 14px;
    font-weight: 500;
    color: #1a2b48;
}

.cv-styles__card:hover .cv-styles__label {
    color: #0046d5;
}

.cv-styles__photo {
    position: relative;
    width: 160px;
    height: 100px;
    overflow: hidden;
}

.cv-styles__photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.cv-styles__card:hover .cv-styles__photo-img {
    transform: scale(1.04);
}

.cv-styles__photo-fallback {
    width: 120px;
    height: 60px;
}

@media (max-width: 768px) {
    .cv-styles__inner { padding: 0 16px; }
    .cv-styles__title { font-size: 18px; }
    .cv-styles__photo { width: 120px; height: 76px; }
    .cv-styles__card { min-width: 110px; }
}

.cv-promo-section {
    background: #fff;
    padding: 48px 0 44px;
    border-bottom: 1px solid #eaeef4;
}

.cv-promo__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.cv-promo__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cv-promo__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b48;
    margin: 0;
}

.cv-promo__arrows {
    display: flex;
    gap: 8px;
}

.cv-promo__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #c8d0dc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a2b48;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.cv-promo__arrow:hover {
    border-color: #0046d5;
    color: #0046d5;
    background: #f0f4ff;
}

.cv-promo__track-wrap {
    overflow: hidden;
}

.cv-promo__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.cv-promo__card {
    min-height: 290px;
    border-radius: 16px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cv-promo__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.cv-promo__card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 1;
}

.cv-promo__card--blue {
    background-color: #1a3a6e;
}
.cv-promo__card--blue::before {
    background: linear-gradient(150deg,
        rgba(10, 40, 100, 0.88) 0%,
        rgba(10, 40, 100, 0.6) 50%,
        rgba(10, 40, 100, 0.18) 100%);
}

.cv-promo__card--teal {
    background-color: #0d2855;
}
.cv-promo__card--teal::before {
    background: linear-gradient(150deg,
        rgba(0, 30, 90, 0.9) 0%,
        rgba(0, 30, 90, 0.62) 50%,
        rgba(0, 30, 90, 0.2) 100%);
}

.cv-promo__card--navy {
    background-color: #0a1628;
}
.cv-promo__card--navy::before {
    background: linear-gradient(150deg,
        rgba(6, 14, 36, 0.92) 0%,
        rgba(6, 14, 36, 0.68) 50%,
        rgba(6, 14, 36, 0.22) 100%);
}

.cv-promo__card--dark {
    background-color: #1a0a2e;
}
.cv-promo__card--dark::before {
    background: linear-gradient(150deg,
        rgba(20, 6, 40, 0.93) 0%,
        rgba(20, 6, 40, 0.68) 50%,
        rgba(20, 6, 40, 0.22) 100%);
}

.cv-promo__card-body {
    position: relative;
    z-index: 2;
}

.cv-promo__card-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.22;
    margin-bottom: 10px;
    color: #fff;
}

.cv-promo__card-text {
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
    color: rgba(255,255,255,0.72);
    max-width: 230px;
}

.cv-promo__card-btn {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    align-self: flex-start;
    transition: background 0.15s, opacity 0.15s, border-color 0.15s;
}

.cv-promo__card-btn--filled {
    background: #fff;
    color: #0d1e3d;
    border: 2px solid #fff;
}

.cv-promo__card:hover .cv-promo__card-btn--filled {
    background: #e8eef8;
    border-color: #e8eef8;
}

.cv-promo__card-btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}

.cv-promo__card:hover .cv-promo__card-btn--outline {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.9);
}

@media (max-width: 1024px) {
    .cv-promo__track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cv-promo__inner { padding: 0 16px; }
    .cv-promo__title { font-size: 18px; }
    .cv-promo__track { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cv-promo__card { min-height: 240px; padding: 20px 18px 18px; }
    .cv-promo__card-title { font-size: 17px; }
}

@media (max-width: 480px) {
    .cv-promo__track { grid-template-columns: 1fr 1fr; }
    .cv-promo__card { min-height: 200px; }
    .cv-promo__card-text { display: none; }
    .cv-promo__card-btn {
        align-self: stretch;
        text-align: center;
        white-space: normal;
        padding: 10px 12px;
        font-size: 12px;
    }
}

.cv-tagline-wrap {
    height: 250vh;
}

.cv-tagline-section {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.cv-tagline__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    pointer-events: none;
}

.cv-tagline__headline {
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 700;
    color: #1a2b48;
    line-height: 1.2;
    margin: 0;
    transition: color 0.4s ease;
}

.cv-tagline-section.is-revealed .cv-tagline__headline {
    color: #fff;
}

.cv-tagline__word {
    position: relative;
    display: inline-block;
}

.cv-tagline__circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 170%;
    overflow: visible;
    pointer-events: none;
}

.cv-tagline__circle ellipse {
    stroke-dasharray: 340;
    stroke-dashoffset: 340;
    transition: stroke-dashoffset 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.cv-tagline-section.in-view .cv-tagline__circle ellipse {
    stroke-dashoffset: 0;
}

.cv-tagline__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    clip-path: inset(100% 0 0 0);
    will-change: clip-path;
}

@media (max-width: 768px) {
    .cv-tagline-wrap { height: 200vh; }
}

.cv-models-section {
    background: #fff;
    padding: 48px 0 44px;
    border-bottom: 1px solid #eaeef4;
}

.cv-models__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.cv-models__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.cv-models__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b48;
    margin: 0;
}

.cv-models__arrows {
    display: flex;
    gap: 8px;
}

.cv-models__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #c8d0dc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a2b48;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.cv-models__arrow:hover {
    border-color: #0046d5;
    color: #0046d5;
    background: #f0f4ff;
}

.cv-models__track-wrap {
    overflow: hidden;
}

.cv-models__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.cv-models__track::-webkit-scrollbar {
    display: none;
}

.cv-models__card {
    flex-shrink: 0;
    width: 170px;
    height: 210px;
    background: #f5f7fa;
    border-radius: 12px;
    padding: 14px 12px 0;
    text-decoration: none;
    color: #1a2b48;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.15s, transform 0.18s ease, box-shadow 0.18s ease;
}

.cv-models__card:hover {
    background: #eaeff8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.cv-models__card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 10px;
    min-height: 72px;
}

.cv-models__card-make {
    font-size: 12px;
    color: #7a8fa6;
    font-weight: 400;
}

.cv-models__card-model {
    font-size: 15px;
    font-weight: 700;
    color: #1a2b48;
    line-height: 1.2;
}

.cv-models__card-photo {
    margin: 0 -12px;
    flex: 1;
    overflow: hidden;
}

.cv-models__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.cv-models__card:hover .cv-models__card-img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cv-models__inner { padding: 0 16px; }
    .cv-models__title { font-size: 18px; }
    .cv-models__card { width: 148px; height: 190px; }
}

.cv-feature-section {
    padding: 56px 0 64px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.cv-feature__track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.cv-feature__slide {
    flex-shrink: 0;
    width: 68vw;
    max-width: 960px;
    min-height: 480px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 40px;
    filter: blur(4px);
    opacity: 0.55;
    transform: scale(0.97);
    transition: filter 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}

.cv-feature__slide.is-active {
    filter: none;
    opacity: 1;
    transform: scale(1);
}

.cv-feature__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,45,0.82) 0%, rgba(10,20,45,0.25) 50%, rgba(0,0,0,0) 100%);
    border-radius: inherit;
}

.cv-feature__widget {
    position: absolute;
    top: 36px;
    left: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 2;
}

.cv-feature__widget-label {
    font-size: 12px;
    color: #7a8fa6;
    font-weight: 500;
    margin-bottom: 4px;
}

.cv-feature__widget-value {
    font-size: 30px;
    font-weight: 700;
    color: #1a2b48;
    line-height: 1.1;
    margin-bottom: 4px;
}

.cv-feature__widget-value span {
    font-size: 16px;
    font-weight: 500;
    color: #4a6080;
}

.cv-feature__widget-meta {
    font-size: 12px;
    color: #7a8fa6;
    margin-bottom: 10px;
}

.cv-feature__widget-bar {
    height: 4px;
    background: #e8eef8;
    border-radius: 4px;
    overflow: hidden;
}

.cv-feature__widget-bar-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, #0046d5, #00b4d8);
    border-radius: 4px;
}

.cv-feature__widget-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cv-feature__widget-tags span {
    font-size: 11px;
    font-weight: 600;
    background: #eaf0fb;
    color: #0046d5;
    border-radius: 20px;
    padding: 3px 10px;
}

.cv-feature__content {
    position: relative;
    z-index: 2;
}

.cv-feature__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}

.cv-feature__text {
    font-size: 14px;
    color: rgba(255,255,255,0.78);
    margin: 0 0 20px;
    max-width: 420px;
}

.cv-feature__btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.cv-feature__btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

.cv-feature__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #c8d0dc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a2b48;
    z-index: 10;
    transition: border-color 0.15s, background 0.15s;
}

.cv-feature__arrow--prev { left: 20px; }
.cv-feature__arrow--next { right: 20px; }

.cv-feature__arrow:hover {
    border-color: #0046d5;
    color: #0046d5;
    background: #f0f4ff;
}

.cv-feature__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.cv-feature__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #c8d0dc;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.cv-feature__dot.is-active {
    background: #0046d5;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .cv-feature__slide { width: 80vw; min-height: 380px; padding: 24px 20px; }
    .cv-feature__widget { top: 20px; left: 20px; min-width: 170px; padding: 14px 16px; }
    .cv-feature__widget-value { font-size: 22px; }
    .cv-feature__title { font-size: 18px; }
    .cv-feature__arrow { width: 36px; height: 36px; }
}

@media (max-width: 480px) {
    .cv-feature__slide { width: 88vw; }
    .cv-feature__arrow { display: none; }
}

.cv-footer {
    background: #f5f7fa;
    padding: 32px 24px 24px;
}

.cv-footer__container {
    max-width: 80%;
    margin: 0 auto;
    background: #0d1421;
    border-radius: 20px;
    padding: 48px 48px 32px;
    color: #fff;
}

.cv-footer__main {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.cv-footer__logo-col {
    flex-shrink: 0;
    width: 180px;
}

.cv-footer__logo {
    height: 48px;
    width: auto;
    display: block;
}

.cv-footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    flex: 1;
}

.cv-footer__col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: 0.01em;
}

.cv-footer__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #9aaec8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.15s;
}

.cv-footer__link:hover {
    color: #fff;
}

.cv-footer__link--icon svg {
    flex-shrink: 0;
    color: #6b7a8d;
}

.cv-footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 32px 0;
}

.cv-footer__mid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.cv-footer__mid-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.cv-footer__mid-link {
    font-size: 13px;
    color: #9aaec8;
    text-decoration: none;
    transition: color 0.15s;
    padding: 2px 4px;
}

.cv-footer__mid-link:hover {
    color: #fff;
}

.cv-footer__mid-sep {
    font-size: 13px;
    color: #3d4f6b;
    user-select: none;
}

.cv-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.cv-footer__copyright {
    font-size: 12px;
    color: #6b7a8d;
    margin: 0;
}

.cv-footer__legal {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.cv-footer__legal-link {
    font-size: 12px;
    color: #6b7a8d;
    text-decoration: none;
    transition: color 0.15s;
    padding: 2px 4px;
}

.cv-footer__legal-link:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .cv-footer__cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .cv-hero__ctas {
        grid-template-columns: 1fr;
    }

    .cv-hero__cta-card {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cv-header__nav {
        display: none;
    }

    .cv-header__phone {
        display: none;
    }

    .cv-footer__container {
        max-width: 100%;
        padding: 32px 24px 24px;
        border-radius: 0;
    }

    .cv-footer__main {
        flex-direction: column;
        gap: 32px;
    }

    .cv-footer__logo-col {
        width: auto;
    }

    .cv-footer__cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .cv-footer__mid {
        flex-direction: column;
        align-items: flex-start;
    }

    .cv-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
.cv-hero__content {
        padding: 40px 16px 0;
    }

    .cv-header__inner {
        padding: 0 16px;
        gap: 16px;
    }

    .cv-footer {
        padding: 0;
    }

    .cv-footer__cols {
        grid-template-columns: 1fr 1fr;
    }

    .cv-footer__mid-links {
        gap: 2px;
    }
}

.cv-about-hero {
    background: #0d2355;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 48px;
    min-height: 280px;
}

.cv-about-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cv-about-hero__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.cv-about-hero__title {
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0;
}

.cv-about-mission {
    background: #fff;
    padding: 80px 48px;
}

.cv-about-mission__inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cv-about-mission__accent {
    width: 48px;
    height: 4px;
    background: #f5a623;
    border-radius: 2px;
}

.cv-about-mission__headline {
    font-size: clamp(22px, 3.5vw, 40px);
    font-weight: 900;
    color: #0d2355;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin: 0;
}

.cv-about-mission__sub {
    font-size: 16px;
    color: #6b7a8d;
    line-height: 1.7;
    max-width: 620px;
    margin: 0;
}

.cv-about-stats {
    background: #fff;
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}

.cv-about-stats__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
}

.cv-about-stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 32px 0;
}

.cv-about-stats__number {
    font-size: 36px;
    font-weight: 800;
    color: #0d1421;
    letter-spacing: -0.02em;
    line-height: 1;
}

.cv-about-stats__label {
    font-size: 14px;
    color: #6b7a8d;
    font-weight: 500;
}

.cv-about-stats__sep {
    width: 1px;
    height: 48px;
    background: #e8eaed;
    flex-shrink: 0;
    margin: 0 40px;
}

.cv-about-guarantee {
    background: #fff;
    padding: 96px 0 64px;
}

.cv-about-guarantee__head {
    max-width: 680px;
    margin: 0 auto 72px;
    text-align: center;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cv-about-guarantee__accent {
    width: 48px;
    height: 4px;
    background: #f5a623;
    border-radius: 2px;
}

.cv-about-guarantee__title {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 900;
    color: #0d2355;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin: 0;
}

.cv-about-guarantee__sub {
    font-size: 16px;
    color: #6b7a8d;
    line-height: 1.7;
    margin: 0;
}

.cv-about-guarantee__body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cv-about-guarantee__visual {
    position: relative;
    height: 480px;
}

.cv-about-guarantee__blob {
    position: absolute;
    background: #fdf3e7;
    border-radius: 50%;
}

.cv-about-guarantee__blob:first-child {
    width: 340px;
    height: 340px;
    bottom: 0;
    left: -20px;
}

.cv-about-guarantee__blob--sm {
    width: 200px;
    height: 200px;
    top: 10px;
    right: 20px;
}

.cv-about-guarantee__badge {
    position: absolute;
    top: 40px;
    left: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #0046d5;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 3px solid #fff;
    box-shadow: 0 4px 16px rgba(0,70,213,0.3);
    line-height: 1;
    gap: 1px;
}

.cv-about-guarantee__badge-top,
.cv-about-guarantee__badge-bot {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cv-about-guarantee__badge-number {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.cv-about-guarantee__photos {
    position: absolute;
    top: 20px;
    left: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.cv-about-guarantee__photo {
    border-radius: 12px;
    overflow: hidden;
    height: 210px;
}

.cv-about-guarantee__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-about-guarantee__list {
    display: flex;
    flex-direction: column;
}

.cv-about-gfeat {
    padding: 28px 0;
    border-bottom: 1px solid #e8eaed;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cv-about-gfeat:first-child {
    border-top: 1px solid #e8eaed;
}

.cv-about-gfeat__title {
    font-size: 18px;
    font-weight: 700;
    color: #0d1421;
    margin: 0;
}

.cv-about-gfeat__text {
    font-size: 15px;
    color: #6b7a8d;
    line-height: 1.65;
    margin: 0;
}

.cv-about-gfeat__link {
    font-size: 14px;
    font-weight: 600;
    color: #0046d5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.cv-about-gfeat__link:hover {
    opacity: 0.75;
}

.cv-about-story {
    background: #fff;
    padding: 96px 0;
}

.cv-about-story__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.cv-about-story__media {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.cv-about-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-about-story__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cv-about-story__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0046d5;
}

.cv-about-story__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0d1421;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.cv-about-story__text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.75;
    margin: 0;
}

.cv-about-story__link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #0046d5;
    text-decoration: none;
    margin-top: 4px;
    transition: letter-spacing 0.2s ease;
}

.cv-about-story__link:hover {
    letter-spacing: 0.01em;
}

.cv-about-features {
    background: #fff;
    padding: 0 0 72px;
}

.cv-about-features__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto 64px;
    padding: 0 48px;
}

.cv-about-features__divider::before,
.cv-about-features__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to var(--dir, right), transparent, #d0d5df);
}

.cv-about-features__divider::before { --dir: right; }
.cv-about-features__divider::after  { --dir: left; }

.cv-about-features__divider-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0d2355;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px;
}

.cv-about-features__divider-dot svg {
    display: block;
}

.cv-about-features__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cv-about-features__collage {
    position: relative;
    height: 460px;
}

.cv-about-collage__circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

.cv-about-collage__circle--sm {
    width: 160px;
    height: 160px;
    top: 20px;
    left: 10px;
    background: #d6eaf8;
    color: #0046d5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cv-about-collage__circle--lg {
    width: 300px;
    height: 300px;
    bottom: 20px;
    left: 80px;
    background: #e8d5f0;
    z-index: 1;
}

.cv-about-collage__circle--lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cv-about-collage__badge {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0046d5;
    z-index: 3;
}

.cv-about-features__list {
    display: flex;
    flex-direction: column;
}

.cv-about-feat {
    padding: 28px 0;
    border-bottom: 1px solid #e8eaed;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cv-about-feat:first-child {
    border-top: 1px solid #e8eaed;
}

.cv-about-feat__title {
    font-size: 18px;
    font-weight: 700;
    color: #0d1421;
    margin: 0;
}

.cv-about-feat__text {
    font-size: 15px;
    color: #6b7a8d;
    line-height: 1.65;
    margin: 0;
}

.cv-about-feat__link {
    font-size: 14px;
    font-weight: 600;
    color: #0046d5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.cv-about-feat__link:hover {
    opacity: 0.75;
}

.cv-about-features__cta {
    display: flex;
    justify-content: center;
    margin-top: 56px;
    padding: 0 48px;
}

.cv-about-features__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0046d5;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 18px 56px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.cv-about-features__cta-btn:hover {
    background: #003ab0;
    transform: translateY(-1px);
}

.cv-about-team {
    background: #fff;
    padding: 96px 0;
}

.cv-about-team__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.cv-about-team__head {
    margin-bottom: 48px;
}

.cv-about-team__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0046d5;
    margin-bottom: 10px;
}

.cv-about-team__title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #0d1421;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.15;
}

.cv-about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cv-about-member {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8eaed;
    transition: box-shadow 0.2s ease;
}

.cv-about-member:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.cv-about-member__photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f5f7fa;
}

.cv-about-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cv-about-member:hover .cv-about-member__photo img {
    transform: scale(1.04);
}

.cv-about-member__info {
    padding: 16px 18px;
    background: #fff;
    border-top: 1px solid #e8eaed;
}

.cv-about-member__name {
    font-size: 15px;
    font-weight: 700;
    color: #0d1421;
    margin-bottom: 3px;
}

.cv-about-member__role {
    font-size: 13px;
    color: #6b7a8d;
}

.cv-about-location {
    background: #f5f7fa;
    padding: 96px 0;
}

.cv-about-location__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.cv-about-location__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
    background: #fff;
}

.cv-about-location__photo {
    overflow: hidden;
}

.cv-about-location__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
}

.cv-about-location__details {
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.cv-about-location__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0046d5;
}

.cv-about-location__title {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 800;
    color: #0d1421;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.cv-about-location__address {
    font-size: 15px;
    font-weight: 600;
    color: #0d1421;
    margin: 0;
}

.cv-about-location__text {
    font-size: 15px;
    color: #6b7a8d;
    line-height: 1.65;
    margin: 0;
}

.cv-about-location__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

.cv-about-location__contact-link {
    font-size: 15px;
    font-weight: 600;
    color: #0046d5;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cv-about-location__contact-link:hover {
    opacity: 0.75;
}

@media (max-width: 1024px) {
    .cv-about-hero { padding: 64px 24px; }
    .cv-about-mission { padding: 64px 24px; }
    .cv-about-stats__inner { padding: 0 24px; }
    .cv-about-stats__sep { margin: 0 24px; }
    .cv-about-guarantee { padding: 64px 0; }
    .cv-about-guarantee__body { padding: 0 24px; gap: 48px; }
    .cv-about-story { padding: 64px 0; }
    .cv-about-story__inner { padding: 0 24px; gap: 40px; }
    .cv-about-features { padding: 0 0 48px; }
    .cv-about-features__divider { margin-bottom: 48px; }
    .cv-about-features__inner { padding: 0 24px; gap: 48px; }
    .cv-about-features__cta { padding: 0 24px; margin-top: 40px; }
    .cv-about-team { padding: 64px 0; }
    .cv-about-team__inner { padding: 0 24px; }
    .cv-about-team__grid { grid-template-columns: repeat(2, 1fr); }
    .cv-about-location { padding: 64px 0; }
    .cv-about-location__inner { padding: 0 24px; }
}

@media (max-width: 768px) {
    .cv-about-hero { padding: 56px 24px; min-height: unset; }
    .cv-about-mission { padding: 56px 24px; }
    .cv-about-stats__inner { flex-wrap: wrap; }
    .cv-about-stats__item { flex: 0 0 calc(50% - 1px); padding: 24px 0; }
    .cv-about-stats__sep { display: none; }
    .cv-about-story__inner { grid-template-columns: 1fr; gap: 32px; }
    .cv-about-guarantee__body { grid-template-columns: 1fr; }
    .cv-about-guarantee__visual { height: 300px; }
    .cv-about-guarantee__photos { left: 60px; }
    .cv-about-guarantee__photo { height: 130px; }
    .cv-about-features__inner { grid-template-columns: 1fr; }
    .cv-about-features__collage { height: 320px; }
    .cv-about-location__card { grid-template-columns: 1fr; }
    .cv-about-location__photo { display: none; }
    .cv-about-location__details { padding: 40px 32px; }
}

@media (max-width: 480px) {
    .cv-about-hero { padding: 48px 16px; }
    .cv-about-mission { padding: 48px 16px; }
    .cv-about-stats__inner { padding: 0 16px; }
    .cv-about-story__inner { padding: 0 16px; }
    .cv-about-features__inner { padding: 0 16px; }
    .cv-about-team__inner { padding: 0 16px; }
    .cv-about-team__grid { grid-template-columns: repeat(2, 1fr); }
    .cv-about-location__inner { padding: 0 16px; }
    .cv-about-location__details { padding: 32px 20px; }
}

.cv-help {
    background: #f5f7fa;
    padding: 80px 24px;
    text-align: center;
    border-top: 1px solid #d4dce6;
}

.cv-help__inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cv-help__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2b48;
    margin: 0;
}

.cv-help__sub {
    font-size: 1rem;
    color: #6b7a8d;
    margin: 0;
}

.cv-help__btn {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    border: 2px solid #0046d5;
    color: #0046d5;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.cv-help__btn:hover {
    background: #0046d5;
    color: #fff;
}

@media (max-width: 480px) {
    .cv-help { padding: 56px 16px; }
    .cv-help__title { font-size: 1.5rem; }
}

.cv-anim {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.cv-anim--up    { transform: translateY(40px); }
.cv-anim--left  { transform: translateX(-40px); }
.cv-anim--right { transform: translateX(40px); }

.cv-anim--visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .cv-anim { transition: none; opacity: 1; transform: none; }
}

.cv-inner-hero {
    background: #0d2355;
    padding: 80px 24px;
    text-align: center;
}
.cv-inner-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5a623;
    margin-bottom: 14px;
}
.cv-inner-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
}
.cv-inner-hero__sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.cv-legal {
    background: #e9eef3;
    min-height: 100vh;
    padding-bottom: 80px;
}
.cv-legal__head {
    padding: 72px 24px 48px;
    text-align: center;
    border-bottom: 1px solid #d4dce6;
}
.cv-legal__title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #2e3a4a;
    margin: 0 0 10px;
}
.cv-legal__subtitle {
    font-size: 1.0625rem;
    color: #6b7a8d;
    margin: 0;
}
.cv-legal__body {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 0;
}
.cv-legal__date {
    font-size: 0.9rem;
    color: #5a6a7a;
    margin: 0 0 40px;
}
.cv-legal__section {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0046d5;
    margin: 2.5rem 0 0.75rem;
}
.cv-legal__text {
    font-size: 0.9375rem;
    color: #3d4a5a;
    line-height: 1.78;
    margin: 0 0 1rem;
}
.cv-legal__img-wrap {
    margin: 40px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.cv-legal__img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.cv-legal__warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    margin-top: 2rem;
}
.cv-legal__warranty-block { margin-bottom: 1.75rem; }
.cv-legal__warranty-block h3 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #0046d5;
    margin: 0 0 0.4rem;
}
.cv-legal__warranty-block p {
    font-size: 0.9rem;
    color: #4a5a6a;
    line-height: 1.72;
    margin: 0;
}
.cv-legal__warranty-block p + p { margin-top: 0.6rem; }
@media (max-width: 720px) {
    .cv-legal__warranty-grid { grid-template-columns: 1fr; gap: 0; }
}

.cv-consig-intro {
    padding: 72px 24px;
    background: #fff;
}
.cv-consig-intro__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.cv-consig-intro__img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.cv-consig-intro__img img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.cv-consig-intro__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0046d5;
    margin: 0 0 12px;
}
.cv-consig-intro__heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0d2355;
    margin: 0 0 16px;
    line-height: 1.2;
}
.cv-consig-intro__text {
    font-size: 1rem;
    color: #4a5a6a;
    line-height: 1.75;
    margin: 0;
}
.cv-consig-benefits {
    padding: 72px 24px;
    background: #f5f7fa;
}
.cv-consig-benefits__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.cv-consig-benefits__img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    order: 2;
}
.cv-consig-benefits__img img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.cv-consig-benefits__content { order: 1; }
.cv-consig-benefits__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0046d5;
    margin: 0 0 12px;
}
.cv-consig-benefits__heading {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #0d2355;
    margin: 0 0 28px;
    line-height: 1.2;
}
.cv-consig-benefits__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cv-consig-benefits__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: #2e3a4a;
    font-weight: 500;
    line-height: 1.5;
}
.cv-consig-benefits__list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: #0046d5;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}
.cv-consig-cta {
    background: #0d2355;
    padding: 56px 24px;
    text-align: center;
}
.cv-consig-cta__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5a623;
    margin: 0 0 12px;
}
.cv-consig-cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 28px;
}
.cv-consig-cta__btn {
    display: inline-block;
    padding: 16px 40px;
    background: #0046d5;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.cv-consig-cta__btn:hover { background: #003ab5; color: #fff; }
@media (max-width: 820px) {
    .cv-consig-intro__inner,
    .cv-consig-benefits__inner { grid-template-columns: 1fr; gap: 32px; }
    .cv-consig-benefits__img { order: 0; }
    .cv-consig-intro__img img,
    .cv-consig-benefits__img img { height: 260px; }
}

.cv-ty {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: #f5f7fa;
    text-align: center;
}
.cv-ty__icon-wrap {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 36px;
}
.cv-ty__ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px solid #0046d5;
    opacity: 0;
    animation: cv-ty-ring 1.6s ease-out 0.9s infinite;
}
.cv-ty__svg {
    width: 130px;
    height: 130px;
    display: block;
}
.cv-ty__circle {
    stroke-dasharray: 340;
    stroke-dashoffset: 340;
    animation: cv-ty-draw 0.7s cubic-bezier(0.4,0,0.2,1) 0.1s forwards;
}
.cv-ty__check {
    stroke-dasharray: 82;
    stroke-dashoffset: 82;
    animation: cv-ty-draw 0.45s cubic-bezier(0.4,0,0.2,1) 0.7s forwards;
}
@keyframes cv-ty-draw {
    to { stroke-dashoffset: 0; }
}
@keyframes cv-ty-ring {
    0%   { transform: scale(1);   opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}
.cv-ty__content {
    opacity: 0;
    transform: translateY(18px);
    animation: cv-ty-fadein 0.55s ease 1.1s forwards;
}
@keyframes cv-ty-fadein {
    to { opacity: 1; transform: none; }
}
.cv-ty__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0046d5;
    background: rgba(0,70,213,0.08);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 18px;
}
.cv-ty__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0d2355;
    margin: 0 0 14px;
    line-height: 1.15;
}
.cv-ty__sub {
    font-size: 1.0625rem;
    color: #5a6a7a;
    line-height: 1.65;
    margin: 0 auto 36px;
    max-width: 480px;
}
.cv-ty__btn {
    display: inline-block;
    padding: 15px 40px;
    background: #0046d5;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.cv-ty__btn:hover {
    background: #003ab5;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== CONTACT PAGE ===== */
.cv-contact {
    padding: 80px 24px;
    background: #fff;
}
.cv-contact__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
}
.cv-contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cv-contact__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f9fb;
    border-radius: 10px;
}
.cv-contact__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #0d2355;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.cv-contact__card-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a94a6;
    margin-bottom: 4px;
}
.cv-contact__card-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #0d2355;
    text-decoration: none;
    line-height: 1.45;
}
a.cv-contact__card-value:hover { color: #0047ff; }
.cv-contact__form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d2355;
    margin: 0 0 28px;
}
.cv-contact__map {
    max-width: 1160px;
    margin: 0 auto 80px;
    padding: 0 24px;
    border-radius: 12px;
    overflow: hidden;
}

/* ===== CV FORM ===== */
.cv-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.cv-form__group { display: flex; flex-direction: column; gap: 6px; }
.cv-form__group--full { grid-column: 1 / -1; }
.cv-form__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0d2355;
    letter-spacing: 0.01em;
}
.cv-form__input,
.cv-form__textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dde1ea;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #0d2355;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}
.cv-form__input:focus,
.cv-form__textarea:focus { border-color: #0047ff; }
.cv-form__input::placeholder,
.cv-form__textarea::placeholder { color: #aab0be; }
.cv-form__textarea {
    height: 130px;
    resize: vertical;
}
.cv-form__btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0047ff;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: inherit;
}
.cv-form__btn:hover {
    background: #003ab5;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .cv-contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cv-form__fields { grid-template-columns: 1fr; }
}

/* ===== CV-FORM SELECT ===== */
.cv-form__select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #dde1ea;
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #0d2355;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
.cv-form__select:focus { border-color: #0047ff; }

/* ===== HIGHLIGHTS BAR ===== */
.cv-highlights {
    background: #f5f7fa;
    border-bottom: 1px solid #e8eaed;
    padding: 0 24px;
}
.cv-highlights__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.cv-highlight {
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid #e8eaed;
}
.cv-highlight:last-child { border-right: none; }
.cv-highlight__icon {
    width: 44px;
    height: 44px;
    background: #eaf0fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0046d5;
    margin-bottom: 4px;
    flex-shrink: 0;
}
.cv-highlight__title {
    font-size: 16px;
    font-weight: 700;
    color: #0d1421;
    margin: 0;
}
.cv-highlight__text {
    font-size: 14px;
    color: #6b7a8d;
    line-height: 1.6;
    margin: 0;
}

/* ===== STEPS SECTION ===== */
.cv-steps {
    padding: 96px 24px;
    background: #fff;
}
.cv-steps__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.cv-steps__head {
    text-align: center;
    margin-bottom: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cv-steps__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0046d5;
}
.cv-steps__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0d1421;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}
.cv-steps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 72px;
}
.cv-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cv-step__img {
    border-radius: 16px;
    overflow: hidden;
    height: 240px;
    background: #f0f4f8;
}
.cv-step__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.cv-step:hover .cv-step__img img {
    transform: scale(1.04);
}
.cv-step__meta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cv-step__num {
    width: 32px;
    height: 32px;
    background: #0d2355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.cv-step__title {
    font-size: 18px;
    font-weight: 700;
    color: #0d1421;
    margin: 0;
}
.cv-step__text {
    font-size: 15px;
    color: #6b7a8d;
    line-height: 1.7;
    margin: 0;
}

/* ===== PAGE FORM SECTION ===== */
.cv-page-form {
    background: #f0f4f8;
    padding: 80px 24px;
    border-top: 1px solid #e2e8f0;
}
.cv-page-form__inner {
    max-width: 860px;
    margin: 0 auto;
}
.cv-page-form__head {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.cv-page-form__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f5a623;
}
.cv-page-form__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0d2355;
    letter-spacing: -0.01em;
    margin: 0;
}
.cv-page-form__sub {
    font-size: 1rem;
    color: #6b7a8d;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}
.cv-page-form__card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.cv-form__section {
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid #e8eaed;
}
.cv-form__section:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}
.cv-form__section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0046d5;
    margin: 0 0 6px;
}
.cv-form__section-sub {
    font-size: 0.875rem;
    color: #8a94a6;
    margin: 0 0 20px;
    line-height: 1.5;
}

/* ===== SHIPPING OPTIONS CARDS ===== */
.cv-ship-options {
    background: #fff;
    padding: 80px 24px;
    border-bottom: 1px solid #eaeef4;
}
.cv-ship-options__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.cv-ship-options__head {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cv-ship-options__eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0046d5;
}
.cv-ship-options__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0d1421;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}
.cv-ship-options__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cv-ship-option {
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.cv-ship-option:hover {
    border-color: #0046d5;
    box-shadow: 0 8px 28px rgba(0,70,213,0.1);
    transform: translateY(-3px);
}
.cv-ship-option__icon {
    width: 52px;
    height: 52px;
    background: #eaf0fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0046d5;
}
.cv-ship-option__title {
    font-size: 18px;
    font-weight: 700;
    color: #0d1421;
    margin: 0;
}
.cv-ship-option__text {
    font-size: 15px;
    color: #6b7a8d;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .cv-highlights__inner { grid-template-columns: repeat(2, 1fr); }
    .cv-highlight { border-right: none; border-bottom: 1px solid #e8eaed; }
    .cv-highlight:nth-child(2n) { border-right: none; }
    .cv-highlight:nth-last-child(-n+2):not(:nth-child(odd)) { border-bottom: none; }
    .cv-highlight:last-child { border-bottom: none; }
    .cv-steps__grid { grid-template-columns: 1fr; gap: 40px; }
    .cv-steps { padding: 72px 24px; }
    .cv-steps__head { margin-bottom: 48px; }
    .cv-ship-options__grid { grid-template-columns: 1fr; gap: 16px; }
    .cv-page-form__card { padding: 32px 24px; }
}
/* =========================================================
   Inventory page — sidebar + main layout
   ========================================================= */
.cv-inv {
    display: flex;
    gap: 36px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    align-items: flex-start;
}

/* Sidebar */
.cv-inv__sidebar {
    width: 256px;
    flex-shrink: 0;
    position: sticky;
    top: 88px;
}

.cv-inv__filter-group {
    border-bottom: 1px solid #e8eaed;
}

.cv-inv__filter-title {
    padding: 16px 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9aa5b4;
}

.cv-inv__filter-body {
    padding-bottom: 16px;
}

.cv-inv__reset {
    width: 100%;
    margin-top: 8px;
    padding: 9px 0;
    background: none;
    border: 1.5px solid #dde0e5;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7a8d;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.cv-inv__reset:hover {
    border-color: #0d1421;
    color: #0d1421;
}

.cv-inv__select {
    width: 100%;
    height: 40px;
    padding: 0 32px 0 12px;
    border: 1.5px solid #dde0e5;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7a8d' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    cursor: pointer;
}

.cv-inv__select:focus {
    outline: none;
    border-color: #00aad2;
}

/* Main content area */
.cv-inv__main {
    flex: 1;
    min-width: 0;
}

.cv-inv__search-wrap {
    position: relative;
    margin-bottom: 20px;
}

.cv-inv__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa5b4;
    pointer-events: none;
}

.cv-inv__search {
    width: 100%;
    height: 52px;
    padding: 0 20px 0 48px;
    border: 1.5px solid #dde0e5;
    border-radius: 10px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cv-inv__search::placeholder { color: #9aa5b4; }

.cv-inv__search:focus {
    outline: none;
    border-color: #00aad2;
    box-shadow: 0 0 0 3px rgba(0,170,210,0.12);
}

.cv-inv__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cv-inv__count {
    font-size: 14px;
    color: #6b7a8d;
    font-weight: 500;
}

.cv-inv__sort-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7a8d;
}

.cv-inv__sort-wrap > span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.cv-inv__sort-select {
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #0d1421;
    background: transparent;
    cursor: pointer;
    appearance: none;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
    width: auto;
    max-width: 160px;
}

.cv-inv__sort-select:focus { outline: none; }

.cv-inv__sort-arrow {
    color: #6b7a8d;
    flex-shrink: 0;
    pointer-events: none;
    vertical-align: middle;
}

/* Card grid */
.cv-inv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@keyframes cv-card-in {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Car card — Carvana style
   ========================================================= */
.cv-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1.5px solid #e8eaed;
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.22s, transform 0.22s;
    position: relative;
    animation: cv-card-in 0.42s ease both;
}

.cv-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}

.cv-card--sold { opacity: 0.7; }

.cv-card__img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f6f8;
    position: relative;
}

.cv-card__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cv-card__slide.is-active {
    opacity: 1;
    position: relative;
}

.cv-card__arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.88);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
    color: #0d1421;
    backdrop-filter: blur(4px);
}

.cv-card__arr--prev { left: 10px; }
.cv-card__arr--next { right: 10px; }

.cv-card__img-wrap:hover .cv-card__arr { opacity: 1; }

.cv-card__arr:hover { background: #fff; }

.cv-card__dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.cv-card__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.cv-card__dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

.cv-card__body {
    padding: 14px 16px 0;
}

.cv-card__badges {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    min-height: 22px;
}

.cv-card__badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 3px 10px;
    border-radius: 20px;
}

.cv-card__badge--drop { background: #00875a; color: #fff; }
.cv-card__badge--sold { background: #e53935; color: #fff; }

.cv-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #0d1421;
    margin: 0 0 4px;
    line-height: 1.25;
}

.cv-card__sub {
    font-size: 13px;
    color: #6b7a8d;
    margin: 0 0 12px;
}

.cv-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 8px;
}

.cv-card__price-icon {
    color: #00875a;
    flex-shrink: 0;
    position: relative;
    top: 1px;
}

.cv-card__price-now {
    font-size: 18px;
    font-weight: 700;
    color: #0d1421;
}

.cv-card__price-was {
    font-size: 13px;
    color: #9aa5b4;
    text-decoration: line-through;
}

.cv-card__specs-line {
    font-size: 13px;
    color: #6b7a8d;
    margin: 0;
    padding-bottom: 14px;
}

.cv-card__footer {
    border-top: 1px solid #f0f2f5;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #00875a;
}

.cv-card__footer--sold { color: #e53935; }

.cv-inv__mobile-bar { display: none; }

/* Inventory responsive */
@media (max-width: 1100px) {
    .cv-inv__grid { grid-template-columns: repeat(2, 1fr); }
    .cv-inv__sidebar { width: 220px; }
}

@media (max-width: 768px) {
    .cv-inv { flex-direction: column; gap: 0; padding-top: 24px; }
    .cv-inv__mobile-bar {
        display: flex;
        width: 100%;
        margin-bottom: 12px;
    }
    .cv-inv__filter-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 12px 20px;
        border: 1.5px solid #dde0e5;
        border-radius: 10px;
        background: #fff;
        font-size: 15px;
        font-weight: 600;
        color: #0d1421;
        cursor: pointer;
        transition: border-color 0.2s, background 0.2s;
    }
    .cv-inv__filter-toggle.is-active {
        border-color: #0d1421;
        background: #f4f6f8;
    }
    .cv-inv__sidebar {
        width: 100%;
        position: static;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        margin-bottom: 0;
    }
    .cv-inv__sidebar.is-open {
        max-height: 600px;
        margin-bottom: 16px;
    }
    .cv-inv__main { width: 100%; }
    .cv-inv__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .cv-inv { padding: 20px 16px 60px; }
    .cv-inv__grid { grid-template-columns: 1fr; }
}

/* ========= end inventory ========= */

@media (max-width: 600px) {
    .cv-highlights__inner { grid-template-columns: 1fr; }
    .cv-highlight { border-right: none; border-bottom: 1px solid #e8eaed; }
    .cv-steps { padding: 64px 16px; }
    .cv-ship-options { padding: 64px 16px; }
    .cv-page-form { padding: 56px 16px; }
    .cv-page-form__card { padding: 24px 16px; }
}

/* ========= Car Details ========= */

.cv-det {
    background: #f4f6f8;
    min-height: 80vh;
}

/* Breadcrumb */
.cv-det__crumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 40px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
}

.cv-det__crumb a {
    color: #0d1421;
    text-decoration: none;
    font-weight: 500;
}

.cv-det__crumb a:hover { color: #0047ff; text-decoration: none; }

.cv-det__crumb span { color: #c0c6cf; font-weight: 400; }

.cv-det__crumb span { color: #9aa5b4; }

/* Full-page 2-col layout */
.cv-det__layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 360px;
    grid-template-areas:
        "media  right"
        "sections right";
    column-gap: 32px;
    row-gap: 24px;
    align-items: start;
}

.cv-det__media    { grid-area: media; min-width: 0; }
.cv-det__sections { grid-area: sections; min-width: 0; display: flex; flex-direction: column; gap: 24px; }

.cv-det__right {
    grid-area: right;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 88px;
}

.cv-det__section--specs .cv-det__specs {
    grid-template-columns: repeat(2, 1fr);
}

.cv-det__section--specs .cv-det__spec {
    min-width: 0;
    padding: 16px 10px;
    gap: 10px;
}

.cv-det__section--specs .cv-det__spec-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cv-det__section--specs .cv-det__spec-icon svg {
    width: 18px;
    height: 18px;
}

.cv-det__section--specs .cv-det__spec-value {
    font-size: 13px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.cv-det__section--specs .cv-det__spec-label {
    font-size: 11px;
}

/* Media column */
.cv-det__media {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Main image */
.cv-det__main-wrap {
    position: relative;
    width: 100%;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: #e8eaed;
    aspect-ratio: 16/9;
}

.cv-det__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.18s ease;
}

.cv-det__photo-count {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(13,20,33,0.72);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* Thumbnail strip */
.cv-det__strip {
    display: flex;
    gap: 3px;
    margin-top: 3px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cv-det__strip::-webkit-scrollbar { display: none; }

.cv-det__thumb {
    position: relative;
    flex: 0 0 auto;
    width: calc(25% - 3px);
    aspect-ratio: 16/7;
    overflow: hidden;
    border: none;
    cursor: pointer;
    padding: 0;
    background: #e8eaed;
    transition: opacity 0.18s;
}

.cv-det__thumb:last-child { border-radius: 0 0 12px 0; }
.cv-det__thumb:nth-child(4n+1):first-child { border-radius: 0; }

.cv-det__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.22s ease;
}

.cv-det__thumb:hover img { transform: scale(1.04); }

.cv-det__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    pointer-events: none;
    transition: border-color 0.18s;
}

.cv-det__thumb.is-active::after { border-color: #0047ff; }

/* Tab nav */
.cv-det__tabs {
    display: flex;
    gap: 0;
    margin-top: 20px;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.cv-det__tab {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}

.cv-det__tab:hover { color: #0d1421; }

.cv-det__tab.is-active {
    background: #0d1421;
    color: #fff;
}

/* Info card */
.cv-det__card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    flex-shrink: 0;
}

.cv-det__card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0d1421;
    line-height: 1.25;
    margin: 0 0 6px;
}

.cv-det__card-sub {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px;
}

.cv-det__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.cv-det__price {
    font-size: 32px;
    font-weight: 800;
    color: #0d1421;
    letter-spacing: -1px;
}

.cv-det__price--was {
    font-size: 20px;
    font-weight: 500;
    color: #9aa5b4;
    text-decoration: line-through;
}

.cv-det__price--sold {
    color: #e53935;
}

.cv-det__cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #00a650;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 14px;
}

.cv-det__cta:hover { background: #008f44; }

.cv-det__quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cv-det__quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px;
    border-radius: 10px;
    border: 1.5px solid #dde0e5;
    font-size: 13px;
    font-weight: 600;
    color: #0d1421;
    text-decoration: none;
    transition: border-color 0.18s, background 0.18s;
}

.cv-det__quick-btn:hover { border-color: #0d1421; background: #f4f6f8; }

/* Content sections */
.cv-det__sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cv-det__section {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
}

.cv-det__section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0d1421;
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eaecf0;
}

.cv-det__description {
    font-size: 15px;
    color: #3d4554;
    line-height: 1.7;
    margin: 0;
}

/* Features */
.cv-det__feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cv-det__feature-list li {
    background: #f0f4ff;
    color: #1a3a8f;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 12px;
    line-height: 1.6;
    border: 1px solid #d6e4ff;
}

/* Specs */
.cv-det__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.cv-det__spec {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 16px;
    border-bottom: 1px solid #eaecf0;
}


.cv-det__spec-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a56db;
}

.cv-det__spec-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cv-det__spec-label {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
}

.cv-det__spec-value {
    font-size: 15px;
    font-weight: 700;
    color: #0d1421;
}

/* Responsive */
@media (max-width: 1100px) {
    .cv-det__layout { grid-template-columns: 1fr 320px; }
}

@media (max-width: 860px) {
    .cv-det__layout {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px 60px;
    }
    .cv-det__media    { order: 1; }
    .cv-det__right    { order: 2; position: static; }
    .cv-det__sections { order: 3; }
    .cv-det__section--specs { margin-top: 0; }
    .cv-det__crumb { padding: 16px 20px 0; }
    .cv-det__specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .cv-det__crumb { padding: 12px 16px 0; font-size: 12px; }
    .cv-det__layout { padding: 8px 0 48px; gap: 12px; }
    .cv-det__media { width: 95%; margin: 0 auto; }
    .cv-det__main-wrap { border-radius: 12px 12px 0 0; }
    .cv-det__tabs { display: flex; justify-content: space-between; gap: 0; padding: 4px; overflow-x: auto; scrollbar-width: none; border-radius: 12px; margin: 12px 8px 0; width: calc(100% - 16px); box-sizing: border-box; }
    .cv-det__tabs::-webkit-scrollbar { display: none; }
    .cv-det__tab { flex: 0 0 auto; font-size: 12px; padding: 9px 12px; }
    .cv-det__right { padding: 16px 16px 0; }
    .cv-det__sections { padding: 0 12px; gap: 12px; }
    .cv-det__section { padding: 20px 16px; border-radius: 16px; }
    .cv-det__card-title { font-size: 18px; }
    .cv-det__price { font-size: 26px; }
    .cv-det__specs { grid-template-columns: repeat(2, 1fr); }
    .cv-det__spec { padding: 16px 12px; gap: 10px; }
    .cv-det__spec-icon { width: 40px; height: 40px; flex-shrink: 0; }
    .cv-det__spec-icon svg { width: 18px; height: 18px; }
    .cv-det__spec-value { font-size: 13px; }
    .cv-det__spec-label { font-size: 11px; }
    .cv-det__quick-btn { min-height: 48px; font-size: 13px; }
    .cv-det__cta { font-size: 15px; padding: 15px; min-height: 52px; }
    .cv-det__section-title { font-size: 16px; margin-bottom: 16px; }
    .cv-det__card { padding: 20px 16px 18px; }
    .cv-det__card-sub { font-size: 13px; }
}

/* ========= end car details ========= */

/* ========= lightbox ========= */
.cv-lb {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.cv-lb.is-open {
    opacity: 1;
    pointer-events: all;
}
.cv-lb__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
}
.cv-lb__img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}
.cv-lb__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.cv-lb__close:hover { background: rgba(255,255,255,.28); }
.cv-lb__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, transform .15s;
    z-index: 1;
}
.cv-lb__arrow:hover {
    background: rgba(255,255,255,.28);
    transform: translateY(-50%) scale(1.08);
}
.cv-lb__prev { left: 20px; }
.cv-lb__next { right: 20px; }
.cv-lb__counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-family: inherit;
    letter-spacing: .03em;
    pointer-events: none;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .cv-lb__img-wrap { padding: 56px 12px 48px; }
    .cv-lb__arrow { width: 40px; height: 40px; font-size: 24px; }
    .cv-lb__prev { left: 8px; }
    .cv-lb__next { right: 8px; }
}
/* ========= end lightbox ========= */
