/* =====================================================
   Tandheelkundig Centrum Vitalis — Demo stylesheet
   Colors: #D0021B (rood accent), #FFFFFF, #F5F5F5, #333333
   Font: Inter
   ===================================================== */

/* ─── RESET & TOKENS ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #D0021B;
  --red-dark:   #a80116;
  --red-light:  #fde8ea;
  --white:      #FFFFFF;
  --grey-50:    #F8F8F8;
  --grey-100:   #F5F5F5;
  --grey-200:   #E8E8E8;
  --grey-400:   #9A9A9A;
  --grey-700:   #555555;
  --dark:       #333333;
  --dark-deep:  #1a1a1a;

  --font:       'Inter', system-ui, sans-serif;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── IMG FILL SYSTEM ─────────────────────────────── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ─── CONTAINER ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--dark-deep); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--grey-700); }
a  { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

/* ─── SECTION HEADER ──────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: .6rem;
}
.section-title { color: var(--dark-deep); margin-bottom: .75rem; }
.section-sub { color: var(--grey-700); font-size: 1.05rem; }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: 50px;
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none; white-space: nowrap; min-height: 44px;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.15); text-decoration: none; }
.btn:active { transform: none; }
.btn svg { flex-shrink: 0; }

.btn-primary  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-ghost {
  background: rgba(255,255,255,.15); color: var(--white);
  border-color: rgba(255,255,255,.6); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); border-color: var(--white); }

.btn-outline {
  background: transparent; color: var(--red); border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-white     { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: var(--grey-100); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-lg  { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--grey-200);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.10); }

.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex-shrink: 0; }
.logo-badge {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--red); color: var(--white);
  font-size: .8rem; font-weight: 800; letter-spacing: .05em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: .75rem; font-weight: 500; color: var(--grey-700); }
.logo-sub   { font-size: 1rem; font-weight: 700; color: var(--dark-deep); }

/* Desktop nav */
.desktop-nav { flex: 1; display: flex; justify-content: center; }
.desktop-nav ul { display: flex; gap: 0; list-style: none; }
.desktop-nav a {
  padding: .5rem .9rem; font-size: .9rem; font-weight: 500;
  color: var(--dark); border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.desktop-nav a:hover { color: var(--red); background: var(--red-light); }

.header-cta { flex-shrink: 0; padding: .6rem 1.2rem; font-size: .875rem; }

/* Hamburger */
.mobile-menu__trigger {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; border-radius: 8px; min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
  color: var(--dark);
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: var(--grey-100); }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: all var(--transition); width: 100%; }
.hamburger span:last-child { width: 70%; }

/* ─── MOBILE MENU (fullscreen overlay) ────────────── */
.mobile-menu__overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  height: 100svh; height: 100dvh;
  visibility: hidden;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu__backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.4);
  opacity: 0; transition: opacity var(--transition);
}
.mobile-menu__backdrop.is-open { opacity: 1; }

.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; padding: 0 1.5rem 2rem; }

.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0 1rem; border-bottom: 1px solid var(--grey-200); margin-bottom: 1rem;
}
.mobile-menu__brand { font-size: 1rem; font-weight: 700; color: var(--dark-deep); }
.mobile-menu__close {
  background: none; border: none; cursor: pointer; padding: .5rem;
  border-radius: 8px; color: var(--dark); min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu__close:hover { background: var(--grey-100); }

.mobile-menu__list { list-style: none; flex: 1; }
.mobile-menu__item {
  display: flex; align-items: center; width: 100%;
  padding: 1rem 0; font-size: 1.25rem; font-weight: 600; color: var(--dark-deep);
  border-bottom: 1px solid var(--grey-100); text-decoration: none;
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: var(--font); text-align: left;
  min-height: 56px;
  transition: color var(--transition);
}
.mobile-menu__item:hover { color: var(--red); }

.mobile-menu__ctas {
  display: flex; flex-direction: column; gap: .75rem;
  margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--grey-100);
}

