/* Air Masters â€” standalone site styles */
:root {
  --primary: #0f4c81;
  --primary-dark: #0a365d;
  --primary-mid: #1565a8;
  --accent: #00a8e8;
  --accent-dark: #008cc2;
  --bg: #f0f5fa;
  --bg-soft: #e8f1f8;
  --surface: #ffffff;
  --text: #0f172a;
  --text-mid: #475569;
  --text-light: #64748b;
  --border: #d8e4ef;
  --ok: #16a34a;
  --font-display: "Sora", sans-serif;
  --font-body: "Figtree", sans-serif;
  --radius: 12px;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 8px 30px rgba(10, 54, 93, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--primary-dark);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  color: var(--text-mid);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Language */
[data-lang="en"] .lang-fr {
  display: none !important;
}
[data-lang="fr"] .lang-en {
  display: none !important;
}

/* Top bar */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--primary-dark);
  cursor: pointer;
  padding: 0;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 0.5rem 1rem 1.25rem;
}

.nav-panel.is-open {
  display: block;
}

.nav-panel a,
.nav-panel .lang-btn {
  display: block;
  width: 100%;
  padding: 0.95rem 0.5rem;
  border-bottom: 1px solid var(--bg);
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--font-body);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  cursor: pointer;
}

.nav-panel a:last-of-type {
  border-bottom: none;
}

.nav-panel .btn {
  margin-top: 0.75rem;
  text-align: center;
  border: none !important;
}

.nav-panel a.btn-primary {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.7rem 1.1rem !important;
  border-bottom: none !important;
}

.lang-btn {
  margin-top: 0.5rem;
  border: 1.5px solid var(--accent) !important;
  border-radius: 8px;
  color: var(--primary-dark);
  font-weight: 700;
  text-align: center !important;
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    align-items: center;
    gap: 0.15rem 1.1rem;
    width: auto;
  }

  .nav-panel a,
  .nav-panel .lang-btn {
    width: auto;
    padding: 0.35rem 0;
    border: none !important;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .nav-panel a:hover {
    color: var(--accent-dark);
  }

  .nav-panel .btn {
    margin-top: 0;
    padding: 0.65rem 1.15rem !important;
    font-size: 0.9rem !important;
  }

  .nav-panel a.btn-primary {
    background: var(--accent) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(0, 168, 232, 0.28);
  }

  .nav-panel .lang-btn {
    margin-top: 0;
    padding: 0.4rem 0.7rem !important;
    border: 1.5px solid var(--accent) !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0, 168, 232, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--surface);
  color: var(--primary-dark) !important;
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark) !important;
}

/* Hero â€” full-bleed photo + brand composition */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #06243d;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-office.jpg");
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  animation: hero- ken 22s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(4, 28, 48, 0.94) 0%,
      rgba(8, 48, 78, 0.82) 38%,
      rgba(10, 54, 93, 0.45) 68%,
      rgba(10, 54, 93, 0.25) 100%
    ),
    linear-gradient(to top, rgba(4, 28, 48, 0.55) 0%, transparent 42%);
}

@keyframes hero-ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  margin: 0 0 1.1rem;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-brand span {
  display: block;
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 0.55rem;
  font-family: var(--font-body);
  color: #9ad8f5;
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 600;
  max-width: 22ch;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: rise-in 0.8s var(--ease) both;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  max-width: 36ch;
  margin-bottom: 1.75rem;
  line-height: 1.55;
  animation: rise-in 0.8s 0.1s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise-in 0.8s 0.18s var(--ease) both;
}

