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

:root {
    --ink: #1a1917;
    --ink-2: #3d3b38;
    --ink-3: #6b6860;
    --ink-4: #9c9890;
    --rule: #e4e2de;
    --rule-2: #f0eeea;
    --paper: #faf9f7;
    --surface: #ffffff;
    --accent: #1a5fb4;
    --accent-dim: #1a5fb41a;
    --sg: #1a7a4a;
    --sg-bg: #edfaf2;
    --sg-b: #a4e4c0;
    --sr: #c0392b;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    --r: 5px;
    --r-lg: 8px;
    --r-xl: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a:hover {
    color: #1650a0;
}

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

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    padding-left: 0;
    list-style: none;
}

strong {
    font-weight: 600;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--rule);
    border-radius: var(--r);
    background: var(--surface);
    color: var(--ink-2);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: border-color .1s, background .1s, color .1s;
    line-height: 1.4;
}

.btn:hover {
    border-color: #bbb;
    color: var(--ink);
    background: var(--rule-2);
}

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

.btn-primary:hover {
    background: #1650a0;
    border-color: #1650a0;
    color: #fff;
}

.btn-lg {
    padding: 10px 22px;
    font-size: 13px;
    border-radius: var(--r-lg);
}

.btn-ghost {
    border-color: transparent;
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
}

/* ── Cookie banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1100px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .6);
    flex: 1;
    min-width: 220px;
}

.cookie-banner__text a {
    color: rgba(255, 255, 255, .8);
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: #fff;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner__actions .btn {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .7);
}

.cookie-banner__actions .btn:hover {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

/* ── Form error state ── */
.form-error {
    display: none;
    padding: 14px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--r-lg);
    font-size: 12px;
    line-height: 1.65;
    color: #991b1b;
}

.form-error.visible {
    display: block;
}

.form-error a {
    color: #991b1b;
    text-decoration: underline;
}

/* ── Credstrip — top of page, accent blue ── */
.credstrip {
    background: var(--accent);
    padding: 0;
}

.credstrip-inner {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin-inline: auto;
    height: 44px;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    color: rgba(255, 255, 255, .9);
    padding: 0 20px;
    height: 100%;
    white-space: nowrap;
    text-transform: uppercase;
    flex: 1;
    justify-content: center;
}

.cred-item:first-child {
    padding-left: 24px;
}

.cred-item svg {
    width: 13px;
    height: 13px;
    opacity: .75;
    flex-shrink: 0;
}

/* ── Topbar ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    height: 64px;
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
}

.topbar-inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 28px;
}

.brand-mark {
    width: 36px;
    height: 36px;
}

.topbar-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.topbar-tab {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    font-size: 13px;
    color: var(--ink-3);
    border-bottom: 2px solid transparent;
    transition: color .1s, border-color .1s;
    white-space: nowrap;
}

.topbar-tab:hover {
    color: var(--ink);
}

.topbar-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    font-weight: 500;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--r);
    border: 1px solid var(--rule);
    background: var(--surface);
    color: var(--ink-2);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle svg {
    width: 16px;
    height: 16px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
    padding: 8px 0;
    position: sticky;
    top: 64px;
    z-index: 199;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 10px 24px;
    font-size: 13px;
    color: var(--ink-2);
}

.mobile-nav a:hover {
    background: var(--rule-2);
    color: var(--ink);
}

.mobile-nav-cta {
    padding: 12px 24px;
    border-top: 1px solid var(--rule);
    margin-top: 4px;
}

.mobile-nav-cta .btn-primary {
    color: var(--paper);
}

/* ── Hero — light blue bg image ── */
.hero {
    background: linear-gradient(to bottom, rgba(15, 40, 90, .62) 0%, rgba(15, 40, 90, .45) 100%),
    url('assets/img/hero-home.webp') center/cover no-repeat;
    /* ↑ swap hero-bg.jpg for your actual image path */
    background-color: #5b8fc9; /* fallback while image loads */
    color: #fff;
    padding: 96px 0 88px;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--surface);
    margin-bottom: 18px;
    text-shadow: var(--ink) 1px 1px 2px;
}

