/* ============================================================
   style.css — Prima Maid Agency
   Mobile-first · BEM-adjacent · No framework
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colours */
  --c-primary:     #14532D;
  --c-primary-600: #1B6B3A;
  --c-primary-050: #EFF6F1;
  --c-accent:      #D97706;
  --c-accent-600:  #B45309;
  --c-ink:         #0F1419;
  --c-body:        #4A5361;
  --c-muted:       #7A8494;
  --c-line:        #E4E8EE;
  --c-bg:          #FFFFFF;
  --c-bg-soft:     #F7F9FA;

  /* Typography */
  --f-head: "Bricolage Grotesque", Georgia, serif;
  --f-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale */
  --step--1: clamp(.83rem, .81rem + .12vw, .9rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.0625rem);
  --step-1:  clamp(1.15rem, 1.08rem + .35vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.25rem + .75vw, 1.85rem);
  --step-3:  clamp(1.7rem, 1.45rem + 1.3vw, 2.5rem);
  --step-4:  clamp(2rem, 1.6rem + 2.1vw, 3.25rem);
  --step-5:  clamp(2.4rem, 1.8rem + 3vw, 4rem);

  /* Spacing (8pt grid) */
  --sp-1: .5rem;  --sp-2: 1rem;   --sp-3: 1.5rem; --sp-4: 2rem;
  --sp-5: 3rem;   --sp-6: 4rem;   --sp-7: 5.5rem; --sp-8: 7rem;
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-full: 999px;

  /* Shadows */
  --shadow-1: 0 1px 3px rgba(15,20,25,.08);
  --shadow-2: 0 16px 40px -12px rgba(15,20,25,.18);

  /* Layout */
  --wrap:      1200px;
  --wrap-text: 720px;
  --side-pad:  20px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur:  240ms;
}

/* ── 2. RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: var(--step-0);
  color: var(--c-body);
  background: var(--c-bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-head);
  color: var(--c-ink);
  line-height: 1.2;
  font-weight: 700;
}
p { max-width: 72ch; }
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
.t-5  { font-size: var(--step-5); }
.t-4  { font-size: var(--step-4); }
.t-3  { font-size: var(--step-3); }
.t-2  { font-size: var(--step-2); }
.t-1  { font-size: var(--step-1); }
.t-0  { font-size: var(--step-0); }
.t--1 { font-size: var(--step--1); }

.text-primary { color: var(--c-primary); }
.text-accent  { color: var(--c-accent); }
.text-muted   { color: var(--c-muted); }
.text-ink     { color: var(--c-ink); }
.text-white   { color: #fff; }
.text-center  { text-align: center; }
.uppercase    { text-transform: uppercase; letter-spacing: .08em; }
.lead         { font-size: var(--step-1); line-height: 1.6; color: var(--c-body); }

/* ── 4. LAYOUT ────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}
.wrap--text { max-width: var(--wrap-text); }

.section {
  padding-block: var(--section-y);
}
.section--soft { background: var(--c-bg-soft); }
.section--dark {
  background: var(--c-primary);
  color: #fff;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }

/* Grid utilities */
.grid-2  { display: grid; gap: var(--sp-4); }
.grid-3  { display: grid; gap: var(--sp-4); }
.grid-4  { display: grid; gap: var(--sp-4); }

@media (min-width: 480px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  :root { --side-pad: 40px; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex utilities */
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: var(--sp-2); }
.gap-3  { gap: var(--sp-3); }
.gap-4  { gap: var(--sp-4); }

/* Section header */
.section-header {
  margin-bottom: var(--sp-6);
}
.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-accent);
  margin-bottom: var(--sp-2);
}
.section-header h2 { font-size: var(--step-3); }
.section-header p  { margin-top: var(--sp-2); color: var(--c-body); }

