:root {
    --blue: #13a3e3;
    --red: #c30c29;
    --black: #121212;
    --white: #ffffff;
    --paper: #f4f7f9;
    --muted: #65717a;
    --line: rgba(18, 18, 18, 0.1);
    --shadow: 0 18px 50px rgba(18, 18, 18, 0.12);
    --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 40px, 1180px); margin-inline: auto; }

/* ── Header ── */
.site-header {
    position: sticky; top: 0; z-index: 40;
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 76px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand {
    display: inline-flex; align-items: center; gap: 12px;
    font-weight: 900; color: var(--black);
}

.brand-logo { height: 44px; width: auto; }

.brand span:last-child {
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 1.05rem;
}

.nav-links {
    display: flex; align-items: center; gap: 28px;
    font-size: 0.95rem; font-weight: 800; color: #2a3035;
}
.nav-links > a:hover, .nav-links > a.is-active,
.nav-item-dropdown > a:hover, .nav-item-dropdown > a.is-active { color: var(--blue); }

/* ── Nav Dropdown Submenus ── */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a {
    display: inline-flex; align-items: center; gap: 4px;
}
.nav-chevron { width: 14px; height: 14px; transition: transform 200ms ease; }
.nav-submenu {
    display: none; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    min-width: 220px; background: var(--white); border: 1px solid var(--line);
    border-radius: 12px; box-shadow: 0 16px 48px rgba(18,18,18,0.12);
    padding: 8px; z-index: 50;
}
.nav-submenu::before {
    content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
    width: 14px; height: 14px; background: var(--white);
    border-top: 1px solid var(--line); border-left: 1px solid var(--line);
    transform: translateX(-50%) rotate(45deg);
}
.nav-submenu::after {
    content: ''; position: absolute; top: -14px; left: 0; width: 100%; height: 14px;
}
.nav-item-dropdown:hover .nav-submenu { display: block; }
.nav-item-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-submenu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: 0.88rem; font-weight: 700;
    color: var(--black); border-radius: 8px; transition: background 150ms ease;
}
.nav-submenu a:hover { background: var(--paper); color: var(--blue); }
.nav-sub-icon { width: 18px; height: 18px; flex: 0 0 18px; color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 900; font-size: 0.92rem; white-space: nowrap;
}
.phone-link svg { color: var(--blue); flex: 0 0 16px; }

/* ── Footer Contact Icons ── */
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 10px; font-size: 0.92rem;
}
.footer-contact-list svg { flex: 0 0 16px; margin-top: 2px; color: var(--white); }

/* ── Certifications Section Enhanced ── */
.cert-showcase {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-top: 36px;
}
.cert-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 16px;
    padding: 28px 20px; text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(18,18,18,0.12);
    border-color: var(--blue);
}
.cert-badge {
    width: 64px; height: 64px; border-radius: 50%;
    display: grid; place-items: center; margin: 0 auto 16px;
}
.cert-badge svg { width: 28px; height: 28px; }
.cert-badge-blue { background: rgba(19,163,227,0.1); color: var(--blue); }
.cert-badge-red { background: rgba(195,12,41,0.1); color: var(--red); }
.cert-name { font-family: "Bricolage Grotesque", system-ui, sans-serif; font-weight: 900; font-size: 1.2rem; margin-bottom: 6px; }
.cert-desc { color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

/* ── Mobile menu ── */
.mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; padding: 0;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.mobile-toggle span {
    display: block; width: 22px; height: 2px; background: var(--black);
    border-radius: 2px; transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-nav {
    display: none; position: fixed; inset: 0; top: 76px; z-index: 39;
    background: var(--white); padding: 32px 24px;
    flex-direction: column; gap: 0;
    border-top: 1px solid var(--line);
    overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
    display: block; padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem; font-weight: 800; color: var(--black);
}
.mobile-nav a:hover, .mobile-nav a.is-active { color: var(--blue); }
.mobile-nav .btn { margin-top: 20px; text-align: center; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 48px; padding: 0 22px; border-radius: 12px;
    border: 1px solid transparent; font-weight: 900; cursor: pointer;
    font-family: inherit; font-size: inherit;
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #0b8eca; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a60a23; }
.btn-outline { border-color: rgba(255,255,255,0.28); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline:hover { background: rgba(255,255,255,0.16); }
.btn-white { border-color: var(--white); color: var(--red); background: var(--white); }
.btn-white:hover { background: #f2f8fb; color: #a60a23; }
.btn-dark-outline { border-color: var(--line); color: var(--black); background: var(--white); }
.btn-dark-outline:hover { border-color: var(--blue); }

/* ── Hero (homepage) ── */
.hero {
    position: relative; min-height: calc(86dvh - 76px);
    color: var(--white); display: grid; align-items: start;
    isolation: isolate; overflow: hidden; background: var(--black);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(18,18,18,0.62);
}

.hero-grid {
    display: grid; grid-template-columns: minmax(0,0.9fr) minmax(320px,0.62fr);
    gap: 48px; align-items: center; padding: 42px 0 46px;
}

.eyebrow {
    width: fit-content; display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 14px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92); font-size: 0.82rem; font-weight: 900;
}
.eyebrow::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red);
}

h1, h2, h3 {
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    line-height: 1.06; letter-spacing: 0; margin: 0;
}
h1 { max-width: 900px; margin-top: 18px; font-size: clamp(1.85rem, 3vw, 3.1rem); font-weight: 900; }
h2 { font-size: clamp(1.35rem, 2vw, 2.1rem); font-weight: 900; }
h3 { font-size: 1.15rem; font-weight: 900; }

.accent-blue { color: var(--blue); }
.accent-red { color: var(--red); }

.hero-copy { max-width: 640px; margin-top: 18px; font-size: clamp(0.92rem, 1.05vw, 1.05rem); color: rgba(255,255,255,0.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

.hero-panel {
    align-self: end; background: var(--white); color: var(--black);
    border-radius: 18px; padding: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}
.hero-panel img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 12px; }

.panel-title { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.panel-title strong { font-size: 1.1rem; }

.badge {
    border-radius: 999px; padding: 7px 10px;
    background: rgba(19,163,227,0.12); color: var(--blue);
    font-size: 0.72rem; font-weight: 900; text-transform: uppercase;
}

.panel-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 0.92rem; }
.panel-list li { display: flex; gap: 10px; align-items: center; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); flex: 0 0 auto; }

/* ── Stats ── */
.stats-wrap { position: relative; z-index: 4; margin-top: -58px; }
.stats {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
    overflow: hidden; border-radius: 18px; border: 1px solid var(--line);
    background: var(--line); box-shadow: 0 18px 50px rgba(18,18,18,0.12);
}
.stat { background: var(--white); padding: 30px; text-align: center; }
.stat strong {
    display: block; font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: clamp(2rem,4vw,3.4rem); line-height: 1; color: var(--blue);
}
.stat:nth-child(even) strong { color: var(--red); }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-weight: 700; font-size: 0.9rem; }

/* ── Sections ── */
section, .section { padding: 80px 0; }
.section-muted { background: var(--paper); }

.section-head { max-width: 780px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }

.section-kicker, .kicker {
    display: inline-flex; margin-bottom: 14px; color: var(--blue);
    font-size: 0.82rem; font-weight: 900; letter-spacing: 0.28em; text-transform: uppercase;
}

.lead { max-width: 760px; margin: 18px 0 0; color: rgba(255,255,255,0.82); font-size: clamp(0.92rem, 1.05vw, 1.05rem); }
.section-head p, .copy { color: var(--muted); font-size: 0.95rem; }

/* ── Fleet ── */
.fleet { background: var(--paper); }
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.vehicle-card, .card {
    border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--white); overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.vehicle-card:hover, .card:hover {
    transform: translateY(-4px);
    border-color: rgba(19,163,227,0.28);
    box-shadow: 0 20px 45px rgba(18,18,18,0.1);
}
.vehicle-card img, .card img { width: 100%; height: 220px; object-fit: cover; }
.card img { height: auto; aspect-ratio: 16/10; }
.card-body { padding: 22px; }
.card-body p { margin: 10px 0 18px; color: var(--muted); }

.chip {
    display: inline-flex; border-radius: 999px; padding: 8px 11px;
    background: var(--paper); color: var(--black); font-size: 0.78rem; font-weight: 900;
}

/* ── Security / dark sections ── */
.security { background: var(--black); color: var(--white); }
.security h2 { color: var(--white); }
.security .lead { color: rgba(255,255,255,0.72); }

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

.service-card {
    background: #191919; border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 28px; overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(18,18,18,0.1); }
.service-card h3 { color: var(--white); }
.service-card p, .service-card li { color: rgba(255,255,255,0.68); }

.service-icon {
    width: 50px; height: 50px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(19,163,227,0.14); color: var(--blue); margin-bottom: 20px;
    font-weight: 900;
}
.service-card.featured { border-color: rgba(195,12,41,0.38); }
.service-card.featured .service-icon { background: rgba(195,12,41,0.14); color: var(--red); }

/* ── Grids ── */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

/* ── Cards (offers, contacts) ── */
.offer-card, .contact-card, .form-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 14px; box-shadow: var(--shadow); padding: 28px;
}
.offer-card p, .contact-card p { color: var(--muted); }
.offer-card.featured {
    border-color: rgba(19,163,227,0.42);
    box-shadow: 0 24px 70px rgba(19,163,227,0.18);
}

.service-number, .step {
    width: 46px; height: 46px; display: grid; place-items: center;
    margin-bottom: 20px; border-radius: 12px;
    background: var(--black); color: var(--white); font-weight: 900;
}
.featured .service-number, .step.red { background: var(--red); }

/* ── Check list ── */
.check-list {
    display: grid; gap: 11px; margin: 22px 0 0; padding: 0;
    list-style: none; color: #2a3035; font-size: 0.92rem;
}
.check-list li {
    display: grid; grid-template-columns: 10px 1fr; gap: 12px; align-items: start;
}
.check-list li::before {
    content: ""; width: 8px; height: 8px; margin-top: 8px;
    border-radius: 50%; background: var(--red); flex: 0 0 auto;
}

/* ── Split ── */
.split {
    display: grid; grid-template-columns: 0.9fr 1.1fr;
    gap: 54px; align-items: center;
}
.split-media {
    border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
    background: var(--white); padding: 12px;
    box-shadow: 0 24px 60px rgba(18,18,18,0.1);
}
.split-media img { border-radius: 12px; width: 100%; height: 540px; object-fit: cover; }

.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.feature {
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 18px; background: var(--white);
}
.feature strong { display: block; font-weight: 900; }
.feature span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.9rem; }

