/* =====================================================================
   Fast Track Courier Services — style.css
   Brand: crimson #DE0B2B (from logo) + deep navy + near-black chrome.
   Two identities: general courier (light, navy, energetic)
                   Fast Track Secure Courier (near-black, steel, restrained)
   Self-hosted Inter. No external requests.
   ===================================================================== */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-var.woff2") format("woff2");
}

/* ---- Design tokens ---- */
:root {
  /* brand */
  --red:      #de0b2b;   /* logo crimson — brand moments, buttons, large text */
  --red-ink:  #c00a24;   /* small text on light (6.3:1 on white) */
  --red-dark: #a80920;   /* hover */

  /* chrome / secure surfaces (logo's native background) */
  --ink-900:  #0e0f13;
  --ink-800:  #15171d;
  --ink-700:  #1e2129;

  /* navy — main-brand feature surfaces */
  --navy-900: #0b1c2e;
  --navy-800: #0f2338;
  --navy-700: #14314c;

  --steel:    #9fb3c8;   /* secure-division accent */
  --steel-dk: #6f8399;

  --slate-900:#1e293b;
  --slate-700:#334155;
  --slate-500:#64748b;
  --slate-300:#cbd5e1;
  --slate-200:#e2e8f0;
  --bg:       #ffffff;
  --bg-soft:  #f5f7f9;
  --bg-softer:#eaeef2;

  --maxw: 1180px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(11,28,46,.06), 0 1px 3px rgba(11,28,46,.08);
  --shadow-md: 0 10px 30px -12px rgba(11,28,46,.25);
  --shadow-lg: 0 24px 60px -20px rgba(11,28,46,.35);
  --ease: cubic-bezier(.16,.84,.44,1);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0; font-family: var(--font); color: var(--slate-700); background: var(--bg);
  line-height: 1.65; font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--red-ink); }
