/*
 * single-car.css
 * Styles for single-car.php template
 * Enqueue in functions.php for post_type = car
 */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --sc-dark:        #191919;
    --sc-dark-2:      #222222;
    --sc-light:       #ffffff;
    --sc-bg:          #f9f9f9;
    --sc-card-bg:     #fdfdfd;
    --sc-gold:        #dfb66f;
    --sc-divider:     rgba(25, 25, 25, 0.10);
    --sc-divider-lt:  rgba(255, 255, 255, 0.10);

    --sc-font:        Helvetica, Arial, sans-serif;

    --sc-pad:         120px;
    --sc-max:         1272px;
    --sc-r-btn:       31px;
    --sc-r-tag:       23px;
    --sc-r-card:      8px;

    --sc-transition:  0.35s ease;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
.sc-page *,
.sc-page *::before,
.sc-page *::after { box-sizing: border-box; }

.sc-page {
    font-family: var(--sc-font);
    color: var(--sc-dark);
    line-height: 1.5625;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.sc-container {
    max-width: calc(var(--sc-max) + var(--sc-pad) * 2);
    margin-inline: auto;
    padding-inline: var(--sc-pad);
}

/* ============================================================
   SHARED: LABEL / TAG
   ============================================================ */
.sc-label {
    display: inline-flex;
    align-items: center;
    height: 27px;
    padding: 0 12px;
    background-color: var(--sc-dark-2);
    border: 1px solid var(--sc-divider-lt);
    border-radius: var(--sc-r-tag);
    font-family: var(--sc-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--sc-gold);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.sc-label--dark {
    background-color: var(--sc-bg);
    border-color: var(--sc-divider);
    color: var(--sc-dark);
}

/* ============================================================
   SHARED: BUTTONS
   ============================================================ */
.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border-radius: var(--sc-r-btn);
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: opacity var(--sc-transition), background-color var(--sc-transition);
    white-space: nowrap;
}
.sc-btn:hover { opacity: 0.85; }

.sc-btn--dark {
    background-color: var(--sc-dark);
    color: var(--sc-light);
}
.sc-btn--light {
    background-color: var(--sc-light);
    color: var(--sc-dark);
}
.sc-btn--gold {
    background-color: var(--sc-gold);
    color: var(--sc-dark);
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.sc-hero {
    position: relative;
    min-height: 70vh;
    background-color: var(--sc-dark);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Two-layer gradient: left dark for text, bottom dark for specs */
.sc-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        /* left fade — behind title */
        linear-gradient(
            100deg,
            rgba(15, 15, 15, 0.92) 0%,
            rgba(15, 15, 15, 0.70) 38%,
            rgba(15, 15, 15, 0.10) 65%,
            transparent 100%
        ),
        /* bottom fade — behind specs bar */
        linear-gradient(
            to top,
            rgba(10, 10, 10, 0.96) 0%,
            rgba(10, 10, 10, 0.60) 22%,
            transparent 44%
        );
    pointer-events: none;
    z-index: 1;
}

/* Car PNG — right side, fills height */
.sc-hero__car-wrap {
    position: absolute;
    right: 0;
    bottom: 80px;          /* sits above specs bar */
    width: 58%;
    max-width: 900px;
    z-index: 2;
    pointer-events: none;
}

.sc-hero__car-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
}

/* Body: content wrapper */
.sc-hero__body {
    position: relative;
    z-index: 3;
    padding-top: 140px;
    padding-bottom: 40px;
}

.sc-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    max-width: 560px;
}

.sc-hero__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 58px;
    line-height: 1;
    color: var(--sc-light);
    margin: 0 0 40px;
}

.sc-hero__subtitle {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
}


/* ── Specs bar ─────────────────────────────────────────────── */
.sc-hero__specs-bar {
    position: relative;
    z-index: 3;
    padding: 32px 0 40px;
    margin-top: 10%;
}

.sc-hero__specs {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.sc-hero__spec {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 32px;
}
.sc-hero__spec:first-child { padding-left: 0; }
.sc-hero__spec:not(:first-child) { padding-left: 32px; }

.sc-hero__spec-label {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
}

.sc-hero__spec-value {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: var(--sc-gold);
}

/* Gold accent line at very bottom */
.sc-hero__line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--sc-gold) 0%,
        rgba(223, 182, 111, 0.3) 60%,
        transparent 100%
    );
    z-index: 4;
}


/* ============================================================
   KEY BENEFITS SECTION (leasing-benefit classes — shared)
   ============================================================ */
.leasing-benefits {
    background-color: var(--sc-bg);
    padding: 100px 0;
}

