/* ─────────────────────────────────────────────────────────
   Trade Force UK — Public Website Styles
   Font: DM Sans (loaded per-page)
   ───────────────────────────────────────────────────────── */

:root {
  --navy:   #071A33;
  --blue:   #1E63D6;
  --steel:  #6F747A;
  --silver: #C7C9CC;
  --white:  #FFFFFF;
  --bg:     #F8F9FB;
  --border: #E2E5EA;
  --red:    #DC2626;
  --green:  #16A34A;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.06);
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none !important;
  transition: opacity .15s, transform .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .9; transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.btn-sm  { padding: 8px 18px;  font-size: 13px; }
.btn-md  { padding: 13px 26px; font-size: 15px; }
.btn-lg  { padding: 16px 32px; font-size: 16px; }

.btn-primary   { background: var(--blue);  color: var(--white); }
.btn-navy      { background: var(--navy);  color: var(--white); }
.btn-outline   { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.1); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}
.header-logo img { height: 52px; width: auto; }
.header-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.3px;
}
.header-logo-text span { color: var(--blue); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  transition: background .15s, color .15s;
  text-decoration: none !important;
}
.main-nav a:hover,
.main-nav a.active { background: rgba(30,99,214,.08); color: var(--blue); }

.header-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

.mobile-nav {
  display: none;
  background: var(--navy);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none !important;
  transition: color .15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--blue); }
.mobile-nav .mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}

@media (max-width: 900px) {
  .main-nav, .header-ctas { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199,201,204,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,201,204,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-content { position: relative; max-width: 720px; padding-bottom: 72px; }
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-sub {
  font-size: 18px;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Diagonal clip to white */
.hero-divider {
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ── Page hero (internal pages — smaller) ── */
.page-hero {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199,201,204,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,201,204,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-img {
  background-size: cover;
  background-position: center 40%;
}
.page-hero-img::before {
  background-image: linear-gradient(100deg, rgba(7,26,51,0.88) 50%, rgba(7,26,51,0.60) 100%);
}
.page-hero-content { position: relative; max-width: 640px; }
.page-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.65;
}

/* ── Sections ── */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--bg); }

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label.light { color: rgba(30,99,214,.7); }
.section h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-dark h2 { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--steel);
  line-height: 1.65;
  max-width: 560px;
}
.section-dark .section-sub { color: var(--silver); }

/* ── Grid utils ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(30,99,214,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.card p { font-size: 14px; color: var(--steel); line-height: 1.6; }

/* Trade card */
.trade-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: box-shadow .15s, transform .15s;
}
.trade-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }

/* ── Two-column CTA ── */
.split-cta { display: grid; grid-template-columns: 1fr 1fr; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.12); }
.split-cta-workers { background: var(--bg); padding: 52px 48px; }
.split-cta-contractors { background: var(--navy); padding: 52px 48px; }
.split-cta-icon { margin-bottom: 20px; color: var(--blue); }
.split-cta-workers h2 { color: var(--navy); font-size: 26px; margin-bottom: 14px; }
.split-cta-contractors h2 { color: var(--white); font-size: 26px; margin-bottom: 14px; }
.split-cta-workers p { color: var(--steel); margin-bottom: 28px; }
.split-cta-contractors p { color: var(--silver); margin-bottom: 28px; }
@media (max-width: 768px) {
  .split-cta { grid-template-columns: 1fr; }
  .split-cta-workers, .split-cta-contractors { padding: 36px 28px; }
}

/* ── Process steps ── */
.steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
}
.step-body h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--silver); line-height: 1.6; }

/* ── CTA band ── */
.cta-band {
  background: var(--blue);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Forms ── */
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 40px; box-shadow: var(--shadow); }
.form-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  margin-top: 32px;
}
.form-section-title:first-of-type { margin-top: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .form-wrap { padding: 24px; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.form-label .req { color: var(--red); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,99,214,.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--silver); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236F747A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 100px; }

/* Checkbox */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.checkbox-row input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
}
.checkbox-row label {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.6;
  cursor: pointer;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; tab-index: -1; }

