/* ==========================================================================
   MBBSinDhaka.in — Core stylesheet
   Design system: tokens, reset, layout grid, typography, buttons,
   header/navigation, footer.
   Component styles live in components.css
   Breakpoint overrides live in responsive.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — deep medical navy */
  --navy-900: #05203a;
  --navy-800: #082e50;
  --navy-700: #0b3b64;
  --navy-600: #10507f;
  --navy-500: #1a6a9e;
  --navy-100: #e6eef6;
  --navy-050: #f3f7fb;

  /* Secondary — medical teal */
  --teal-700: #0a7d70;
  --teal-600: #0e9c8b;
  --teal-500: #14b8a1;
  --teal-100: #dff4f0;
  --teal-050: #f0faf8;

  /* Accent — used sparingly for highlights */
  --amber-600: #b7791f;
  --amber-100: #fdf3dd;

  /* Neutrals */
  --ink: #12212f;
  --ink-soft: #33475b;
  --muted: #5f7286;
  --muted-light: #8b9bab;
  --line: #e3e9ef;
  --line-soft: #eef2f6;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-tint: #f1f6fa;

  /* Status */
  --success: #0e9c8b;
  --warn-bg: #fff8e8;
  --warn-line: #f0dcae;
  --warn-ink: #7a5a15;

  /* Typography */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 88px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Elevation — subtle, never heavy */
  --sh-xs: 0 1px 2px rgba(8, 46, 80, 0.06);
  --sh-sm: 0 2px 8px rgba(8, 46, 80, 0.07);
  --sh-md: 0 8px 24px rgba(8, 46, 80, 0.09);
  --sh-lg: 0 18px 44px rgba(8, 46, 80, 0.12);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 820px;
  --header-h: 72px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  /* `clip` rather than `hidden`: it contains the closed off-canvas nav drawer
     without turning the root into a scroll container, which would break the
     sticky header and smooth scrolling. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* Safari < 16 has no `overflow: clip`. */
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

img,
video { max-width: 100%; height: auto; display: block; }

/* Icons are inline by default so they sit on the text baseline. Illustrations
   that fill their container opt back into block below. */
svg { max-width: 100%; vertical-align: -0.16em; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy-900);
  margin: 0 0 var(--sp-4);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.15rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 1.06rem + 0.6vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--navy-600);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
a:hover { color: var(--teal-700); text-decoration: underline; }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }
li { margin-bottom: var(--sp-2); }
li:last-child { margin-bottom: 0; }

strong, b { color: var(--navy-800); font-weight: 650; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--sp-6) 0;
}

small { font-size: 0.85rem; }

::selection { background: var(--teal-100); color: var(--navy-900); }

/* Visible, consistent focus for keyboard users */
:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Moved vertically rather than to -9999px, so it never widens the document. */
.skip-link {
  position: absolute;
  left: 0;
  top: -120px;
  z-index: 999;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
  transition: top 0.15s var(--ease);
}
.skip-link:focus {
  top: 0;
  color: #fff;
  text-decoration: none;
}

.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;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}
.container-narrow { max-width: var(--wrap-narrow); }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}
.row > [class*="col"] { padding-inline: 12px; width: 100%; }

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
.col-auto { flex: 1 1 0; max-width: 100%; }

