@import 'https://cdn.allaoui.com/production/assets/fonts/allaoui/font-index.css';

:root {
    --navy: #100C34;
    --blue: #007DFF;
    --blue-h: #0066D4;
    --steel: #E4F2FF;
    --red: #EB0050;
    --red-h: #C80043;
    --green: #00B894;
    --white: #FFFFFF;
    --off: #F7FAFC;
    --off2: #EFF3F7;
    --bdr: #E5EAF0;
    --bdr2: #D0D8E4;
    --t1: #100C34;
    --t2: #3D4560;
    --t3: #6B748A;
    --t4: #9AA0B2;
    --font: Allaoui, system-ui, -apple-system, sans-serif;
    --nav-h: 66px;
    --max: 1200px;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --sh-sm: 0 1px 3px rgba(16, 12, 52, .06), 0 1px 2px rgba(16, 12, 52, .04);
    --sh-md: 0 4px 12px rgba(16, 12, 52, .08), 0 1px 3px rgba(16, 12, 52, .04);

    /* ── Type scale (3 sizes) ─────────────────────────────────────
       fs-body  : default paragraph / UI text
       fs-sub   : sub-headings, card titles, feature labels
       fs-min   : minimum — eyebrows, captions, table cells, footnotes
       Headings (h1/h2/h3/h4) are defined separately below.
    ──────────────────────────────────────────────────────────── */
    --fs-body: 1rem;
    --fs-sub: 1.1rem;
    --fs-min: 0.875rem;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--t1);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    padding-bottom: 100px;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

a {
    color: var(--blue);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

h1,
h2,
h3,
h4 {
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -.02em
}

h1 {
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -.03em
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    line-height: 1.1
}

h3 {
    font-size: 1.35rem;
    line-height: 1.25
}

h4 {
    font-size: 1.02rem
}

p {
    color: var(--t2);
    line-height: 1.72
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px
}

section {
    padding: 88px 0;
    scroll-margin-top: var(--nav-h)
}

.eyebrow {
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    margin-bottom: 14px
}

.eyebrow-red {
    color: var(--red)
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 99px;
    font-family: var(--font);
    font-weight: 700;
    font-size: .88rem;
    letter-spacing: .01em;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .18s var(--ease);
    text-decoration: none;
    white-space: nowrap
}

.btn-navy {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.btn-navy:hover {
    background: #1d1847;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(16, 12, 52, .2)
}

.btn-red {
    background: var(--red);
    color: #fff !important;
    border-color: var(--red)
}

.btn-red:hover {
    background: var(--red-h);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(235, 0, 80, .25)
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

.btn-blue:hover {
    background: var(--blue-h);
    text-decoration: none;
    transform: translateY(-1px)
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--bdr2)
}

.btn-ghost:hover {
    border-color: var(--navy);
    background: var(--off);
    color: var(--navy);
    text-decoration: none
}

.btn-ghost-inv {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35)
}

.btn-ghost-inv:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    text-decoration: none
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s, box-shadow .25s
}

.nav.scrolled {
    border-bottom-color: var(--bdr);
    box-shadow: var(--sh-sm)
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.nav-logo img {
    height: 30px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none
}

.nav-links a {
    color: var(--navy);
    font-size: .84rem;
    font-weight: 500;
    padding: 7px 11px;
    border-radius: 99px;
    transition: all .13s
}

.nav-links a:hover {
    text-decoration: none
}

.nav-cta {
    margin-left: 14px
}

.ham {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 4px;
    justify-content: center
}

.ham span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--navy)
}

@media(max-width:940px) {
    .nav-links {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--bdr);
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
        border-bottom: 0px solid var(--bdr);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s var(--ease), padding .3s var(--ease), border-width .3s var(--ease)
    }

    .nav.open .nav-links {
        max-height: 480px;
        padding: 12px 20px;
        border-bottom-width: 1px
    }

    .nav-links a {
        display: block;
        padding: 11px 4px;
        font-size: .97rem
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 6px
    }

    .ham {
        display: flex
    }
}

/* ═══════════════════════════════════════════════════
   HERO — rebuilt from scratch
   Two-part stacked: centered text → full-bleed image
   ═══════════════════════════════════════════════════ */

.hero {
    position: relative;
    background: var(--navy);
    padding-top: var(--nav-h);
    padding-bottom: 0
}

/* Ambient background glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 125, 255, .14) 0%, transparent 100%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(235, 0, 80, .06) 0%, transparent 100%);
    pointer-events: none
}

/* ── Text content block ── */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 28px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}




@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, .5)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 184, 148, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0)
    }
}

/* Headline */
.hero-h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #fff;
    font-weight: 800;
    margin-bottom: 22px;
    animation: heroFade .7s var(--ease) .15s both
}

.hero-h1 em {
    font-style: normal;
    color: var(--blue);
}

/* Subline */
.hero-sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .6);
    max-width: 600px;
    margin: 0 0 32px;
    line-height: 1.7;
    animation: heroFade .7s var(--ease) .28s both
}

/* CTA buttons */
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    animation: heroFade .7s var(--ease) .40s both
}

/* Stats row — clean dividers */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 52px;
    animation: heroFade .7s var(--ease) .52s both
}

.hero-stat {
    padding: 0 28px;
    text-align: center
}

.hero-stat-v {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1
}

.hero-stat-l {
    display: block;
    color: var(--red);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 5px
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0
}

/* ── Image showcase — full-bleed ── */
.hero-image-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto -100px;
    padding: 0 20px;
    animation: heroFade .8s var(--ease) .35s both
}

.hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 2.2 / 1;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 -4px 30px rgba(0, 125, 255, .08),
        0 -1px 0 rgba(255, 255, 255, .06),
        0 32px 80px rgba(16, 12, 52, .22)
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    animation: heroKb 24s ease-in-out infinite alternate
}

@keyframes heroKb {
    from {
        transform: scale(1.05)
    }

    to {
        transform: scale(1.0)
    }
}

/* Gradient overlay on image */
.hero-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(16, 12, 52, .25) 0%, transparent 35%),
        linear-gradient(0deg, rgba(16, 12, 52, .65) 0%, transparent 45%),
        linear-gradient(90deg, rgba(16, 12, 52, .15) 0%, transparent 25%)
}