/* ── Process ── */
.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.process-card {
    border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--white); padding: 24px; overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.process-card:hover { transform: translateY(-4px); border-color: rgba(19,163,227,0.28); box-shadow: 0 20px 45px rgba(18,18,18,0.1); }
.process-card .step { width: 52px; height: 52px; }
.process-card:nth-child(even) .step { background: var(--red); }

/* ── Fact strip ── */
.fact-strip {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
    overflow: hidden; border-radius: 16px; border: 1px solid var(--line); background: var(--line);
}
.fact { padding: 28px; background: var(--white); text-align: center; }
.fact strong {
    display: block; font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 2.6rem; line-height: 1; color: var(--blue);
}
.fact:nth-child(even) strong { color: var(--red); }
.fact span { display: block; margin-top: 9px; color: var(--muted); font-weight: 800; }

/* ── CTA ── */
.cta {
    background: var(--red);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    z-index: 1;
}
.cta .container { position: relative; z-index: 2; }
.cta h2 { color: var(--white); font-size: clamp(1.35rem, 2.1vw, 1.95rem); }
.cta p { color: rgba(255,255,255,0.9); max-width: 680px; margin: 18px auto 0; font-size: 0.98rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ── Page hero (sub-pages) ── */
.page-hero {
    position: relative;
    color: var(--white);
    isolation: isolate;
    overflow: hidden;
    background: #080b10;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: var(--page-image);
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.06);
    opacity: 0.65;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 11, 16, 0.8) 0%, rgba(8, 11, 16, 0.45) 100%),
                linear-gradient(90deg, rgba(19, 163, 227, 0.12) 0%, rgba(195, 12, 41, 0.12) 100%);
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
    z-index: 5;
}
.page-hero-inner {
    min-height: 330px; display: grid; align-content: center; padding: 64px 0;
}
.page-hero h1 { font-size: clamp(1.65rem, 2.5vw, 2.4rem); }

/* ── Contact / Forms ── */
.contact-grid {
    display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
    gap: 28px; align-items: start;
}
.contact-card ul {
    display: grid; gap: 16px; margin: 24px 0 0; padding: 0; list-style: none; font-weight: 800;
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 0.86rem; font-weight: 900; }

input, select, textarea {
    width: 100%; min-height: 48px; border: 1px solid var(--line);
    border-radius: 10px; padding: 12px 14px; font: inherit;
    color: var(--black); background: var(--white);
    transition: border-color 180ms ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); }
textarea { min-height: 132px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ── Footer ── */
.footer {
    background: #0a4a6e; color: var(--white);
    padding: 64px 0 26px; border-top: 4px solid var(--red);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 36px; }
.footer p, .footer a, .footer li { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer .brand { color: var(--white); }
.footer h4 {
    margin: 0 0 16px; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.9);
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-bottom {
    margin-top: 42px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; gap: 18px;
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* ── Flash messages ── */
.alert {
    padding: 14px 20px; border-radius: 10px; margin-bottom: 20px;
    font-weight: 700; font-size: 0.92rem;
}
.alert-success { background: rgba(19,163,227,0.12); color: var(--blue); border: 1px solid rgba(19,163,227,0.3); }
.alert-error { background: rgba(195,12,41,0.1); color: var(--red); border: 1px solid rgba(195,12,41,0.25); }

/* ── Language Dropdown ── */
.lang-flag { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; vertical-align: middle; }
.lang-dropdown { position: relative; }
.lang-dropdown-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 8px; font-size: 0.82rem; font-weight: 900;
    color: var(--black); background: var(--paper); border: 1px solid var(--line);
    cursor: pointer; transition: border-color 150ms ease;
    font-family: inherit;
}
.lang-dropdown-toggle:hover { border-color: var(--blue); }
.lang-chevron { width: 14px; height: 14px; transition: transform 200ms ease; }
.lang-dropdown.is-open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    min-width: 150px; background: var(--white); border: 1px solid var(--line);
    border-radius: 10px; box-shadow: 0 12px 36px rgba(18,18,18,0.14);
    overflow: hidden; z-index: 50;
}
.lang-dropdown.is-open .lang-dropdown-menu { display: block; }
.lang-dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: 0.88rem; font-weight: 700;
    color: var(--black); transition: background 150ms ease;
}
.lang-dropdown-menu a:hover { background: var(--paper); }
.lang-dropdown-menu a.is-active { color: var(--blue); background: rgba(19,163,227,0.06); }

/* ── Breadcrumb ── */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 22px;
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.85);
    width: fit-content;
}
.breadcrumb a {
    color: inherit;
    transition: color 150ms ease;
}
.breadcrumb a:hover {
    color: var(--blue);
}
.breadcrumb i {
    font-size: 0.76rem;
    margin-top: 1px;
}

/* ── Detail Page Layout ── */
.detail-grid {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 36px; align-items: start;
}
.detail-main { min-width: 0; }
.detail-sidebar { position: sticky; top: 100px; }

.detail-image {
    width: 100%; border-radius: 16px; overflow: hidden;
    margin-bottom: 36px; box-shadow: var(--shadow);
}
.detail-image img { width: 100%; height: 420px; object-fit: cover; }

.sidebar-card {
    border: 1px solid var(--line); border-radius: 14px;
    padding: 24px; background: var(--white); box-shadow: var(--shadow);
    margin-bottom: 18px;
}
.sidebar-card-cta {
    background: var(--blue); color: var(--white); border: none;
}
.sidebar-card-cta p { color: rgba(255,255,255,0.82); margin: 10px 0 18px; font-size: 0.92rem; }
.sidebar-card-dark {
    background: var(--black); color: var(--white); border-color: rgba(255,255,255,0.1);
}
.sidebar-card-dark p { color: rgba(255,255,255,0.68); }

.sidebar-contact { display: grid; gap: 12px; margin-top: 14px; }
.sidebar-contact a {
    display: flex; align-items: center; gap: 10px;
    color: var(--muted); font-weight: 700; transition: color 150ms ease;
}
.sidebar-contact a:hover { color: var(--blue); }
.sidebar-contact a i {
    color: var(--blue);
    width: 16px;
    font-size: 14px;
    text-align: center;
}

/* ── Spec Grid ── */
.spec-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 14px;
    margin-bottom: 36px;
}
.spec {
    border: 1px solid var(--line); border-radius: 12px;
    padding: 16px; text-align: center; background: var(--white);
}
.spec-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 800; }
.spec-value { font-size: 1.1rem; font-weight: 900; margin-top: 4px; color: var(--black); }

/* ── Feature Grid ── */
.feature-grid-detail {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 10px;
    margin: 24px 0 36px;
}
.feature-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; background: var(--paper); border-radius: 10px;
    font-size: 0.92rem; font-weight: 700;
}
.feature-item::before {
    content: "✓"; color: var(--blue); font-weight: 900; flex: 0 0 auto;
}

/* ── Badge colors ── */
.badge-vip { background: rgba(195,12,41,0.12); color: var(--red); }
.badge-premium { background: rgba(19,163,227,0.12); color: var(--blue); }
.badge-terrain { background: rgba(18,18,18,0.08); color: var(--black); }
.badge-prestige { background: linear-gradient(135deg, rgba(19,163,227,0.12), rgba(195,12,41,0.12)); color: var(--black); }

/* ── Certifications ── */
.cert-grid {
    display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
    justify-content: center; margin-top: 28px;
}
.cert-item {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 12px; padding: 12px; box-shadow: var(--shadow);
    transition: transform 200ms ease, box-shadow 200ms ease;
}
.cert-item:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(18,18,18,0.15); }
.cert-item img { height: 80px; width: auto; }

/* ── Mission/Vision Cards ── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 14px; padding: 32px;
}
.mv-icon {
    width: 56px; height: 56px; border-radius: 12px;
    display: grid; place-items: center; margin-bottom: 18px; font-size: 1.4rem;
}
.mv-icon-blue { background: rgba(19,163,227,0.12); color: var(--blue); }
.mv-icon-red { background: rgba(195,12,41,0.12); color: var(--red); }

/* ── Value Cards ── */
.value-card {
    text-align: center; padding: 28px;
    background: var(--white); border: 1px solid var(--line);
    border-radius: 14px; transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.value-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(18,18,18,0.08);
}
.value-icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: grid; place-items: center; margin: 0 auto 16px;
    font-size: 1.6rem;
}