.hero h1 {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.08;
    color: #fff;
    max-width: 700px;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: 15px;
    line-height: 1.85;
    color: #fff;
    max-width: 540px;
    margin-bottom: 38px;
    text-shadow: var(--ink) 1px 1px 2px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: #fff;
    border-color: #fff;
    color: var(--accent);
    font-weight: bold;
}

.hero-actions .btn-primary:hover {
    background: #f0f4ff;
    border-color: #f0f4ff;
}

/* Hero ghost button */
.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    padding: 10px 22px;
    font-size: 13px;
    border-radius: var(--r-lg);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background .1s;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, .2);
}

/* ── Hero stats — full-width strip below hero ── */
.hero-stats-strip {
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin-inline: auto;
}

.hero-stat {
    padding: 26px 28px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-val {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .88);
    line-height: 1.3;
}

.hero-stat-lbl {
    font-size: 11px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .38);
}

/* ── Sections ── */
.section {
    padding-block: 80px;
}

.section-surface {
    background: var(--surface);
}

.section-border-t {
    border-top: 1px solid var(--rule);
}

.section-header {
    margin-bottom: 44px;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-sub {
    margin-inline: auto;
}

.section-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--ink-4);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(20px, 2.5vw, 27px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 10px;
}

.section-sub {
    font-size: 13px;
    line-height: 1.75;
    color: var(--ink-3);
    max-width: 500px;
}

/* ── Services ── */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.svc-card {
    background: var(--surface);
    padding: 26px 26px 30px;
    display: flex;
    flex-direction: column;
}

.svc-card-featured {
    background: #eef4ff;
    border-left: 3px solid var(--accent);
}

.svc-num {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink-3);
    margin-bottom: 16px;
    letter-spacing: .05em;
}

.svc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 9px;
    letter-spacing: -.01em;
}

.svc-card-featured .svc-title {
    color: var(--accent);
}

.svc-body {
    font-size: 12px;
    line-height: 1.75;
    color: var(--ink-3);
    flex: 1;
    margin-bottom: 16px;
}

.svc-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    background: var(--accent);
    color: #fff;
    width: fit-content;
    margin-bottom: 14px;
}

/* ── Sectors ── */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sector-card {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    padding: 20px 22px;
}

.sector-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 5px;
}

.sector-body {
    font-size: 11px;
    line-height: 1.65;
    color: var(--ink-3);
}

/* ── Why us ── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    overflow: hidden;
}

.pillar {
    background: var(--paper);
    padding: 30px 32px;
}

.pillar-num {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink-4);
    margin-bottom: 12px;
    letter-spacing: .05em;
}

.pillar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.pillar-body {
    font-size: 12px;
    line-height: 1.75;
    color: var(--ink-3);
}

/* ── Steps ── */
.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--rule-2);
    border: 1px solid var(--rule);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--ink-3);
    flex-shrink: 0;
    margin-top: 1px;
}

.step-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px;
}

.step-body {
    font-size: 12px;
    line-height: 1.7;
    color: var(--ink-3);
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.65;
    color: var(--ink-3);
}

.about-list-item::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 5px;
}

/* ── Coverage ── */
.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.region-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.region {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
}

.region:first-child {
    border-top: 1px solid var(--rule);
}

.region-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r);
    background: var(--rule-2);
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.region-icon svg {
    width: 16px;
    height: 16px;
    color: var(--ink-3);
}

.region-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.region-detail {
    font-size: 12px;
    line-height: 1.65;
    color: var(--ink-3);
}

.routes-box {
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 32px;
    /* Prevent the box itself from overflowing its column */
    min-width: 0;
}

.routes-box-header {
    padding: 10px 16px;
    background: var(--rule-2);
    border-bottom: 1px solid var(--rule);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-4);
}

.route-list {
    display: flex;
    flex-direction: column;
    /* Allow horizontal scroll on very small widths rather than bursting the layout */
    overflow-x: auto;
}

.route-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--rule);
    font-size: 12px;
    /* Stop individual rows forcing the box wider */
    min-width: 0;
}

.route-row:last-child {
    border-bottom: none;
}

.route-origin {
    font-weight: 600;
    color: var(--ink);
    /* Fixed width replaced with min-width so it can shrink */
    min-width: 0;
    flex: 0 0 110px;
}