/* Entry animation */
@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-content {
        padding: 48px 24px 0
    }

    .hero-stats {
        margin-bottom: 40px
    }

    .hero-stat {
        padding: 0 18px
    }

    .hero-stat-v {
        font-size: 1.1rem
    }

    .hero-image-wrap {
        padding: 0 12px;
        margin-bottom: -70px
    }

    .hero-image-container {
        aspect-ratio: 16 / 9;
        border-radius: 12px
    }

    .hero-image-tag {
        bottom: 14px;
        right: 14px;
        padding: 12px 16px;
        min-width: 150px
    }

    .hero-tag-model {
        font-size: 1.1rem
    }
}

@media (max-width: 560px) {
    .hero-content {
        padding: 36px 18px 0
    }

    .hero-h1 {
        font-size: 1.9rem
    }

    .hero-sub {
        font-size: .97rem
    }

    .hero-stats {
        gap: 0;
        width: 100%;
        justify-content: center;
        margin-bottom: 32px
    }

    .hero-stat {
        padding: 0 14px
    }

    .hero-stat-v {
        font-size: .95rem
    }

    .hero-stat-l {
        font-size: .52rem
    }

    .hero-image-wrap {
        padding: 0 8px;
        margin-bottom: -50px
    }

    .hero-image-container {
        aspect-ratio: 4 / 3;
        border-radius: 10px
    }

    .hero-image-tag {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
        min-width: auto
    }

    .hero-tag-model {
        font-size: 1rem
    }

    .hero-tag-sub {
        font-size: .7rem
    }
}

/* Quick Stats Bar */
.stats-bar-sec {
    padding: 42px 0;
    background: var(--t1);
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
}

.stats-bar-sec .container {
    display: flex;
    justify-content: center;
}

.stats-bar-sec .hero-stats {
    margin-bottom: 0;
    animation: none;
    opacity: 1;
    transform: none;
}

.stats-bar-sec .hero-stat-v {
    color: var(--white);
}

.stats-bar-sec .hero-stat-divider {
    background: var(--bdr);
}

/* ── Opportunity — central pitch message ── */
.opp-sec {
    background: var(--white);
    padding: 220px 0 100px;
    position: relative;
    overflow: hidden
}

/* Decorative background accent */
.opp-sec::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, var(--steel) 0%, transparent 70%);
    opacity: .7;
    z-index: 0;
    pointer-events: none
}

.opp-sec::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(235, 0, 80, .04) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none
}

.opp-sec .container {
    position: relative;
    z-index: 1;
    max-width: 1100px
}

/* 01 label row */
.opp-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 28px
}

.opp-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--steel);
    letter-spacing: -.06em;
    display: inline-block
}

.opp-tag {
    font-size: var(--fs-min);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red)
}

/* Main headline — the statement */
.opp-h2 {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--navy);
    margin-bottom: 0;
    font-weight: 900
}

/* "Appreciated by Müller Martini." — red accent line */
.opp-h2 em {
    font-style: normal;
    color: var(--red);
    display: block
}

/* Thin rule between headline and body */
.opp-rule {
    height: 2px;
    background: linear-gradient(to right, var(--red) 0%, var(--bdr) 40%, transparent 100%);
    margin: 36px 0 40px;
    max-width: 900px
}

/* Two-column body text */
.opp-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    max-width: 980px
}

/* Left: engineering credibility */
.opp-p1 {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    line-height: 1.6;
    color: var(--t2);
    font-weight: 400
}

/* Right: commercial pitch callout */
.opp-pitch {
    background: var(--navy);
    border-radius: 12px;
    padding: 32px 34px;
    position: relative;
    overflow: hidden
}

.opp-pitch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red)
}

.opp-pitch p {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.62;
    color: rgba(255, 255, 255, .82);
    font-weight: 400;
    margin-bottom: 24px
}

.opp-pitch strong {
    color: #fff;
    font-weight: 800
}

.opp-cta {
    display: inline-flex
}

.opp-photo {
    margin-top: 56px
}

@media(max-width:760px) {
    .opp-sec {
        padding: 160px 0 64px
    }

    .opp-num {
        font-size: 3.4rem
    }

    .opp-body {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .opp-head {
        gap: 14px;
        margin-bottom: 22px
    }

    .opp-sec::before {
        width: 320px;
        height: 320px;
        top: -80px;
        right: -80px
    }
}

/* Why We Recommend — feature cards with photos */
.why-sec {
    background: var(--off);
    padding: 110px 0
}

.why-sec .sec-hdr h2 em {
    font-style: normal;
    color: var(--blue)
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 36px
}

.why-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 14px;
    overflow: hidden;
    align-items: stretch;
    transition: box-shadow .2s, transform .2s
}

.why-card:hover {
    box-shadow: 0 18px 44px -22px rgba(16, 12, 52, .22);
    transform: translateY(-2px)
}

.why-card-rev {
    grid-template-columns: 1fr 1.05fr
}

.why-card-rev .why-media {
    order: 2
}

.why-card-rev .why-text {
    order: 1
}

.why-media {
    position: relative;
    min-height: 320px;
    background: var(--off2);
    overflow: hidden
}

.why-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.why-num {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-weight: 900;
    font-size: .95rem;
    letter-spacing: .02em;
    box-shadow: 0 6px 18px -6px rgba(235, 0, 80, .55)
}

.why-text {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.why-tag {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px
}

.why-text h3 {
    font-size: 1.55rem;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -.01em
}

.why-text p {
    color: var(--t2);
    font-size: 1rem;
    line-height: 1.65
}

.why-text ul {
    color: var(--t2);
    font-size: 1rem;
    line-height: 1.65;
    padding-left: 18px
}

.why-text ul li {
    margin-bottom: 6px
}

@media(max-width:860px) {

    .why-card,
    .why-card-rev {
        grid-template-columns: 1fr;
        gap: 0
    }

    .why-card-rev .why-media {
        order: 0
    }

    .why-card-rev .why-text {
        order: 0
    }

    .why-media {
        min-height: 240px
    }

    .why-text {
        padding: 30px 26px
    }
}

.stripe {
    height: 1px;
    background: var(--bdr)
}

/* Machine — horizontal rows */
.machine-sec {
    background: var(--off)
}

.sec-hdr {
    margin-bottom: 56px
}

.sec-hdr h2 {
    margin-bottom: 10px
}

.sec-hdr p {
    max-width: 580px;
    font-size: 1.01rem
}

.frow {
    display: grid;
    grid-template-columns: 52px 220px 1fr;
    gap: 28px 36px;
    padding: 34px 0;
    border-bottom: 1px solid var(--bdr);
    align-items: start;
    transition: background .13s
}

.frow:first-child {
    border-top: 1px solid var(--bdr)
}

.frow:hover {
    background: rgba(0, 125, 255, .025);
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px
}

.frow-n {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--blue);
    padding-top: 3px
}