/* ── Prose-like content ── */
.prose { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.prose p { margin: 0 0 18px; }
.prose h2 { color: var(--black); font-size: clamp(1.35rem,2vw,1.75rem) !important; margin: 28px 0 12px; }
.prose h3 { color: var(--black); margin: 28px 0 12px; font-size: 1.2rem; }

/* ── Compare table ── */
.compare-strip {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
    margin-top: 28px;
}
.compare-item {
    border: 1px solid var(--line); border-radius: 14px;
    padding: 22px; text-align: center; background: var(--white);
    transition: border-color 200ms ease, transform 200ms ease;
}
.compare-item:hover { border-color: var(--blue); transform: translateY(-2px); }
.compare-item.is-current { border-color: var(--blue); box-shadow: 0 12px 30px rgba(19,163,227,0.15); }
.compare-item h4 { margin: 0 0 8px; font-family: "Bricolage Grotesque", system-ui, sans-serif; font-weight: 900; }
.compare-item p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ── Filter bar ── */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.filter-btn {
    padding: 10px 18px; border-radius: 999px; font-weight: 800; font-size: 0.85rem;
    border: 1px solid var(--line); background: var(--white); color: var(--muted);
    cursor: pointer; transition: all 150ms ease; text-decoration: none;
}
.filter-btn:hover, .filter-btn.is-active {
    background: var(--blue); color: var(--white); border-color: var(--blue);
}

/* ── Comparison Table ── */
.compare-table {
    width: 100%; border-collapse: collapse; background: var(--white);
    border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(17,17,17,0.06);
}
.compare-table-wrap {
    width: 100%;
    overflow-x: auto;
}
.compare-table thead { background: var(--paper); }
.compare-table th {
    padding: 16px 20px; font-weight: 900; font-size: 0.92rem;
    text-align: left; border-bottom: 2px solid var(--line);
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
}
.compare-table td {
    padding: 14px 20px; font-size: 0.9rem; border-bottom: 1px solid var(--line);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(19,163,227,0.03); }
.text-center { text-align: center !important; }
.section .btn-outline,
.home-section .btn-outline,
.contact-card .btn-outline,
.form-card .btn-outline {
    border-color: var(--line);
    color: var(--black);
    background: var(--white);
}

/* ── Responsive ── */

/* --- Tablet (≤980px) --- */
@media (max-width: 980px) {
    .nav-links, .phone-link, .lang-dropdown { display: none; }
    .mobile-toggle { display: flex; }

    .hero-grid, .split { grid-template-columns: 1fr; }
    .hero-panel { align-self: auto; }

    .stats, .process-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .fleet-grid, .service-grid, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
    .grid-2, .contact-grid { grid-template-columns: 1fr; }
    .cert-showcase { grid-template-columns: 1fr 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .mv-grid { grid-template-columns: 1fr; }
    .compare-strip { grid-template-columns: 1fr 1fr; }
    .fact-strip { grid-template-columns: repeat(2, 1fr); }

    /* Hero split & subpage images */
    .hero-split-grid img,
    .split-media img,
    .detail-image img { height: auto; max-height: 380px; }

    /* Ensure inline images don't overflow */
    .sidebar-card img,
    .sidebar-card > div > img { height: auto !important; max-height: 340px; }

    /* Footer bottom */
    .footer-bottom { flex-wrap: wrap; }
}

/* --- Small tablet (≤760px) --- */
@media (max-width: 760px) {
    .fleet-grid, .service-grid, .grid-3 { grid-template-columns: 1fr; }
    .compare-strip { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Mobile (≤640px) --- */
@media (max-width: 640px) {
    .container {
        width: 100%;
        max-width: 1180px;
        padding-inline: 14px;
    }
    .nav { min-height: 68px; }
    .nav-actions .btn { display: none; }
    h1 { font-size: clamp(1.95rem,9vw,2.75rem); }
    h1, h2, h3, p, a, .btn { overflow-wrap: anywhere; }
    .grid-12 > *, .grid-2 > *, .grid-3 > *, .grid-4 > *,
    .fleet-grid > *, .service-grid > *, .hero-split-grid > *,
    .visual-story-grid > * {
        min-width: 0;
        max-width: 100%;
    }
    .section-kicker { letter-spacing: 0.2em; }
    .btn {
        min-width: 0;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        padding-inline: 16px;
    }
    section, .section { padding: 64px 0; }
    .hero-grid { padding: 44px 0 52px; }

    .stats, .fleet-grid, .service-grid, .feature-list,
    .process-grid, .grid-3, .grid-4,
    .contact-grid, .fact-strip, .form-grid,
    .spec-grid, .feature-grid-detail, .compare-strip,
    .cert-showcase, .grid-2 { grid-template-columns: 1fr; }

    .split-media img { height: 300px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .mobile-nav { top: 68px; }
    .detail-image img { height: 260px; }

    /* Fix inline images throughout pages */
    img[style*="height: 420px"],
    img[style*="height: 380px"],
    img[style*="height: 360px"],
    img[style*="height: 340px"],
    img[style*="height: 320px"] { height: 240px !important; }

    div[style*="height: 220px"] { height: auto !important; min-height: 180px; }
    div[style*="height: 200px"] { height: auto !important; min-height: 160px; }

    /* Buttons stack */
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 320px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    /* Section paddings tighter */
    .page-hero-split-section { padding: 72px 0 48px; }

    /* Proof grid */
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-item { min-height: 90px; padding: 18px 12px; }

    /* Vehicle card image heights */
    .vehicle-image,
    .offer-media { height: 200px; }

    /* Mission hero panel */
    .mission-reservation { padding: 16px; }
    .mission-reservation-head { flex-direction: column; gap: 12px; }

    /* Spec grid mobile */
    .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* Feature grid detail */
    .feature-grid-detail { grid-template-columns: 1fr; }

    /* Method media */
    .method-media img { height: 300px; }

    /* Sidebar cards vertical gap */
    .col-span-4[style*="flex-direction: column"],
    .col-span-5[style*="flex-direction: column"] { gap: 16px; }
}

/* ── Mobility homepage system ── */
.mission-hero {
    position: relative;
    min-height: calc(90dvh - 76px);
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    background: #080b10;
}

.mission-hero-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.mission-hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-blur {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px);
    transform: scale(1.06);
    opacity: 0.72;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 11, 16, 0.76) 0%, rgba(8, 11, 16, 0.56) 50%, rgba(8, 11, 16, 0.36) 100%);
    z-index: 1;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: var(--white);
}

.mission-hero-grid {
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 52px;
    align-items: center;
    padding: 62px 0 76px;
}

.mission-hero-copy { max-width: 830px; }
.mission-title {
    max-width: 800px;
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    line-height: 1.1;
    color: var(--white);
}

.mission-hero-copy p {
    max-width: 690px;
    margin: 24px 0 0;
    color: rgba(255,255,255,0.82);
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    line-height: 1.7;
}

.mission-reservation {
    border-radius: 12px;
    padding: 22px;
    color: var(--black);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.mission-reservation-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.mission-reservation-head strong {
    display: block;
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 1.32rem;
    line-height: 1.05;
}

.mission-reservation-head span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.mission-reservation-head svg {
    width: 38px;
    height: 38px;
    color: var(--blue);
    flex: 0 0 auto;
}

.mission-form {
    display: grid;
    gap: 13px;
    margin-top: 18px;
}

.mission-field {
    display: grid;
    gap: 7px;
}

.mission-field span {
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7b8790;
}

.mission-field input,
.mission-field select {
    min-height: 46px;
    border-radius: 8px;
    background: #f7fafc;
    font-weight: 800;
}

.mission-submit {
    width: 100%;
    margin-top: 2px;
}

.mission-mini-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.mission-mini-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 0 10px;
    background: rgba(19,163,227,0.1);
    color: #0b5e83;
    font-size: 0.74rem;
    font-weight: 900;
}

.proof-strip {
    padding: 0 0 30px;
    background: var(--paper);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    transform: translateY(-36px);
    margin-bottom: -36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
    box-shadow: 0 24px 70px rgba(18,18,18,0.14);
}

.proof-item {
    min-height: 126px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 24px 16px;
    text-align: center;
    background: var(--white);
}

.proof-item strong {
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: clamp(2rem, 3.7vw, 3.2rem);
    line-height: 1;
    color: var(--blue);
}

.proof-item:nth-child(even) strong { color: var(--red); }
.proof-item span {
    max-width: 190px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.35;
}

.about-proof {
    padding: 66px 0;
    background: var(--white);
}
.about-proof .proof-grid {
    transform: none;
    margin-bottom: 0;
}

.home-section { padding: 88px 0; }

.home-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
    align-items: end;
    gap: 36px;
    margin-bottom: 42px;
}

.home-section-head h2 { max-width: 760px; }
.home-section-head > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.home-section-head-dark h2,
.home-section-head-dark > p { color: var(--white); }
.home-section-head-dark > p { color: rgba(255,255,255,0.76); }

.mobility-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mobility-vehicle-card {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: inherit;
    box-shadow: 0 16px 42px rgba(18,18,18,0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mobility-vehicle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19,163,227,0.32);
    box-shadow: 0 24px 62px rgba(18,18,18,0.12);
}

.vehicle-image {
    height: 230px;
    overflow: hidden;
    background: #e8edf1;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.mobility-vehicle-card:hover .vehicle-image img { transform: scale(1.045); }

.vehicle-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.vehicle-content span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(19,163,227,0.1);
    color: #0b5e83;
    font-size: 0.72rem;
    font-weight: 900;
}

.vehicle-content h3 { color: var(--black); }
.vehicle-content p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.offer-showcase {
    padding: 92px 0;
    background: linear-gradient(180deg, #080b10 0%, #121922 100%);
    color: var(--white);
}

.offer-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mission-offer-card {
    display: flex;
    min-height: 560px;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    color: var(--black);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 28px 80px rgba(0,0,0,0.24);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.mission-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 95px rgba(0,0,0,0.3);
}

.offer-media {
    height: 200px;
    overflow: hidden;
    background: #151b22;
}

.offer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms ease;
}

.mission-offer-card:hover .offer-media img { transform: scale(1.05); }

.offer-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.offer-number {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: rgba(19,163,227,0.12);
    color: var(--blue);
    font-weight: 900;
}

.mission-offer-card-red .offer-number {
    background: rgba(195,12,41,0.12);
    color: var(--red);
}

.offer-content p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.offer-content ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #39434c;
    font-size: 0.9rem;
    font-weight: 800;
}

