/* ============================================================
   NORWAY SOLUTIONS — DESIGN SYSTEM
   Palette derived from brand mark: deep signal-blue + carrier red.
   Display: Space Grotesk / Body: Inter / Data: IBM Plex Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  /* Brand core */
  --navy-950: #060e26;
  --navy-900: #0a1a3f;
  --navy-800: #0d2358;
  --navy-700: #0e3379;
  --navy-600: #12419e;
  --navy-500: #2158c4;
  --navy-100: #e8edf9;
  --navy-50:  #f2f5fc;

  --red-700: #8f0f1f;
  --red-600: #b81527;
  --red-500: #d31a2e;
  --red-100: #fbe4e6;

  --ink:    #0f1424;
  --slate:  #545e72;
  --slate-light: #838ba1;
  --border: #e2e5ef;
  --border-strong: #c9cede;
  --paper:  #f6f7fb;
  --paper-alt: #eef1f8;
  --white:  #ffffff;

  --success: #147a4c;

  /* Type */
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', monospace;

  /* Scale */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 26, 63, 0.06), 0 1px 1px rgba(10, 26, 63, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(10, 26, 63, 0.16);
  --shadow-lg: 0 24px 64px -16px rgba(10, 26, 63, 0.24);

  --container: 1200px;
  --header-h: 108px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

:focus-visible {
  outline: 2.5px solid var(--red-500);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 600;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-600);
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--red-600);
  display: inline-block;
}

.section {
  padding: 96px 0;
}
.section-tight { padding: 64px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--slate); font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.bg-navy { background: var(--navy-950); color: var(--white); }
.bg-alt { background: var(--paper-alt); }
.bg-white { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--red-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border-strong);
  color: var(--navy-950);
}
.btn-ghost:hover { border-color: var(--navy-600); background: var(--navy-50); }

.btn-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: var(--white);
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.btn-arrow::after {
  content: "→";
  transition: transform 0.15s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
}
.utility-left { display: flex; align-items: center; gap: 22px; }
.utility-item { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.utility-item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.75; }
.utility-item a:hover { color: var(--white); }
.utility-right { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; color: rgba(255,255,255,0.5); }
.utility-right .dot { width: 6px; height: 6px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 3px rgba(61,220,132,0.18); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 58px; width: 58px; object-fit: contain; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-950);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.brand-word span { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 10.5px; letter-spacing: 0.12em; color: var(--red-600); text-transform: uppercase; margin-top: 2px; }

nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
}
nav.main-nav a:hover { color: var(--navy-950); background: var(--navy-50); }
nav.main-nav a.active { color: var(--navy-950); font-weight: 600; }
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--red-600);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span { width: 22px; height: 2px; background: var(--navy-950); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 24px 20px;
}
.mobile-nav a { padding: 13px 4px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--border); }
.mobile-nav a.active { color: var(--red-600); }
.mobile-nav .btn { margin-top: 16px; }
.mobile-nav.is-open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 62%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 88px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(33, 88, 196, 0.35), transparent 42%),
    radial-gradient(circle at 82% 0%, rgba(211, 26, 46, 0.22), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}
.hero-copy .eyebrow { color: #ff8b93; }
.hero-copy .eyebrow::before { background: #ff8b93; }
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(36px, 4.6vw, 58px);
  margin-top: 18px;
  max-width: 620px;
}
.hero-copy p.lead {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
}
.hero-stat .label { font-size: 12.5px; color: rgba(255,255,255,0.58); margin-top: 4px; }

/* Network / route visual — signature element */
.route-panel {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  backdrop-filter: blur(6px);
}
.route-panel .route-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.route-title .dot { width: 6px; height: 6px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 3px rgba(61,220,132,0.18); }
.route-svg { width: 100%; height: auto; display: block; }
.flow-path { animation: dashFlow 3.2s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -90; } }
.route-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  gap: 8px;
}
.route-legend div { text-align: center; flex: 1; }
.route-legend .route-tag { font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; }
.route-legend .city { font-weight: 600; font-size: 13.5px; color: var(--white); margin-top: 4px; }

/* ============================================================
   TRUST / STAT STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 30px 24px;
  text-align: center;
  border-left: 1px solid var(--border);
}
.trust-item:first-child { border-left: none; }
.trust-item .num { font-family: var(--font-mono); font-size: 24px; font-weight: 600; color: var(--navy-900); }
.trust-item .label { font-size: 13px; color: var(--slate); margin-top: 4px; }

/* ============================================================
   CARDS — Services
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-strong); }

.icon-tile {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--navy-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-700);
  margin-bottom: 18px;
}
.icon-tile svg { width: 22px; height: 22px; }
.icon-tile.red { background: var(--red-100); color: var(--red-600); }

.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--slate); font-size: 14.5px; }
.card .tag-list { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--navy-50);
  color: var(--navy-700);
  border: 1px solid var(--navy-100);
}
.card-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-700);
}
.card-link::after { content: "→"; transition: transform .15s ease; }
.card:hover .card-link::after { transform: translateX(3px); }

/* Training-specific accent variants */
.card.training-it { border-top: 3px solid var(--navy-700); }
.card.training-nonit { border-top: 3px solid var(--red-600); }