.frow-lbl h4 {
    color: var(--navy);
    margin-bottom: 4px;
    font-size: 1rem
}

.frow-tag {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red)
}

.frow-body {
    color: var(--t2);
    font-size: .94rem;
    line-height: 1.68
}

.frow-body ul {
    padding-left: 18px;
    margin-top: 8px
}

.frow-body ul li {
    margin-bottom: 5px
}

@media(max-width:720px) {
    .frow {
        grid-template-columns: 36px 1fr;
        gap: 10px 14px
    }

    .frow-body {
        grid-column: 2
    }
}

/* Refurb */
.refurb-sec {
    background: var(--white)
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--bdr);
    border: 1px solid var(--bdr);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 48px
}

.stile {
    background: #fff;
    padding: 26px 22px;
    transition: background .13s
}

.stile:hover {
    background: var(--off)
}

.stile .sn {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--blue-h);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 12px
}

.stile h5 {
    font-size: .9rem;
    color: var(--navy);
    margin-bottom: 5px
}

.stile p {
    font-size: .81rem;
    color: var(--t3);
    margin: 0;
    line-height: 1.5
}

@media(max-width:780px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .steps-grid {
        grid-template-columns: 1fr
    }
}

.refurb-bottom {
    display: grid;
    grid-template-columns: minmax(320px, 400px) 1fr;
    gap: 32px;
    align-items: center;
}

.vid-bl-portrait {
    max-height: 560px;
    margin: 0 auto
}

.vid-bl {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--bdr);
    display: block;
    text-decoration: none;
    width: 100%;
    padding: 0;
    font: inherit;
    color: inherit
}

.vid-bl-portrait {
    aspect-ratio: 9/16
}

.vid-bl img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .44;
    transition: opacity .25s
}

.vid-bl:hover img {
    opacity: .56
}

.vid-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to bottom, transparent 40%, rgba(16, 12, 52, .6) 100%)
}

.play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1.5px solid rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    backdrop-filter: blur(4px)
}

.vid-bl:hover .play-btn {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.08)
}

.play-btn svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    margin-left: 3px
}

.vid-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center
}

.vid-cta {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: .01em;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .45)
}

.vid-sub {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65)
}

.pq-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    align-self: center
}

.pq-card::before {
    content: '\201C';
    position: absolute;
    top: -24px;
    left: 14px;
    font-size: 7.5rem;
    line-height: 1;
    font-weight: 900;
    color: rgba(235, 0, 80, .16)
}

.pq-card .pq-bar {
    display: inline-block;
    width: 26px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-bottom: 14px
}

.pq-card .pq-txt {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 22px;
    position: relative
}

.pq-card .pq-attr {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4)
}

@media(max-width:700px) {
    .refurb-bottom {
        grid-template-columns: 1fr
    }

    .vid-bl-portrait {
        aspect-ratio: 4/5;
        height: auto
    }
}

/* Service — dark section */
.service-sec {
    background: var(--navy);
    color: #fff
}

.service-sec h2 {
    color: #fff
}

.service-sec p {
    color: rgba(255, 255, 255, .65)
}

.svc-h2 {
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    line-height: 1.12;
    letter-spacing: -.02em;
    max-width: 22ch;
    margin-bottom: 32px
}

.svc-keys {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 56px;
    max-width: 1000px
}

.svc-key {
    font-size: 1.1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .78);
    padding: 18px 22px;
    border-left: 3px solid var(--red);
    background: rgba(255, 255, 255, .035);
    border-radius: 0 6px 6px 0;
    margin: 0
}

.svc-key strong {
    color: #fff;
    font-weight: 700
}

.ppl-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px
}

.ppl-item {
    padding: 22px 22px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    font-size: .92rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.55
}

.ppl-item strong {
    color: #fff;
    display: block;
    margin-bottom: 6px;
    font-size: .98rem
}

@media(max-width:760px) {

    .svc-keys,
    .ppl-items {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

.sup-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.sup-cell {
    background: rgba(255, 255, 255, .04);
    padding: 24px 20px;
    transition: background .13s
}

.sup-cell:hover {
    background: rgba(255, 255, 255, .08)
}

.sup-ico {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(0, 125, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.sup-ico svg {
    stroke: var(--blue);
    width: 14px;
    height: 14px
}

.sup-cell h5 {
    color: #fff;
    font-size: .87rem;
    margin-bottom: 4px
}

.sup-cell p {
    font-size: .79rem;
    color: rgba(255, 255, 255, .48);
    margin: 0
}

@media(max-width:840px) {
    .sup-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .sup-grid {
        grid-template-columns: 1fr
    }
}

/* Parts grid */
.parts-block {
    margin-top: 64px
}

.parts-head {
    margin-bottom: 28px;
    max-width: 720px
}

.parts-head h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px
}

.parts-head p {
    color: rgba(255, 255, 255, .55);
    font-size: .98rem;
    line-height: 1.55
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.part-card {
    margin: 0;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .2s, border-color .2s, background .2s
}

.part-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06)
}

.part-img {
    aspect-ratio: 4/3;
    background: #fff;
    overflow: hidden;
    position: relative
}

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

.part-img-empty {
    background: linear-gradient(135deg, #f7fafc 0%, #e5eaf0 100%);
    position: relative
}

.part-img-empty::after {
    content: "Photo coming soon";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #98a3b3
}

.part-card figcaption {
    padding: 16px 18px 18px
}

.part-card figcaption h5 {
    color: #fff;
    font-size: .98rem;
    margin-bottom: 4px
}

.part-card figcaption span {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42)
}

.parts-cta {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

@media(max-width:840px) {
    .parts-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .parts-grid {
        grid-template-columns: 1fr
    }
}

/* Compare */
.compare-sec {
    background: var(--off)
}

.vtabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 30px
}

.vtab {
    background: #fff;
    border: 1.5px solid var(--bdr);
    padding: 8px 16px;
    border-radius: 55px;
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 700;
    color: var(--t3);
    cursor: pointer;
    transition: all .13s
}

.vtab:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.vtab.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.ctbl-wrap {
    overflow-x: auto;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    background: #fff
}

.ctbl {
    width: 100%;
    border-collapse: collapse;
    min-width: 1280px;
    font-size: .82rem
}

.ctbl thead th {
    padding: 13px 12px;
    text-align: left;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--t4);
    background: var(--off);
    border-bottom: 2px solid var(--bdr);
    vertical-align: bottom
}

.ctbl thead th.hl {
    background: var(--steel);
    color: var(--blue);
    width: 160px
}

.ctbl tbody td.hl {
    width: 160px;
    max-width: 160px
}

.ctbl thead th.hl::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--blue);
    margin-top: 11px;
    margin-left: -14px;
    margin-right: -14px
}