/* Prevent body scroll when menu open */
body.menu-open { overflow: hidden; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh; min-height: 100dvh;
  display: flex; align-items: center;
  padding-top: 72px; /* header offset */
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,10,10,.82) 0%,
    rgba(10,10,10,.68) 50%,
    rgba(10,10,10,.35) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  width: 100%; padding-top: 4rem; padding-bottom: 4rem;
}
.hero__text { max-width: 640px; }
.hero__eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: .75rem;
}
.hero__h1 { color: var(--white); margin-bottom: 1rem; }
.hero__sub { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__badge {
  background: rgba(208,2,27,.9);
  color: var(--white); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem;
  flex-shrink: 0; min-width: 130px;
  backdrop-filter: blur(4px);
}
.hero__badge svg { opacity: .9; }
.hero__badge span { font-size: .85rem; font-weight: 600; line-height: 1.3; }

/* ─── USP BAND ────────────────────────────────────── */
.usp-band {
  background: var(--dark-deep); color: var(--white);
  padding: 2.5rem 0;
}
.usp-band__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
}
.usp-band__item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  transition: background var(--transition);
}
.usp-band__item:hover { background: rgba(255,255,255,.08); }
.usp-band__icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: rgba(208,2,27,.2); border: 1px solid rgba(208,2,27,.3);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #ff4d61;
}
.usp-band__text strong { display: block; font-size: .95rem; color: var(--white); margin-bottom: .2rem; }
.usp-band__text span  { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.4; }

/* ─── SPECIALISMEN ────────────────────────────────── */
.specialismen { padding: 5rem 0; background: var(--grey-50); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  list-style: none;
}

.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-3px); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem; flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.card:hover .card__icon { background: var(--red); color: var(--white); }

.card__title { font-size: 1rem; font-weight: 600; color: var(--dark-deep); }
.card__desc  { font-size: .875rem; color: var(--grey-700); line-height: 1.55; flex: 1; }
.card__link  {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .875rem; font-weight: 600; color: var(--white);
  background: var(--red); padding: .45rem 1rem; border-radius: 50px; margin-top: .5rem;
  text-decoration: none; transition: background var(--transition);
  min-height: 44px;
}
.card__link:hover { background: var(--red-dark); text-decoration: none; }

/* Accent card (spoeddienst) */
.card--accent {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.card--accent::before { background: var(--white); }
.card--accent .card__icon { background: rgba(255,255,255,.2); color: var(--white); }
.card--accent:hover .card__icon { background: rgba(255,255,255,.3); }
.card--accent .card__title { color: var(--white); }
.card--accent .card__desc  { color: rgba(255,255,255,.85); }
.card--accent .card__link  { background: var(--white); color: var(--red); }
.card--accent .card__link:hover { background: var(--grey-100); }

/* ─── CTA BAND ────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 4rem 0;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-band__title { font-size: clamp(1.4rem, 2.8vw, 2rem); color: var(--white); margin-bottom: .5rem; }
.cta-band__sub   { color: rgba(255,255,255,.85); max-width: 560px; font-size: 1rem; }
.cta-band__actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ─── FILOSOFIE ───────────────────────────────────── */
.filosofie { padding: 5rem 0; background: var(--white); }
.filosofie__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.filosofie__media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.filosofie__media .img-fill { width: 100%; height: 100%; }
.filosofie__media .img-fill img { width: 100%; height: 100%; object-fit: cover; display: block; }

.filosofie__content .section-eyebrow { text-align: left; }
.filosofie__content .section-title  { text-align: left; margin-bottom: 1.25rem; }
.filosofie__content p { margin-bottom: 1rem; color: var(--grey-700); }

.filosofie__values { list-style: none; margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.filosofie__values li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--grey-50); border-radius: var(--radius);
  border: 1px solid var(--grey-200);
}
.filosofie__value-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.filosofie__values strong { display: block; font-size: .95rem; font-weight: 600; color: var(--dark-deep); margin-bottom: .2rem; }
.filosofie__values p { font-size: .875rem; color: var(--grey-700); margin: 0; line-height: 1.5; }