.hero .btn-primary {
  background: #fff;
  color: var(--primary-dark) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero .btn-primary:hover {
  background: #e8f6fc;
  color: var(--primary-dark) !important;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Trust strip under hero */
.trust-strip {
  background: var(--primary-dark);
  color: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.trust-strip-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 28rem;
}

.trust-strip-copy strong {
  color: #fff;
}

.trust-strip .hero-cert {
  margin: 0;
  transform: scale(0.92);
  transform-origin: right center;
}

@media (max-width: 700px) {
  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip .hero-cert {
    transform-origin: left center;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-alt {
  background: var(--surface);
}

.section-head {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}

.section-head p {
  margin: 0;
  font-size: 1.05rem;
}

.cert-inline {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

/* Symptom list â€” not cards; clean rows */
.symptom-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .symptom-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
  }
}

.symptom-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.symptom-item:last-child {
  border-bottom: none;
}

@media (min-width: 700px) {
  .symptom-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

.symptom-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.symptom-icon svg {
  width: 24px;
  height: 24px;
}

.symptom-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.symptom-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Advantage â€” feature strip */
.advantage-strip {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .advantage-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.adv-item {
  padding: 1.5rem 0;
  border-top: 3px solid var(--accent);
}

.adv-item.featured {
  background: var(--primary-dark);
  color: #fff;
  padding: 1.5rem;
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
}

.adv-item.featured h3,
.adv-item.featured p {
  color: #fff;
}

.adv-item.featured p {
  opacity: 0.9;
}

.adv-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.adv-item.featured .adv-label {
  color: #7dd3fc;
}

.adv-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.adv-item p {
  margin: 0;
  font-size: 0.92rem;
}

/* Process */
.process-steps {
  display: grid;
  gap: 2rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.process-step {
  counter-increment: step;
  position: relative;
  padding-top: 0.5rem;
}

.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.2rem;
}

.process-step p {
  margin: 0;
  font-size: 0.98rem;
}

/* Detection panels */
.detect-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .detect-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .detect-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.detect-item {
  padding: 1.35rem 1rem 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .detect-item:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid var(--border);
  }

  .detect-item:nth-child(even) {
    padding-left: 1.5rem;
  }
}

@media (min-width: 960px) {
  .detect-item {
    border-right: 1px solid var(--border);
    padding: 1.35rem 1.25rem;
  }

  .detect-item:nth-child(3n) {
    border-right: none;
  }

  .detect-item:nth-child(odd),
  .detect-item:nth-child(even) {
    padding: 1.35rem 1.25rem;
  }
}

.detect-cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.4rem;
}

.detect-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.detect-item p {
  margin: 0;
  font-size: 0.9rem;
}

.detect-item.special .detect-cat {
  color: var(--primary);
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, var(--primary-dark), var(--primary-mid));
  color: #fff;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

.cta-band .btn-primary {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #a5e0ff;
}

/* Footer / service areas */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1.2fr 0.8fr;
    gap: 2rem;
  }
}

.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-soft);
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-contact a {
  color: var(--accent-dark);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Mobile sticky action bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(10, 54, 93, 0.08);
}

.mobile-bar .btn {
  padding: 0.85rem 0.75rem;
  font-size: 0.92rem;
  border-radius: 10px;
}

@media (min-width: 900px) {
  .mobile-bar {
    display: none;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* â€”â€”â€” Nav dropdown (Services) â€”â€”â€” */
.nav-drop {
  position: relative;
}

.nav-drop-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0.95rem 0.5rem;
  border: none;
  border-bottom: 1px solid var(--bg);
  background: none;
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  text-align: left;
}

.nav-drop-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-drop.is-open .nav-drop-btn svg {
  transform: rotate(180deg);
}

.nav-drop-menu {
  display: none;
  padding: 0 0 0.5rem 0.75rem;
}

.nav-drop.is-open .nav-drop-menu {
  display: block;
}

.nav-drop-menu a {
  display: block;
  padding: 0.7rem 0.5rem !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  border-bottom: none !important;
  color: var(--text-mid) !important;
}

.nav-drop-menu a:hover {
  color: var(--accent-dark) !important;
}

.nav-drop-menu a.is-featured {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

@media (min-width: 960px) {
  .nav-drop-btn {
    width: auto;
    padding: 0.35rem 0;
    border: none;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .nav-drop-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    padding: 0.6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    z-index: 120;
  }

  .nav-drop-menu a {
    padding: 0.65rem 0.85rem !important;
    border-radius: 8px;
  }

  .nav-drop-menu a:hover {
    background: var(--bg-soft);
  }
}

/* Baseline compliance line */
.baseline-line {
  display: block;
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-light);
  line-height: 1.4;
}

.hero .baseline-line,
.hw-promo .baseline-line,
.hw-hero .baseline-line,
.cta-band .baseline-line {
  color: rgba(255, 255, 255, 0.78);
}

/* Homepage dual path under hero */
.audience-split {
  display: grid;
  gap: 0;
  background: var(--surface);
}

@media (min-width: 720px) {
  .audience-split {
    grid-template-columns: 1fr 1fr;
  }
}

.audience-path {
  position: relative;
  padding: 2rem 1.5rem 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

@media (min-width: 720px) {
  .audience-path {
    border-bottom: none;
    min-height: 160px;
  }

  .audience-path:first-child {
    border-right: 1px solid var(--border);
  }
}

.audience-path::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.audience-path:hover {
  background: var(--bg-soft);
}

.audience-path:hover::before {
  transform: scaleY(1);
}

.audience-path strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.audience-path span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.audience-path em {
  font-style: normal;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

/* Healthy Workplace homepage teaser â€” contained, not full-bleed */
.hw-promo-wrap {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--bg);
}

.hw-promo {
  position: relative;
  overflow: hidden;
  color: #fff;
  display: grid;
  border-radius: 16px;
  min-height: 380px;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 860px) {
  .hw-promo {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 400px;
  }
}

.hw-promo-visual {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(to top, rgba(6, 36, 61, 0.25), transparent 45%),
    url("../img/team-office.jpg") center/cover no-repeat;
}

@media (min-width: 860px) {
  .hw-promo-visual {
    min-height: 100%;
    order: 2;
  }
}

.hw-promo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4.5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
  background:
    linear-gradient(145deg, #052845 0%, #0c4a78 55%, #0a6a8c 100%);
}

.hw-promo-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 0.85rem;
}

.hw-promo h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  max-width: 18ch;
  margin-bottom: 0.35rem;
}