.ctbl tbody td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--bdr);
    color: var(--t2);
    vertical-align: top;
    font-size: .82rem;
    line-height: 1.45
}

.ctbl tbody td:first-child {
    color: var(--navy);
    font-weight: 600
}

.ctbl tbody td.hl {
    background: rgba(0, 125, 255, .03);
    color: var(--navy);
    font-weight: 500
}

/* Specificity fix: these must come AFTER td.hl so green/red wins */
.ctbl tbody td.yes-g {
    color: var(--green);
    font-weight: 700
}

.ctbl tbody td.yes-r {
    color: var(--red);
    font-weight: 700
}

.ctbl tbody td.opt {
    color: #b6791c;
    font-weight: 600;
    font-style: italic
}

.ctbl tbody td:empty::after {
    content: "—";
    color: var(--bdr2);
    font-weight: 600
}

.ctbl-fn {
    margin-top: 12px;
    font-size: .8rem;
    color: var(--t4);
    font-style: italic
}

.ctbl tbody tr:last-child td {
    border-bottom: none
}

/* Fallback for yes-g/yes-r outside the compare table */
.yes-g {
    color: var(--green);
    font-weight: 700
}

.yes-r {
    color: var(--red);
    font-weight: 700
}

.hbox-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 38px
}

.hbox {
    background: #fff;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    padding: 24px
}

.hbox.pro {
    border-top: 3px solid var(--green)
}

.hbox.con {
    border-top: 3px solid var(--bdr2)
}

.hbox .hh {
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.hbox.pro .hh {
    color: var(--green)
}

.hbox.con .hh {
    color: var(--t4)
}

.hbox ul {
    padding-left: 18px
}

.hbox li {
    color: var(--t2);
    font-size: .88rem;
    margin-bottom: 8px;
    line-height: 1.5
}

.hbox-fn {
    font-size: .77rem;
    color: var(--t4);
    font-style: italic;
    grid-column: 1/-1;
    margin-top: 4px
}

@media(max-width:640px) {
    .hbox-pair {
        grid-template-columns: 1fr
    }
}

.price-blk {
    margin-top: 50px
}

.price-blk h3 {
    margin-bottom: 6px
}

.price-blk .note {
    font-size: .87rem;
    color: var(--t3);
    margin-bottom: 18px
}

.price-config {
    background: var(--steel);
    border-left: 3px solid var(--blue);
    padding: 14px 18px;
    border-radius: 0 6px 6px 0;
    font-size: .88rem;
    line-height: 1.55;
    color: var(--navy);
    margin-bottom: 22px
}

.price-config strong {
    color: var(--blue);
    font-weight: 800
}

.ptbl2 tbody td:nth-child(2):empty::after {
    content: "—";
    color: var(--bdr2);
    font-weight: 600
}

.ptbl2 {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    overflow: hidden;
    font-size: .86rem
}

.ptbl2 thead th {
    background: var(--off);
    padding: 12px 18px;
    text-align: left;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--t4)
}

.ptbl2 tbody td {
    padding: 13px 18px;
    border-top: 1px solid var(--bdr);
    color: var(--t2)
}

.ptbl2 tbody td:first-child {
    color: var(--navy);
    font-weight: 600
}

.ptbl2 tr.st {
    background: rgba(0, 125, 255, .04)
}

.ptbl2 tr.st td:first-child {
    color: var(--blue)
}

.ptbl2 tr.st td:nth-child(2) {
    color: var(--blue);
    font-weight: 700
}

.price-note {
    margin-top: 16px;
    padding: 17px 22px;
    border: 1px solid var(--bdr);
    border-left: 3px solid var(--red);
    border-radius: 0 6px 6px 0;
    font-size: .87rem;
    color: var(--t2);
    line-height: 1.7;
    background: #fff
}

.price-note strong {
    color: var(--red)
}

/* Info Package Banner */
.info-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--navy);
    border-radius: 10px;
    border: 1px solid rgba(0, 125, 255, .2);
}

.info-banner-txt {
    color: rgba(255, 255, 255, .75);
    font-size: .92rem;
    line-height: 1.65;
    flex: 1;
    min-width: 220px;
}

.info-banner-txt strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}

@media (max-width: 620px) {
    .info-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .info-banner .btn {
        width: 100%;
        justify-content: center
    }
}

/* Spec-sheet download */
.spec-dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 22px 26px;
    background: #fff;
    border: 1px solid var(--bdr);
    border-radius: 10px;
    box-shadow: var(--sh-sm);
}

.spec-dl-txt {
    flex: 1;
    min-width: 220px;
    font-size: .92rem;
    line-height: 1.6;
    color: var(--t3);
}

.spec-dl-txt strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 4px;
}

@media (max-width: 620px) {
    .spec-dl {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .spec-dl .btn {
        width: 100%;
        justify-content: center
    }
}

/* Upgrade */
.upgrade-sec {
    background: var(--white)
}

.utbl-wrap {
    overflow-x: auto;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    margin-top: 38px;
    margin-bottom: 32px
}

.utbl {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
    font-size: .86rem
}

.utbl thead th {
    padding: 12px 18px;
    text-align: left;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--t4);
    background: var(--off);
    border-bottom: 1px solid var(--bdr)
}