/* Auto-fit card grids — preferred over the manual columns above */
.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid-auto-sm { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.grid-auto-lg { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }

.section { padding: var(--sp-9) 0; }
.section-sm { padding: var(--sp-8) 0; }
.section-soft { background: var(--surface-soft); }
.section-tint { background: var(--surface-tint); }
.section-navy {
  background: var(--navy-800);
  color: #d6e4f0;
}
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4 { color: #fff; }
.section-navy a { color: var(--teal-100); }

/* A light-background component nested inside a dark section must NOT inherit
   the section's pale text colour — that renders near-white text on a white
   card. Each of these paints its own surface, so it restores its own ink. */
.section-navy :is(
  .card, .split-panel > div, .pending-panel, .testimonial, .team-card,
  .cost-card, .post-card, .college-card, .form-card, .faq, .table-wrap,
  .filter-bar, .empty-state, .toc
) {
  color: var(--ink-soft);
}
.section-navy :is(
  .card, .split-panel > div, .pending-panel, .testimonial, .team-card,
  .cost-card, .post-card, .college-card, .form-card, .faq, .table-wrap,
  .filter-bar, .empty-state, .toc
) :is(h1, h2, h3, h4, h5, h6) {
  color: var(--navy-900);
}
.section-navy :is(.card, .split-panel > div, .pending-panel, .testimonial) a {
  color: var(--navy-600);
}
.section-navy :is(.card, .split-panel > div, .pending-panel, .testimonial) a:hover {
  color: var(--teal-700);
}

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.lead {
  font-size: 1.115rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.tiny { font-size: 0.8rem; }
.nowrap { white-space: nowrap; }

/* --------------------------------------------------------------------------
   4. Section headings
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-050);
  border: 1px solid var(--teal-100);
  padding: 5px 13px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-4);
}
.section-navy .eyebrow {
  color: var(--teal-100);
  background: rgba(20, 184, 161, 0.14);
  border-color: rgba(20, 184, 161, 0.3);
}

.section-head { margin-bottom: var(--sp-7); }
.section-head.center { text-align: center; max-width: 760px; margin-inline: auto; }
.section-head h2 { margin-bottom: var(--sp-3); }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.section-navy .section-head p { color: #b9cede; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 650;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease),
    background-color 0.16s var(--ease), border-color 0.16s var(--ease), color 0.16s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn-primary {
  background: var(--navy-700);
  color: #fff;
  box-shadow: var(--sh-sm);
}
.btn-primary:hover { background: var(--navy-800); color: #fff; box-shadow: var(--sh-md); }

.btn-whatsapp {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 2px 10px rgba(14, 156, 139, 0.25);
}
.btn-whatsapp:hover {
  background: var(--teal-700);
  color: #fff;
  box-shadow: 0 8px 22px rgba(14, 156, 139, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--line);
  background: #fff;
}
.btn-outline:hover {
  color: var(--navy-800);
  border-color: var(--navy-500);
  background: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy-700);
  padding-inline: 6px;
}
.btn-ghost:hover { color: var(--teal-700); }

.btn-light {
  background: #fff;
  color: var(--navy-800);
}
.btn-light:hover { background: #fff; color: var(--navy-900); box-shadow: var(--sh-md); }

.btn-on-navy {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-on-navy:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-sm { padding: 10px 16px; font-size: 0.875rem; border-radius: var(--r-sm); }
.btn-lg { padding: 16px 30px; font-size: 1.03rem; }
.btn-block { width: 100%; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.btn-group.center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Announcement bar
   -------------------------------------------------------------------------- */
.announce {
  background: var(--navy-900);
  color: #c9dcea;
  font-size: 0.815rem;
  line-height: 1.5;
  padding: 8px 0;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announce p { margin: 0; }
.announce .sep { color: var(--navy-500); }
.announce strong { color: #fff; font-weight: 600; }
.announce a {
  color: var(--teal-100);
  font-weight: 600;
  border-bottom: 1px solid rgba(20, 184, 161, 0.45);
}
.announce a:hover { color: #fff; text-decoration: none; border-color: #fff; }

/* --------------------------------------------------------------------------
   7. Header / navigation
   -------------------------------------------------------------------------- */
/* Above the drawer and its scrim (195/205), so the hamburger stays visible and
   tappable while the menu is open — otherwise the scrim swallows the tap and
   the menu cannot be closed again. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 210;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.2s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--sh-sm); }

.nav-wrap {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: var(--header-h);
}

/* The brand is the logo artwork itself — assets/images/logo/logo-full*.png,
   generated from assets/logo/logo.png at build time. */
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  line-height: 0;
}
.brand:hover { text-decoration: none; }
.brand:hover .brand-logo { opacity: 0.85; }
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.18s var(--ease);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-list > li { margin: 0; position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 0.885rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 11px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
}
.nav-link:hover { color: var(--navy-800); background: var(--navy-050); text-decoration: none; }
.nav-link[aria-current="page"],
.nav-link.is-active { color: var(--navy-800); background: var(--navy-100); }
.nav-link .caret {
  width: 10px; height: 10px;
  transition: transform 0.18s var(--ease);
  opacity: 0.65;
}
.nav-item.open > .nav-link .caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 262px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease), visibility 0.16s;
}
.nav-item.open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 550;
  color: var(--ink-soft);
}
.nav-dropdown a:hover { background: var(--navy-050); color: var(--navy-800); text-decoration: none; }
.nav-dropdown .dd-head {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted-light);
  font-weight: 700;
  padding: 10px 12px 4px;
  font-family: var(--font-head);
}

/* Pushed to the far right. On mobile the nav list is position:fixed, so its
   wrapper collapses to zero width — without this the hamburger would sit
   immediately after the logo, in the middle of the header. */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--navy-050);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--navy-800);
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.nav-toggle:hover { background: var(--navy-100); border-color: var(--navy-100); }
.nav-toggle[aria-expanded="true"] {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}
/* Swap the hamburger for a cross, so it is obvious the same button closes. */
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: #a8c0d4;
  padding: var(--sp-8) 0 0;
  font-size: 0.9rem;
}
.site-footer h3 {
  color: #fff;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
  font-weight: 700;
}
.site-footer a { color: #a8c0d4; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.25fr;
  gap: var(--sp-6);
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-about .brand { margin-bottom: var(--sp-4); }
.footer-about .brand-logo { height: 46px; }
.footer-about p { color: #93aec5; line-height: 1.65; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: var(--sp-3);
  line-height: 1.55;
}
.footer-contact svg { flex: none; margin-top: 3px; opacity: 0.7; }
.footer-note {
  margin-top: var(--sp-7);
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.8rem;
  color: #7f9bb3;
  line-height: 1.65;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding: var(--sp-4) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.82rem;
  color: #7f9bb3;
}
.footer-bottom ul {
  display: flex;
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.footer-bottom li { margin: 0; }

/* --------------------------------------------------------------------------
   9. Floating + sticky CTAs
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-600);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 650;
  font-size: 0.9rem;
  padding: 13px 20px 13px 16px;
  border-radius: var(--r-pill);
  box-shadow: 0 10px 30px rgba(10, 125, 112, 0.35);
  transition: transform 0.18s var(--ease), background 0.18s var(--ease);
}
.wa-float:hover {
  background: var(--teal-700);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -3px 16px rgba(8, 46, 80, 0.07);
}
.mobile-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 50px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 650;
  color: var(--navy-800);
  background: var(--navy-050);
  border: 1px solid var(--line-soft);
}
.mobile-bar a:hover { text-decoration: none; }
.mobile-bar a.primary {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}

/* --------------------------------------------------------------------------
   10. Motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s cubic-bezier(0.22, 0.68, 0, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* Items in a grid or row arrive one after another rather than all at once.
   Capped at eight steps so a long list never feels slow. */
.grid > .reveal:nth-child(2),
.value-row > .reveal:nth-child(2),
.promise-grid > .reveal:nth-child(2) { transition-delay: 0.07s; }
.grid > .reveal:nth-child(3),
.promise-grid > .reveal:nth-child(3) { transition-delay: 0.14s; }
.grid > .reveal:nth-child(4) { transition-delay: 0.21s; }
.grid > .reveal:nth-child(5) { transition-delay: 0.28s; }
.grid > .reveal:nth-child(6) { transition-delay: 0.35s; }
.grid > .reveal:nth-child(7) { transition-delay: 0.42s; }
.grid > .reveal:nth-child(n + 8) { transition-delay: 0.49s; }

/* Timeline steps cascade down the line. */
.timeline > li.reveal:nth-child(2) { transition-delay: 0.06s; }
.timeline > li.reveal:nth-child(3) { transition-delay: 0.12s; }
.timeline > li.reveal:nth-child(4) { transition-delay: 0.18s; }
.timeline > li.reveal:nth-child(5) { transition-delay: 0.24s; }
.timeline > li.reveal:nth-child(n + 6) { transition-delay: 0.3s; }

/* Hero entrance — plays once on load, no observer involved. */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero > .container > .hero-grid > div > * {
  animation: riseIn 0.7s cubic-bezier(0.22, 0.68, 0, 1) backwards;
}
.hero .eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.12s; }
.hero .hero-sub { animation-delay: 0.19s; }
.hero .hero-trust { animation-delay: 0.26s; }
.hero .btn-group { animation-delay: 0.33s; }
.hero .hero-foot { animation-delay: 0.4s; }

/* The highlight behind the hero headline sweeps in. */
@keyframes sweepIn {
  from { background-size: 0 100%; }
  to { background-size: 100% 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   11. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .announce, .mobile-bar, .wa-float, .site-footer, .cta-band { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
