/* ==================================================================
   XXL CARGO TRANSPORT — REDESIGN 2026
   Professional refinement layer. Loads AFTER style.css.
   Blends patterns from leading logistics B2B sites (C.H. Robinson,
   Schneider, Coyote, Flexport, Sennder): calmer surfaces, stronger
   typographic hierarchy, crisper components, restrained motion.
   Keeps brand: navy + #E65C00 orange + white, Inter + Barlow Condensed,
   logo and copy untouched.
   ================================================================== */

:root {
    --rd-ink: #05101F;
    --rd-border: rgba(255, 255, 255, 0.09);
    --rd-border-strong: rgba(255, 255, 255, 0.16);
    --rd-surface: rgba(255, 255, 255, 0.035);
    --rd-surface-2: rgba(255, 255, 255, 0.055);
    --rd-orange-soft: rgba(230, 92, 0, 0.12);
    --rd-shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.28), 0 10px 30px rgba(3, 10, 20, 0.45);
    --rd-shadow-lift: 0 2px 4px rgba(0, 0, 0, 0.3), 0 26px 60px rgba(3, 10, 20, 0.6);
    --rd-radius: 14px;
    --rd-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Calmer, premium page background -------------------------- */
body {
    background:
        radial-gradient(1100px 520px at 82% -8%, rgba(230, 92, 0, 0.07), transparent 62%),
        radial-gradient(900px 600px at -10% 10%, rgba(11, 52, 107, 0.18), transparent 60%),
        linear-gradient(180deg, #060E1C 0%, var(--rd-ink) 100%);
    background-attachment: fixed;
}

/* Tame the loud decorative glows for a cleaner enterprise feel */
.hero-glow {
    opacity: 0.22;
}

.hero-glow-2 {
    opacity: 0.18;
}

/* ---- Typography rhythm ---------------------------------------- */
h1,
h2,
h3 {
    letter-spacing: -0.025em;
}

h2.section-title,
.section-title {
    line-height: 1.06;
    margin-bottom: 20px;
}

p {
    color: #9FB0C7;
}

/* ---- Section eyebrow label (line + uppercase) ----------------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 18px;
}

.section-label::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-primary);
}

/* center variant when a header block is centered */
.text-center .section-label,
.section-header.center .section-label {
    justify-content: center;
}

/* ---- Buttons: crisper, corporate ----------------------------- */
.btn {
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.28s var(--rd-ease), box-shadow 0.28s var(--rd-ease),
        background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #F4511E 0%, #FF7A1F 100%);
    box-shadow: 0 6px 18px rgba(230, 92, 0, 0.26);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(230, 92, 0, 0.36);
}

.btn-outline,
.btn-ghost {
    border: 1px solid var(--rd-border-strong);
    background: var(--rd-surface);
    color: var(--color-text);
    backdrop-filter: blur(6px);
}

.btn-outline:hover,
.btn-ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-white);
    background: var(--rd-orange-soft);
    transform: translateY(-2px);
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* ---- Navbar ---------------------------------------------------- */
.navbar.scrolled {
    background: rgba(5, 16, 31, 0.82);
    border-bottom: 1px solid var(--rd-border);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.4);
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.72);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-white);
}

/* ---- Cards: flatter, crisper, consistent --------------------- */
.card,
.service-card,
.tech-card,
.usp-card,
.client-card,
.coverage-card,
.form-card,
.sidebar-card {
    background: linear-gradient(180deg, var(--rd-surface-2), var(--rd-surface));
    border: 1px solid var(--rd-border);
    box-shadow: var(--rd-shadow-soft);
    border-radius: var(--rd-radius);
    transition: transform 0.32s var(--rd-ease), border-color 0.3s, box-shadow 0.3s;
}

.card:hover,
.service-card:hover,
.tech-card:hover,
.usp-card:hover,
.client-card:hover {
    transform: translateY(-6px);
    border-color: var(--rd-border-strong);
    box-shadow: var(--rd-shadow-lift);
}

/* keep the signature orange accent, but thinner/sharper */
.card::before {
    height: 3px;
}

/* Icon chips inside cards — unified rounded-square treatment */
.usp-icon,
.service-icon,
.tech-icon,
.client-card-icon,
.coverage-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--rd-orange-soft);
    border: 1px solid rgba(230, 92, 0, 0.22);
    color: var(--color-primary);
    margin-bottom: 18px;
}

.service-num {
    color: rgba(230, 92, 0, 0.35);
}