.utbl thead th:last-child {
    background: var(--steel);
    color: var(--blue)
}

.utbl tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--bdr);
    color: var(--t2)
}

.utbl tbody td:first-child {
    color: var(--navy);
    font-weight: 700
}

.utbl tbody td:last-child {
    background: rgba(0, 125, 255, .03);
    color: var(--navy)
}

.utbl tbody tr:last-child td {
    border-bottom: none
}

.closing-bar {
    background: var(--off);
    border: 1px solid var(--bdr);
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0;
    padding: 20px 26px;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 28px
}

.ti-panel {
    display: flex;
    align-items: center;
    gap: 26px;
    background: var(--navy);
    border-radius: 8px;
    padding: 26px 30px;
    color: #fff
}

.ti-ico {
    flex: 0 0 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(235, 0, 80, .18);
    display: flex;
    align-items: center;
    justify-content: center
}

.ti-ico svg {
    stroke: var(--red)
}

.ti-txt h4 {
    color: #fff;
    margin-bottom: 3px;
    font-size: .98rem
}

.ti-txt p {
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
    margin: 0
}

.ti-txt a {
    color: #007DFF
}

@media(max-width:600px) {
    .ti-panel {
        flex-direction: column;
        text-align: center;
        padding: 26px 20px
    }
}

/* References */
.ref-sec {
    background: var(--off)
}

.ref-feature {
    max-width: 760px;
    background: #fff;
    border: 1px solid var(--bdr);
    border-left: 4px solid var(--blue);
    border-radius: 8px;
    padding: 34px 38px;
    box-shadow: var(--sh-sm)
}

.ref-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(0, 125, 255, .08);
    border-radius: 999px;
    padding: 5px 13px;
    margin-bottom: 16px
}

.ref-feature h3 {
    color: var(--navy);
    margin-bottom: 14px
}

.ref-lead {
    color: var(--t2);
    line-height: 1.7;
    margin-bottom: 26px
}

@media(max-width:560px) {
    .ref-feature {
        padding: 26px 22px
    }
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.case-card {
    background: #fff;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column
}

.c-flag {
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--t4);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px
}

.c-co {
    font-size: 1.38rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 3px
}

.c-meta {
    font-size: .81rem;
    color: var(--t3);
    margin-bottom: 18px
}

.case-card dl dt {
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 3px
}

.case-card dl dd {
    font-size: .9rem;
    color: var(--t2);
    margin: 0 0 15px
}

.case-card blockquote {
    padding: 14px 18px;
    background: var(--off);
    border-left: 3px solid var(--red);
    font-size: .93rem;
    font-style: italic;
    color: var(--navy);
    border-radius: 0 6px 6px 0;
    line-height: 1.55;
    margin-top: auto
}

.c-attr {
    font-style: normal;
    font-size: .78rem;
    color: var(--t3);
    margin-top: 7px
}

.ph-bdg {
    display: inline-block;
    margin-top: 11px;
    font-size: .67rem;
    color: #b87e14;
    background: rgba(200, 160, 72, .1);
    border: 1px dashed rgba(200, 160, 72, .4);
    padding: 4px 10px;
    border-radius: 4px
}

@media(max-width:660px) {
    .case-grid {
        grid-template-columns: 1fr
    }
}

/* Configurator */
.cfg-sec {
    background: var(--white)
}

.cfg-shell {
    display: grid;
    grid-template-columns: 240px 1fr;
    border: 1px solid var(--bdr);
    border-radius: 8px;
    overflow: hidden
}

.cfg-side {
    background: var(--off);
    border-right: 1px solid var(--bdr);
    padding: 22px 15px
}

.cfg-sl {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--t4);
    margin-bottom: 11px
}

.cstep {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: .86rem;
    color: var(--t3);
    margin-bottom: 2px;
    transition: all .12s
}

.cstep:hover {
    color: var(--navy);
    background: #fff
}

.cstep.active {
    color: var(--blue);
    background: #fff;
    font-weight: 700;
    box-shadow: var(--sh-sm)
}

.cstep.done {
    color: var(--green)
}

.cstep .cn {
    flex: 0 0 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bdr);
    color: var(--t4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .69rem;
    font-weight: 800
}

.cstep.active .cn {
    background: var(--blue);
    color: #fff
}

.cstep.done .cn {
    background: var(--green);
    color: #fff;
    font-size: .62rem
}

.cfg-body {
    padding: 34px
}

.cfg-sl2 {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 6px
}

.cfg-body h3 {
    margin-bottom: 8px
}

.cfg-desc {
    font-size: .94rem;
    margin-bottom: 22px
}

.cc {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 17px;
    background: var(--off);
    border: 1px solid var(--bdr);
    border-radius: 5px;
    margin-bottom: 10px
}

.cc label {
    flex: 1;
    font-size: .91rem;
    font-weight: 500;
    color: var(--navy)
}

.cc button {
    width: 29px;
    height: 29px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid var(--bdr);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: all .12s
}

.cc button:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.cc .cv {
    min-width: 30px;
    text-align: center;
    font-weight: 800;
    color: var(--navy)
}

.copt {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 17px;
    background: var(--off);
    border: 1.5px solid var(--bdr);
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 9px;
    transition: all .12s
}

.copt:hover {
    border-color: var(--blue);
    background: var(--steel)
}

.copt.sel {
    border-color: var(--blue);
    background: var(--steel)
}

.copt .chk {
    flex: 0 0 17px;
    height: 17px;
    border-radius: 3px;
    border: 1.5px solid var(--bdr2);
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .12s
}

.copt.sel .chk {
    background: var(--blue);
    border-color: var(--blue)
}

.copt.sel .chk::after {
    content: '\2713';
    font-size: .6rem;
    color: #fff;
    font-weight: 800
}

.copt h5 {
    font-size: .91rem;
    color: var(--navy);
    margin-bottom: 2px
}

.copt p {
    margin: 0;
    font-size: .82rem;
    color: var(--t3)
}

.cfg-note {
    background: rgba(255, 165, 0, .07);
    border: 1px dashed rgba(200, 140, 40, .35);
    border-radius: 4px;
    padding: 11px 14px;
    margin-top: 14px;
    font-size: .8rem;
    color: #9a6a10
}

