/**
 * Front-end styles voor hls_regio landingspagina's.
 * Gebaseerd op wireframe/hb-regio.css — Hummingbirds brand 2026.
 * Alle component- en typografieselectors zijn gescopeeerd onder
 * .hls-regio-page om conflicten met het Breakdance-thema te voorkomen.
 *
 * @package HummingbirdsLocalSeo
 */

/* --- TOKENS ------------------------------------------------- */
:root {
  --hb-black:      #000000;
  --hb-surface:    #0A0A0A;
  --hb-card:       #111111;
  --hb-border:     #1F1F1F;
  --hb-border-mid: #2E2E2E;
  --hb-accent:     #E0FD60;
  --hb-accent-dim: rgba(224, 253, 96, 0.10);
  --hb-white:      #FFFFFF;
  --hb-muted:      #777777;
  --hb-muted-2:    #444444;

  --font-head: 'sofia-pro', 'Figtree', sans-serif;
  --font-body: 'Figtree', sans-serif;

  --text-xs:   0.6875rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5.5rem;
  --text-hero: clamp(3rem, 7vw, 7rem);

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET (scoped to plugin wrapper) ----------------------- */
.hls-regio-page *, .hls-regio-page *::before, .hls-regio-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
.hls-regio-page {
  background: var(--hb-black);
  color: var(--hb-white);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.hls-regio-page img { display: block; max-width: 100%; height: auto; }
.hls-regio-page a { color: inherit; text-decoration: none; }
.hls-regio-page ul, .hls-regio-page ol { list-style: none; }
.hls-regio-page button { font-family: inherit; }

/* --- TYPOGRAPHY (scoped) ------------------------------------ */
.hls-regio-page h1,
.hls-regio-page h2,
.hls-regio-page h3,
.hls-regio-page h4 {
  font-family: var(--font-head) !important;
  font-weight: 800 !important;
  line-height: 1.0 !important;
  letter-spacing: -0.01em !important;
}

.hls-regio-page .eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hb-muted);
}

.hls-regio-page .prefix {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--hb-accent);
  font-weight: 600;
  margin-bottom: 0.5em;
  letter-spacing: 0;
}

/* --- LAYOUT ------------------------------------------------- */
.hls-regio-page .container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}

.hls-regio-page .section {
  padding-block: var(--sp-2xl);
}

.hls-regio-page .section--lg {
  padding-block: var(--sp-3xl);
}

.hls-regio-page .divider {
  height: 1px;
  background: var(--hb-border);
  width: 100%;
}

/* --- PAGE WRAPPER ------------------------------------------- */
.hls-regio-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.hls-regio-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.6em;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.hls-regio-page .btn:hover { transform: translateY(-1px); opacity: 0.92; }
.hls-regio-page .btn:active { transform: translateY(0); }

.hls-regio-page .btn--accent {
  background: var(--hb-accent);
  color: var(--hb-black);
}

.hls-regio-page .btn--outline {
  background: transparent;
  color: var(--hb-white);
  border: 1.5px solid var(--hb-white);
}

.hls-regio-page .btn--outline:hover {
  background: rgba(255,255,255,0.06);
  opacity: 1;
}

.hls-regio-page .btn .material-symbols-outlined {
  font-size: 1.1em;
  font-variation-settings: 'wght' 400;
  transition: transform 0.2s var(--ease);
}

.hls-regio-page .btn:hover .material-symbols-outlined { transform: translateX(3px); }

/* ============================================================
   1. HERO
   ============================================================ */
.hls-regio-page .hero {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .hero__inner {
}

.hls-regio-page .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-xs);
  color: var(--hb-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-lg);
}

.hls-regio-page .hero__breadcrumb a { transition: color 0.2s; }
.hls-regio-page .hero__breadcrumb a:hover { color: var(--hb-white); }
.hls-regio-page .hero__breadcrumb .sep { color: var(--hb-muted-2); }

.hls-regio-page .hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hb-accent);
  margin-bottom: var(--sp-md);
}

.hls-regio-page .hero__h1 {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-lg);
  max-width: 16ch;
}

.hls-regio-page .hero__sub {
  font-size: var(--text-lg);
  color: var(--hb-muted);
  max-width: 54ch;
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}