/* ---- Hero ------------------------------------------------------ */
.hero-badge {
    background: var(--rd-surface);
    border: 1px solid var(--rd-border-strong);
    border-radius: 100px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-family: var(--font-body);
    /* clean bold sans (Inter) to match the reference, not condensed */
    font-weight: 800;
    font-size: clamp(2.3rem, 4.6vw, 3.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero .highlight {
    color: var(--color-primary);
}

.hero-sub {
    color: #A6B6CC;
    font-size: 1.18rem;
}

/* Hero stats become a crisp divided trust strip */
.hero-stats {
    gap: 0;
    border-top: 1px solid var(--rd-border);
}

.hero-stats .stat-item {
    padding: 0 26px;
    border-left: 1px solid var(--rd-border);
}

.hero-stats .stat-item:first-child {
    padding-left: 0;
    border-left: none;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.stat-label {
    color: var(--color-muted);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

/* ---- Client logo strip --------------------------------------- */
.clients-logo-section {
    border-top: 1px solid var(--rd-border);
    border-bottom: 1px solid var(--rd-border);
    background: rgba(255, 255, 255, 0.015);
}

.clients-logo-title {
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.clients-logo-item {
    opacity: 0.62;
    filter: grayscale(0.2);
    transition: opacity 0.3s, filter 0.3s, transform 0.3s var(--rd-ease);
}

.clients-logo-item:hover {
    opacity: 1;
    filter: none;
    transform: translateY(-2px);
}

/* ---- Workflow / process stepper ------------------------------ */
.step-num {
    box-shadow: 0 8px 22px rgba(230, 92, 0, 0.28);
}

/* ---- CTA band ------------------------------------------------- */
.cta-section {
    border-radius: var(--rd-radius);
}

/* ---- Footer --------------------------------------------------- */
.footer {
    border-top: 1px solid var(--rd-border);
    background: linear-gradient(180deg, var(--rd-ink) 0%, #040B16 100%);
}

.footer-col h5,
.footer-brand h5 {
    letter-spacing: 0.08em;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* ---- Scrollbar ------------------------------------------------ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #1c3454;
    border-radius: 6px;
    border: 2px solid var(--rd-ink);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ---- Selection ------------------------------------------------ */
::selection {
    background: rgba(244, 81, 30, 0.3);
    color: #fff;
}

/* ---- Blog/article polish ------------------------------------- */
.blog-card,
.related-card {
    border-radius: var(--rd-radius);
    border: 1px solid var(--rd-border);
}

.article-lead {
    color: #B8C6DA;
}

/* ================================================================
   PREMIUM HOMEPAGE — palette tune + new sections (master prompt)
   Deep navy #04152D + bright orange #FF6B00.
   ================================================================ */
:root {
    --color-primary: #FF6B00;
    --color-primary-light: #FF8A33;
    --color-primary-dark: #E65F00;
}

body {
    background:
        radial-gradient(1100px 520px at 82% -8%, rgba(255, 107, 0, 0.07), transparent 62%),
        radial-gradient(900px 600px at -12% 8%, rgba(11, 52, 107, 0.16), transparent 60%),
        linear-gradient(180deg, #04152D 0%, #030F1E 100%);
    background-attachment: fixed;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8A33 100%);
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 14px 30px rgba(255, 107, 0, 0.4);
}

/* chevron chip inside buttons (per reference) */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.95rem;
    line-height: 1;
    margin-left: 4px;
    transition: transform 0.25s var(--rd-ease);
}

.btn-outline .btn-arrow,
.btn-ghost .btn-arrow {
    background: rgba(255, 255, 255, 0.08);
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* centered section header */
.section-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center .section-label {
    justify-content: center;
}

.section-head.center p {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Trust band ---- */
.trust-band {
    padding: 30px 0;
    border-top: 1px solid var(--rd-border);
    border-bottom: 1px solid var(--rd-border);
    background: rgba(255, 255, 255, 0.015);
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.trust-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-stars {
    color: #FFB23E;
    letter-spacing: 4px;
    font-size: 1.15rem;
}

.trust-rating-label {
    color: var(--color-muted);
    font-size: 0.82rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 14px 44px;
}

.trust-card {
    text-align: center;
}

.trust-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-white);
    line-height: 1;
}

.trust-label {
    color: var(--color-muted);
    font-size: 0.8rem;
    margin-top: 6px;
}

/* ---- Why grid + cards ---- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: linear-gradient(180deg, var(--rd-surface-2), var(--rd-surface));
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow-soft);
    padding: 30px 26px;
    transition: transform 0.32s var(--rd-ease), border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--rd-border-strong);
    box-shadow: var(--rd-shadow-lift);
}

.why-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--rd-orange-soft);
    border: 1px solid rgba(255, 107, 0, 0.22);
    color: var(--color-primary);
    margin-bottom: 18px;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.92rem;
}

/* ---- Process timeline (4 steps) ---- */
.proc-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.proc-timeline::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), rgba(255, 107, 0, 0.15));
    z-index: 0;
}

.proc-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}

.proc-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, #FF6B00, #FF8A33);
    box-shadow: 0 8px 22px rgba(255, 107, 0, 0.32);
    border: 4px solid #04152D;
}

.proc-step h3 {
    font-size: 1.12rem;
    color: var(--color-white);
    margin-bottom: 8px;
}

.proc-step p {
    font-size: 0.88rem;
    margin: 0 auto;
    max-width: 220px;
}

/* Process section with photo (homepage) — photo left, vertical steps right */
.proc-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 54px;
    align-items: center;
}

.proc-photo {
    border-radius: var(--rd-radius);
    overflow: hidden;
    border: 1px solid var(--rd-border);
    box-shadow: var(--rd-shadow-lift);
    aspect-ratio: 3 / 2;
    background: #0a1626;
}

.proc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proc-steps {
    position: relative;
    display: grid;
    gap: 24px;
}

.proc-steps::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(var(--color-primary), rgba(255, 107, 0, 0.12));
}