.cfg-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid var(--bdr)
}

@media(max-width:740px) {
    .cfg-shell {
        grid-template-columns: 1fr
    }

    .cfg-side {
        border-right: none;
        border-bottom: 1px solid var(--bdr);
        padding: 15px
    }

    .cfg-body {
        padding: 22px 16px
    }
}

/* About */
.about-sec {
    background: var(--navy)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}


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

.a-vl {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 10px
}

.a-vc {
    font-size: .97rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4
}

.about-txt h2 {
    margin-bottom: 14px;
    color: var(--bdr);
}

.about-txt p {
    margin-bottom: 13px;
    font-size: .97rem;
    color: var(--bdr);
}

.a-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 22px 0;
    margin: 18px 0;
    border-top: 1px solid var(--bdr);
    border-bottom: 1px solid var(--bdr);
}

.a-stat .av {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--off);
    letter-spacing: -.03em;
    display: block;
    line-height: 1
}

.a-stat .al {
    font-size: .73rem;
    color: var(--t3);
    display: block;
    margin-top: 4px
}

@media(max-width:740px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .a-stats {
        grid-template-columns: 1fr 1fr
    }
}

/* FAQ */
.faq-sec {
    background: var(--white)
}

.faq-inner {
    max-width: 820px
}

.faq-inner h2 {
    margin-bottom: 42px
}

details.fi {
    border-bottom: 1px solid var(--bdr)
}

details.fi summary {
    padding: 17px 0;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: .96rem;
    font-weight: 600;
    color: var(--navy);
    transition: color .12s
}

details.fi summary::-webkit-details-marker {
    display: none
}

details.fi summary::after {
    content: '+';
    flex: 0 0 20px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--red)
}

details.fi[open] summary::after {
    content: '\2212'
}

details.fi summary:hover {
    color: var(--blue)
}

details.fi .fa {
    padding: 0 0 18px;
    max-width: 680px;
    font-size: .91rem;
    color: var(--t2);
    line-height: 1.7
}

details.fi .fa a {
    color: var(--blue)
}

.fa-ph {
    color: #b87e14 !important;
    font-style: italic
}

/* Sticky CTA */
.scta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: rgba(16, 12, 52, .97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 13px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap
}

.scta .stxt {
    font-size: .91rem;
    color: rgba(255, 255, 255, .72)
}

.scta .stxt strong {
    color: #007DFF
}

.scta .sbtns {
    display: flex;
    gap: 10px
}

@media(max-width:560px) {
    .scta {
        flex-direction: row;
        padding: 10px 16px;
        gap: 8px;
        justify-content: center
    }

    .scta .stxt {
        display: none
    }

    .scta .sbtns {
        width: 100%;
        gap: 8px
    }

    .scta .sbtns a {
        flex: 1;
        justify-content: center;
        text-align: center;
        padding: 11px 14px;
        font-size: .85rem
    }

    body {
        padding-bottom: 72px
    }
}

/* Footer */
.footer {
    background: var(--navy);
    padding: 60px 0 26px
}

.fg {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 42px;
    margin-bottom: 42px
}

.fb .flogo img {
    filter: invert(1) brightness(10);
    margin-bottom: 11px
}

.fb .ftag {
    font-size: .88rem;
    font-style: italic;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 9px
}

.fb p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.6
}

.fc h6 {
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 11px
}

.fc ul {
    list-style: none
}

.fc li {
    margin-bottom: 7px;
    font-size: .84rem
}

.fc a {
    color: rgba(255, 255, 255, .52)
}

.fc a:hover {
    color: #fff;
    text-decoration: none
}

.fbot {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 9px;
    font-size: .74rem;
    color: rgba(255, 255, 255, .28)
}

.fbot a {
    color: rgba(255, 255, 255, .28)
}

.fbot a:hover {
    color: rgba(255, 255, 255, .6);
    text-decoration: none
}

@media(max-width:700px) {
    .fg {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:440px) {
    .fg {
        grid-template-columns: 1fr
    }
}


/* ============================================================
   TYPE SCALE ENFORCEMENT
   Three usable sizes: fs-min (0.875rem) · fs-body (1rem) · fs-sub (1.1rem)
   h3 (1.35rem) · h2 (clamp) · h1 (clamp)
   Nothing renders smaller than --fs-min.
   ============================================================ */

body,
p,
li,
td,
dd,
dt {
    font-size: var(--fs-body)
}

/* Sub-headings: h3/h4 stay at their declared sizes (1.35rem / 1.02rem).
   Component-level overrides that sat between body and h4 are normalised here. */
.why-text h3,
.parts-head h3,
.price-blk h3 {
    font-size: 1.35rem
}

/* Minimum level — all labels, eyebrows, captions, table metadata, footnotes */
.eyebrow,
.eyebrow-red,
.opp-tag,
.why-tag,
.frow-tag,
.frow-n,
.vid-label,
.pq-attr,
.svc-key,
.why-num,
.hbox .hh,
.hbox li,
.hbox-fn,
.ctbl-fn,
.c-flag,
.c-meta,
.ph-bdg,
.price-config,
.parts-head p,
.part-card figcaption span,
.sup-cell p,
.ppl-item,
.ctbl thead th,
.ctbl tbody td,
.ptbl2 thead th,
.ptbl2 tbody td,
.hero-stat-l,
.stile p,
.sn,
.img-ph-label,
figcaption,
small {
    font-size: var(--fs-min)
}

/* ============================================================
   IMAGE PLACEHOLDER COMPONENT
   ============================================================ */

.img-ph {
    position: relative;
    background: linear-gradient(135deg, var(--off) 0%, var(--off2) 100%);
    border: 1.5px dashed var(--bdr2);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

.img-ph-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 32px 24px;
    text-align: center
}

.img-ph-inner svg {
    width: 36px;
    height: 36px;
    stroke: var(--bdr2);
    fill: none
}

.img-ph-label {
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--t4)
}

/* Real photo — fills placeholder as cover, no dashed border */
.img-ph-cover {
    background: none;
    border: none;
    padding: 0
}

.img-ph-cover>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* dark-section variant (white tones) */
.img-ph-dark {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .1)
}