.offer-content li {
    display: grid;
    grid-template-columns: 8px 1fr;
    gap: 11px;
    align-items: start;
}

.offer-content li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.mission-offer-card-red li::before { background: var(--red); }
.offer-content strong {
    margin-top: auto;
    padding: 11px 20px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--black);
    font-weight: 900;
    text-align: center;
    font-size: 0.86rem;
    transition: all 180ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-offer-card:hover .offer-content strong {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.mission-offer-card-red:hover .offer-content strong {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.mobility-method {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: center;
}

.method-media {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(18,18,18,0.12);
}

.method-media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.section-copy {
    max-width: 680px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.method-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0;
}

.method-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.method-step span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    font-weight: 900;
}

.method-step:nth-child(even) span { background: var(--red); }
.method-step h3 {
    font-size: 1.08rem;
    color: var(--black);
}
.method-step p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.certification-band {
    padding: 88px 0;
    background: #f4f7f9;
}

.certification-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.certification-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 118px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 36px rgba(18,18,18,0.05);
}

.certification-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex: 0 0 auto;
}

.certification-card h3 {
    font-size: 1.05rem;
    color: var(--black);
}

.certification-card p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .mission-hero-grid,
    .mobility-method,
    .certification-layout {
        grid-template-columns: 1fr;
    }

    .mission-reservation {
        max-width: 560px;
    }

    .home-section-head {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 900px) {
    .proof-grid,
    .mobility-fleet-grid,
    .offer-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .method-steps,
    .certification-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mission-hero {
        min-height: auto;
    }

    .mission-hero-grid {
        gap: 32px;
        padding: 48px 0 70px;
    }

    .mission-title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .mission-reservation {
        padding: 16px;
    }

    .proof-grid,
    .mobility-fleet-grid,
    .offer-showcase-grid {
        grid-template-columns: 1fr;
    }

    .proof-item {
        min-height: 90px;
    }

    .home-section,
    .offer-showcase,
    .certification-band {
        padding: 64px 0;
    }

    .vehicle-image,
    .offer-media {
        height: 200px;
    }

    .mission-offer-card {
        min-height: auto;
    }

    .method-media img {
        height: 280px;
    }

    .certification-card {
        align-items: flex-start;
    }

    .mobility-vehicle-card {
        min-height: auto;
    }
}

/* ── Properties-inspired Mobility refresh ── */
:root {
    --paper: #f2f8fb;
    --muted: #60717b;
    --line: rgba(16, 73, 101, 0.12);
    --shadow: 0 18px 54px rgba(16, 73, 101, 0.1);
}

h1 { font-size: clamp(1.85rem, 3vw, 3.1rem); }
h2 { font-size: clamp(1.35rem, 2vw, 2.1rem); }
h3 { font-size: 1.15rem; }

.section-muted { background: #f2f8fb; }
.home-section,
.offer-showcase,
.certification-band { padding: 82px 0; }

/* The homepage hero intentionally keeps its current mission-first composition. */
.mission-title {
    max-width: 690px;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.mission-reservation {
    border-radius: 12px;
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.28);
}

.proof-grid {
    border: 8px solid var(--white);
    background: var(--white);
    box-shadow: 0 24px 68px rgba(16, 73, 101, 0.12);
}

.proof-item { background: #fff; }

.home-section-head { margin-bottom: 36px; }
.home-section-head h2 { max-width: 690px; }

.offer-showcase {
    color: var(--black);
    background: #edf8fd;
}

.offer-showcase .home-section-head-dark h2 { color: var(--black); }
.offer-showcase .home-section-head-dark > p { color: var(--muted); }

.mobility-vehicle-card,
.mission-offer-card,
.vehicle-card,
.card,
.mv-card,
.value-card,
.process-card,
.certification-card,
.contact-card,
.form-card,
.sidebar-card {
    border: 10px solid var(--white);
    border-radius: 32px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.mobility-vehicle-card:hover,
.mission-offer-card:hover,
.vehicle-card:hover,
.card:hover,
.mv-card:hover,
.value-card:hover,
.process-card:hover,
.certification-card:hover,
.contact-card:hover,
.form-card:hover,
.sidebar-card:hover {
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 32px 85px rgba(16, 73, 101, 0.18);
}

.vehicle-image,
.offer-media,
.vehicle-card > img,
.card > img,
.method-media img,
.split-media img,
.detail-image img {
    border-radius: 23px;
    background: #e8f3f8;
}

.vehicle-content,
.offer-content,
.card-body { position: relative; }

.vehicle-content::before,
.offer-content::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin-bottom: 18px;
    border-radius: 4px;
    background: var(--blue);
}

.mission-offer-card-red .offer-content::before { background: var(--red); }

.vehicle-content span {
    margin-bottom: 12px;
    border-radius: 4px;
    background: rgba(19, 163, 227, 0.1);
}

.mission-offer-card {
    min-height: 540px;
    border-color: var(--white);
}

.offer-content { padding: 24px; }
.offer-number {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.method-step,
.offer-card,
.spec,
.feature-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(16, 73, 101, 0.05);
}

.service-card {
    border: 10px solid var(--white);
    border-radius: 32px;
    color: var(--black);
    background: var(--white);
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.service-card h3 { color: var(--black); }
.service-card p,
.service-card li { color: var(--muted); }

.service-number,
.step,
.method-step span {
    background: var(--blue);
    color: var(--white);
}

.process-card:nth-child(even) .step,
.method-step:nth-child(even) span,
.step.red { background: var(--red); }

.method-media,
.split-media,
.detail-image {
    border: 10px solid var(--white);
    border-radius: 32px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.method-media img,
.split-media img,
.detail-image img { border-radius: 23px; }

.certification-band { background: #f2f8fb; }
.certification-card {
    border: 10px solid var(--white);
    border-radius: 32px;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}



.page-hero-inner {
    min-height: 300px;
    padding: 50px 0;
}

.page-hero h1 {
    max-width: 850px;
    font-size: clamp(2rem, 3.25vw, 3.25rem);
}

.page-hero .eyebrow {
    padding: 0;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-hero .eyebrow::before { border-radius: 2px; }

.sidebar-card-dark {
    border-color: rgba(19, 163, 227, 0.28);
    color: var(--white);
    background: #087fb5;
}

.sidebar-card-dark p { color: rgba(255, 255, 255, 0.82); }

.secondary-hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.secondary-hero-centered .breadcrumb { justify-content: center; }
.secondary-hero-centered .lead {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.offer-detail-hero .page-hero-inner { min-height: 330px; }

.offer-detail-page { background: #fff; }
.offer-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 46px;
    align-items: center;
    margin-bottom: 62px;
}

.offer-detail-heading {
    margin-bottom: 30px;
    text-align: center;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    gap: 14px;
    margin-bottom: 62px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    border: 1px solid rgba(16, 73, 101, 0.1);
    border-radius: 8px;
    background: #f7fbfd;
}

.included-item svg,
.included-item i {
    width: 22px;
    height: 22px;
    font-size: 18px;
    color: var(--blue);
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.included-item span {
    font-size: 0.9rem;
    font-weight: 700;
}

.offer-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.offer-compare-card {
    min-height: 100%;
    padding: 25px;
    border: 1px solid rgba(16, 73, 101, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(16, 73, 101, 0.07);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.offer-compare-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 163, 227, 0.34);
    box-shadow: 0 22px 58px rgba(16, 73, 101, 0.12);
}

.offer-compare-card.is-current {
    position: relative;
    border: 2px solid var(--blue);
}

.offer-compare-current {
    position: absolute;
    top: -12px;
    right: 18px;
    padding: 4px 11px;
    border-radius: 4px;
    color: #fff;
    background: var(--blue);
    font-size: 0.72rem;
    font-weight: 800;
}


.category-advantages .service-card h3 {
    color: var(--blue) !important;
    font-size: 1.15rem;
}

.category-advantages .service-card:nth-child(even) h3 { color: var(--red) !important; }
.category-advantages .service-card p { color: var(--muted) !important; }

@media (max-width: 900px) {
    .offer-intro-grid,
    .offer-compare-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mission-title { font-size: clamp(2rem, 9.5vw, 3rem); }
    .page-hero-inner { min-height: 260px; }
    .page-hero h1 { font-size: clamp(1.9rem, 9.5vw, 2.75rem); }
    .offer-intro-grid { gap: 30px; margin-bottom: 48px; }
    .included-grid { margin-bottom: 48px; }
}

/* ── Homepage editorial expansion ── */
.home-editorial-section {
    padding: 88px 0;
    background: var(--white);
}

.editorial-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    gap: 42px;
    align-items: end;
    margin-bottom: 34px;
}

.editorial-heading h2 {
    max-width: 680px;
    font-size: clamp(1.85rem, 2.85vw, 2.9rem);
}

.editorial-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.advantages-stage {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 8px;
    background: #0a4a6e;
    box-shadow: 0 26px 72px rgba(16, 73, 101, 0.16);
}

.advantages-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 33, 49, 0.08) 28%, rgba(3, 25, 38, 0.62) 100%);
}

.advantages-stage > img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.advantages-panel-grid {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.advantage-panel {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    min-height: 178px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: var(--white);
    background: rgba(4, 33, 49, 0.86);
    backdrop-filter: blur(10px);
}

.editorial-icon,
.profile-icon {
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue);
}

.enterprise-point > span {
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
}

.editorial-icon i {
    font-size: 20px;
    line-height: 1;
}

.profile-icon i {
    font-size: 16px;
    line-height: 1;
}

.enterprise-point i {
    font-size: 18px;
    line-height: 1;
}

.editorial-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.editorial-icon svg,
.profile-icon svg,
.enterprise-point svg {
    width: 23px;
    height: 23px;
}

.advantage-panel h3 {
    color: var(--white);
    font-size: 1.06rem;
}

.advantage-panel h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 11px;
    border-radius: 4px;
    background: var(--blue);
}

.advantage-panel p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    line-height: 1.68;
}

.signature-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.signature-service-card {
    position: relative;
    display: block;
    min-height: 470px;
    overflow: hidden;
    border-radius: 8px;
    color: var(--white);
    background: #0a2635;
    box-shadow: 0 22px 62px rgba(16, 73, 101, 0.14);
}

.signature-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 20, 29, 0.05) 26%, rgba(3, 20, 29, 0.92) 100%);
}

