/* ══════ VOLVO SECTION ══════ */
html,
body {
    margin: 0;
    padding: 0;
    background: #050505;
}

#volvo {
    position: relative;
    background: #050505;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.vs-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    pointer-events: none;
}

.vs-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.4), transparent);
    animation: vsScan 6s linear infinite;
    pointer-events: none;
    z-index: 5;
}

@keyframes vsScan {
    0% {
        top: 0;
        opacity: 0
    }

    5% {
        opacity: 1
    }

    95% {
        opacity: 1
    }

    100% {
        top: 100%;
        opacity: 0
    }
}

.vs-particle {
    position: absolute;
    border-radius: 50%;
    background: #C9A96E;
    animation: vsFloat linear infinite;
    opacity: 0;
}

@keyframes vsFloat {
    0% {
        transform: translateY(100%) translateX(0);
        opacity: 0
    }

    10% {
        opacity: 0.6
    }

    90% {
        opacity: 0.15
    }

    100% {
        transform: translateY(-120px) translateX(var(--dx));
        opacity: 0
    }
}

.vs-beam {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.5), transparent);
    animation: vsBeam ease-in-out infinite;
    opacity: 0;
}

@keyframes vsBeam {

    0%,
    100% {
        opacity: 0;
        transform: scaleY(0.2)
    }

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

.vs-top-banner {
    text-align: center;
    padding: 3.5rem 2rem 0;
    position: relative;
    z-index: 10;
}

.vs-crown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0.8rem;
}

.vs-crown-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.4));
}

.vs-crown-line.rev {
    background: linear-gradient(to left, transparent, rgba(201, 169, 110, 0.4));
}

.vs-badge-crown {
    border: 1px solid rgba(201, 169, 110, 0.5);
    padding: 0.3rem 1.2rem;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.8);
    position: relative;
    white-space: nowrap;
}

.vs-badge-crown::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 6px;
    height: 6px;
    border: 1px solid #C9A96E;
    border-right: none;
    border-bottom: none;
}

.vs-badge-crown::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 6px;
    height: 6px;
    border: 1px solid #C9A96E;
    border-left: none;
    border-top: none;
}

.vs-main-title {
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 200;
    line-height: 1;
    color: white;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
}

.vs-main-title .gold-word {
    color: #C9A96E;
    font-weight: 500;
    animation: vsGoldPulse 3s ease-in-out infinite;
}

@keyframes vsGoldPulse {

    0%,
    100% {
        text-shadow: none
    }

    50% {
        text-shadow: 0 0 60px rgba(201, 169, 110, 0.35), 0 0 120px rgba(201, 169, 110, 0.15)
    }
}

.vs-overline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0.8rem 0 0.4rem;
}

.vs-overline-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, #C9A96E);
}

.vs-overline-line.rev {
    background: linear-gradient(to left, transparent, #C9A96E);
}

.vs-overline-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A96E;
}

.vs-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.8rem;
    direction: rtl;
}

.vs-emblem-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2.5rem auto;
}

.vs-emblem-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.25);
    transform: translate(-50%, -50%);
    animation: vsRingSpin linear infinite;
}

@keyframes vsRingSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

.vs-emblem-ring:nth-child(1) {
    width: 196px;
    height: 196px;
    border-style: dashed;
    animation-duration: 40s
}

.vs-emblem-ring:nth-child(2) {
    width: 164px;
    height: 164px;
    animation-duration: 28s;
    animation-direction: reverse;
    border-color: rgba(201, 169, 110, 0.15)
}

.vs-emblem-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
}

.vs-emblem-core::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.vs-tick {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C9A96E;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    animation: vsTickOrbit linear infinite;
}

@keyframes vsTickOrbit {
    from {
        transform: rotate(var(--start-angle)) translateX(82px) rotate(calc(-1 * var(--start-angle)))
    }

    to {
        transform: rotate(calc(var(--start-angle) + 360deg)) translateX(82px) rotate(calc(-1 * (var(--start-angle) + 360deg)))
    }
}

.vs-volvo-svg {
    position: relative;
    z-index: 2;
    animation: vsLogoPulse 4s ease-in-out infinite;
}

@keyframes vsLogoPulse {

    0%,
    100% {
        opacity: 0.85
    }

    50% {
        opacity: 1
    }
}

.vs-stats-row {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}