.hw-promo-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.hw-promo p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 38ch;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
}

.hw-promo .btn-primary {
  margin-top: 0;
  align-self: flex-start;
  background: #fff;
  color: var(--primary-dark) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hw-promo .btn-primary:hover {
  background: #e8f6fc;
}

.hw-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hw-promo-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

/* Dual path chooser â€” contained */
.path-section {
  background: var(--surface);
  padding-top: clamp(2.75rem, 6vw, 4rem);
  padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.path-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 780px) {
  .path-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.path-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-top: 4px solid var(--accent);
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.path-panel:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.path-panel-cert {
  border-top-color: var(--primary);
  background: linear-gradient(165deg, #f7fbfe 0%, var(--bg-soft) 100%);
}

.path-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.65rem;
}

.path-panel-cert .path-label {
  color: var(--primary);
}

.path-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.path-panel p {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  flex: 1;
}

.path-cta {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 0.95rem;
}

.path-panel-cert .path-cta {
  color: var(--primary);
}

@keyframes atmosphere {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

/* â€”â€”â€” Healthy Workplace landing â€”â€”â€” */
.hw-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(480px, 70vh, 620px);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 9vw, 5rem) 0;
  background: #052845;
}

.hw-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-workspace.jpg");
  background-size: cover;
  background-position: center;
  animation: hero-ken 20s ease-in-out infinite alternate;
}

.hw-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(5, 40, 69, 0.94) 0%,
      rgba(8, 55, 90, 0.78) 45%,
      rgba(10, 54, 93, 0.4) 100%
    );
}

.hw-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.hw-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  margin-bottom: 1rem;
}

.hw-hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin-bottom: 0.5rem;
  max-width: 32ch;
}

.hw-hero .hero-actions {
  margin-top: 1.5rem;
}

.hw-hero .btn-primary {
  background: #fff;
  color: var(--primary-dark) !important;
}

.hw-hero .btn-primary:hover {
  background: #e8f6fc;
}

/* Audience grid â€” interaction destinations */
.audience-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.audience-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.audience-card .symptom-icon {
  margin: 0 auto 1rem;
}

.audience-card h3 {
  font-size: 1rem;
  margin: 0;
}

/* 4-step flow */
.flow-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: flow;
}

@media (min-width: 800px) {
  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.flow-step {
  counter-increment: flow;
  padding: 1.25rem 1rem;
  background: var(--surface);
  border-top: 3px solid var(--accent);
}

.flow-step::before {
  content: counter(flow);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.flow-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.flow-step p {
  margin: 0;
  font-size: 0.9rem;
}

/* Deliverables list */
.deliver-list {
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 auto;
}

.deliver-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1.02rem;
}

.deliver-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--bg-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a8e8' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.deliver-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* Door decal showcase */
.decal-showcase {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin: 0 auto 2.5rem;
  max-width: 920px;
}

@media (min-width: 800px) {
  .decal-showcase {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }
}

.decal-photo {
  margin: 0;
}

.decal-photo img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.decal-photo figcaption {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: center;
}

.decal-detail {
  text-align: center;
}

@media (min-width: 800px) {
  .decal-detail {
    text-align: left;
  }
}

.decal-sticker {
  width: min(168px, 42vw);
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

@media (min-width: 800px) {
  .decal-sticker {
    margin-left: 0;
  }
}

.decal-detail h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.decal-detail p {
  margin: 0;
  font-size: 0.98rem;
}

/* Accordion */
.accordion {
  max-width: 44rem;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
  cursor: pointer;
}

.accordion-trigger svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.accordion-item.is-open .accordion-trigger svg {
  transform: rotate(45deg);
}

.accordion-panel {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-mid);
  font-size: 0.98rem;
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.standards-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Lead form */
.lead-form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
  text-align: left;
}

.lead-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.35rem;
}