/* ── 5. SKIP LINK ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1;
  padding: .85em 1.6em;
  min-height: 48px;
  border-radius: var(--r-full);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-primary);
  color: #fff;
}
.btn--primary:hover { background: var(--c-primary-600); box-shadow: 0 8px 24px -4px rgba(20,83,45,.35); }

.btn--accent {
  background: var(--c-accent);
  color: #fff;
}
.btn--accent:hover { background: var(--c-accent-600); box-shadow: 0 8px 24px -4px rgba(217,119,6,.35); }

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  box-shadow: inset 0 0 0 2px var(--c-primary);
}
.btn--outline:hover { background: var(--c-primary); color: #fff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6);
}
.btn--outline-white:hover { background: #fff; color: var(--c-primary); }

.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  padding-inline: 0;
  border-radius: 0;
}
.btn--ghost::after { content: " →"; }
.btn--ghost:hover  { color: var(--c-primary-600); transform: none; }
.btn--ghost:hover::after { margin-left: .25em; }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }

/* ── 7. HEADER ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: var(--c-bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  align-items: center;
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: 0 2px 16px rgba(15,20,25,.07);
}
.site-header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--side-pad);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}
.site-header__logo img {
  height: 40px;
  width: auto;
}
.site-header__logo-text {
  font-family: var(--f-head);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.1;
}

/* Desktop nav */
.primary-nav {
  display: none;
  align-items: center;
  gap: var(--sp-1);
}
@media (min-width: 1024px) {
  .primary-nav { display: flex; }
  .site-header { height: 80px; }
}

.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: .35em;
  padding: .5em .75em;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--c-ink);
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link[aria-expanded="true"] { color: var(--c-primary); background: var(--c-primary-050); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.nav-link[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 640px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  padding: var(--sp-4);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  z-index: 200;
}
.mega-menu.is-open { display: grid; }
.mega-menu__col-head {
  font-size: var(--step--1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-muted);
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--c-line);
}
.mega-menu__link {
  display: block;
  padding: .3em 0;
  font-size: var(--step--1);
  color: var(--c-body);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.mega-menu__link:hover { color: var(--c-primary); padding-left: .4em; }

/* Dropdown (for-employers) */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-2);
  padding: var(--sp-2);
  display: none;
  z-index: 200;
}
.dropdown-menu.is-open { display: block; }
.dropdown-menu a {
  display: block;
  padding: .5em var(--sp-2);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--c-body);
  border-radius: var(--r-sm);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.dropdown-menu a:hover { background: var(--c-primary-050); color: var(--c-primary); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  overflow-y: auto;
  padding-top: 64px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__nav { padding: var(--sp-4); }
.mobile-drawer__link {
  display: block;
  padding: var(--sp-2) 0;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.mobile-drawer__accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--sp-2) 0;
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line);
}
.mobile-drawer__accordion-btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--dur) var(--ease);
}
.mobile-drawer__accordion-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-drawer__sub {
  display: none;
  padding: var(--sp-1) 0 var(--sp-2) var(--sp-3);
}
.mobile-drawer__sub.is-open { display: block; }
.mobile-drawer__sub a {
  display: block;
  padding: .4em 0;
  font-size: var(--step-0);
  color: var(--c-body);
}
.mobile-drawer__cta { padding: var(--sp-4); }