/* ─── OPENINGSTIJDEN + CONTACT ────────────────────── */
.openingstijden-contact { padding: 5rem 0; background: var(--grey-50); }
.openingstijden-contact__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.info-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.info-card__head {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-200);
}
.info-card__icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.info-card__head h3 { font-size: 1.05rem; color: var(--dark-deep); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours-table td { padding: .55rem 0; border-bottom: 1px solid var(--grey-100); }
.hours-table td:first-child { color: var(--grey-700); width: 55%; }
.hours-table td:last-child  { font-weight: 500; color: var(--dark-deep); text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table__highlight td:first-child { color: var(--dark-deep); font-weight: 600; }
.hours-table__spoed td { color: var(--red) !important; font-weight: 600 !important; }
.hours-table__closed td { color: var(--grey-400) !important; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .75rem; }
.contact-list svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.contact-list__tel { font-size: 1.3rem; font-weight: 700; color: var(--dark-deep); letter-spacing: .02em; }
.contact-list a { color: var(--dark-deep); }
.contact-list a:hover { color: var(--red); }
.contact-list address { font-size: .9rem; color: var(--grey-700); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
label { font-size: .8rem; font-weight: 600; color: var(--dark-deep); letter-spacing: .03em; text-transform: uppercase; }
label span { color: var(--red); }
input, textarea {
  width: 100%; padding: .7rem .9rem; border-radius: 8px;
  border: 1.5px solid var(--grey-200); background: var(--white);
  font-family: var(--font); font-size: .95rem; color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; min-height: 44px;
}
input:focus, textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(208,2,27,.12);
}
textarea { resize: vertical; min-height: 80px; }

/* ─── FOOTER KIT ──────────────────────────────────── */
.footer-kit {
  background: var(--dark-deep); color: rgba(255,255,255,.7);
  padding-top: 4rem;
}
.footer-kit__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.logo-badge--footer { width: 40px; height: 40px; font-size: .75rem; }
.footer-logo__name    { font-size: .95rem; font-weight: 700; color: var(--white); }
.footer-logo__tagline { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-kit__desc { font-size: .875rem; line-height: 1.65; max-width: 340px; }

.footer-kit__nav h4,
.footer-kit__contact h4 {
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.footer-kit__nav ul   { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-kit__nav a    { font-size: .875rem; color: rgba(255,255,255,.6); text-decoration: none; }
.footer-kit__nav a:hover { color: var(--white); }

.footer-kit__contact address { display: flex; flex-direction: column; gap: .75rem; }
.footer-kit__contact p { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; line-height: 1.5; }
.footer-kit__contact svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.4); }
.footer-kit__contact a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-kit__contact a:hover { color: var(--white); }

.footer-kit__bottom {
  padding: 1.25rem 0;
  display: flex;
}
.footer-kit__bottom .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.footer-kit__bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-kit__demo-note a { color: rgba(255,255,255,.5); }
.footer-kit__demo-note a:hover { color: var(--white); }

/* ─── SCREEN READER ───────────────────────────────── */
.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;
}

/* ─── REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ─── RESPONSIVE — TABLET (≤1024px) ──────────────── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-band__list { grid-template-columns: repeat(2, 1fr); }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__sub { margin: 0 auto; }
}

/* ─── RESPONSIVE — MOBILE (≤768px) ───────────────── */
@media (max-width: 768px) {
  /* Header */
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; padding-top: 72px; }
  .hero__content { flex-direction: column; align-items: flex-start; padding-bottom: 3rem; }
  .hero__badge { align-self: flex-start; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { justify-content: center; }
  .hero__sub { font-size: 1rem; }

  /* USP */
  .usp-band__list { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr 1fr; }

  /* Filosofie */
  .filosofie__inner { grid-template-columns: 1fr; gap: 2rem; }
  .filosofie__media { order: -1; aspect-ratio: 16/9; }

  /* Hours/Contact */
  .openingstijden-contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA Band */
  .cta-band__actions { width: 100%; flex-direction: column; }
  .cta-band__actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-kit__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-kit__bottom .container { flex-direction: column; gap: .5rem; text-align: center; }
}

/* ─── RESPONSIVE — SMALL MOBILE (≤480px) ─────────── */
@media (max-width: 480px) {
  /* Keep 2-col card grid even on small screens — more compact cards */
  .card-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .card { padding: 1.25rem 1rem; }
  .card__icon { width: 44px; height: 44px; }
  /* USP band: stack to 1-col but make each item more compact */
  .usp-band { padding: 2rem 0; }
  .usp-band__list { grid-template-columns: 1fr; gap: .75rem; }
  .usp-band__item { padding: .875rem; gap: .75rem; }
  .usp-band__icon { width: 40px; height: 40px; }
  .usp-band__text strong { font-size: .9rem; }
  .usp-band__text span   { font-size: .78rem; }
  /* Tighter hero on small screens */
  .hero__h1 { font-size: 1.75rem; }
  .hero__sub { font-size: .95rem; }
  h1 { font-size: 1.9rem; }
}