.form-on-light .lead-form label {
  color: var(--primary-dark);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-on-light .lead-form input,
.form-on-light .lead-form select,
.form-on-light .lead-form textarea {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.lead-form textarea {
  min-height: 8rem;
  resize: vertical;
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Contact page */
.contact-hero {
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 168, 232, 0.12), transparent 55%),
    linear-gradient(180deg, #eef6fc 0%, var(--bg) 100%);
}

.contact-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}

.contact-hero-lead {
  max-width: 36rem;
  margin: 0;
  font-size: 1.08rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.contact-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.contact-card p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-card a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent-dark);
}

.contact-form-panel {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 54, 93, 0.06);
}

.contact-form-panel h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.contact-form-panel > p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.contact-form-panel .lead-form {
  max-width: none;
  margin: 0;
}

.contact-banner {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-banner.is-ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.contact-banner.is-err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contact-local {
  margin-top: 0.5rem;
}

.contact-local-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-local-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-cities {
  padding-top: 0.5rem;
}

.contact-city-block {
  margin-bottom: 2rem;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.contact-city-block:last-child {
  margin-bottom: 0;
}

.contact-city-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.contact-city-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.contact-city-head p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
}

.contact-city-meta {
  text-align: left;
  font-size: 0.92rem;
}

@media (min-width: 700px) {
  .contact-city-meta {
    text-align: right;
  }
}

.contact-city-meta a {
  display: block;
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-city-meta a:hover {
  color: var(--primary-dark);
}

.contact-city-list {
  margin: 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.75;
}

@media (min-width: 700px) {
  .contact-city-list {
    columns: 3;
  }
}

@media (min-width: 1000px) {
  .contact-city-list {
    columns: 4;
  }
}

.contact-city-list li {
  break-inside: avoid;
  margin: 0 0 0.15rem;
}

.contact-city-list a {
  color: var(--text-mid);
  text-decoration: none;
}

.contact-city-list a:hover {
  color: var(--accent-dark);
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-on-light .lead-form input::placeholder {
  color: var(--text-light);
}

.lead-form select option {
  color: var(--text);
  background: #fff;
}

.lead-form .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.form-status.is-ok {
  color: #86efac;
}

.form-on-light .form-status.is-ok {
  color: var(--ok);
}

.form-status.is-err {
  color: #fecaca;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 54, 93, 0.55);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.is-open {
  display: flex;
}

@media (min-width: 640px) {
  .modal-backdrop {
    align-items: center;
  }
}

.modal {
  background: var(--surface);
  border-radius: 16px 16px 0 0;
  width: min(100%, 440px);
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem 1.35rem 1.75rem;
  box-shadow: 0 20px 50px rgba(10, 54, 93, 0.25);
  animation: rise-in 0.35s var(--ease) both;
}

@media (min-width: 640px) {
  .modal {
    border-radius: 16px;
    padding: 2rem;
  }
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.modal-head h2 {
  font-size: 1.35rem;
  margin: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal .baseline-line {
  margin-bottom: 1.25rem;
}

body.modal-open {
  overflow: hidden;
}

/* â€”â€”â€” RAIR page â€”â€”â€” */
.rair-advantage {
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .rair-advantage {
    grid-template-columns: 1fr 1.15fr 1fr;
  }
}

.rair-layers {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
}

.rair-layer {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.rair-layer-plus {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
}

.rair-portal {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 0;
}

@media (min-width: 800px) {
  .rair-portal {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 2.5rem;
  }
}

.rair-portal-copy h2 {
  margin-bottom: 0.75rem;
}

.rair-portal-copy p {
  margin-bottom: 1.25rem;
}

.rair-portal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rair-portal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.98rem;
}

.rair-portal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.rair-portal-cta {
  text-align: center;
}

.rair-portal-cta .btn {
  width: 100%;
  justify-content: center;
}

.rair-portal-note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.path-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-top: 4px solid var(--accent);
}

.path-card-alt {
  border-top-color: var(--primary);
  background: linear-gradient(165deg, #f7fbfe 0%, var(--bg-soft) 100%);
}

.path-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.path-card p {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  flex: 1;
}

/* ——— City service-area pages ——— */
.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span[aria-hidden="true"] {
  margin: 0 0.4rem;
  opacity: 0.55;
}

.city-hero {
  padding: 1.5rem 0 0;
}

.city-hero-inner {
  max-width: 48rem;
}

.city-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.city-hero-lead {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin: 0 0 1.5rem;
}

.city-figure {
  margin: 0 0 2.5rem;
}

.city-figure img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.city-img-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 2rem 1.5rem;
  border: 2px dashed var(--border);
  border-radius: 14px;
  background: linear-gradient(165deg, #f7fbfe 0%, var(--bg-soft) 100%);
  text-align: center;
  color: var(--text-light);
}

.city-img-slot strong {
  display: block;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.city-img-slot code {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--primary);
}

.city-figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: center;
}

.city-prose {
  max-width: 44rem;
  margin: 0 auto;
}

.city-prose h2 {
  font-size: 1.45rem;
  margin: 2.25rem 0 0.85rem;
}

.city-prose p {
  color: var(--text-mid);
  margin: 0 0 1.15rem;
}

.city-stats {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .city-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.city-stat dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.city-stat dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

.city-help-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.city-help-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--text-mid);
}

.city-help-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}


/* ——— Service areas hub ——— */
.sa-search-wrap {
  max-width: 28rem;
  margin: 0 auto 2rem;
}

.sa-search-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.sa-search {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--surface);
}

.sa-search:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.sa-promo {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
}

.sa-promo p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-mid);
}