/* ── 8. STICKY WHATSAPP BUBBLE ────────────────────────────── */
.wa-bubble {
  position: fixed;
  bottom: calc(var(--sp-4) + 64px);  /* above mobile bar */
  right: var(--sp-4);
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 90;
  opacity: 0;
  transform: scale(.8);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-bubble.is-visible { opacity: 1; transform: scale(1); }
.wa-bubble:hover { box-shadow: 0 8px 24px rgba(37,211,102,.5); transform: scale(1.05); }
.wa-bubble svg { width: 28px; height: 28px; fill: #fff; }
@media (min-width: 768px) {
  .wa-bubble { bottom: var(--sp-4); }
}

/* ── 9. MOBILE ACTION BAR ─────────────────────────────────── */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 91;
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2em;
  font-size: .7rem;
  font-weight: 600;
  color: var(--c-body);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.mobile-bar a:first-child { color: var(--c-primary); }
.mobile-bar a:nth-child(2) { color: #25D366; border-inline: 1px solid var(--c-line); }
.mobile-bar a:last-child { color: var(--c-accent); }
.mobile-bar a:hover { background: var(--c-bg-soft); }
.mobile-bar svg { width: 22px; height: 22px; }
@media (min-width: 768px) { .mobile-bar { display: none; } }

/* Extra bottom padding on mobile to clear the bar */
@media (max-width: 767px) {
  body { padding-bottom: 56px; }
}

/* ── 10. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,.8);
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-5);
}
.site-footer__grid {
  display: grid;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px)  { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1.5fr 1.5fr; } }

.site-footer__logo-text {
  font-family: var(--f-head);
  font-size: var(--step-1);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.site-footer__legal { font-size: var(--step--1); margin-top: var(--sp-1); opacity: .7; }
.site-footer__desc  { font-size: var(--step--1); line-height: 1.7; margin-top: var(--sp-2); opacity: .8; }
.site-footer__socials { display: flex; gap: var(--sp-2); margin-top: var(--sp-3); }
.site-footer__socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: rgba(255,255,255,.1);
  transition: background var(--dur) var(--ease);
}
.site-footer__socials a:hover { background: var(--c-primary); }
.site-footer__socials svg { width: 18px; height: 18px; fill: #fff; }

.site-footer__col-head {
  font-size: var(--step--1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-3);
}
.site-footer__links li + li { margin-top: var(--sp-1); }
.site-footer__links a {
  font-size: var(--step--1);
  color: rgba(255,255,255,.75);
  transition: color var(--dur) var(--ease);
}
.site-footer__links a:hover { color: #fff; }

.site-footer__hours { font-size: var(--step--1); }
.site-footer__hours td { padding: .2em 0; }
.site-footer__hours td:first-child { padding-right: var(--sp-3); opacity: .7; }
.site-footer__branch { margin-top: var(--sp-3); font-size: var(--step--1); line-height: 1.6; opacity: .8; }
.site-footer__branch strong { color: #fff; display: block; }

.site-footer__contact a {
  display: flex; align-items: flex-start; gap: var(--sp-2);
  font-size: var(--step--1);
  color: rgba(255,255,255,.75);
  margin-bottom: var(--sp-2);
  transition: color var(--dur) var(--ease);
}
.site-footer__contact a:hover { color: #fff; }
.site-footer__contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .1em; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: space-between;
  font-size: var(--step--1);
  color: rgba(255,255,255,.5);
}
.site-footer__bottom a { color: rgba(255,255,255,.5); transition: color var(--dur) var(--ease); }
.site-footer__bottom a:hover { color: #fff; }

/* ── 11. HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-primary-050);
  padding-top: 0;
  padding-bottom: 0;
}
/* Marquee rail */
.marquee-wrap {
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--c-primary-050), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, var(--c-primary-050), transparent); }

.marquee-row {
  display: flex;
  gap: var(--sp-2);
  width: max-content;
  padding-block: var(--sp-1);
}
.marquee-row--reverse { flex-direction: row-reverse; }

.marquee-row img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--r-md);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .marquee-row img { width: 300px; height: 200px; }
}

/* Hero text */
.hero__text {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-block: var(--sp-6) var(--sp-7);
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--side-pad);
}
.hero__text h1 { font-size: var(--step-5); margin-bottom: var(--sp-3); }
.hero__text p  { font-size: var(--step-1); color: var(--c-body); margin-inline: auto; margin-bottom: var(--sp-4); }

/* ── 12. TRUST STRIP ──────────────────────────────────────── */
.trust-strip {
  background: var(--c-primary);
  padding-block: var(--sp-4);
  overflow: hidden;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4) var(--sp-6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: #fff;
  font-weight: 600;
  font-size: var(--step--1);
}
.trust-item svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: rgba(255,255,255,.8);
  flex-shrink: 0;
}