/* ============================================================
   WHY CHOOSE / FEATURE LIST
   ============================================================ */
.feature-row {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red-600);
  font-weight: 600;
  min-width: 34px;
  padding-top: 3px;
}
.feature-row h3 { font-size: 17px; margin-bottom: 6px; }
.feature-row p { color: var(--slate); font-size: 14.5px; max-width: 520px; }

/* ============================================================
   LOCATIONS
   ============================================================ */
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.location-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--navy-700);
}
.location-card.branch::before { background: var(--red-600); }
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy-700);
  background: var(--navy-50);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.location-card.branch .location-badge { color: var(--red-600); background: var(--red-100); }
.location-card h3 { font-size: 19px; margin-bottom: 10px; }
.location-card address { font-style: normal; color: var(--slate); font-size: 14.5px; line-height: 1.7; }
.location-card .meta-row { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }
.location-card .meta-row a { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--navy-900); }
.location-card .meta-row svg { width: 16px; height: 16px; color: var(--red-600); flex-shrink: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(211,26,46,0.28), transparent 45%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(24px, 3vw, 32px); max-width: 460px; }
.cta-band p { color: rgba(255,255,255,0.72); margin-top: 10px; max-width: 460px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(211,26,46,0.25), transparent 45%);
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.breadcrumb a:hover { color: var(--white); }
.page-header h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); margin-top: 14px; max-width: 700px; }
.page-header p.lead { color: rgba(255,255,255,0.72); margin-top: 14px; max-width: 620px; font-size: 16.5px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy-950); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px var(--navy-100);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--slate-light); margin-top: 14px; }
.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #e6f5ee; color: var(--success); border: 1px solid #b7e3cc; }
.form-status.error { background: var(--red-100); color: var(--red-700); border: 1px solid #f2c1c7; }

.field-error { font-size: 12px; color: var(--red-600); margin-top: 5px; display: none; }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: var(--red-500); }
.form-group.invalid .field-error { display: block; }

.contact-side { display: flex; flex-direction: column; gap: 18px; }

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
}
.legal-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.legal-toc h2 { font-size: 15px; margin-bottom: 12px; }
.legal-toc ol { list-style: decimal; padding-left: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; }
.legal-toc li { font-size: 14px; }
.legal-toc a { color: var(--navy-700); font-weight: 500; }
.legal-toc a:hover { text-decoration: underline; }

.legal-section { margin-bottom: 36px; scroll-margin-top: 100px; }
.legal-section h2 {
  font-size: 20px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-section p, .legal-section li { color: var(--slate); font-size: 15px; margin-bottom: 12px; }
.legal-section ul { list-style: disc; padding-left: 22px; }
.legal-section ul li { margin-bottom: 8px; }
.legal-updated {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--slate-light);
  margin-bottom: 32px;
}
.legal-disclaimer {
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 13.5px;
  color: var(--navy-800);
  margin-bottom: 36px;
}

/* ============================================================
   404
   ============================================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.error-page .code {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--red-600);
  letter-spacing: 0.08em;
}
.error-page h1 { font-size: clamp(32px, 5vw, 52px); margin-top: 14px; }
.error-page p { color: var(--slate); margin-top: 14px; max-width: 440px; margin-left: auto; margin-right: auto; }
.error-page .btn { margin-top: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img {
  height: 52px;
  width: 52px;
  background: #ffffff;
  border-radius: 50%;
  padding: 7px;
  box-sizing: content-box;
  object-fit: contain;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.footer-brand span { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; font-family: var(--font-mono); font-weight: 500; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; transition: color .15s ease; }
.footer-col a:hover { color: var(--white); }
.footer-desc { font-size: 14px; max-width: 320px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s ease, background .15s ease;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 28px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   MISC — scroll reveal, back to top
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .route-panel { max-width: 560px; }
  .contact-layout { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
}

@media (max-width: 860px) {
  .utility-bar .utility-item.hide-tablet { display: none; }
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 40px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .utility-right { display: none; }
  .cta-band { padding: 32px 24px; }
  .location-badge { margin-bottom: 10px; }
}