.leasing-section-title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    text-transform: capitalize;
}
.leasing-section-title--dark { color: var(--sc-dark); }

.leasing-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 35px;
}

.leasing-benefit-card {
    background-color: #fdfdfd;
    border: 1px solid rgba(25, 25, 25, 0.10);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 244px;
}

.leasing-benefit-card__icon-wrap {
    position: relative;
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    background-color: #ffffff;
    border: 1px solid rgba(25, 25, 25, 0.10);
    border-radius: 8px;
    box-shadow: 0 5px 7.7px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.leasing-benefit-card__icon-wrap--empty {
    background-color: rgba(25, 25, 25, 0.10);
}

.leasing-benefit-card__icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.leasing-benefit-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.leasing-benefit-card__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    color: var(--sc-dark);
}

.leasing-benefit-card__desc {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: var(--sc-dark);
}


/* ============================================================
   EFFICIENCY SECTION (sc-eff-section)
   ============================================================ */
.sc-eff-section {
    padding: 100px 0;
    background-color: var(--sc-light);
}

.sc-eff-section__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px 80px;
}

.sc-eff-title__container {
        display: flex;
        gap: 20px;
}

/* Left col: title + stats */
.sc-eff-section__left {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.sc-eff-section__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 38px;
    max-width: 40%;
    line-height: 1.05;
    color: var(--sc-dark);
    margin: 0 0 20px;
    grid-column: 1 / -1;
}

.sc-eff-section__stats {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: auto;
    margin-bottom: auto;
}

.sc-eff-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-eff-stat__label {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: var(--sc-dark);
}

.sc-eff-stat__value {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: var(--sc-dark);
}

/* Right col: desc + media stacked */
.sc-eff-section__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 60%;
}

.sc-eff-section__media-desc {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: var(--sc-dark);
    text-align: left;
    max-width: 45%;
    margin-left: auto;
}

.sc-eff-section__media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: var(--sc-dark);
    flex: 1;
}

.sc-eff-section__media video,
.sc-eff-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* ============================================================
   PLATFORM SECTION (sc-platform-section)
   Dark bg, two alternating rows: image+text / text+image
   ============================================================ */
.sc-platform-section {
    background-color: #191919;
    padding: 20px 0;
}

.sc-platform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 20px 0;
}

.sc-platform-row:first-child { padding-top: 0; }
.sc-platform-row:last-child  { padding-bottom: 0; }

/* Reverse: text left, media right */
.sc-platform-row--reverse { direction: rtl; }
.sc-platform-row--reverse > * { direction: ltr; }

/* Media */
.sc-platform-row__media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
}

.sc-platform-row__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #191919 0%, transparent 15%, transparent 75%, #191919 100%),
        linear-gradient(to bottom, #191919 0%, transparent 20%, transparent 80%, #191919 100%);
    pointer-events: none;
    z-index: 1;
}

.sc-platform-row__media video,
.sc-platform-row__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text */
.sc-platform-row__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sc-platform-row__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.15;
    color: var(--sc-light);
    margin: 0;
    text-transform: capitalize;
}

.sc-platform-row__desc {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
}

/* ============================================================
   DETAILS SECTION (sc-det-section) — дзеркало eff, медіа ліворуч
   ============================================================ */
.sc-det-section {
    padding: 100px 0;
    background-color: var(--sc-light);
}

.sc-det-section__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px 80px;
    align-items: stretch;
}

.sc-det-section__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.25;
    color: var(--sc-dark);
    text-transform: capitalize;
    grid-column: 1 / -1;
    max-width: 50%;
}

/* Left: media */
.sc-det-section__left {
    display: flex;
    flex-direction: column;
}

.sc-det-section__media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: var(--sc-dark);
    flex: 1;
}

.sc-det-section__media video,
.sc-det-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right: 4 stats */
.sc-det-section__right {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.sc-det-section__stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: space-between;
    height: 100%;
}


/* ============================================================
   SAFETY SECTION (sc-safe-section) — fullwidth media + overlay text
   ============================================================ */
.sc-safe-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.sc-safe-section__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc-safe-section__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            100deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.4) 15%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            transparent 10%
        );
    pointer-events: none;
}

.sc-safe-section__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.sc-safe-section__text {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sc-safe-section__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: var(--sc-light);
    margin: 0;
    text-transform: capitalize;
}

.sc-safe-section__desc {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.sc-safe-section__desc ul {
    margin-left: 30px;
}

/* ============================================================
   COLORS SECTION
   ============================================================ */
.sc-colors {
    padding: 120px 0 0 0;
    background-color: #ffffff;
    overflow: hidden;
}

.sc-colors__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}