/* ── 13. INTRO / ZIG-ZAG ─────────────────────────────────── */
.intro-block {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 768px) {
  .intro-block { grid-template-columns: 1fr 1fr; }
  .intro-block--reverse .intro-block__img { order: 2; }
  .intro-block--reverse .intro-block__text { order: 1; }
}
.intro-block__img {
  position: relative;
}
.intro-block__img img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.intro-block__img::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 3px solid var(--c-primary-050);
  border-radius: var(--r-lg);
  z-index: -1;
}
.intro-block__text h2 { font-size: var(--step-3); margin-bottom: var(--sp-3); }
.intro-block__text p  { margin-bottom: var(--sp-3); }

/* ── 14. SOURCE COUNTRIES ─────────────────────────────────── */
.countries-grid {
  display: grid;
  gap: var(--sp-5);
  align-items: start;
}
@media (min-width: 768px) {
  .countries-grid { grid-template-columns: 1fr 1fr; }
}
.country-list { list-style: none; }
.country-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-line);
  font-size: var(--step-0);
}
.country-list li .badge {
  font-size: var(--step--1);
  font-weight: 700;
  padding: .2em .7em;
  border-radius: var(--r-full);
  background: var(--c-primary-050);
  color: var(--c-primary);
  margin-left: auto;
}
.country-list li.active { font-weight: 600; color: var(--c-primary); }
.country-list li.active .badge { background: var(--c-primary); color: #fff; }

/* ── 15. STATS BAND ───────────────────────────────────────── */
.stats-band {
  background: var(--c-bg-soft);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item { text-align: center; }
.stat-item__number {
  font-family: var(--f-head);
  font-size: var(--step-4);
  font-weight: 700;
  color: var(--c-primary);
  display: block;
  /* Reserve width to avoid CLS */
  min-width: 4ch;
}
.stat-item__label {
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-muted);
  margin-top: var(--sp-1);
}

/* ── 16. WHY CHOOSE US CARDS ──────────────────────────────── */
.card-img {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg-soft);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card-img:hover { box-shadow: var(--shadow-2); transform: translateY(-4px); }
.card-img__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-img__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.card-img:hover .card-img__media img { transform: scale(1.04); }
.card-img__body {
  padding: var(--sp-3);
}
.card-img__body h3 { font-size: var(--step-1); margin-bottom: var(--sp-1); }
.card-img__body p  { font-size: var(--step--1); }

/* Text-only icon card */
.card-icon {
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card-icon:hover { box-shadow: var(--shadow-2); border-color: var(--c-primary-050); }
.card-icon__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--c-primary-050);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}
.card-icon__icon svg { width: 26px; height: 26px; stroke: var(--c-primary); fill: none; }
.card-icon h3 { font-size: var(--step-1); margin-bottom: var(--sp-1); }
.card-icon p  { font-size: var(--step--1); }

/* ── 17. PROCESS TIMELINE ─────────────────────────────────── */
.process { position: relative; }
.process__list { list-style: none; }

@media (min-width: 1024px) {
  .process__list::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--c-line);
    transform: translateX(-50%);
  }
}

.process-step {
  position: relative;
  display: grid;
  gap: var(--sp-3);
  align-items: start;
  padding-left: 52px;
  padding-bottom: var(--sp-5);
}
.process-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--c-line);
}
.process-step:last-child::before { display: none; }

.process-step__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--step--1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.process-step__content h3 { font-size: var(--step-1); margin-bottom: var(--sp-1); }
.process-step__content p  { font-size: var(--step--1); }