.signature-service-card > img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    transition: transform 620ms ease;
}

.signature-service-card:hover > img { transform: scale(1.045); }

.signature-service-overlay {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px;
}

.signature-accent {
    display: block;
    width: 44px;
    height: 4px;
    margin-bottom: 16px;
    border-radius: 4px;
    background: var(--blue);
}

.signature-service-card-red .signature-accent { background: var(--red); }

.signature-service-overlay h3 {
    max-width: 480px;
    color: var(--white);
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.signature-service-overlay p {
    max-width: 580px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    line-height: 1.65;
}

.signature-service-overlay strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: var(--white);
    font-size: 0.9rem;
}

.signature-service-overlay strong svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
    transition: transform 180ms ease;
}

.signature-service-card-red strong svg { color: var(--red); }
.signature-service-card:hover strong svg { transform: translateX(3px); }

.mission-profiles { background: #edf8fd; }

.mission-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mission-profile-card {
    overflow: hidden;
    border: 8px solid var(--white);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 56px rgba(16, 73, 101, 0.1);
}

.mission-profile-card > img {
    width: 100%;
    height: 228px;
    object-fit: cover;
    border-radius: 4px;
}

.mission-profile-content { padding: 20px 16px 18px; }

.profile-title-row {
    display: flex;
    align-items: center;
    gap: 11px;
}

.profile-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 8px;
    color: var(--red);
    background: rgba(195, 12, 41, 0.08);
}

.profile-icon svg {
    width: 20px;
    height: 20px;
}

.mission-profile-card:nth-child(even) .profile-icon {
    color: var(--blue);
    background: rgba(19, 163, 227, 0.1);
}

.mission-profile-content h3 {
    color: var(--black);
    font-size: 1.08rem;
}

.mission-profile-content p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.enterprise-band {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
    isolation: isolate;
    color: var(--white);
    background: var(--red);
}

.enterprise-band-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.enterprise-band-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enterprise-band::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(195, 12, 41, 0.98) 0%, rgba(195, 12, 41, 0.9) 46%, rgba(195, 12, 41, 0.56) 100%);
}

.enterprise-band-inner { display: grid; gap: 42px; }
.enterprise-band-copy { max-width: 650px; }
.enterprise-band .section-kicker { color: rgba(255, 255, 255, 0.8); }

.enterprise-band h2 {
    max-width: 640px;
    color: var(--white);
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.enterprise-band-copy > p {
    max-width: 590px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.04rem;
    line-height: 1.72;
}

.enterprise-point-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 920px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.enterprise-point {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    min-height: 104px;
    padding: 18px 22px 0 0;
}

.enterprise-point + .enterprise-point {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.enterprise-point > span {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.enterprise-point h3 {
    color: var(--white);
    font-size: 1rem;
}

.enterprise-point p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    line-height: 1.58;
}

@media (max-width: 980px) {
    .editorial-heading { grid-template-columns: 1fr; gap: 16px; }
    .advantages-stage { min-height: auto; padding-top: 310px; }
    .advantages-stage > img {
        position: absolute;
        inset: 0 0 auto;
        height: 360px;
    }
    .advantages-panel-grid {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        grid-template-columns: 1fr;
        padding: 18px;
    }
    .advantage-panel { min-height: auto; }
    .enterprise-point-grid { max-width: 100%; }
}

@media (max-width: 760px) {
    .home-editorial-section { padding: 72px 0; }
    .mission-profile-grid,
    .enterprise-point-grid {
        grid-template-columns: 1fr;
    }
    .signature-services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 20px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .signature-services-grid::-webkit-scrollbar {
        display: none;
    }
    .signature-service-card {
        flex: 0 0 290px;
        scroll-snap-align: start;
        min-height: 400px;
        height: 400px;
    }
    .signature-service-card > img {
        height: 400px;
    }
    .signature-service-overlay { padding: 22px; }
    .enterprise-band { padding: 72px 0 62px; }
    .enterprise-point-grid { gap: 0; }
    .enterprise-point,
    .enterprise-point + .enterprise-point {
        min-height: auto;
        padding: 16px 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .enterprise-point:first-child { border-top: 0; }
}

@media (max-width: 520px) {
    .advantages-stage { padding-top: 230px; }
    .advantages-stage > img { height: 280px; }
    .advantage-panel {
        grid-template-columns: 42px 1fr;
        padding: 15px;
    }
    .editorial-icon {
        width: 42px;
        height: 42px;
    }
    .mission-profile-card > img { height: 205px; }
}

/* ── Shared visual storytelling blocks ── */
.visual-story {
    padding: 88px 0;
    overflow: hidden;
}

.visual-story-white { background: var(--white); }
.visual-story-paper { background: var(--paper); }
.visual-story-blue {
    color: var(--white);
    background: #0a4a6e;
}

.visual-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 54px;
    align-items: center;
}

.visual-story-grid.is-reversed .visual-story-copy { order: 2; }
.visual-story-grid.is-reversed .visual-collage { order: 1; }

.visual-story-copy h2 {
    max-width: 660px;
    font-size: clamp(1.85rem, 2.85vw, 2.9rem);
}

.visual-story-lead {
    max-width: 610px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.visual-story-blue .section-kicker,
.visual-story-blue .visual-story-lead,
.visual-story-blue .visual-proof-item small {
    color: rgba(255, 255, 255, 0.78);
}

.visual-story-blue .visual-proof-item {
    border-color: rgba(255, 255, 255, 0.18);
}

.visual-proof-list {
    display: grid;
    gap: 0;
    margin-top: 28px;
    max-width: 620px;
}

.visual-proof-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 17px 0;
    border-top: 1px solid rgba(16, 73, 101, 0.12);
}

.visual-proof-item:last-child {
    border-bottom: 1px solid rgba(16, 73, 101, 0.12);
}

.visual-proof-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: var(--white);
}

.visual-proof-icon.blue { background: var(--blue); }
.visual-proof-icon.red { background: var(--red); }

.visual-proof-icon i {
    font-size: 18px;
    line-height: 1;
}

.visual-proof-item strong {
    display: block;
    color: inherit;
    font-size: 1rem;
    font-weight: 900;
}

.visual-proof-item small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.visual-story-actions {
    margin-top: 28px;
}

.visual-collage {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
    min-height: 456px;
}

.visual-collage-frame {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 8px solid var(--white);
    border-radius: 8px;
    background: #dbe7ec;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
}

.visual-collage-frame-1 {
    grid-row: span 2;
}

.visual-collage-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms ease;
}

.visual-collage-frame:hover img {
    transform: scale(1.035);
}

.visual-collage-frame figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--white);
    background: rgba(4, 33, 49, 0.86);
    backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .visual-story {
        padding: 74px 0;
    }

    .visual-story-grid,
    .visual-story-grid.is-reversed {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .visual-story-grid.is-reversed .visual-story-copy,
    .visual-story-grid.is-reversed .visual-collage {
        order: initial;
    }
}

@media (max-width: 640px) {
    .visual-collage {
        grid-template-columns: 1fr;
        grid-template-rows: 260px 190px 190px;
        min-height: auto;
    }

    .visual-collage-frame-1 {
        grid-row: auto;
    }

    .visual-proof-item {
        grid-template-columns: 40px 1fr;
    }

    .visual-proof-icon {
        width: 40px;
        height: 40px;
    }
}

/* ── Slogan Banner (fond rouge) ── */
.slogan-banner {
    background: var(--red);
    color: var(--white);
    padding: 56px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: inset 0 4px 20px rgba(0,0,0,0.15);
}

.slogan-banner-inner {
    max-width: 900px;
    margin-inline: auto;
}

