/* ===================================================================
   CLEANSIMPLE — COMMERCIAL SITE DESIGN SYSTEM
   =================================================================== */

:root {
  /* Color */
  --ink:            #10243E;   /* deep navy — primary, headings, header/footer */
  --ink-2:          #1A3A5C;   /* lighter navy for gradients/hover */
  --steel:          #3F7BC4;   /* steel blue — links, secondary accents */
  --steel-light:    #7FB0E0;   /* light steel — subtle accents */
  --paper:          #FFFFFF;
  --fog:            #E8EDF2;   /* cool pale section background */
  --fog-2:          #F4F7FA;   /* lighter still, for cards on fog bg */
  --line:           #D7E0E9;   /* hairline border on light bg */
  --line-dark:      #2C4A6E;   /* hairline border on dark bg */
  --amber:          #F4A623;   /* site-safety amber — CTA accent only, use sparingly */
  --amber-dark:     #D6900F;
  --ink-soft:       #5B6B7C;   /* body copy on light bg */
  --ink-soft-2:     #8A98A6;   /* tertiary text, captions */
  --success:        #2E8B57;

  /* Type */
  --font-display: 'Archivo', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: var(--steel); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: var(--ink); }

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--paper); color: var(--paper); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--paper); }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ===================== HEADER / NAV ===================== */
.top-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  padding: 9px 0;
}
.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.top-bar a { color: rgba(255,255,255,0.82); }
.top-bar a:hover { color: var(--paper); }
.top-bar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.top-bar .tb-spacer { margin-left: auto; }
.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

.site-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 500;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--steel); }
.nav-links a.active { color: var(--steel); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--amber);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid h5 {
  color: var(--paper);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-grid a:hover { color: var(--paper); }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-contact-item { display: flex; gap: 10px; font-size: 0.92rem; margin-bottom: 12px; color: rgba(255,255,255,0.78); }
.footer-contact-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--amber); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: linear-gradient(125deg, #0C1E33 0%, var(--ink) 55%, #1F3F60 100%);
  color: var(--paper);
  padding: 86px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,36,62,0.78), rgba(16,36,62,0.92)),
    var(--hero-img, none);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { color: var(--paper); margin-bottom: 22px; }
.hero .hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-corner-tag {
  position: absolute;
  top: 0; right: 24px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  z-index: 2;
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.hero-grid .hero-inner { max-width: none; }
.hero-image-wrap { position: relative; z-index: 1; }
.hero-image-wrap .img-placeholder { border-radius: var(--radius-md); }
.hero-image-wrap .img-placeholder span { max-width: 280px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { margin-top: 8px; }
  .hero-image-wrap .img-placeholder { min-height: 240px !important; }
}

/* page banner (non-home hero, shorter) */
.page-banner {
  background: linear-gradient(120deg, #0C1E33 0%, var(--ink) 60%, #1F3F60 100%);
  color: var(--paper);
  padding: 56px 0 60px;
  position: relative;
}
.page-banner .eyebrow { color: var(--amber); }
.page-banner h1 { color: var(--paper); margin-bottom: 10px; }
.page-banner .lead { color: rgba(255,255,255,0.78); max-width: 620px; font-size: 1.05rem; margin: 0; }
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--paper); }

/* ===================== SECTIONS ===================== */
section { padding: 80px 0; }
.section-fog { background: var(--fog); }
.section-tight { padding: 56px 0; }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

/* "Site board" framed block — signature motif */
.board {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.board::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--amber);
  border-radius: 0 0 2px 2px;
}
.board-corner {
  position: absolute;
  width: 9px; height: 9px;
  border-top: 2px solid var(--steel-light);
  border-left: 2px solid var(--steel-light);
  top: 8px; left: 8px;
  opacity: 0.6;
}