@media (min-width: 1024px) {
  .process-step {
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
    align-items: start;
    padding-bottom: var(--sp-6);
  }
  .process-step::before { display: none; }
  .process-step__num {
    position: static;
    width: 56px;
    height: 56px;
    font-size: var(--step-0);
    grid-column: 2;
  }
  .process-step:nth-child(odd)  .process-step__content { grid-column: 1; grid-row: 1; text-align: right; padding-right: var(--sp-4); padding-top: var(--sp-1); }
  .process-step:nth-child(even) .process-step__content { grid-column: 3; grid-row: 1; padding-left: var(--sp-4); padding-top: var(--sp-1); }
  .process-step:nth-child(odd)  .process-step__num { grid-column: 2; grid-row: 1; justify-self: center; }
  .process-step:nth-child(even) .process-step__num { grid-column: 2; grid-row: 1; justify-self: center; }

  /* Ghost number */
  .process-step__ghost {
    font-family: var(--f-head);
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    color: var(--c-primary);
    opacity: .07;
    position: absolute;
    line-height: 1;
    user-select: none;
    pointer-events: none;
  }
}

/* ── 18. CANDIDATE PORTRAIT CARDS ─────────────────────────── */
.candidate-cards {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--sp-2);
}
.candidate-cards::-webkit-scrollbar { height: 4px; }
.candidate-cards::-webkit-scrollbar-track { background: var(--c-line); border-radius: 2px; }
.candidate-cards::-webkit-scrollbar-thumb { background: var(--c-primary); border-radius: 2px; }

@media (min-width: 1024px) {
  .candidate-cards { overflow-x: visible; display: grid; grid-template-columns: repeat(4, 1fr); }
}

.candidate-card {
  position: relative;
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 240px;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--c-bg-soft);
}
@media (min-width: 1024px) { .candidate-card { width: auto; } }
.candidate-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.candidate-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,20,25,.85) 0%, transparent 100%);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  color: #fff;
  font-weight: 700;
  font-size: var(--step-0);
}

/* ── 19. VIDEO FACADE ─────────────────────────────────────── */
.video-facade {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-ink);
  cursor: pointer;
  max-width: 900px;
  margin-inline: auto;
}
.video-facade__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease), opacity var(--dur) var(--ease);
}
.video-facade:hover .video-facade__poster { transform: scale(1.02); opacity: .85; }
.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.video-facade__play svg { width: 28px; height: 28px; fill: var(--c-primary); margin-left: 4px; }
.video-facade:hover .video-facade__play { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── 20. ALTERNATING FEATURE ROWS ─────────────────────────── */
.feature-row {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
  padding-block: var(--sp-5);
}
.feature-row + .feature-row { border-top: 1px solid var(--c-line); }
@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row:nth-child(even) .feature-row__img { order: 2; }
  .feature-row:nth-child(even) .feature-row__text { order: 1; }
}
.feature-row__img img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 1;
}
.feature-row__num {
  font-family: var(--f-head);
  font-size: var(--step-4);
  font-weight: 900;
  color: var(--c-primary);
  opacity: .15;
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.feature-row__text h3 { font-size: var(--step-2); margin-bottom: var(--sp-2); }

/* ── 21. CREDENTIALS STRIP ────────────────────────────────── */
.credentials-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-5);
  justify-content: center;
  align-items: center;
}
.credential-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  text-align: center;
}
.credential-tile img {
  height: 64px;
  width: auto;
  filter: grayscale(1) opacity(.6);
  transition: filter var(--dur) var(--ease);
}
.credential-tile:hover img { filter: grayscale(0) opacity(1); }
.credential-tile span {
  font-size: var(--step--1);
  color: var(--c-muted);
}

/* ── 22. CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-inline: var(--side-pad);
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: var(--c-primary);
}
.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
}
.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  color: #fff;
}
.cta-banner__content h2 { font-size: var(--step-3); color: #fff; margin-bottom: var(--sp-2); }
.cta-banner__content p  { color: rgba(255,255,255,.85); margin-inline: auto; margin-bottom: var(--sp-4); }

/* Split CTA (S14) */
.cta-split {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
  background: var(--c-primary-050);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-split { grid-template-columns: 1fr 1fr; }
}
.cta-split__img { aspect-ratio: 4/3; }
.cta-split__img img { width: 100%; height: 100%; object-fit: cover; }
.cta-split__body {
  padding: var(--sp-6) var(--sp-5);
}
.cta-split__body h2 { font-size: var(--step-3); margin-bottom: var(--sp-2); }
.cta-split__body p  { margin-bottom: var(--sp-4); }