.slogan-banner h2 {
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: clamp(1.15rem, 1.6vw, 1.65rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
}

.slogan-banner p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    font-size: clamp(0.75rem, 0.9vw, 0.88rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.55;
}

/* ── Split Page Hero (Properties-style) ── */
.page-hero-split-section {
    background: #edf8fd;
    padding: 104px 0 72px;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 52px;
    align-items: center;
}

.hero-split-grid h1 {
    font-size: clamp(2.1rem, 3.65vw, 3.65rem);
    line-height: 1.05;
    margin-top: 14px;
    font-weight: 900;
}

.hero-split-grid .lead {
    color: var(--muted);
    font-size: 1.1rem;
    margin-top: 18px;
    line-height: 1.7;
}

.hero-card-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.hero-stat-badge {
    background: #f2f8fb;
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    border: 1px solid rgba(16, 73, 101, 0.06);
}

.hero-stat-badge strong {
    display: block;
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 1.32rem;
    font-weight: 900;
    color: var(--black);
    white-space: nowrap;
}

.hero-stat-badge span {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.card-top-line {
    display: block;
    width: 44px;
    height: 4px;
    margin-bottom: 16px;
    border-radius: 4px;
}
.card-top-line.blue { background: var(--blue); }
.card-top-line.red { background: var(--red); }

@media (max-width: 980px) {
    .page-hero-split-section {
        padding: 82px 0 56px;
    }
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-card-stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .hero-card-stat-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ── Properties-inspired Grids & Columns ── */
.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }
.col-span-12 { grid-column: span 12; }

.home-section-head-stacked {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
}

@media (max-width: 980px) {
    .grid-12 {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }
    .col-span-4, .col-span-5, .col-span-6, .col-span-7, .col-span-8, .col-span-12 {
        grid-column: 1 / -1;
    }
    /* Nested grid-12 inside col-span should also stack */
    .col-span-7 .grid-12,
    .col-span-8 .grid-12 {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    /* Override inline height on div containers on mobile */
    div[style*="height: 380px"],
    div[style*="height: 340px"],
    div[style*="height: 320px"],
    div[style*="height: 300px"] { height: 240px !important; }

    div[style*="height: 182px"] { height: 160px !important; }

    /* Stack hero-card-stat-grid on small screens */
    .hero-card-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.certification-list-card > div {
    min-width: 0;
}

.certification-list-card h3 {
    overflow-wrap: anywhere;
}

/* ── UI/UX Bug Fixes: Light Breadcrumbs & Sidebar Cards ── */
.page-hero-split-section .breadcrumb {
    background: rgba(16, 73, 101, 0.05);
    border: 1px solid rgba(16, 73, 101, 0.12);
    color: var(--muted);
}

.page-hero-split-section .breadcrumb a {
    color: var(--muted);
}

.page-hero-split-section .breadcrumb a:hover {
    color: var(--blue);
}

.sidebar-card.sidebar-card-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.sidebar-card.sidebar-card-cta h3,
.sidebar-card.sidebar-card-cta p {
    color: var(--white) !important;
}

.sidebar-card.sidebar-card-dark {
    background: var(--black) !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.sidebar-card.sidebar-card-dark h3,
.sidebar-card.sidebar-card-dark p {
    color: var(--white) !important;
}

@media (max-width: 640px) {
    body { overflow-x: hidden; }

    .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 24px;
    }

    h1,
    .hero-split-grid h1,
    .page-hero h1,
    .mission-title {
        font-size: clamp(1.48rem, 6.5vw, 1.78rem) !important;
        line-height: 1.12;
    }

    h2 {
        font-size: clamp(1.28rem, 5.8vw, 1.6rem) !important;
        line-height: 1.1;
    }

    .lead,
    .hero-split-grid .lead {
        font-size: 0.98rem !important;
    }

    .section-kicker,
    .kicker {
        letter-spacing: 0.16em;
    }

    .hero-actions,
    .form-actions {
        width: 100%;
        max-width: 100%;
    }

    .hero-actions .btn,
    .form-actions .btn {
        width: 100%;
        max-width: 100%;
    }

    .sidebar-card {
        max-width: 100%;
    }
}

/* ── Vigilus Security-aligned homepage hero ── */
:root {
    --vigilus-night: #07111d;
    --vigilus-night-soft: #101820;
    --vigilus-ink: #111111;
    --vigilus-red: #c30c29;
    --vigilus-blue: #13a3e3;
    --vigilus-line: rgba(255, 255, 255, 0.18);
}

.mission-hero {
    min-height: calc(86dvh - 64px);
    background:
        radial-gradient(circle at 80% 20%, rgba(19, 163, 227, 0.11), transparent 24rem),
        radial-gradient(circle at 14% 92%, rgba(195, 12, 41, 0.18), transparent 28rem),
        linear-gradient(135deg, var(--vigilus-night) 0%, var(--vigilus-night-soft) 54%, #07111b 100%);
}

.mission-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.11;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.mission-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    z-index: -1;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 17, 29, 0.82) 100%);
}

.mission-hero-slides {
    z-index: -2;
}

.hero-bg-blur {
    filter: none;
    transform: scale(1);
    opacity: 0.34;
}

.hero-bg-overlay {
    background:
        linear-gradient(90deg, rgba(7, 17, 29, 1) 0%, rgba(7, 17, 29, 0.96) 45%, rgba(7, 17, 29, 0.64) 100%),
        linear-gradient(180deg, rgba(7, 17, 29, 0.14) 0%, rgba(7, 17, 29, 0.82) 100%);
}

.mission-hero-grid {
    min-height: 560px;
    grid-template-columns: minmax(0, 7fr) minmax(370px, 5fr);
    gap: clamp(34px, 4vw, 64px);
    padding: clamp(56px, 6vw, 78px) 0 clamp(58px, 6vw, 78px);
}

.mission-hero-copy {
    max-width: 720px;
}

.mission-hero-copy > div[style*="min-height"] {
    min-height: 226px !important;
    justify-content: flex-start !important;
}

.mission-hero-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.mission-hero-breadcrumb span:first-child {
    color: rgba(255, 255, 255, 0.86);
}

.mission-title {
    max-width: 720px;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
    text-shadow: 0 16px 46px rgba(0, 0, 0, 0.38);
}

.mission-hero-copy p {
    max-width: 640px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    line-height: 1.72;
}

.mission-hero .accent-blue {
    color: var(--vigilus-blue);
}

.mission-hero .hero-actions {
    gap: 12px;
    align-items: center;
}

.mission-hero .btn {
    min-height: 52px;
    border-radius: 12px;
    padding-inline: 28px;
    letter-spacing: 0.06em;
    box-shadow: none;
}

.mission-hero .btn-red {
    background: var(--vigilus-red);
}

.mission-hero .btn-red:hover {
    background: #a80a25;
    box-shadow: 0 16px 34px rgba(195, 12, 41, 0.28);
}

.mission-hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.mission-hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
}

.mission-hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.mission-hero-proof-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.mission-hero-side {
    display: grid;
    gap: 16px;
    align-self: center;
}

.mission-hero-media-card {
    position: relative;
    height: clamp(300px, 34vh, 380px);
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.32);
}

.mission-hero-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 36%, rgba(7, 17, 29, 0.86) 100%);
}

.mission-hero-media-card img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.mission-hero-media-card figcaption {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    gap: 3px;
    color: var(--white);
}

.mission-hero-media-card strong {
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 1.32rem;
    line-height: 1.05;
}

.mission-hero-media-card span {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.5;
}

.mission-reservation {
    border: 10px solid #ffffff;
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.mission-reservation-head {
    border-bottom-color: rgba(17, 24, 39, 0.08);
}

.mission-reservation-head svg {
    color: var(--vigilus-red);
}

.mission-field span {
    letter-spacing: 0.06em;
}

.mission-field input,
.mission-field select {
    border: 1px solid rgba(17, 24, 39, 0.11);
    border-radius: 0.75rem;
    background: #f8fafc;
}

.mission-submit.btn-primary {
    border-radius: 0.75rem;
    background: var(--vigilus-red);
}

.mission-submit.btn-primary:hover {
    background: #a80a25;
}

.hero-dots {
    bottom: 28px;
}

.hero-dot {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.hero-dot.is-active {
    width: 28px;
    background: var(--vigilus-red);
}

@media (max-width: 1100px) {
    .mission-hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .mission-hero-copy {
        max-width: 760px;
    }

    .mission-hero-side {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
        align-items: stretch;
        width: 100%;
    }

    .mission-reservation {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .mission-hero {
        min-height: auto;
    }

    .mission-hero-grid {
        gap: 28px;
        padding: 44px 24px 62px;
    }

    .mission-hero-copy > div[style*="min-height"] {
        min-height: 218px !important;
    }

    .mission-title {
        max-width: 100%;
        font-size: clamp(2rem, 9.2vw, 3rem) !important;
        line-height: 1;
    }

    .mission-hero-copy p {
        margin-top: 16px;
        font-size: 0.98rem;
    }

    .mission-hero-side {
        grid-template-columns: 1fr;
    }

    .mission-hero-media-card,
    .mission-hero-media-card img {
        height: 310px;
        min-height: 0;
    }

    .mission-hero .hero-actions {
        margin-top: 24px !important;
        width: 100%;
    }

    .mission-hero .hero-actions .btn {
        width: 100%;
    }

    .mission-hero-proof-row {
        gap: 8px;
        margin-top: 18px;
    }

    .mission-hero-proof-row span {
        min-height: 30px;
        font-size: 0.7rem;
    }

    .mission-reservation {
        display: none;
        padding: 16px;
        border-width: 8px;
        border-radius: 1.5rem;
    }

    .mission-hero-media-card {
        border-width: 8px;
        border-radius: 1.5rem;
    }
}

/* Vigilus Security aligned refinements */
.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.site-header .container.nav {
    width: min(calc(100% - 32px), 1480px);
    min-height: 82px;
    gap: 22px;
}

.brand-logo {
    height: 58px;
}

.nav-links {
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(17, 24, 39, 0.06);
    border-radius: 16px;
    background: #f8fafc;
    color: #30363d;
}

.nav-links > a,
.nav-item-dropdown > a {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
}

.nav-links > a:hover,
.nav-links > a.is-active,
.nav-item-dropdown > a:hover,
.nav-item-dropdown > a.is-active {
    background: #ffffff;
    color: var(--red);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
}

.nav-submenu {
    min-width: 300px;
    top: calc(100% + 12px);
    border-radius: 16px;
    box-shadow: 0 28px 86px rgba(17, 24, 39, 0.16);
}

.nav-submenu a {
    padding: 12px 14px;
    border-radius: 12px;
}

.nav-submenu a:hover {
    background: #fff5f6;
    color: var(--red);
}

.nav-sub-icon,
.phone-link svg {
    color: var(--red);
}

.phone-link,
.lang-dropdown-toggle {
    min-height: 42px;
    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 12px;
    background: #ffffff;
    padding-inline: 12px;
}

.phone-link {
    color: #111827;
}

.nav-actions .btn-primary {
    min-height: 48px;
    border-radius: 12px;
    background: var(--red);
    box-shadow: 0 14px 30px rgba(195, 12, 41, 0.18);
}

.nav-actions .btn-primary:hover {
    background: #a00a22;
    box-shadow: 0 16px 34px rgba(195, 12, 41, 0.22);
}

.mobile-toggle {
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 12px;
    background: #f8fafc;
}

.mission-hero {
    min-height: calc(92dvh - 82px);
}

.mission-hero-grid {
    min-height: clamp(640px, 78vh, 820px);
}

.mission-hero-side {
    position: relative;
    min-height: clamp(430px, 54vh, 580px);
}

.mission-hero-media-stage {
    position: relative;
    min-height: inherit;
    height: 100%;
}

.mission-hero-media-card {
    position: absolute;
    inset: 0;
    height: 100%;
    border-radius: 2rem;
}

.mission-hero-media-card img {
    height: 100%;
}

.home-proof-editorial {
    padding: 96px 0;
    background: #ffffff;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.home-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(34px, 5vw, 62px);
    align-items: center;
}

.home-proof-media {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 2rem;
    background: #07111d;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
}

.home-proof-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-proof-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 29, 0.86) 100%);
}