/* ===================== SERVICE TILES (coverage grid) ===================== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.coverage-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  position: relative;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
}
.coverage-tile:hover {
  border-color: var(--steel);
  box-shadow: 0 12px 28px -8px rgba(16,36,62,0.18);
  transform: translateY(-3px);
}
.coverage-grid--2col { grid-template-columns: repeat(2, 1fr); }
.coverage-grid--4col { grid-template-columns: repeat(4, 1fr); }
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}
.coverage-freq .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}
.coverage-tile .tile-icon {
  width: 44px; height: 44px;
  color: var(--steel);
  margin-bottom: 16px;
}
.coverage-tile h3 { font-size: 1.15rem; margin-bottom: 8px; }
.coverage-tile p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 18px; flex-grow: 1; }
.coverage-tile .tile-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.coverage-tile .tile-link svg { width: 14px; height: 14px; transition: transform 0.18s ease; }
.coverage-tile:hover .tile-link svg { transform: translateX(3px); }
.coverage-tile.specialist { background: var(--fog-2); }

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  background: var(--ink);
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item svg { width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; margin-top: 1px; }

/* ===================== CLIENT LOGOS ===================== */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}
.logo-strip .logo-cell {
  background: var(--fog-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.logo-strip .logo-cell:hover { border-color: var(--steel); }
.logo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== TWO COLUMN FEATURE ===================== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.feature-split > div:not(.img-col) { padding-top: 4px; }
.feature-split img { border-radius: var(--radius-md); width: 100%; height: 100%; object-fit: cover; }
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.check-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.check-list li:last-child { border-bottom: none; }
.check-list svg { width: 19px; height: 19px; color: var(--steel); flex-shrink: 0; margin-top: 2px; }

/* image placeholder block (when real photography is pending) */
.img-placeholder {
  background: var(--fog);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  text-align: center;
  color: var(--ink-soft-2);
  min-height: 280px;
  width: 100%;
  height: 100%;
}
.img-placeholder svg { width: 34px; height: 34px; opacity: 0.55; }
.img-placeholder span { font-size: 0.82rem; font-weight: 600; max-width: 220px; }

/* Variant for use on dark backgrounds (e.g. the hero) — the default fog fill
   is too close to the navy gradient and becomes nearly invisible there. */
.img-placeholder.on-dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.6);
}
.img-placeholder.on-dark span { color: rgba(255,255,255,0.75); }

/* ===================== TESTIMONIAL / QUOTE BLOCK ===================== */
.quote-block {
  background: var(--fog-2);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin: 36px 0;
}
.quote-block p { font-size: 1.05rem; color: var(--ink); font-style: italic; margin-bottom: 14px; }
.quote-cite { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--ink-soft); }
.quote-cite span { font-weight: 400; color: var(--ink-soft-2); }

/* ===================== REVIEWS CAROUSEL ===================== */
.reviews-wrap {
  position: relative;
  padding: 0 56px;
}
.reviews-viewport {
  overflow: hidden;
}
.reviews-track {
  display: flex;
  transition: transform 0.35s ease;
}
.review-card {
  flex: 0 0 20%;
  padding: 0 10px;
  box-sizing: border-box;
}
.review-card > * { box-sizing: border-box; }
.review-card::before { content: none; }
.review-card {
  display: flex;
}
.review-card-inner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
}
.review-card-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 3px;
  background: var(--amber);
  border-radius: 0 0 2px 2px;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-star { width: 16px; height: 16px; color: var(--line); }
.review-star.filled { color: var(--amber); }
.review-star svg { width: 100%; height: 100%; }
.review-text {
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 16px;
  line-height: 1.5;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-name { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.review-date { font-size: 0.78rem; color: var(--ink-soft-2); }

.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
  z-index: 2;
}
.reviews-arrow:hover:not(:disabled) { border-color: var(--steel); background: var(--fog-2); }
.reviews-arrow:disabled { opacity: 0.35; cursor: default; }
.reviews-arrow svg { width: 20px; height: 20px; color: var(--ink); }
.reviews-arrow.prev { left: 0; }
.reviews-arrow.next { right: 0; }

.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.review-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background 0.2s ease; }
.review-dot.active { background: var(--steel); }