.proc-vstep {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    align-items: start;
}

.proc-vstep .proc-num {
    margin: 0;
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
    z-index: 1;
}

.proc-vstep h3 {
    margin-bottom: 6px;
}

.proc-vstep p {
    margin: 0;
    max-width: none;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .proc-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ---- Services 6 ---- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Testimonials ---- */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: linear-gradient(180deg, var(--rd-surface-2), var(--rd-surface));
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow-soft);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testi-stars {
    color: #FFB23E;
    letter-spacing: 2px;
}

.testi-quote {
    color: #C7D2E0;
    font-size: 0.98rem;
    line-height: 1.7;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rd-orange-soft);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 800;
}

.testi-author strong {
    color: var(--color-white);
    font-size: 0.9rem;
    display: block;
}

.testi-author span {
    color: var(--color-muted);
    font-size: 0.8rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proc-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    .proc-timeline::before {
        display: none;
    }

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

    .trust-inner {
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 640px) {

    .why-grid,
    .svc-grid,
    .testi-grid,
    .proc-timeline {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

/* ================================================================
   TYPOGRAPHY REFINEMENT — clean Inter headings + smaller scale
   Site-wide fix for oversized/condensed headings. Loads last.
   ================================================================ */
h1,
h2,
h3,
h4,
h5,
.section-title,
.hero h1,
.page-hero h1,
.article-h1,
.blog-hero h1,
.cta-content h2,
.blog-card h2,
.why-card h3,
.proc-step h3 {
    font-family: var(--font-body);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.12;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
    line-height: 1.16;
    font-weight: 800;
}

h3 {
    font-size: clamp(1.18rem, 1.8vw, 1.4rem);
    line-height: 1.25;
    font-weight: 700;
}

h4 {
    font-size: 1.05rem;
    font-weight: 700;
}

h5 {
    font-size: 0.92rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    font-weight: 800;
}

.hero-sub {
    font-size: 1.06rem;
}

.section-title {
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
}

.section-desc {
    font-size: 1rem;
}

.page-hero {
    padding: 128px 0 68px;
}

.page-hero h1 {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    line-height: 1.12;
}

.cta-content h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.article-h1 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

/* tighter vertical rhythm */
.section {
    padding: 80px 0;
}

/* Logo trimmed (was 68px) */
.nav-logo-img {
    height: 50px;
}

.footer-brand .nav-logo-img {
    height: 44px;
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .nav-logo-img {
        height: 44px;
    }
}

/* ================================================================
   FULL-BLEED HERO — the image IS the background, text over a scrim.
   No compositing, so there are no edges/seams to hide.
   ================================================================ */
.hero {
    display: flex;
    align-items: center;
    min-height: 88vh;
    position: relative;
    overflow: hidden;
    background: #04101f;
    /* fallback behind the image */
}

/* the van + furniture render fills the entire hero */
.hero-van-col {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.hero-van-showcase {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
}

.hero-van-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 60%;
    filter: none;
    animation: none;
    -webkit-mask-image: none;
    mask-image: none;
}

/* dark scrim on the left so the text stays crisp over the image */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, #04101f 0%, rgba(4, 16, 31, 0.92) 26%, rgba(4, 16, 31, 0.55) 46%, rgba(4, 16, 31, 0.12) 64%, rgba(4, 16, 31, 0) 80%),
        linear-gradient(0deg, rgba(4, 16, 31, 0.5) 0%, transparent 28%);
}

/* hero text sits above the image + scrim, aligned to the site container */
.hero>.container {
    position: relative;
    z-index: 2;
    grid-column: auto;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 96px 24px 48px;
}

.hero-content {
    max-width: 560px;
}

/* mobile/tablet: the full-bleed image is hidden (<=1024px), so the hero
   becomes a clean text hero on the dark background */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        display: block;
        background:
            radial-gradient(120% 80% at 80% 0%, #0c1c34 0%, transparent 60%),
            #04101f;
    }

    .hero-van-col {
        display: none;
    }

    .hero::after {
        display: none;
    }

    .hero>.container {
        padding: 124px 24px 64px;
    }

    .hero-content {
        max-width: 100%;
    }
}

/* ================================================================
   UNIFIED PAGE HEROES (over-ons / werkwijze / contact / offerte / blog)
   One symmetric treatment site-wide: same scale, position, background.
   ================================================================ */
.page-hero,
.blog-hero {
    padding: 138px 0 58px;
    position: relative;
    overflow: hidden;
    text-align: left;
    background:
        radial-gradient(100% 130% at 84% -30%, #0e2039 0%, transparent 50%),
        linear-gradient(180deg, #061528 0%, #04101f 100%);
}

.page-hero::before {
    opacity: 0.45;
    /* tone the grid pattern down */
}

.page-hero-content,
.blog-hero .container {
    max-width: 1200px;
}

/* smaller, consistent hero headings + tidy line length/position */
.page-hero h1,
.blog-hero h1 {
    font-size: clamp(1.7rem, 2.7vw, 2.3rem);
    line-height: 1.14;
    margin: 0 0 14px;
    max-width: 720px;
}

.page-hero p,
.blog-hero p {
    font-size: 1.05rem;
    max-width: 560px;
    margin-left: 0;
    margin-right: 0;
}

.page-hero .section-label,
.blog-hero .section-label {
    justify-content: flex-start;
    margin-bottom: 16px;
}

/* stat numbers: no awkward wrapping, tighter scale */
.hero-stats .stat-item {
    padding: 0 22px;
}

.stat-number {
    font-size: clamp(1.55rem, 2.1vw, 1.9rem);
    white-space: nowrap;
}

/* ── Homepage FAQ accordion ──────────────────────────────────────── */
.home-faq {
    max-width: 820px;
    margin: 0 auto;
}

.home-faq details {
    border: 1px solid var(--rd-border-strong);
    border-radius: 14px;
    padding: 2px 20px;
    margin-bottom: 12px;
    background: var(--rd-surface);
    transition: border-color .2s ease;
}

.home-faq details[open] {
    border-color: rgba(230, 92, 0, 0.45);
}

.home-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
    font-weight: 700;
    font-size: 1.02rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.home-faq summary::-webkit-details-marker {
    display: none;
}

.home-faq summary::after {
    content: "+";
    color: var(--color-primary, #E65C00);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    flex: 0 0 auto;
}

.home-faq details[open] summary::after {
    content: "\2013";
}

.home-faq details p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.home-faq details p a {
    color: var(--color-primary, #E65C00);
    font-weight: 600;
}

/* ── Language switcher (for pages using style.css/redesign.css) ───── */
.navbar .lang-switch { position: relative; }

.navbar .lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Inter, system-ui, sans-serif;
    font-weight: 700;
    font-size: .8rem;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 9px;
    padding: 8px 11px;
    cursor: pointer;
    transition: .2s;
}

.navbar .lang-btn svg:first-child { color: #ff6b00; }

.navbar .lang-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .32);
}

.navbar .lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 172px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: rgba(9, 21, 38, .98);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: .2s;
}

.navbar .lang-switch:hover .lang-menu,
.navbar .lang-switch:focus-within .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .lang-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-family: Inter, system-ui, sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

.navbar .lang-menu a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.navbar .lang-menu a.active { color: #ff6b00; }

.mobile-menu .mobile-lang {
    display: flex;
    gap: 20px;
    margin-top: 14px;
}

.mobile-menu .mobile-lang a {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
}

.mobile-menu .mobile-lang a.active { color: #ff6b00; }

/* ── Contact location map ────────────────────────────────────────── */
.coverage-map.has-map {
    padding: 0;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.coverage-map.has-map .map-embed {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
    filter: grayscale(.18) contrast(1.04);
}

.coverage-map.has-map .map-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 20px 24px;
    background: rgba(5, 16, 31, .65);
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.coverage-map.has-map .map-addr {
    display: flex;
    align-items: center;
    gap: 14px;
}

.coverage-map.has-map .map-addr .map-pin {
    font-size: 1.5rem;
    line-height: 1;
}

.coverage-map.has-map .map-addr strong {
    display: block;
    color: #fff;
    font-size: .98rem;
    margin-bottom: 2px;
}

.coverage-map.has-map .map-addr span {
    color: rgba(255, 255, 255, .64);
    font-size: .88rem;
}

.coverage-map.has-map .map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B00, #FF8A33);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 12px 20px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(255, 107, 0, .32);
    transition: transform .2s, box-shadow .2s;
}

.coverage-map.has-map .map-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(255, 107, 0, .46);
}

/* ── Unified page container: header, hero, stats, sections all align ── */
.container {
    max-width: 1400px;
    padding-left: 40px;
    padding-right: 40px;
}

/* tighter gap between the fixed header and the hero content */
.hero {
    min-height: 95vh;
    padding-top: 60px;
}

/* full-bleed hero: keep its text content on the same 1400/40 grid line
   as the logo, nav, stats and footer (was tuned to the old 1200/24). */
.hero>.container {
    margin-left: 0;
    margin-right: 0;
    padding-left: max(40px, calc((100vw - 1400px) / 2 + 40px));
    padding-right: 40px;
}

@media (max-width: 1024px) {
    .container { padding-left: 20px; padding-right: 20px }
    .hero>.container { padding-left: 20px; padding-right: 20px }
}

/* ── Premium navbar redesign (pages using style.css/redesign.css) ── */
.navbar {
    padding: 17px 0;
    background: linear-gradient(180deg, rgba(4, 12, 24, .94) 0%, rgba(4, 12, 24, .55) 72%, transparent 100%);
}

.navbar.scrolled {
    background: linear-gradient(180deg, rgba(5, 16, 31, .98), rgba(5, 16, 31, .93));
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 11px 0;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .46);
}

.navbar .nav-inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar .nav-logo-img {
    height: 80px;
}

.navbar .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.navbar .nav-links a {
    font-size: .82rem;
    letter-spacing: .08em;
    padding: 6px 0;
    white-space: nowrap;
}

.navbar .nav-links a::after {
    background: #ff6b00;
    bottom: -3px;
    transform-origin: center;
}

.navbar .nav-links a.active {
    color: #fff;
}

.navbar .nav-links a.active::after,
.navbar .nav-links a.current-menu-item::after {
    transform: scaleX(1);
}

.navbar .nav-cta {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "lang cta"
        "phone cta";
    align-items: center;
    justify-self: end;
    column-gap: 24px;
    row-gap: 4px;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.navbar .nav-cta .lang-switch {
    grid-area: lang;
    justify-self: end;
}

.navbar .nav-cta .nav-phone {
    grid-area: phone;
    justify-self: end;
}

.navbar .nav-cta>.btn,
.navbar .nav-cta>.btn-primary {
    grid-area: cta;
    align-self: center;
}

.navbar .nav-phone {
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    white-space: nowrap;
}

.navbar .nav-cta>.btn-primary {
    border-radius: 14px;
    padding: 13px 26px;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(255, 107, 0, .34), inset 0 0 0 1px rgba(255, 138, 51, .25);
}

.navbar .nav-cta>.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 107, 0, .5), inset 0 0 0 1px rgba(255, 138, 51, .4);
}

@media (max-width: 1500px) {
    .navbar .nav-links {
        position: static;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .navbar .nav-inner {
        display: flex;
        justify-content: space-between;
        width: calc(100% - 40px);
        gap: 16px;
    }

    .navbar .nav-logo-img {
        height: 52px;
    }

    .navbar .nav-links {
        display: none;
    }

    .navbar .nav-cta {
        display: none;
    }
}