.home-proof-media figcaption {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    left: 22px;
    color: #ffffff;
}

.home-proof-media strong {
    display: block;
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 1.35rem;
    line-height: 1.05;
}

.home-proof-media span {
    display: block;
    max-width: 360px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    font-weight: 700;
}

.home-proof-copy h2 {
    max-width: 720px;
    font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.home-proof-copy .lead {
    max-width: 630px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.76;
}

.home-proof-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.home-proof-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    background: #f8fafc;
}

.home-proof-list i {
    display: grid;
    grid-row: 1 / span 2;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(19, 163, 227, 0.1);
    color: var(--blue);
    font-size: 1.05rem;
}

.home-proof-list article:nth-child(even) i {
    background: rgba(195, 12, 41, 0.1);
    color: var(--red);
}

.home-proof-list strong {
    display: block;
    grid-column: 2;
    font-size: 1rem;
    font-weight: 900;
    color: #111827;
}

.home-proof-list span {
    display: block;
    grid-column: 2;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.55;
}

.chauffeur-fleet-section {
    padding: 96px 0;
    background: #f5f6f7;
}

.chauffeur-fleet-head {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.chauffeur-fleet-head h2 {
    font-size: clamp(2rem, 3.15vw, 3.35rem);
}

.chauffeur-fleet-head p {
    max-width: 620px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.chauffeur-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.chauffeur-fleet-card {
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.chauffeur-fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 90px rgba(17, 17, 17, 0.12);
}

.chauffeur-fleet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1.35rem;
}

.chauffeur-fleet-card > div {
    padding: 24px 18px 18px;
}

.chauffeur-fleet-card h3 {
    margin-top: 14px;
    font-size: 1.55rem;
}

.chauffeur-fleet-card ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.chauffeur-fleet-card li {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 10px;
}

.chauffeur-fleet-card li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--blue);
}

.chauffeur-fleet-card.is-featured li::before {
    background: var(--red);
}

.fleet-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fleet-pill.blue {
    background: rgba(19, 163, 227, 0.1);
    color: var(--blue);
}

.fleet-pill.red {
    background: rgba(195, 12, 41, 0.1);
    color: var(--red);
}

.service-hero-dark {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #07111d;
    color: #ffffff;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.34;
}

.service-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #07111d 0%, rgba(7, 17, 29, 0.96) 48%, rgba(7, 17, 29, 0.66) 100%),
        linear-gradient(180deg, rgba(7, 17, 29, 0.08) 0%, rgba(7, 17, 29, 0.78) 100%);
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
    gap: clamp(36px, 5vw, 64px);
    min-height: 560px;
    align-items: center;
    padding: 78px 0;
}

.service-breadcrumb {
    width: fit-content;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.86);
}

.service-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(1.85rem, 3vw, 3.1rem);
    line-height: 0.96;
    text-transform: uppercase;
}

.service-hero-copy p {
    max-width: 680px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    font-weight: 650;
    line-height: 1.8;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.service-hero-panel {
    overflow: hidden;
    margin: 0;
    border: 10px solid #ffffff;
    border-radius: 2rem;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.service-hero-panel > img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 1.35rem;
}

.service-panel-body {
    padding: 24px 20px 20px;
}

.service-panel-body > span {
    display: inline-flex;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-panel-body h2 {
    margin-top: 10px;
    font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.service-panel-proof {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.service-panel-proof article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    border-radius: 16px;
    background: #f8fafc;
    padding: 13px;
}

.service-panel-proof i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(19, 163, 227, 0.1);
    color: var(--blue);
}

.service-panel-proof article:nth-child(even) i {
    background: rgba(195, 12, 41, 0.1);
    color: var(--red);
}

.service-panel-proof strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
}

.service-panel-proof small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.5;
}

.vip-inclusion-section {
    padding: 94px 0;
    background: #ffffff;
}

.vip-inclusion-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(34px, 5vw, 58px);
    align-items: center;
}

.vip-inclusion-media {
    position: relative;
    min-height: 480px;
    margin: 0;
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 2rem;
    background: #07111d;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
}

.vip-inclusion-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-inclusion-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 44%, rgba(7, 17, 29, 0.86) 100%);
}

.vip-inclusion-media figcaption {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    left: 22px;
    color: #ffffff;
}

.vip-inclusion-media strong {
    display: block;
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 1.28rem;
    line-height: 1.1;
}

.vip-inclusion-media span {
    display: block;
    max-width: 360px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 700;
}

.vip-inclusion-copy h2 {
    font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.vip-inclusion-copy p {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.76;
}

.vip-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.vip-feature-grid article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.45;
}

.vip-feature-grid i {
    margin-top: 2px;
    color: var(--blue);
}

.vip-feature-grid article:nth-child(even) i {
    color: var(--red);
}

.detail-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;
    background: #07111d;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.detail-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.34;
}

.detail-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(7, 17, 29, 0.96) 0%, rgba(7, 17, 29, 0.74) 54%, rgba(7, 17, 29, 0.9) 100%),
        linear-gradient(180deg, rgba(7, 17, 29, 0.15) 0%, rgba(7, 17, 29, 0.92) 100%);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: clamp(32px, 5vw, 66px);
    align-items: center;
    min-height: clamp(500px, 66vh, 660px);
    padding: clamp(48px, 5vw, 78px) 0;
}

.detail-breadcrumb {
    max-width: 100%;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 850;
    white-space: normal;
}

.detail-breadcrumb a,
.detail-breadcrumb span {
    color: inherit;
}

.detail-breadcrumb a:hover {
    color: #ffffff;
}

.detail-eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.detail-hero-red .detail-eyebrow::before {
    background: var(--red);
}

.detail-hero-copy h1 {
    max-width: 780px;
    margin-top: 18px;
    color: #ffffff;
    font-size: clamp(1.85rem, 3vw, 3.1rem);
}

.detail-hero-copy p {
    max-width: 640px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    font-weight: 650;
    line-height: 1.82;
}

.detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.detail-hero-panel {
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 2rem;
    background: #ffffff;
    color: var(--black);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.detail-hero-panel > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.detail-panel-body {
    padding: clamp(18px, 2.2vw, 24px);
}

.detail-panel-body > span {
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.detail-hero-red .detail-panel-body > span {
    color: var(--red);
}

.detail-panel-body h2 {
    margin-top: 8px;
    font-size: clamp(1.34rem, 2vw, 1.82rem);
}

.detail-panel-proof {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.detail-panel-proof article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    border: 1px solid rgba(18, 18, 18, 0.07);
    border-radius: 16px;
    background: #f8fafc;
}

.detail-panel-proof i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(19, 163, 227, 0.12);
    color: var(--blue);
}

.detail-panel-proof article:nth-child(even) i {
    background: rgba(195, 12, 41, 0.1);
    color: var(--red);
}

.detail-hero-red .detail-panel-proof i {
    background: rgba(195, 12, 41, 0.1);
    color: var(--red);
}

.detail-hero-red .detail-panel-proof article:nth-child(even) i {
    background: rgba(19, 163, 227, 0.12);
    color: var(--blue);
}

.detail-panel-proof strong {
    display: block;
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 950;
}

.detail-panel-proof small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 650;
    line-height: 1.5;
}

.detail-inclusion {
    padding: 94px 0;
    background: #ffffff;
}