@media (max-width: 1280px) {
  .review-card { flex: 0 0 33.333%; }
}
@media (max-width: 1000px) {
  .review-card { flex: 0 0 50%; }
}
@media (max-width: 700px) {
  .reviews-wrap { padding: 0 44px; }
  .review-card { flex: 0 0 100%; }
}

/* ===================== ACCORDION (mobile-only board cards) ===================== */
.accordion-trigger {
  display: none; /* hidden on desktop — content shows normally */
}
.accordion-header { display: block; }
.accordion-body p { margin: 0; }

@media (max-width: 768px) {
  .accordion-board { cursor: default; }

  .accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
  }
  .accordion-header h3 { margin: 0; flex: 1; }

  .accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--fog);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
  }
  .accordion-chevron {
    width: 18px;
    height: 18px;
    color: var(--steel);
    transition: transform 0.25s ease;
  }
  .accordion-trigger[aria-expanded="true"] .accordion-chevron {
    transform: rotate(180deg);
  }
  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-top: 0;
  }
  .accordion-body.open {
    max-height: 400px;
    padding-top: 14px;
  }
}

/* ===================== IMAGE CAROUSEL ===================== */
.img-carousel {
  position: relative;
  border-radius: var(--radius-md);
}
.img-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.img-carousel-track {
  display: flex;
  transition: transform 0.35s ease;
}
.img-carousel-slide { flex: 0 0 100%; }
.img-carousel-slide img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}
.img-carousel-arrow {
  position: absolute;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.img-carousel-arrow:hover:not(:disabled) { background: var(--paper); border-color: var(--steel); }
.img-carousel-arrow:disabled { opacity: 0.35; cursor: default; }
.img-carousel-arrow svg { width: 18px; height: 18px; color: var(--ink); }
.img-carousel-arrow.prev { left: 10px; }
.img-carousel-arrow.next { right: 10px; }
.img-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.img-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s ease;
}
.img-carousel-dot.active { background: var(--steel); }

.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--paper); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0; }
.cta-band-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== FORMS ===================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
label { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.form-optional { font-weight: 400; color: var(--ink-soft-2); text-transform: none; letter-spacing: normal; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(63,123,196,0.15);
}
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft-2); margin-top: -6px; }

.form-success, .form-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.45;
}
.form-success {
  background: rgba(46,139,87,0.1);
  border: 1px solid rgba(46,139,87,0.3);
  color: #1f6b42;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--success); margin-top: 1px; }
.form-error {
  background: rgba(214,144,15,0.1);
  border: 1px solid rgba(214,144,15,0.35);
  color: #8a5c08;
  margin-bottom: 18px;
}
.form-error svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--amber-dark); margin-top: 1px; }

/* ===================== CARDS (news/careers list) ===================== */
.post-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
.post-card:hover { box-shadow: 0 12px 28px -10px rgba(16,36,62,0.18); transform: translateY(-2px); }
.post-card-img { height: 190px; background: var(--fog); position: relative; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 22px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.post-tag {
  display: inline-block;
  background: var(--fog);
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.post-date { font-size: 0.8rem; color: var(--ink-soft-2); margin-bottom: 6px; }
.post-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.post-card p { font-size: 0.9rem; color: var(--ink-soft); flex-grow: 1; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* ===================== STATS ROW ===================== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--ink); }
.stat-label { font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }

/* ===================== SECTOR TAGS ===================== */
.sector-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.sector-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--fog);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 100px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  .feature-split { grid-template-columns: 1fr; gap: 32px; }
  .feature-split.reverse { direction: ltr; }
  .feature-split .img-col { order: -1; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .top-bar .tb-hide-mobile { display: none; }
  section { padding: 56px 0; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-grid--2col { grid-template-columns: 1fr; }
  .coverage-grid--4col { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 28px; flex-direction: column; text-align: center; }
  .posts-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero { padding: 56px 0 64px; }
  .coverage-tile p { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 1000;
  padding: 24px;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.mobile-nav-head img { height: 40px; }
.mobile-nav-close { background: none; border: none; color: var(--paper); cursor: pointer; }
.mobile-nav-close svg { width: 28px; height: 28px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--paper);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav .btn { margin-top: 24px; }