/* ── 23. TESTIMONIALS ─────────────────────────────────────── */
.testimonials-carousel { position: relative; }
.testimonials-track {
  display: flex;
  gap: var(--sp-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: var(--sp-2);
}
.testimonials-track::-webkit-scrollbar { height: 4px; }
.testimonials-track::-webkit-scrollbar-track { background: var(--c-line); border-radius: 2px; }
.testimonials-track::-webkit-scrollbar-thumb { background: var(--c-primary); border-radius: 2px; }

.testimonial-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: min(340px, 85vw);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-1);
}
.testimonial-card__quote {
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--c-body);
  margin-bottom: var(--sp-3);
  position: relative;
}
.testimonial-card__quote::before {
  content: '"';
  font-size: 3em;
  color: var(--c-primary-050);
  font-family: var(--f-head);
  position: absolute;
  top: -.3em;
  left: -.1em;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--step-0);
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: var(--step-0); color: var(--c-ink); }
.testimonial-card__date { font-size: var(--step--1); color: var(--c-muted); }

.carousel-controls {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-4);
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  border: 2px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.carousel-btn:hover { border-color: var(--c-primary); background: var(--c-primary); }
.carousel-btn:hover svg { stroke: #fff; }
.carousel-btn svg { width: 20px; height: 20px; stroke: var(--c-body); fill: none; }
.carousel-dots { display: flex; gap: var(--sp-1); }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: var(--c-line);
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}
.carousel-dot.is-active { background: var(--c-primary); width: 24px; }

/* ── 24. PAGE TITLE BANNER ────────────────────────────────── */
.page-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-6);
  background: var(--c-primary);
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
}
.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}
.page-banner__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-banner__content h1 { font-size: var(--step-4); color: #fff; }
.page-banner__content p  { color: rgba(255,255,255,.85); font-size: var(--step-1); margin-top: var(--sp-2); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  align-items: center;
  font-size: var(--step--1);
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-2);
}
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep { opacity: .5; }

/* ── 25. FAQ ACCORDION ────────────────────────────────────── */
.faq-group { margin-bottom: var(--sp-5); }
.faq-group__title {
  font-size: var(--step-2);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--c-primary-050);
  color: var(--c-primary);
}
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  font-weight: 600;
  font-size: var(--step-0);
  cursor: pointer;
  color: var(--c-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2314532D' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item__body {
  padding-bottom: var(--sp-3);
  font-size: var(--step-0);
  color: var(--c-body);
  line-height: 1.7;
}
.faq-item__body p + p { margin-top: var(--sp-2); }
.faq-item__body ul { list-style: disc; padding-left: var(--sp-4); }
.faq-item__body li + li { margin-top: var(--sp-1); }

/* ── 26. ENQUIRY FORM ─────────────────────────────────────── */
.enquiry-form {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow-1);
}
.form-row {
  display: grid;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: var(--sp-1); }
.form-group label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--c-ink);
}
.form-group label .req { color: var(--c-accent); margin-left: .2em; }
.form-control {
  height: 48px;
  padding: 0 var(--sp-3);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  font-size: var(--step-0);
  color: var(--c-ink);
  background: var(--c-bg);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(20,83,45,.12);
}
.form-control.is-error { border-color: #DC2626; }
.form-control--area {
  height: auto;
  min-height: 120px;
  padding-top: var(--sp-2);
  resize: vertical;
}
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%234A5361' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }
.form-error {
  font-size: var(--step--1);
  color: #DC2626;
  display: none;
}
.form-error.is-visible { display: block; }
.form-honeypot { display: none !important; }
.form-note { font-size: var(--step--1); color: var(--c-muted); text-align: center; margin-top: var(--sp-2); }

/* Contact info panel */
.contact-info { }
.contact-info__item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--c-line);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-primary-050);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 22px; height: 22px; stroke: var(--c-primary); fill: none; }
.contact-info__label { font-size: var(--step--1); color: var(--c-muted); }
.contact-info__value { font-weight: 600; color: var(--c-ink); font-size: var(--step-0); }