h1, h2, h3, h4 { color: var(--navy-900); line-height: 1.14; letter-spacing: -.015em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.05rem, 4.6vw, 3.3rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
strong { color: var(--slate-900); font-weight: 600; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 3px; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2rem); }
.section { padding: clamp(3.25rem, 7vw, 5.5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-800); color: #d7e1ec; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.narrow { max-width: 780px; }
.center { text-align: center; margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--red); color: #fff;
  font-weight: 700; padding: .6rem 1rem; border-radius: var(--radius-sm); transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---- Header (near-black = logo's native surface) ---- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(14,15,19,.97);
  backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid rgba(222,11,43,.28);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 80px; }
.brand { display: inline-flex; align-items: center; }
.logo-header { height: 46px; width: auto; }
.site-nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.nav-list > li > a {
  display: inline-block; color: #cbd5e1; font-weight: 500; font-size: .94rem;
  padding: .55rem .68rem; border-radius: var(--radius-sm); position: relative;
}
.nav-list > li > a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-list a[aria-current="page"] { color: #fff; }
.nav-list a[aria-current="page"]::after {
  content: ""; position: absolute; left: .68rem; right: .68rem; bottom: .26rem; height: 2px;
  background: var(--red); border-radius: 2px;
}
.nav-secure { color: #fff !important; }
.nav-secure svg { display: inline-block; vertical-align: -2px; margin-right: .3rem; }
.nav-cta {
  background: var(--red); color: #fff !important; font-weight: 700 !important;
  padding: .6rem 1.1rem !important; border-radius: 999px; margin-left: .4rem;
}
.nav-cta:hover { background: var(--red-dark); color: #fff !important; }
.nav-tel { color: #fff !important; font-weight: 700 !important; white-space: nowrap; }
.nav-tel span { color: var(--steel); font-weight: 500; }
.nav-toggle { display: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent; text-align: center;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px -10px rgba(222,11,43,.65); }
.btn-primary:hover { background: var(--red-dark); color: #fff; box-shadow: 0 12px 28px -10px rgba(222,11,43,.75); }
.btn-ghost { background: transparent; border-color: var(--slate-300); color: var(--navy-900); }
.btn-ghost:hover { border-color: var(--navy-700); background: var(--bg-softer); color: var(--navy-900); }
.btn-light { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.42); color: #fff; }
.btn-light:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-lg { font-size: 1.05rem; padding: 1.05rem 1.9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row--center { justify-content: center; }

/* ---- Kickers / heads ---- */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem; text-transform: uppercase;
  letter-spacing: .17em; font-size: .77rem; font-weight: 800; color: var(--red-ink); margin-bottom: .85rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.section--navy .kicker, .section--secure .kicker, .page-hero .kicker { color: #ff5a70; }
.section-head { max-width: 730px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; }
.lead { font-size: 1.19rem; color: var(--slate-700); }
.section--navy .lead, .section--secure .lead { color: #c3d0dd; }
.muted { color: var(--slate-500); }

/* ---- Split hero (home) ---- */
.split-hero { background: var(--bg); border-bottom: 1px solid var(--slate-200); }
.split-hero-inner { display: grid; grid-template-columns: 1.02fr .98fr; align-items: stretch; gap: 0; }
.split-hero-copy { padding: clamp(2.5rem, 5.5vw, 4.75rem) clamp(1.15rem, 3.5vw, 3rem) clamp(2.5rem, 5.5vw, 4.75rem) 0; align-self: center; }
.split-hero-copy h1 { margin-bottom: .7rem; }
.split-hero-lead { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--slate-700); margin-bottom: 1.8rem; max-width: 34rem; }
.split-hero-fig { position: relative; min-height: 380px; }
.split-hero-fig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-points { display: flex; flex-wrap: wrap; gap: .5rem 1.35rem; margin: 1.9rem 0 0; padding: 0; list-style: none; font-size: .95rem; color: var(--slate-700); font-weight: 500; }
.hero-points li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-points svg { flex: none; color: var(--red); }
.hero-tel { margin: 1.6rem 0 0; font-size: .97rem; color: var(--slate-500); }
.hero-tel a { font-weight: 800; color: var(--navy-900); font-size: 1.12rem; letter-spacing: -.01em; }
.hero-tel a:hover { color: var(--red-ink); }

/* ---- Page hero (interior) ---- */
.page-hero { position: relative; background: radial-gradient(120% 140% at 10% 0%, var(--navy-700) 0%, var(--navy-900) 64%); color: #fff; }
.page-hero--secure { background: radial-gradient(120% 140% at 10% 0%, #1e2129 0%, var(--ink-900) 66%); }
.page-hero::after {
  content: ""; position: absolute; inset: 0; opacity: .45; pointer-events: none;
  background-image: linear-gradient(rgba(222,11,43,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(222,11,43,.07) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: linear-gradient(180deg, #000, transparent);
}
.page-hero-inner { position: relative; padding: clamp(3.2rem, 7vw, 5rem) 0; max-width: 780px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cdd8e4; font-size: 1.14rem; margin-bottom: 0; }
.breadcrumb { font-size: .85rem; color: #94a6b8; margin-bottom: 1rem; }
.breadcrumb a { color: #b9c6d4; }
.breadcrumb a:hover { color: var(--red); }
.logo-secure-hero { height: 62px; width: auto; margin-bottom: 1.5rem; }

/* ---- Grids & cards ---- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d8e0e8; }
.card h3 { margin-bottom: .4rem; }
.card p:last-child { margin-bottom: 0; }
.card-ico {
  width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  background: var(--navy-900); color: var(--red); margin-bottom: 1rem;
}
.card--flat { box-shadow: none; }
.card--red-top { border-top: 3px solid var(--red); }
.card--dark { background: var(--ink-800); border-color: #262a33; box-shadow: none; }
.card--dark:hover { border-color: #333947; }
.card--dark h3 { color: #fff; }

/* ---- Steps ---- */
.steps { counter-reset: step; display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
.step { position: relative; background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 2rem 1.75rem 1.75rem; }
.step-num { font-size: 1rem; font-weight: 800; color: var(--red-ink); letter-spacing: .04em; display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.step-num::before { counter-increment: step; content: "0" counter(step); font-size: 2rem; color: var(--navy-900); line-height: 1; }
.step h3 { margin-bottom: .35rem; }
.step p:last-child { margin-bottom: 0; }
.section--secure .step { background: var(--ink-800); border-color: #2a2e37; }
.section--secure .step h3 { color: #fff; }
.section--secure .step-num { color: var(--steel); }
.section--secure .step-num::before { color: #fff; }

/* ---- Checklist ---- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.checklist li { position: relative; padding-left: 2.05rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background-color: rgba(222,11,43,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c00a24' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: .88rem; background-repeat: no-repeat; background-position: center;
}
.section--navy .checklist li::before, .section--secure .checklist li::before {
  background-color: rgba(222,11,43,.24);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8095' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.checklist.cols { grid-template-columns: repeat(2, 1fr); gap: .8rem 2rem; }

/* ---- Media rows ---- */
.media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 5vw, 3.5rem); align-items: center; }
.media--reverse .media-fig { order: 2; }
.media-fig { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.media-fig img { width: 100%; height: 100%; object-fit: cover; }
.media-body h2 { margin-bottom: .6rem; }

/* ---- SECURE DIVISION (near-black + steel) ---- */
.section--secure { background: var(--ink-900); color: #c3cdd8; position: relative; }
.section--secure h2, .section--secure h3, .section--secure h4 { color: #fff; }
.secure-band { position: relative; overflow: hidden; }
.secure-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(159,179,200,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(159,179,200,.05) 1px, transparent 1px);
  background-size: 52px 52px;
}
.secure-band-inner { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.logo-secure-band { height: 66px; width: auto; margin-bottom: 1.6rem; }
.secure-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--steel);
  border: 1px solid rgba(159,179,200,.32); border-radius: 999px; padding: .38rem .85rem; margin-bottom: 1.35rem;
}
.secure-fig { border-radius: var(--radius); overflow: hidden; border: 1px solid #262a33; box-shadow: 0 30px 70px -30px rgba(0,0,0,.9); }
.secure-tel { margin-top: 1.7rem; font-size: .95rem; color: var(--steel-dk); }
.secure-tel a { color: #fff; font-weight: 800; font-size: 1.16rem; letter-spacing: -.01em; }
.secure-tel a:hover { color: var(--red); }
.secure-note { font-size: .87rem; color: var(--steel-dk); border-top: 1px solid #23262e; padding-top: 1.1rem; margin-top: 1.8rem; }

/* ---- Stats ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--red); font-weight: 800; letter-spacing: -.02em; }
.stat span { font-size: .95rem; color: #c3d0dd; }
.section--soft .stat span, .section:not(.section--navy):not(.section--secure) .stat span { color: var(--slate-500); }
.section--soft .stat b, .section:not(.section--navy):not(.section--secure) .stat b { color: var(--red-ink); }

/* ---- Tiles ---- */
.tile { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile-body { padding: 1.5rem; }
.tile-body h3 { margin-bottom: .35rem; }
.tile-body p:last-child { margin-bottom: 0; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(118deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.25rem); display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: space-between; box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; margin-bottom: .35rem; }
.cta-band p { color: #c3d0dd; margin-bottom: 0; max-width: 48ch; }
.cta-band--secure { background: linear-gradient(118deg, var(--ink-900), #23272f); border: 1px solid #2b2f38; }
.link-on-dark { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.link-on-dark:hover { color: var(--red); }

/* ---- Offices ---- */
.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.office-tel { margin-bottom: .5rem; }
.office-tel a { font-weight: 800; font-size: 1.05rem; color: var(--navy-900); letter-spacing: -.01em; }
.office-tel a:hover { color: var(--red-ink); }
.office { background: #fff; border: 1px solid var(--slate-200); border-left: 3px solid var(--red); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.office h3 { margin-bottom: .15rem; font-size: 1.08rem; }
.office .office-region { font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red-ink); display: block; margin-bottom: .6rem; }
.office address { font-style: normal; color: var(--slate-700); margin-bottom: .7rem; }
.office a { font-weight: 600; }

/* ---- Notes / disclaimers ---- */
.note { background: var(--bg-softer); border-left: 3px solid var(--red); border-radius: var(--radius-sm); padding: 1.1rem 1.25rem; font-size: .95rem; color: var(--slate-700); }
.section--secure .note { background: var(--ink-800); color: #b6c2ce; border-left-color: var(--steel); }
.disclaimer { font-size: .86rem; color: var(--slate-500); border-top: 1px solid var(--slate-200); padding-top: 1.25rem; margin-top: 2.5rem; }

/* ---- Definition rows ---- */
.deflist { display: grid; gap: 1.25rem; }
.defrow { display: grid; grid-template-columns: 200px 1fr; gap: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--slate-200); }
.defrow h3 { margin: 0; color: var(--navy-900); }
.defrow p:last-child { margin-bottom: 0; }
.section--secure .defrow { border-bottom-color: #23262e; }

/* ---- Forms ---- */
.form-card { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: clamp(1.5rem, 4vw, 2.5rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; color: var(--navy-900); margin-bottom: .4rem; font-size: .95rem; }
.field .req { color: var(--red-ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--slate-900);
  padding: .8rem .9rem; border: 1.5px solid var(--slate-200); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(222,11,43,.18); }
.field-hint { font-size: .85rem; color: var(--slate-500); margin-top: .35rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; border-radius: var(--radius-sm); padding: .9rem 1.1rem; margin-bottom: 1.15rem; font-size: .95rem; }
.form-status.is-ok { display: block; background: #eaf5ee; color: #1c6b3f; border: 1px solid #b7e0c6; }
.form-status.is-err { display: block; background: #fdecec; color: #8f1020; border: 1px solid #f3c2c2; }
.cf-turnstile { margin-bottom: 1.15rem; min-height: 65px; }
.privacy-line { font-size: .85rem; color: var(--slate-500); margin-top: 1rem; }

/* ---- Contact layout ---- */
.contact-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
.contact-aside .cmethod { margin-bottom: 1rem; }
.cmethod { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.cmethod .card-ico { margin-bottom: .8rem; }
.cmethod h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.cmethod a { font-weight: 700; color: var(--navy-900); word-break: break-word; }
.cmethod a:hover { color: var(--red-ink); }
.cmethod p { font-size: .95rem; margin-bottom: 0; }
.tel-big { font-size: 1.15rem; letter-spacing: -.01em; }
.tel-vanity { color: var(--slate-500); font-size: .88rem; }
.email-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.email-list li { display: grid; gap: 0; font-size: .93rem; }
.email-list span { font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--slate-500); }
.email-list a { font-weight: 600; color: var(--navy-700); word-break: break-word; }
.email-list a:hover { color: var(--red-ink); }

/* ---- Footer ---- */
.site-footer { background: var(--ink-900); color: #a2aebb; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr 1.05fr 1.05fr; gap: 2.25rem; padding-top: clamp(3rem, 6vw, 4rem); padding-bottom: 2.5rem; }
.logo-footer { height: 44px; width: auto; margin-bottom: 1.1rem; }
.footer-grid h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-grid a { color: #b2bfcc; }
.footer-grid a:hover { color: var(--red); }
.footer-areas { font-size: .9rem; color: #8b98a6; }
.footer-areas strong { color: #c5d0da; }
.footer-office { margin-bottom: 1.1rem; }
.footer-office span { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--steel-dk); margin-bottom: .2rem; }
.footer-office address { font-style: normal; line-height: 1.5; }
.footer-tel a { color: #fff; font-weight: 800; }
.footer-tel a:hover { color: var(--red); }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; padding-bottom: 2.25rem; }
.footer-legal p { font-size: .82rem; color: #78848f; margin-bottom: .6rem; }
.footer-copy { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: center; }
.footer-copy a { color: #8e9aa6; }
.footer-copy a:hover { color: var(--red); }

/* ---- Helpers ---- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-35 { margin-top: 3.5rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.divider { height: 1px; background: var(--slate-200); border: 0; margin: 2.5rem 0; }

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .nav-list > li > a { padding: .5rem .5rem; font-size: .9rem; }
  .nav-tel { display: none; }
}
@media (max-width: 980px) {
  .split-hero-inner { grid-template-columns: 1fr; }
  .split-hero-copy { padding: clamp(2.25rem,6vw,3.25rem) 0; }
  .split-hero-fig { min-height: 300px; order: -1; }
  .secure-band-inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .defrow { grid-template-columns: 1fr; gap: .3rem; }
  .offices { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,.25);
    border-radius: 9px; cursor: pointer; padding: 0 11px;
  }
  .nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; display: none; background: var(--ink-900);
    border-bottom: 1px solid rgba(222,11,43,.28); box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: .15rem; padding: .75rem clamp(1.15rem,4vw,2rem) 1.25rem; }
  .nav-list > li > a { padding: .8rem .6rem; font-size: 1.05rem; }
  .nav-list a[aria-current="page"]::after { display: none; }
  .nav-list a[aria-current="page"] { color: var(--red); }
  .nav-cta { text-align: center; margin: .5rem 0 0; }
  .nav-tel { display: block; }
  .logo-header { height: 40px; }
}
@media (max-width: 760px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .checklist.cols { grid-template-columns: 1fr; }
  .media { grid-template-columns: 1fr; }
  .media--reverse .media-fig { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .offices { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .logo-secure-band, .logo-secure-hero { height: 52px; }
}
@media (max-width: 400px) { .stats { grid-template-columns: 1fr; } }