.sa-promo a {
  color: var(--accent-dark);
  font-weight: 700;
}

.sa-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .sa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.sa-col h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--bg-soft);
}

.sa-city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
}

@media (min-width: 520px) {
  .sa-city-list {
    columns: 2;
    column-gap: 1.5rem;
  }
}

.sa-city-list li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.sa-city-list a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.sa-city-list a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.city-stats-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .city-stats-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .city-stats-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-photo-credit {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

.city-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.city-hero .hero-actions {
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
}

.city-faq {
  margin: 1rem 0 2rem;
}

.city-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  margin-bottom: 0.65rem;
  padding: 0.85rem 1rem;
}

.city-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-dark);
  list-style: none;
}

.city-faq-item summary::-webkit-details-marker { display: none; }

.city-faq-item p {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
}

.city-nearby {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  columns: 1;
}

@media (min-width: 560px) {
  .city-nearby { columns: 2; column-gap: 1.5rem; }
}

.city-nearby li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.city-nearby a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.city-nearby a:hover { text-decoration: underline; }

/* Dual standard: Global guidelines + RAIR */
.dual-standard-section .section-head {
  margin-bottom: 2rem;
}

.dual-standard {
  display: grid;
  gap: 1rem;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 780px) {
  .dual-standard {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.25rem;
    align-items: center;
  }
}

.dual-card {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-top: 4px solid var(--accent);
}

.dual-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.55rem;
}

.dual-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
}

.dual-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.dual-card.dual-card-rair {
  border-top-color: #7dd3fc;
  background: linear-gradient(165deg, #0a365d 0%, #0f4c81 100%);
  color: #ffffff;
  border-color: transparent;
}

.dual-card.dual-card-rair .dual-label {
  color: #7dd3fc;
}

.dual-card.dual-card-rair h3,
.dual-card.dual-card-rair p,
.dual-card.dual-card-rair p .lang-en,
.dual-card.dual-card-rair p .lang-fr,
.dual-card.dual-card-rair strong {
  color: #ffffff !important;
  opacity: 1;
}

.dual-plus {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}

.dual-closer {
  max-width: 40rem;
  margin: 1.75rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.dual-closer a {
  color: var(--accent-dark);
}

.city-dual {
  margin: 2rem 0;
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(165deg, #f7fbfe 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}

.city-dual h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.city-dual-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
}

@media (min-width: 640px) {
  .city-dual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.city-dual-item strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.city-dual-item p {
  margin: 0;
  font-size: 0.92rem;
}