.sc-colors__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    color: var(--sc-dark);
    margin: 0;
    text-align: center;
}

.sc-colors__desc {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: var(--sc-dark);
    text-align: center;
}

/* Preview image */
.sc-colors__preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    background: white;
}

.sc-colors__preview-img {
    position: absolute;
    inset: 0;
    width: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity var(--sc-transition);
    pointer-events: none;
}
.sc-colors__preview-img.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* Active color name */
.sc-colors__active-name {
    text-align: center;
    font-family: var(--sc-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: var(--sc-dark);
    margin-bottom: 28px;
    min-height: 25px;
    transition: opacity 0.2s ease;
}

/* Slider wrap (enables scroll) */
.sc-colors__slider-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE 11 */
    padding-bottom: 8px;
}
.sc-colors__slider-wrap::-webkit-scrollbar { display: none; }

/* Slider track */
.sc-colors__slider {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px 4px;
    width: max-content;
    /* Centre on wide screens */
    min-width: 100%;
    justify-content: center;
}

/* Swatch button */
.sc-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.sc-swatch:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.sc-swatch:not(:disabled):hover { transform: translateY(-2px); }

.sc-swatch__img {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition:
        border-color var(--sc-transition),
        box-shadow var(--sc-transition),
        transform 0.2s ease;
}

.sc-swatch__dot--empty {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ccc;
    border: 3px solid transparent;
}

/* Active state */
.sc-swatch.is-active .sc-swatch__img,
.sc-swatch.is-active .sc-swatch__dot--empty {
    border-color: #DFB66F;
    transform: scale(1.1);
}



/* ============================================================
   INTERIOR SECTION (sc-interior-section)
   Light warm bg, text left, 2 images right (second bleeds)
   ============================================================ */
.sc-interior-section {
    background-color: #F9F9F9;
    overflow: hidden;
}

.sc-interior-section__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Left: text blocks */
.sc-interior-section__left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sc-interior-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-interior-block__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: var(--sc-dark);
    margin: 0;
    text-transform: capitalize;
}

.sc-interior-block__desc {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: var(--sc-dark);
}

/* Right: single image, no right padding (bleeds to edge) */
.sc-interior-section__right {
    overflow: hidden;
    border-radius: 12px 0 0 12px;
    margin: auto;
}

.sc-interior-section__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   CTA SECTION (sc-cta)
   Dark rounded card, title left, desc+buttons right
   ============================================================ */
.sc-cta {
    padding: 60px 0 80px;
    background-color: var(--sc-light);
}