.route-line {
    flex: 1;
    height: 1px;
    min-width: 16px; /* always show at least a sliver */
    background: repeating-linear-gradient(90deg, var(--rule) 0, var(--rule) 4px, transparent 4px, transparent 9px);
}

.route-dest {
    color: var(--ink-3);
    min-width: 0;
    flex: 0 0 90px;
}

.route-mode {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    background: var(--rule-2);
    border: 1px solid var(--rule);
    color: var(--ink-3);
    padding: 2px 7px;
    border-radius: 3px;
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── CTA band ── */
.cta-band {
    background: var(--accent);
    padding: 52px 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.cta-band-title {
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 700;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 6px;
}

.cta-band-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .62);
    line-height: 1.6;
}

.cta-band-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ── Contact ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-meta-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-4);
    margin-bottom: 3px;
}

.contact-meta-val {
    font-size: 13px;
    color: var(--ink-2);
}

.contact-meta-val a {
    color: var(--accent);
}

.contact-meta-val a:hover {
    color: #1650a0;
}

/* ── Form ── */
.form-wrap {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 28px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-2);
}

.form-label .req {
    color: var(--sr);
    margin-left: 2px;
}

.input {
    width: 100%;
    padding: 7px 10px;
    font-size: 13px;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--rule);
    border-radius: var(--r);
    outline: none;
    transition: border-color .15s;
}

.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.input::placeholder {
    color: var(--ink-4);
}

textarea.input {
    resize: vertical;
    min-height: 88px;
    line-height: 1.6;
}

select.input {
    cursor: pointer;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--r-lg);
    cursor: pointer;
    transition: background .1s;
}

.form-submit:hover {
    background: #1650a0;
    border-color: #1650a0;
}

.form-hint {
    font-size: 11px;
    color: var(--ink-4);
    text-align: center;
}

.form-success {
    display: none;
    padding: 24px;
    text-align: center;
    background: var(--sg-bg);
    border: 1px solid var(--sg-b);
    border-radius: var(--r-lg);
}

.form-success.visible {
    display: block;
}

.form-success-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--sg-b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 16px;
    color: var(--sg);
}

.footer {
    background: var(--paper);
    padding: 56px 0 0;
    border-top: 1px solid var(--rule);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand-name {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.footer-brand-desc {
    font-size: 12px;
    line-height: 1.75;
    color: var(--ink-3);
    margin-bottom: 20px;
    max-width: 230px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-list a {
    font-size: 12px;
    color: var(--ink-3);
}

.footer-contact-list a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.footer-contact-list span {
    font-size: 12px;
    color: var(--ink-4);
}

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-4);
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: var(--ink-3);
}

.footer-links a:hover {
    color: var(--ink);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--rule);
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    height: 80px;
}

.footer-bottom-copy {
    font-size: 11px;
    color: var(--ink-4);
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    font-size: 11px;
    color: var(--ink-4);
}

.footer-bottom-links a:hover {
    color: var(--ink);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .services-grid-full {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-brand-desc {
        max-width: none;
    }
}

@media (max-width: 860px) {
    .topbar-nav {
        display: none;
    }

    .topbar-right .topbar-phone {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .coverage-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .credstrip {
        display: none;
    }

    .hero-stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .hero-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, .07);
    }

    .hero-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .hero-inner {
        z-index: 3;
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.72) 30%,
                rgba(0, 0, 0, 0.38) 60%,
                rgba(0, 0, 0, 0.18) 100%
        );
        z-index: 2;
    }

    .services-grid-full {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-block: 56px;
    }

    .how-grid {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
}

@media (max-width: 540px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__actions .btn {
        flex: 1;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band-actions {
        width: 100%;
    }

    .cta-band-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .hero {
        padding: 64px 0 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn, .hero-actions .btn-secondary {
        justify-content: center;
    }

    .hero-stats-inner {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
    }

    .hero-stat:last-child {
        border-bottom: none !important;
    }

    .coverage-layout {
        display: grid;
        grid-template-columns: 1fr;
    }

    .route-origin {
        flex: 0 0 80px;
    }

    .route-dest {
        flex: 0 0 70px;
    }
}