.img-ph-dark .img-ph-inner svg {
    stroke: rgba(255, 255, 255, .2)
}

.img-ph-dark .img-ph-label {
    color: rgba(255, 255, 255, .3)
}

/* Aspect-ratio helpers */
.img-ph-wide {
    aspect-ratio: 21/9
}

.img-ph-landscape {
    aspect-ratio: 16/9
}

.img-ph-portrait {
    aspect-ratio: 4/5
}

.img-ph-square {
    aspect-ratio: 1
}

/* Refurb — 3-photo grid above the video block */
.refurb-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px
}

@media(max-width:700px) {
    .refurb-photos {
        grid-template-columns: 1fr
    }
}

/* Reference cards — photo at top, no border-radius on top corners */
.case-photo {
    border-radius: 8px 8px 0 0;
    margin: -24px -24px 20px
}

/* Opportunity — wide photo, slight shadow */
.opp-photo {
    border-radius: 12px;
    box-shadow: var(--sh-md);
    overflow: hidden
}

.opp-photo img {
    display: block;
    width: 100%;
    height: auto
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--red);
    z-index: 9999;
    transition: width .1s linear;
    pointer-events: none
}

/* ============================================================
   INLINE-STYLE REPLACEMENTS (moved from HTML)
   ============================================================ */

/* Shared section utilities */
.sec-h2-tight {
    margin-bottom: 12px
}

.sec-h2-cfg {
    margin-bottom: 8px
}

.sec-lead {
    max-width: 650px;
    font-size: var(--fs-body);
    margin-bottom: 34px
}

.sec-lead-wide {
    max-width: 680px
}

.cfg-sec .sec-lead {
    max-width: 520px;
    margin-bottom: 42px
}

.ref-sec .sec-lead {
    max-width: 600px;
    margin-bottom: 42px
}

.btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* Coloured value in tables */
.tbl-accent {
    color: var(--red)
}

/* Service eyebrow on dark background */
.service-sec .eyebrow-svc {
    color: rgba(255, 255, 255, .45)
}

/* opp-photo top margin */
.opp-photo {
    margin-top: 52px
}

/* ============================================================
   COMPARE TABLE — SWIPE HINT
   ============================================================ */
.ctbl-scroll-hint {
    display: none;
    align-items: center;
    gap: 7px;
    font-size: var(--fs-min);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--t4);
    margin-bottom: 10px;
    transition: opacity .3s
}

.ctbl-scroll-hint svg {
    width: 14px;
    height: 14px;
    stroke: var(--t4)
}

@media (max-width: 860px) {
    .ctbl-scroll-hint {
        display: flex
    }
}

/* ============================================================
   CONFIGURATOR — NEW ELEMENTS
   ============================================================ */

/* Base machine grid (step 1) */
.cfg-base-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px
}

.cfg-base-item {
    background: var(--off);
    border: 1px solid var(--bdr);
    border-radius: 8px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cfg-base-ico {
    font-size: 1.4rem;
    margin-bottom: 6px
}

.cfg-base-item strong {
    font-size: var(--fs-min);
    color: var(--navy)
}

.cfg-base-item span {
    font-size: var(--fs-min);
    color: var(--t3)
}

@media(max-width:760px) {
    .cfg-base-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* Included options (non-interactive) */
.copt-included {
    opacity: .75;
    cursor: default;
    pointer-events: none
}

.chk-fixed {
    background: var(--green) !important;
    color: #fff !important;
    font-size: .75rem !important;
    border-color: var(--green) !important
}

.cfg-incl {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-left: 8px
}

/* Step 1 CTA */
.cfg-actions-start {
    margin-top: 6px
}

/* Select inside counter row */
.cc-select {
    padding: 10px 17px;
    align-items: center
}

.cfg-sel {
    margin-left: auto;
    padding: 7px 12px;
    border: 1.5px solid var(--bdr2);
    border-radius: 5px;
    font-family: var(--font);
    font-size: var(--fs-min);
    color: var(--navy);
    background: #fff;
    cursor: pointer
}

/* Stitching heads — large selectable cards */
.cfg-heads-label {
    font-size: var(--fs-body);
    font-weight: 700;
    color: var(--navy);
    margin: 4px 0 12px
}

.cfg-heads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px
}

.cfg-head-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 22px 12px;
    border: 1.5px solid var(--bdr2);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    transition: all .15s
}

.cfg-head-card:hover {
    border-color: var(--blue)
}

.cfg-head-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.cfg-head-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--navy)
}

.cfg-head-lbl {
    font-size: var(--fs-min);
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: .04em
}

.cfg-head-card:has(input:checked) {
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: var(--sh-sm)
}

.cfg-head-card:has(input:checked) .cfg-head-num {
    color: #fff
}

.cfg-head-card:has(input:checked) .cfg-head-lbl {
    color: rgba(255, 255, 255, .85)
}

@media(max-width:520px) {
    .cfg-heads {
        gap: 10px
    }

    .cfg-head-card {
        padding: 16px 8px
    }

    .cfg-head-num {
        font-size: 1.6rem
    }
}

/* Trade-in radio group */
.cfg-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px
}

.cfg-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-body);
    color: var(--navy);
    cursor: pointer
}

.cfg-radio input {
    accent-color: var(--blue);
    width: 16px;
    height: 16px
}

/* Trade-in fields */
.cfg-tradein-fields {
    border-top: 1px solid var(--bdr);
    padding-top: 20px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 14px
}

/* Form fields */
.cfg-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px
}

.cfg-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.cfg-field {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.cfg-field label {
    font-size: var(--fs-min);
    font-weight: 700;
    color: var(--navy)
}

.cfg-field input,
.cfg-field select,
.cfg-field textarea {
    padding: 10px 13px;
    border: 1.5px solid var(--bdr2);
    border-radius: 5px;
    font-family: var(--font);
    font-size: var(--fs-body);
    color: var(--navy);
    background: #fff;
    transition: border-color .13s
}

.cfg-field input:focus,
.cfg-field select:focus,
.cfg-field textarea:focus {
    outline: none;
    border-color: var(--blue)
}

.cfg-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--fs-min);
    color: var(--t2);
    line-height: 1.55;
    cursor: pointer
}