/* Form alerts */
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-alert.error   { background: #FEF2F2; border: 1px solid #FECACA; color: var(--red); display: block; }
.form-alert.success { background: #F0FDF4; border: 1px solid #BBF7D0; color: var(--green); display: block; }

/* Success card */
.success-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid #BBF7D0;
  background: #F0FDF4;
  border-radius: 12px;
}
.success-card svg { color: var(--green); margin: 0 auto 20px; }
.success-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.success-card p { color: var(--steel); font-size: 15px; line-height: 1.6; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.sidebar-card.dark { background: var(--navy); border-color: transparent; }
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.sidebar-card.dark h3 { color: var(--white); }
.sidebar-step {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.sidebar-step:last-child { margin-bottom: 0; }
.step-dot {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-step p { font-size: 13px; color: var(--steel); line-height: 1.55; padding-top: 4px; }
.sidebar-card.dark .sidebar-step p { color: var(--silver); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--steel);
  line-height: 1.5;
}
.check-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.check-list.light li { color: var(--silver); }

/* ── Page layout (form + sidebar) ── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 960px) {
  .page-layout { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.site-footer { background: var(--navy); color: var(--silver); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  display: inline-block;
  letter-spacing: -.3px;
}
.footer-logo-text span { color: var(--blue); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--silver);
  transition: color .15s;
  text-decoration: none !important;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.footer-contact-item a { color: var(--silver); transition: color .15s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(199,201,204,.6);
}
.footer-bottom a { color: rgba(199,201,204,.6); transition: color .15s; text-decoration: none !important; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── Prose (privacy policy etc) ── */
.prose { max-width: 780px; margin: 0 auto; }
.prose h1 { font-size: 38px; font-weight: 800; margin-bottom: 8px; }
.prose .meta { font-size: 13px; color: var(--steel); margin-bottom: 40px; }
.prose h2 { font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; }
.prose p { font-size: 15px; color: var(--steel); line-height: 1.8; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { font-size: 15px; color: var(--steel); line-height: 1.8; margin-bottom: 6px; }
.prose a { color: var(--blue); }

/* ── About values ── */
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.value-card .stripe { width: 4px; height: 36px; background: var(--blue); border-radius: 4px; margin-bottom: 16px; }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--steel); line-height: 1.6; }

/* ── Contact detail ── */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(30,99,214,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.contact-detail-body h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-detail-body p,
.contact-detail-body a { font-size: 14px; color: var(--steel); text-decoration: none; }
.contact-detail-body a:hover { color: var(--blue); }

/* ── Logo images ── */
.header-logo-img   { height: 52px; width: auto; display: block; }
.header-logo-fallback { display: none; }
.footer-logo-link  { display: inline-block; text-decoration: none !important; margin-bottom: 14px; }
.footer-logo-img   { height: 56px; width: auto; }

/* ── Hero with background image ── */
.hero-construction {
  background-color: var(--navy);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-construction::before {
  background-image: linear-gradient(100deg, rgba(7,26,51,0.94) 45%, rgba(7,26,51,0.72) 100%);
  background-size: auto;
}

/* Hero trust pills */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.hero-trust-pill svg { color: var(--blue); flex-shrink: 0; }

/* ── Trust / stat bar ── */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }
.trust-divider { width: 1px; height: 24px; background: var(--border); }
@media (max-width: 640px) { .trust-divider { display: none; } .trust-bar-inner { gap: 18px; } }

/* ── Featured image block ── */
.img-block {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-q svg { flex-shrink: 0; transition: transform .2s; color: var(--blue); }
.faq-item.open .faq-q { background: var(--bg); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--steel);
  line-height: 1.75;
  background: var(--bg);
}
.faq-item.open .faq-a { display: block; }

/* ── Coverage strip ── */
.coverage-strip {
  background: var(--navy);
  padding: 40px 0;
  text-align: center;
}
.coverage-strip p {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.coverage-strip strong { color: var(--white); }

/* ── Two col with image ── */
.two-col-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .two-col-img { grid-template-columns: 1fr; gap: 36px; } }
.two-col-img .img-block { min-height: 320px; }

/* ── Spinner ── */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