.detail-inclusion-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(34px, 5vw, 58px);
    align-items: center;
}

.detail-inclusion-media {
    position: relative;
    min-height: 480px;
    margin: 0;
    overflow: hidden;
    border: 10px solid #ffffff;
    border-radius: 2rem;
    background: #07111d;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
}

.detail-inclusion-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-inclusion-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 29, 0.86) 100%);
}

.detail-inclusion-media figcaption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
    color: #ffffff;
}

.detail-inclusion-media strong {
    display: block;
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    font-size: 1.28rem;
    line-height: 1.1;
}

.detail-inclusion-media span {
    display: block;
    max-width: 380px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 700;
}

.detail-inclusion-copy h2 {
    font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.detail-inclusion-copy p {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.76;
}

.detail-inclusion-red .section-kicker,
.detail-related-red .section-kicker {
    color: var(--red);
}

.detail-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.detail-feature-grid article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    color: #111827;
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.45;
}

.detail-feature-grid i {
    margin-top: 2px;
    color: var(--blue);
}

.detail-inclusion-red .detail-feature-grid i {
    color: var(--red);
}

.detail-feature-grid article:nth-child(even) i,
.detail-inclusion-red .detail-feature-grid article:nth-child(even) i {
    color: var(--red);
}

.detail-inclusion-red .detail-feature-grid article:nth-child(even) i {
    color: var(--blue);
}

.detail-related {
    padding: 88px 0;
    background: #f8fafc;
}

.detail-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.detail-related-head p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.7;
}

.detail-subtabs {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.detail-subtabs a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(18, 18, 18, 0.1);
    border-radius: 999px;
    background: #ffffff;
    color: #26313a;
    font-size: 0.82rem;
    font-weight: 900;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.detail-subtabs a:hover {
    transform: translateY(-1px);
    border-color: var(--blue);
    color: var(--blue);
}

.detail-related-red .detail-subtabs a:hover {
    border-color: var(--red);
    color: var(--red);
}

.detail-subtabs .detail-subtab-all {
    border-color: var(--blue);
    background: var(--blue);
    color: #ffffff;
}

.detail-related-red .detail-subtabs .detail-subtab-all {
    border-color: var(--red);
    background: var(--red);
}

.detail-subtabs .detail-subtab-all:hover {
    color: #ffffff;
}

.detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.detail-related-card {
    overflow: hidden;
    border: 1px solid rgba(18, 18, 18, 0.08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 58px rgba(17, 24, 39, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.detail-related-card:hover {
    transform: translateY(-5px);
    border-color: rgba(19, 163, 227, 0.38);
    box-shadow: 0 28px 76px rgba(17, 24, 39, 0.12);
}

.detail-related-red .detail-related-card:hover {
    border-color: rgba(195, 12, 41, 0.32);
}

.detail-related-card img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.detail-related-card div {
    padding: 22px;
}

.detail-related-card span {
    display: inline-flex;
    margin-bottom: 9px;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.detail-related-red .detail-related-card span {
    color: var(--red);
}

.detail-related-card h3 {
    color: var(--black);
    font-size: 1.25rem;
}

.detail-related-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.62;
}

@media (max-width: 1180px) {
    .nav-links {
        gap: 2px;
        font-size: 0.88rem;
    }

    .nav-links > a,
    .nav-item-dropdown > a {
        padding-inline: 10px;
    }
}

@media (max-width: 980px) {
    .site-header .container.nav {
        min-height: 72px;
    }

    .brand-logo {
        height: 48px;
    }

    .nav-links,
    .phone-link,
    .lang-dropdown {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mission-hero-grid,
    .home-proof-grid,
    .vip-inclusion-grid,
    .service-hero-grid,
    .detail-hero-grid,
    .detail-inclusion-grid,
    .detail-related-grid {
        grid-template-columns: 1fr;
    }

    .mission-hero-grid {
        min-height: auto;
    }

    .mission-hero-side {
        min-height: 390px;
    }

    .service-hero-grid,
    .detail-hero-grid {
        min-height: auto;
        padding: 62px 0;
    }

    .chauffeur-fleet-grid {
        grid-template-columns: 1fr;
    }

    .home-proof-media,
    .vip-inclusion-media,
    .detail-inclusion-media {
        min-height: 380px;
    }

    .detail-related-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .detail-subtabs {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .site-header .container.nav {
        width: 100%;
        padding-inline: 18px;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .mission-hero {
        min-height: auto;
    }

    .mission-hero-side {
        min-height: 310px;
    }

    .mission-hero-media-card,
    .mission-hero-media-card img {
        height: 100%;
    }

    .home-proof-editorial,
    .chauffeur-fleet-section,
    .vip-inclusion-section,
    .detail-inclusion,
    .detail-related {
        padding: 72px 0;
    }

    .home-proof-media,
    .vip-inclusion-media,
    .detail-inclusion-media {
        min-height: 310px;
        border-width: 8px;
        border-radius: 1.5rem;
    }

    .home-proof-list article,
    .vip-feature-grid article,
    .service-panel-proof article,
    .detail-feature-grid article,
    .detail-panel-proof article {
        border-radius: 14px;
    }

    .vip-feature-grid,
    .detail-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-copy h1,
    .detail-hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2rem, 10.5vw, 2.75rem);
    }

    .service-hero-grid,
    .detail-hero-grid {
        gap: 28px;
        padding: 46px 24px 56px;
    }

    .service-breadcrumb,
    .detail-breadcrumb {
        max-width: 100%;
        white-space: normal;
    }

    .service-hero-actions .btn,
    .detail-hero-actions .btn {
        width: 100%;
    }

    .service-hero-panel,
    .detail-hero-panel {
        border-width: 8px;
        border-radius: 1.5rem;
    }

    .service-hero-panel > img,
    .detail-hero-panel > img,
    .chauffeur-fleet-card img {
        height: 220px;
    }

    .detail-related-card {
        border-radius: 18px;
    }

    .detail-related-card img {
        height: 190px;
    }
}

/* ── Unified section typography ── */
:root {
    --type-hero-title: clamp(2.25rem, 5vw, 3.75rem);
    --type-page-title: clamp(1.875rem, 4vw, 3rem);
    --type-page-subtitle: clamp(1rem, 1.25vw, 1.125rem);
    --type-section-kicker: 0.875rem;
    --type-section-title: clamp(1.875rem, 3vw, 2.25rem);
    --type-section-subtitle: clamp(1rem, 1.2vw, 1.125rem);
    --type-card-title: 1.25rem;
    --type-section-title-line: 1.16;
    --type-section-copy-line: 1.75;
    --space-kicker-title: 12px;
    --space-title-copy: 18px;
    --space-section-heading: 40px;
}

main h1 {
    font-size: var(--type-page-title) !important;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.015em;
}

main :is(
    .page-hero,
    .hero-split-grid,
    .page-hero-split-section,
    .service-hero-copy,
    .detail-hero-copy
) h1 {
    font-size: var(--type-page-title) !important;
    line-height: 1.08;
}

main .mission-title {
    max-width: 800px;
    font-size: var(--type-hero-title) !important;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

main h1 + p,
main h1 + p.lead,
main .mission-title + p,
.mission-hero-copy h1 + p,
.service-hero-copy h1 + p,
.detail-hero-copy h1 + p {
    font-size: var(--type-page-subtitle) !important;
    font-weight: 600;
    line-height: 1.75;
}

.section-kicker,
.kicker {
    margin: 0 0 var(--space-kicker-title);
    font-size: var(--type-section-kicker);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

:where(.section-kicker, .kicker) + h2,
.section-head h2,
.home-section-head h2,
.editorial-heading h2,
.home-proof-copy h2,
.chauffeur-fleet-head h2,
.vip-inclusion-copy h2,
.visual-story-copy h2,
.detail-inclusion-copy h2,
.detail-related-head h2,
.certification-layout h2,
.enterprise-band-copy h2,
.enterprise-band h2,
.cta h2 {
    margin-top: 0 !important;
    font-size: var(--type-section-title) !important;
    font-weight: 900;
    line-height: var(--type-section-title-line);
    letter-spacing: 0;
}

.section-head,
.home-section-head,
.editorial-heading,
.detail-related-head {
    margin-bottom: var(--space-section-heading);
}

.home-section-head-stacked {
    gap: 0;
}

:where(.section-kicker, .kicker) + :is(h1, h2) + p,
.section-head > p:not(.section-kicker):not(.kicker),
.home-section-head > p:not(.section-kicker):not(.kicker),
.editorial-heading > p,
.section-copy,
.visual-story-lead,
.home-proof-copy > .lead,
.chauffeur-fleet-head > p,
.vip-inclusion-copy > p,
.detail-inclusion-copy > p,
.detail-related-head p {
    margin-top: var(--space-title-copy);
    margin-bottom: 0;
    font-size: var(--type-section-subtitle) !important;
    font-weight: 650;
    line-height: var(--type-section-copy-line);
}

.mobility-vehicle-card h3,
.vehicle-card h3,
.service-card h3,
.advantage-panel h3,
.signature-service-card h3,
.mission-profile-card h3,
.mission-offer-card h3,
.value-card h3,
.process-card h3,
.certification-card h3,
.chauffeur-fleet-card h3,
.detail-related-card h3,
.offer-card h3,
.method-step h3,
.enterprise-point h3,
.certification-list-card h3,
.mv-card h3,
.sidebar-card h3 {
    font-size: var(--type-card-title) !important;
    font-weight: 900;
    line-height: 1.24;
}

@media (max-width: 640px) {
    :root {
        --space-section-heading: 34px;
    }
}