.hls-regio-page .hero__ctas {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

/* Trust bar */
.hls-regio-page .hero__trust {
  border-top: 1px solid var(--hb-border);
  padding-block: var(--sp-lg);
  margin-top: var(--sp-lg);
}

.hls-regio-page .hero__trust-row {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.hls-regio-page .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--text-sm);
  color: var(--hb-muted);
}

.hls-regio-page .trust-item strong { color: var(--hb-white); }

.hls-regio-page .trust-item .material-symbols-outlined {
  font-size: 1rem;
  color: var(--hb-accent);
}

.hls-regio-page .trust-stars {
  display: flex;
  gap: 1px;
}

.hls-regio-page .trust-stars .material-symbols-outlined {
  font-size: 0.9rem;
  color: var(--hb-accent);
  font-variation-settings: 'FILL' 1, 'wght' 400;
}

/* ============================================================
   2. INTRO + STATS
   ============================================================ */
.hls-regio-page .intro {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}

.hls-regio-page .intro__h2 {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  margin-bottom: var(--sp-md);
}

.hls-regio-page .intro__p,
.hls-regio-page .intro__text p {
  color: var(--hb-muted);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.hls-regio-page .intro__p + .hls-regio-page .intro__p { margin-top: 0; }

.hls-regio-page .intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--hb-white);
  border-bottom: 1px solid var(--hb-muted-2);
  padding-bottom: 2px;
  margin-top: var(--sp-md);
  transition: border-color 0.2s, color 0.2s;
}

.hls-regio-page .intro__link:hover {
  color: var(--hb-accent);
  border-color: var(--hb-accent);
}

.hls-regio-page .intro__link .material-symbols-outlined { font-size: 1rem; }

.hls-regio-page .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hls-regio-page .stat-card {
  background: var(--hb-card);
  padding: var(--sp-lg);
  transition: background 0.2s;
}

.hls-regio-page .stat-card:hover { background: #161616; }

.hls-regio-page .stat-card__number {
  font-family: var(--font-head);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--hb-accent);
  line-height: 1;
  margin-bottom: 0.3em;
  letter-spacing: -0.03em;
}

.hls-regio-page .stat-card__label {
  font-size: var(--text-sm);
  color: var(--hb-muted);
  line-height: 1.45;
}

/* ============================================================
   3. DIENSTEN
   ============================================================ */
.hls-regio-page .services {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .services__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .services__h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
}

.hls-regio-page .services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hls-regio-page .service-card {
  background: var(--hb-card);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: background 0.2s;
  cursor: default;
}

.hls-regio-page .service-card:hover { background: #161616; }

.hls-regio-page .service-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-sm);
}

.hls-regio-page .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hls-regio-page .service-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hb-accent);
  margin-bottom: 0.25rem;
}

.hls-regio-page .service-card__icon .material-symbols-outlined {
  font-size: 1.5rem;
  font-variation-settings: 'wght' 300;
}

.hls-regio-page .service-card__title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--hb-white);
  letter-spacing: -0.01em;
}

.hls-regio-page .service-card__desc {
  font-size: var(--text-sm);
  color: var(--hb-muted);
  line-height: 1.65;
  flex: 1;
}

.hls-regio-page .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hb-white);
  margin-top: auto;
  transition: color 0.2s, gap 0.2s;
}

.hls-regio-page .service-card:hover .service-card__link { color: var(--hb-accent); gap: 0.6em; }
.hls-regio-page .service-card__link .material-symbols-outlined { font-size: 1rem; }

/* ============================================================
   4. WERKWIJZE
   ============================================================ */
.hls-regio-page .approach {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .approach__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.hls-regio-page .approach__sticky {
  position: sticky;
  top: 6rem;
}

.hls-regio-page .approach__h2 {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  margin-bottom: var(--sp-md);
}

.hls-regio-page .approach__p {
  color: var(--hb-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.hls-regio-page .steps {
  display: flex;
  flex-direction: column;
}

.hls-regio-page .step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--sp-md);
  padding-block: var(--sp-lg);
  border-bottom: 1px solid var(--hb-border);
  position: relative;
}

.hls-regio-page .step:last-child { border-bottom: none; }

.hls-regio-page .step__num {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--hb-border-mid);
  padding-top: 0.15em;
  transition: color 0.2s;
  letter-spacing: -0.02em;
}

.hls-regio-page .step:hover .step__num { color: var(--hb-accent); }