/* Branch card */
.branch-card {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.branch-card__img { aspect-ratio: 16/9; }
.branch-card__img img { width: 100%; height: 100%; object-fit: cover; }
.branch-card__body { padding: var(--sp-4); }
.branch-card__body h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.branch-card__address { font-size: var(--step--1); color: var(--c-body); line-height: 1.6; margin-bottom: var(--sp-3); }
.branch-card__hours  { font-size: var(--step--1); color: var(--c-muted); margin-bottom: var(--sp-3); }
.branch-card__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.branch-card__map-wrap {
  aspect-ratio: 16/9;
  background: var(--c-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-top: 1px solid var(--c-line);
}
.branch-card__map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── 27. GALLERY ──────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.gallery-filter {
  padding: .5em 1.2em;
  border-radius: var(--r-full);
  border: 1.5px solid var(--c-line);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--c-body);
  transition: all var(--dur) var(--ease);
}
.gallery-filter.is-active,
.gallery-filter:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

.gallery-grid {
  columns: 1;
  gap: var(--sp-3);
}
@media (min-width: 480px) { .gallery-grid { columns: 2; } }
@media (min-width: 768px) { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: var(--sp-3);
  break-inside: avoid;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,20,25,.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { width: 40px; height: 40px; stroke: #fff; fill: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,20,25,.95);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--r-md);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--dur) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__close svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}
.lightbox__prev { left: var(--sp-3); }
.lightbox__next { right: var(--sp-3); }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.25); }
.lightbox__prev svg, .lightbox__next svg { width: 24px; height: 24px; stroke: #fff; fill: none; }

/* ── 28. TEAM CARDS ───────────────────────────────────────── */
.team-card { text-align: center; }
.team-card__img {
  width: 120px;
  height: 120px;
  border-radius: var(--r-full);
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: var(--sp-2);
  border: 3px solid var(--c-primary-050);
}
.team-card__name { font-weight: 700; color: var(--c-ink); }
.team-card__role { font-size: var(--step--1); color: var(--c-muted); }

/* ── 29. MILESTONE TIMELINE ───────────────────────────────── */
.timeline { position: relative; padding-left: var(--sp-5); }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--c-line);
}
.timeline-item {
  position: relative;
  padding-bottom: var(--sp-5);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-5) - 1px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: var(--r-full);
  background: var(--c-primary);
  border: 2px solid var(--c-bg);
  box-shadow: 0 0 0 2px var(--c-primary);
}
.timeline-item__year {
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--sp-1);
}
.timeline-item h3 { font-size: var(--step-1); margin-bottom: var(--sp-1); }

/* ── 30. COMPARISON TABLE ─────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--r-md); border: 1px solid var(--c-line); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: var(--step--1); }
.comparison-table th {
  background: var(--c-primary);
  color: #fff;
  padding: var(--sp-2) var(--sp-3);
  text-align: left;
  font-weight: 600;
}
.comparison-table td {
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--c-bg-soft); }

/* ── 31. NOTICE / VERIFY BOX ──────────────────────────────── */
.notice {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  border-left: 4px solid;
  margin-block: var(--sp-4);
  font-size: var(--step--1);
}
.notice--info   { background: #EFF6FF; border-color: #3B82F6; color: #1D40AE; }
.notice--warn   { background: #FFFBEB; border-color: var(--c-accent); color: #92400E; }
.notice--verify { background: var(--c-primary-050); border-color: var(--c-primary); color: var(--c-primary); }

/* ── 32. UTILITY ──────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }

/* Print */
@media print {
  .site-header, .mobile-bar, .wa-bubble, .mobile-drawer { display: none !important; }
  body { padding-bottom: 0; }
}

/* ── 33. LIVE REGION ──────────────────────────────────────── */
[aria-live] { }