.vs-stat-block {
    flex: 1;
    max-width: 200px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    border-right: 1px solid rgba(201, 169, 110, 0.12);
    transition: background 0.4s;
}

.vs-stat-block:first-child {
    border-left: 1px solid rgba(201, 169, 110, 0.12);
}

.vs-stat-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 1px;
    background: #C9A96E;
    transition: transform 0.4s ease;
}

.vs-stat-block:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.vs-stat-block:hover {
    background: rgba(201, 169, 110, 0.04);
}

.vs-stat-num {
    font-size: 2.6rem;
    font-weight: 200;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.vs-stat-num sup {
    font-size: 1rem;
    color: #C9A96E;
    vertical-align: super;
    font-weight: 400;
}

.vs-stat-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.vs-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.3), rgba(201, 169, 110, 0.3), transparent);
    position: relative;
    z-index: 10;
    margin: 0 0 3.5rem;
}

.vs-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 4rem 4.5rem;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.vs-left {
    padding-right: 4rem;
    border-right: 1px solid rgba(201, 169, 110, 0.1);
    direction: rtl;
    text-align: right;
}

.vs-right {
    padding-left: 4rem;
}

.vs-section-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 1.2rem;
}

.vs-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 200;
    color: white;
    line-height: 1.3;
    margin-bottom: 1.6rem;
}

.vs-heading em {
    font-style: normal;
    color: #C9A96E;
    font-weight: 400;
}

.vs-body {
    font-size: 1rem;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 2rem;
}

.vs-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 2.2rem;
}

.vs-pill {
    border: 1px solid rgba(201, 169, 110, 0.25);
    padding: 0.35rem 1rem;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.7);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.vs-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.08);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.vs-pill:hover::before {
    transform: translateX(0);
}

.vs-pill:hover {
    border-color: rgba(201, 169, 110, 0.6);
    color: #C9A96E;
}

.vs-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.vs-btn-primary {
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid #C9A96E;
    color: #C9A96E;
    padding: 0.9rem 2.2rem;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.vs-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #C9A96E;
    transform: translateX(-101%);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
}

.vs-btn-primary:hover::before {
    transform: translateX(0);
}

.vs-btn-primary:hover {
    color: #050505;
}

.vs-btn-primary span {
    position: relative;
    z-index: 1;
}

.vs-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.45);
    padding: 0.9rem 2rem;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.vs-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.vs-models-title {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
}

.vs-model-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    position: relative;
    cursor: default;
    transition: padding-left 0.3s ease;
}

.vs-model-card:first-of-type {
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.vs-model-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(201, 169, 110, 0.05);
    transition: width 0.3s ease;
}

.vs-model-card:hover::after {
    width: 100%;
}

.vs-model-card:hover {
    padding-left: 8px;
}

.vs-model-num {
    font-size: 0.55rem;
    color: #C9A96E;
    letter-spacing: 0.1em;
    min-width: 24px;
    position: relative;
    z-index: 1;
}

.vs-model-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.vs-model-name {
    font-size: 0.9rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vs-model-type {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.12em;
    margin-top: 2px;
}

.vs-model-badge {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border: 1px solid;
    position: relative;
    z-index: 1;
}

.vs-model-badge.gold {
    border-color: rgba(201, 169, 110, 0.4);
    color: #C9A96E;
}

.vs-model-badge.white {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
}

.vs-trust-strip {
    display: flex;
    align-items: stretch;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    z-index: 10;
}

.vs-trust-item {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    border-right: 1px solid rgba(201, 169, 110, 0.1);
    transition: background 0.3s;
}

.vs-trust-item:last-child {
    border-right: none;
}

.vs-trust-item:hover {
    background: rgba(201, 169, 110, 0.03);
}

.vs-trust-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vs-trust-icon::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.vs-trust-icon svg {
    width: 16px;
    height: 16px;
}

.vs-trust-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.vs-trust-label strong {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 0.65rem;
    margin-bottom: 2px;
}

@media (max-width:900px) {
    .vs-content-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem 3rem;
    }

    .vs-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .vs-right {
        padding-left: 0;
    }

    .vs-stats-row {
        flex-wrap: wrap;
    }

    .vs-stat-block {
        min-width: 45%;
    }

    .vs-trust-strip {
        flex-wrap: wrap;
    }

    .vs-trust-item {
        min-width: 50%;
    }
}