.hls-regio-page .step__title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
}

.hls-regio-page .step__desc {
  font-size: var(--text-sm);
  color: var(--hb-muted);
  line-height: 1.65;
}

/* ============================================================
   5. CASES
   ============================================================ */
.hls-regio-page .cases {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .cases__head {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--hb-border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--sp-lg);
}

.hls-regio-page .cases__h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
}

.hls-regio-page .cases__sub {
  color: var(--hb-muted);
  font-size: var(--text-lg);
  margin-top: 0.4em;
}

.hls-regio-page .cases__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--hb-border);
  border: 1px solid var(--hb-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hls-regio-page .case-card {
  position: relative;
  background: var(--hb-card);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--hb-white);
  transition: background 0.25s;
}

.hls-regio-page .case-card:hover { background: #161616; }

.hls-regio-page .case-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.3s;
}

.hls-regio-page .case-card:hover .case-card__img { opacity: 0.75; }

.hls-regio-page .case-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.hls-regio-page .case-card__body {
  position: relative;
  z-index: 2;
}

.hls-regio-page .case-card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-accent);
  margin-bottom: 0.5em;
  display: block;
}

.hls-regio-page .case-card__title {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35em;
}

.hls-regio-page .case-card__meta {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.hls-regio-page .case-card--featured {
  grid-row: span 2;
  min-height: 560px;
}

.hls-regio-page .case-card--featured .case-card__title {
  font-size: var(--text-3xl);
}

/* ============================================================
   6. LOKALE CONTEXT
   ============================================================ */
.hls-regio-page .local {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .local__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.hls-regio-page .local__h2 {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  margin-bottom: var(--sp-md);
}

.hls-regio-page .local__p {
  color: var(--hb-muted);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.hls-regio-page .local__facts {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--hb-border);
  border: 1px solid var(--hb-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--sp-lg);
}

.hls-regio-page .local__fact {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: var(--sp-md);
  background: var(--hb-card);
  transition: background 0.2s;
}

.hls-regio-page .local__fact:hover { background: #161616; }

.hls-regio-page .local__fact .material-symbols-outlined {
  font-size: 1.1rem;
  color: var(--hb-accent);
  margin-top: 2px;
  flex-shrink: 0;
  font-variation-settings: 'wght' 300;
}

.hls-regio-page .local__fact-body strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--hb-white);
  margin-bottom: 0.2em;
}

.hls-regio-page .local__fact-body p {
  font-size: var(--text-sm);
  color: var(--hb-muted);
  line-height: 1.5;
}

.hls-regio-page .local__map-wrap {
  position: sticky;
  top: 6rem;
}

.hls-regio-page .local__map {
  background: var(--hb-card);
  border: 1px solid var(--hb-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.hls-regio-page .local__map iframe {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  border: 0;
}

.hls-regio-page .local__map-title {
  font-family: var(--font-head);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hls-regio-page .local__map-sub {
  font-size: var(--text-sm);
  color: var(--hb-muted);
  margin-top: 0.4em;
}

.hls-regio-page .local__city-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--hb-border);
  border: 1px solid var(--hb-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hls-regio-page .local__city {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65em var(--sp-md);
  background: var(--hb-black);
  font-size: var(--text-sm);
  transition: background 0.15s;
  text-decoration: none;
  color: var(--hb-muted);
}

.hls-regio-page .local__city:hover {
  background: #0e0e0e;
  color: var(--hb-white);
}

.hls-regio-page .local__city--current {
  background: var(--hb-card);
  color: var(--hb-white);
  font-weight: 700;
}

.hls-regio-page .local__city--current::after {
  content: 'U bent hier';
  font-size: var(--text-xs);
  color: var(--hb-accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hls-regio-page .local__city .material-symbols-outlined {
  font-size: 0.875rem;
  color: var(--hb-muted-2);
}

.hls-regio-page .local__route {
  margin-top: var(--sp-lg);
}

.hls-regio-page .local__route-title {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--sp-sm);
}

.hls-regio-page .local__route-text p {
  color: var(--hb-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}

.hls-regio-page .local__gemeenten {
  margin-top: var(--sp-md);
  font-size: var(--text-sm);
  color: var(--hb-muted);
  line-height: 1.7;
}

/* ============================================================
   7. INTERNE LINKS
   ============================================================ */
.hls-regio-page .regio-links {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .regio-links__head {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .regio-links__h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  margin-bottom: 0.3em;
}

.hls-regio-page .regio-links__sub {
  color: var(--hb-muted);
}

.hls-regio-page .regio-tabs {
  display: flex;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
}

.hls-regio-page .regio-tab {
  padding: 0.5em 1.15em;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--hb-border-mid);
  background: transparent;
  color: var(--hb-muted);
  cursor: pointer;
  transition: all 0.18s;
}

.hls-regio-page .regio-tab--active,
.hls-regio-page .regio-tab:hover {
  background: var(--hb-accent);
  color: var(--hb-black);
  border-color: var(--hb-accent);
}

.hls-regio-page .regio-group { margin-bottom: var(--sp-lg); }

.hls-regio-page .regio-group__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-muted-2);
  margin-bottom: var(--sp-sm);
}

.hls-regio-page .regio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
}

.hls-regio-page .regio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.5em 1em;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--hb-muted);
  border: 1px solid var(--hb-border-mid);
  border-radius: var(--radius-pill);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
}

.hls-regio-page .regio-pills.is-visible .regio-pill {
  animation: pillFadeUp 0.5s var(--ease) forwards;
}

.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(1)  { animation-delay: 0.00s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(2)  { animation-delay: 0.05s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(3)  { animation-delay: 0.10s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(4)  { animation-delay: 0.15s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(5)  { animation-delay: 0.20s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(6)  { animation-delay: 0.25s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(7)  { animation-delay: 0.30s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(8)  { animation-delay: 0.35s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(9)  { animation-delay: 0.40s; }
.hls-regio-page .regio-pills.is-visible .regio-pill:nth-child(n+10) { animation-delay: 0.45s; }

.hls-regio-page .regio-pill:hover {
  color: var(--hb-white);
  border-color: var(--hb-white);
}

.hls-regio-page .regio-pill--active {
  color: var(--hb-black);
  background: var(--hb-accent);
  border-color: var(--hb-accent);
  font-weight: 700;
}

.hls-regio-page .service-links-row {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--hb-border);
}

/* ============================================================
   8. TESTIMONIALS
   ============================================================ */
.hls-regio-page .testimonials {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .testimonials__head {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--hb-border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.hls-regio-page .testimonials__h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
}

.hls-regio-page .testimonials__rating {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

.hls-regio-page .testimonials__score {
  font-family: var(--font-head);
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--hb-accent);
  line-height: 1;
}

.hls-regio-page .testimonials__detail {
  font-size: var(--text-xs);
  color: var(--hb-muted);
  line-height: 1.4;
}

.hls-regio-page .testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hls-regio-page .testimonial-card {
  background: var(--hb-card);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: background 0.2s;
}

.hls-regio-page .testimonial-card:hover { background: #161616; }

.hls-regio-page .testimonial-card__stars {
  display: flex;
  gap: 2px;
}

.hls-regio-page .testimonial-card__stars .material-symbols-outlined {
  font-size: 0.9rem;
  color: var(--hb-accent);
  font-variation-settings: 'FILL' 1, 'wght' 400;
}

.hls-regio-page .testimonial-card__quote {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  flex: 1;
}

.hls-regio-page .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  border-top: 1px solid var(--hb-border);
  padding-top: var(--sp-md);
}

.hls-regio-page .testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hb-accent-dim);
  border: 1.5px solid var(--hb-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--hb-accent);
  flex-shrink: 0;
  letter-spacing: 0;
}

.hls-regio-page .testimonial-card__name {
  font-weight: 700;
  font-size: var(--text-sm);
}

.hls-regio-page .testimonial-card__company {
  font-size: var(--text-xs);
  color: var(--hb-muted);
}

/* ============================================================
   9. FAQ
   ============================================================ */
.hls-regio-page .faq {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .faq__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}

.hls-regio-page .faq__sticky {
  position: sticky;
  top: 6rem;
}

.hls-regio-page .faq__h2 {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  margin-bottom: var(--sp-md);
}

.hls-regio-page .faq__p {
  color: var(--hb-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
}

.hls-regio-page .faq__list {
  display: flex;
  flex-direction: column;
}

.hls-regio-page .faq-item {
  border-bottom: 1px solid var(--hb-border);
}

.hls-regio-page .faq-item:first-child { border-top: 1px solid var(--hb-border); }

.hls-regio-page .faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-md) 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--hb-white);
  transition: color 0.2s;
}

.hls-regio-page .faq-item__trigger:hover { color: var(--hb-accent); }

.hls-regio-page .faq-item__trigger .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--hb-muted);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), color 0.2s;
  font-variation-settings: 'wght' 300;
}

.hls-regio-page .faq-item--open .faq-item__trigger .material-symbols-outlined {
  transform: rotate(45deg);
  color: var(--hb-accent);
}

.hls-regio-page .faq-item__content {
  padding-bottom: var(--sp-md);
  font-size: var(--text-sm);
  color: var(--hb-muted);
  line-height: 1.75;
  max-width: 60ch;
}

.hls-regio-page .faq-item__content a {
  color: var(--hb-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   10. CTA BANNER
   ============================================================ */
.hls-regio-page .cta-section {
  padding-bottom: var(--sp-3xl);
}

.hls-regio-page .cta-banner {
  border: 1px solid var(--hb-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hls-regio-page .cta-banner__top {
  padding: var(--sp-2xl);
  border-bottom: 1px solid var(--hb-border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-xl);
  align-items: end;
}

.hls-regio-page .cta-banner__h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  max-width: 22ch;
}

.hls-regio-page .cta-banner__sub {
  color: var(--hb-muted);
  font-size: var(--text-lg);
  margin-top: 0.5em;
  max-width: 50ch;
}

.hls-regio-page .cta-banner__btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: flex-end;
  flex-shrink: 0;
}

.hls-regio-page .cta-banner__bottom {
  padding: var(--sp-lg) var(--sp-2xl);
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  background: var(--hb-card);
}

.hls-regio-page .cta-contact {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  color: var(--hb-white);
  transition: color 0.2s;
}

.hls-regio-page .cta-contact:hover { color: var(--hb-accent); }

.hls-regio-page .cta-contact .material-symbols-outlined {
  font-size: 1rem;
  font-variation-settings: 'wght' 300;
  color: var(--hb-muted);
}

.hls-regio-page .cta-contact__value {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hls-regio-page .cta-contact__label {
  font-size: var(--text-xs);
  color: var(--hb-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  display: block;
}

.hls-regio-page .cta-sep {
  width: 1px;
  height: 40px;
  background: var(--hb-border-mid);
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hls-regio-page .intro__grid,
  .hls-regio-page .approach__grid,
  .hls-regio-page .local__grid,
  .hls-regio-page .faq__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .hls-regio-page .approach__sticky,
  .hls-regio-page .local__map-wrap,
  .hls-regio-page .faq__sticky {
    position: static;
  }

  .hls-regio-page .cases__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hls-regio-page .case-card--featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 320px;
  }

  .hls-regio-page .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hls-regio-page .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hls-regio-page .cta-banner__top {
    grid-template-columns: 1fr;
  }

  .hls-regio-page .cta-banner__btns {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 768px) {
  :root {
    --sp-2xl: 3.5rem;
    --sp-3xl: 5rem;
  }

  .hls-regio-page .container { padding-inline: var(--sp-md); }

  .hls-regio-page .services__grid,
  .hls-regio-page .cases__grid,
  .hls-regio-page .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .hls-regio-page .case-card--featured {
    grid-column: span 1;
    min-height: 280px;
  }

  .hls-regio-page .services__head {
    grid-template-columns: 1fr;
  }

  .hls-regio-page .cases__head {
    grid-template-columns: 1fr;
  }

  .hls-regio-page .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hls-regio-page .hero__trust-row {
    gap: var(--sp-md);
  }

  .hls-regio-page .testimonials__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hls-regio-page .hero__ctas,
  .hls-regio-page .cta-banner__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hls-regio-page .btn { width: 100%; justify-content: center; }
  .hls-regio-page .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pillFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hls-regio-page .anim { animation: fadeUp 0.55s var(--ease) both; }
.hls-regio-page .anim--1 { animation-delay: 0.05s; }
.hls-regio-page .anim--2 { animation-delay: 0.12s; }
.hls-regio-page .anim--3 { animation-delay: 0.20s; }

@media (prefers-reduced-motion: reduce) {
  .hls-regio-page *,
  .hls-regio-page *::before,
  .hls-regio-page *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