.cfg-consent input {
    accent-color: var(--blue);
    margin-top: 2px;
    flex: 0 0 16px
}

.cfg-actions-submit {
    margin-top: 8px
}

/* Live summary box (step 7) */
.cfg-summary {
    background: var(--steel);
    border: 1px solid rgba(0, 125, 255, .15);
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 18px
}

.cfg-sum-title {
    font-size: var(--fs-min);
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px
}

.cfg-summary ul {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cfg-summary li {
    font-size: var(--fs-min);
    color: var(--navy)
}

/* Success panel */
.cfg-success-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 52px 24px
}

.cfg-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px -8px rgba(0, 184, 148, .5)
}

.cfg-success-inner h3 {
    margin-bottom: 12px
}

.cfg-success-inner p {
    max-width: 440px;
    color: var(--t2)
}

@media(max-width:640px) {
    .cfg-field-row {
        grid-template-columns: 1fr
    }
}

.cfg-back-top {
    margin-top: 22px
}


/* ============================================================
   FLOATING PAGE NAV
   ============================================================ */
.page-nav {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 180;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease)
}

.page-nav.pn-visible {
    opacity: 1;
    pointer-events: auto
}

.pn-item {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-end;
    text-decoration: none !important;
    cursor: pointer;
    padding: 5px 0
}

.pn-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(16, 12, 52, .18);
    border: 1.5px solid rgba(16, 12, 52, .22);
    transition: all .2s var(--ease);
    flex-shrink: 0
}

.pn-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--navy);
    white-space: nowrap;
    background: #fff;
    border: 1px solid var(--bdr);
    border-radius: 4px;
    padding: 3px 8px;
    margin-right: 10px;
    box-shadow: var(--sh-sm);
    opacity: 1;
    transform: translateX(0);
    transition: opacity .18s, transform .18s;
    pointer-events: none
}

/* Active dot */
.pn-item.pn-active .pn-dot {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.45);
    box-shadow: 0 0 0 3px rgba(235, 0, 80, .15)
}

/* Hover dot */
.pn-item:hover .pn-dot {
    background: var(--blue);
    border-color: var(--blue)
}

/* Hidden on mobile / narrow screens — not enough space */
@media (max-width: 1100px) {
    .page-nav {
        display: none
    }
}

/* ============================================================
   VIDEO LIGHTBOX
   ============================================================ */
.vid-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.vid-modal.open {
    display: flex;
    animation: vidFadeIn .22s var(--ease)
}

.vid-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 28, .82);
    backdrop-filter: blur(6px);
    cursor: pointer
}

.vid-modal-frame {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    z-index: 1;
    animation: vidScaleIn .28s var(--ease)
}

.vid-modal-inner {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55)
}

.vid-modal-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

.vid-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s
}

.vid-modal-close:hover {
    background: rgba(255, 255, 255, .22)
}

@keyframes vidFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes vidScaleIn {
    from {
        opacity: 0;
        transform: scale(.96)
    }

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

@media (max-width: 600px) {
    .vid-modal {
        padding: 12px
    }

    .vid-modal-close {
        top: -38px;
        width: 32px;
        height: 32px
    }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-sec {
    background: var(--white);
    padding: 110px 0;
    position: relative
}

.contact-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--bdr)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto
}

/* ── Left: intro ── */
.contact-intro h2 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    line-height: 1.05;
    margin: 14px 0 22px
}

.contact-intro h2 em {
    font-style: normal;
    color: var(--blue)
}

.contact-lead {
    color: var(--t2);
    font-size: var(--fs-body);
    margin-bottom: 18px;
    max-width: 440px
}

.contact-sub {
    font-size: var(--fs-min);
    color: var(--t3);
    max-width: 440px
}

.contact-sub a {
    color: var(--blue);
    font-weight: 600
}

/* ── Right: contact card ── */
.contact-card {
    background: var(--off);
    border: 1px solid var(--bdr);
    border-radius: 18px;
    padding: 32px 32px 28px
}

.cc-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px
}

.cc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .04em
}

.cc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cc-id {
    min-width: 0
}

.cc-name {
    font-size: 1.25rem;
    margin: 0 0 2px;
    line-height: 1.2
}

.cc-role {
    font-size: var(--fs-min);
    color: var(--t3);
    margin: 0;
    line-height: 1.4
}

.cc-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 24px
}

.cc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 999px;
    font-size: var(--fs-body);
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    transition: all .18s var(--ease);
    border: 1.5px solid transparent;
    min-height: 52px
}

.cc-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.cc-btn-primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 6px 18px rgba(0, 125, 255, .22)
}

.cc-btn-primary:hover {
    background: var(--blue-h);
    border-color: var(--blue-h);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 125, 255, .28)
}

.cc-btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--bdr2)
}

.cc-btn-ghost:hover {
    background: #fff;
    border-color: var(--navy);
    text-decoration: none;
    transform: translateY(-1px)
}

.cc-copy {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--bdr2);
    background: transparent;
    color: var(--t3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .18s var(--ease);
    flex-shrink: 0;
    position: relative
}

.cc-copy svg {
    width: 16px;
    height: 16px
}

.cc-copy:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: #fff
}

.cc-copy.cc-copied {
    border-color: var(--green);
    color: var(--green);
    background: rgba(0, 184, 148, .08)
}

.cc-copy.cc-copied::after {
    content: "Copied";
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    animation: ccFade .2s var(--ease) both
}

@keyframes ccFade {
    from {
        opacity: 0;
        transform: translate(-50%, 4px)
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0)
    }
}

.cc-divider {
    height: 1px;
    background: var(--bdr);
    margin: 0 -8px 22px
}

.cc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--blue);
    font-weight: 700;
    font-size: var(--fs-body);
    margin-bottom: 14px
}

.cc-link:hover {
    color: var(--blue-h);
    text-decoration: none
}

.cc-addr {
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--t1);
    font-size: var(--fs-body)
}


@media (max-width: 880px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact-card {
        padding: 26px 22px 24px
    }
}

@media (max-width: 600px) {
    .contact-sec {
        padding: 70px 0
    }

    .cc-btn span {
        font-size: .95rem
    }

    .cc-actions {
        gap: 8px
    }

    .cc-copy {
        width: 46px;
        height: 46px
    }
}