.sc-cta__inner {
    background-color: var(--sc-dark);
    border-radius: 20px;
    padding: 64px 80px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

/* Left: title */
.sc-cta__left {
    display: flex;
    align-items: flex-start;
}

.sc-cta__title {
    font-family: var(--sc-font);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.15;
    color: var(--sc-light);
    margin: 0;
    text-transform: capitalize;
}

/* Right: desc + buttons */
.sc-cta__right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sc-cta__desc {
    font-family: var(--sc-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
}

/* Buttons row */
.sc-cta__btns {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
}

.sc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: 100px;
    font-family: var(--sc-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}
.sc-cta-btn:hover { opacity: 0.8; }

.sc-cta-btn--light {
    background-color: var(--sc-light);
    color: var(--sc-dark);
    border: 1.5px solid var(--sc-light);
}

.sc-cta-btn--dark {
    background-color: var(--sc-dark);
    color: var(--sc-light);
    border: 1.5px solid var(--sc-light);
}

.sc-cta-btn__pdf-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
@media (min-width: 1101px) and (max-width: 1399px) {
      .sc-interior-section__left { padding: 80px 40px; }
}
/* ============================================================
   RESPONSIVE — TABLET (≤ 1100px)
   ============================================================ */
@media (max-width: 1100px) {
    :root { --sc-pad: 60px; }

    /* Hero */
    .sc-hero__title      { font-size: 52px; }
    .sc-hero__car-wrap   { width: 55%; bottom: 90px; }
    .sc-hero__spec:not(:first-child) { padding-left: 0px; }
    .sc-hero__specs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    /* Platform */
    .sc-platform-section { padding: 64px 0; }
    .sc-platform-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
    .sc-platform-row--reverse { direction: ltr; }
    .sc-platform-row__title { font-size: 28px; }

    /* Details */
    .sc-det-section__inner { grid-template-columns: 1fr; gap: 32px; }
    .sc-det-section__title { font-size: 32px; width: 100%;}

    /* Efficiency */
    .sc-eff-section__inner { gap: 25px; }
    .sc-eff-section__title { font-size: 36px; max-width: 50%;}
    .sc-eff-stat__value { font-size: 44px; }
    .sc-eff-section__media-desc { max-width: 50%; margin-right: auto; }
    .sc-eff-section__right { width: 55%;}
    /* Interior */
    .sc-interior-section__inner { grid-template-columns: 1fr; gap: 0;}
    .sc-interior-section__left { padding: 60px 24px; }
    .sc-interior-section__right { min-height: 300px; border-radius: 12px 0 0 12px; padding-left: 24px;}

    /* Benefits */
    .leasing-benefits__grid { grid-template-columns: repeat(2, 1fr); }

    /* CTA */
    .sc-cta__inner { grid-template-columns: 1fr; gap: 40px; }
    .sc-cta__info  { position: static; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
    :root { --sc-pad: 24px; }

    .sc-hero__specs-bar {
        margin-top: 40%;
    }
    .sc-hero__spec { padding-right: 0px;}

    /* ── Platform ──────────────────────────────────────────── */
    .sc-platform-section { padding: 88px 0; }
    .sc-platform-row { gap: 24px; padding: 32px 0; }
    .sc-platform-row__media { order: 2; aspect-ratio: 16 / 10; }
    .sc-platform-row__text { order: 1; }
    .sc-platform-row__title { font-size: 24px; }

    /* ── Details ───────────────────────────────────────────── */
    .sc-det-section { padding: 64px 0; }
    .sc-det-section__title { font-size: 28px; margin-bottom: 0; max-width: 100%; }
    .sc-det-section__stats { margin-top: 0; margin-bottom: 0; gap: 20px; }
    .sc-det-section__right { order: 2; margin-top: 32px; }
    .sc-det-section__left { order: 1; }

    /* ── Interior ──────────────────────────────────────────── */
    .sc-interior-section__left { padding: 48px var(--sc-pad) 32px; gap: 28px; }
    .sc-interior-block__title { font-size: 22px; }
    .sc-interior-section__right { min-height: 240px; border-radius: 8px 0 0 8px; padding-left: var(--sc-pad); }

    /* ── Safety ────────────────────────────────────────────── */
    .sc-safe-section { min-height: 75vh; align-items: flex-start; }
    .sc-safe-section__content { padding: 48px 0 40px; }
    .sc-safe-section__title { font-size: 28px; }
    .sc-safe-section__text { max-width: 100%; }

    /* ── Efficiency ────────────────────────────────────────── */
    .sc-eff-section { padding: 64px 0; }
    .sc-eff-section__title { font-size: 28px; }
    .sc-eff-stat__value { font-size: 32px; }
    .sc-eff-section__inner { gap: 32px; }
    .sc-eff-section__title { margin-bottom: 20px; max-width: 100%}
    .sc-eff-section__media-desc { margin-bottom: 40px; }
    .sc-eff-section__left { order: 2; }
    .sc-eff-section__right { order: 1; width: 100%; }
    .sc-eff-section__stats { margin-top: 0; margin-bottom: 0; }
    .sc-eff-section__media-desc { max-width: 100%; margin-left: 0; }
    .sc-eff-title__container { flex-direction: column; }

    /* ── Benefits ──────────────────────────────────────────── */
    .leasing-benefits { padding: 60px 0; }
    .leasing-benefits__grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
    .leasing-benefit-card { min-height: unset; flex-direction: row; align-items: flex-start; gap: 16px; padding: 20px; }
    .leasing-benefit-card__icon-wrap { flex-shrink: 0; }
    .leasing-section-title { font-size: 26px; }

    /* ── Media sections ────────────────────────────────────── */
    /* ── Colors ────────────────────────────────────────────── */
    .sc-colors       { padding: 64px 0 0 0px; }
    .sc-colors__title { font-size: 28px; }

    .sc-swatch__img { width: 44px; height: 44px; }

    /* ── Tech specs ────────────────────────────────────────── */
    /* ── CTA ───────────────────────────────────────────────── */
    .sc-cta       { padding: 64px 0; }
    .sc-cta__title { font-size: 28px; }
    .sc-cta__inner { padding: 40px 24px; }
    .sc-cta__btns { flex-direction: column; }
    .sc-cta-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ============================================================ */
@media (max-width: 500px) {
     .sc-hero__spec-value { font-size: 26px; }   
}
@media (max-width: 400px) {
    .sc-hero__title      { font-size: 34px; }
    .sc-hero__spec-value { font-size: 22px; }
    .sc-swatch__img      { width: 38px; height: 38px; }
    .leasing-benefit-card { flex-direction: column; }
}
