
/* Load a brand file before this stylesheet, e.g. css/brands/de-sleutel-tot-jezelf.css */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-xl {
  max-width: 36rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--section-label, var(--primary)));
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.text-center .section-intro + .section-intro,
.how-it-works__header .section-intro + .section-intro {
  margin-top: 0.75rem;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.italic {
  font-style: italic;
}

/* Nav */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.site-nav__end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-nav__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  text-decoration: none;
  line-height: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-nav__wa:hover {
  border-color: hsl(var(--primary) / 0.35);
  background: hsl(var(--muted) / 0.35);
}

.site-nav__wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.site-nav__wa-icon svg {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: hsl(var(--foreground));
}

.site-nav__links {
  display: none;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .site-nav__links {
    display: flex;
  }
}

.site-nav__links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.site-nav__links a:hover {
  color: hsl(var(--primary));
}

.site-nav__links a.text-primary {
  color: hsl(var(--primary));
}

.site-nav__drawer a.text-primary {
  color: hsl(var(--primary));
}

.site-nav__brand .text-primary {
  color: hsl(var(--primary));
}

.btn-primary {
  display: inline-block;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.site-nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .site-nav__cta {
    display: inline-block;
  }
}

.site-nav__toggle {
  display: flex;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .site-nav__toggle {
    display: none;
  }
}

.site-nav__drawer {
  display: none;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}

.site-nav__drawer.is-open {
  display: block;
}

@media (min-width: 768px) {
  .site-nav__drawer {
    display: none !important;
  }
}

.site-nav__drawer ul {
  list-style: none;
  margin: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.site-nav__drawer a {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.site-nav__drawer a:hover {
  color: hsl(var(--primary));
}

.site-nav__item--dropdown {
  position: relative;
}

/* Invisible bridge so dropdown stays open when moving the pointer from the label */
.site-nav__item--dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
  z-index: 99;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav__item--dropdown:hover::after {
    display: block;
  }
}

.site-nav__dropdown-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}

.site-nav__dropdown-parent:hover {
  color: hsl(var(--primary));
}

.site-nav__dropdown-parent.is-current {
  color: hsl(var(--primary));
  font-weight: 500;
}

.site-nav__caret {
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.site-nav__item--dropdown:hover .site-nav__caret,
.site-nav__item--dropdown:focus-within .site-nav__caret {
  transform: rotate(180deg);
}

.site-nav__item--dropdown .site-nav__dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav__item--dropdown:hover .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.site-nav__item--dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0.4rem 0 0;
  min-width: 13rem;
  padding: 0.4rem 0;
  list-style: none;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 12px 24px -8px rgb(0 0 0 / 0.12);
  z-index: 100;
}

.site-nav__dropdown li {
  margin: 0;
}

.site-nav__dropdown a {
  display: block;
  padding: 0.45rem 1.1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a.is-current {
  color: hsl(var(--primary));
  background: hsl(var(--muted) / 0.45);
}

.site-nav__drawer-sub {
  width: 100%;
  max-width: 22rem;
  text-align: left;
}

.site-nav__drawer-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.4rem;
}

a.site-nav__drawer-label--link {
  text-decoration: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: color 0.15s ease;
}

a.site-nav__drawer-label--link:hover {
  color: hsl(var(--primary));
}

.site-nav__drawer-nested {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.85rem;
  border-left: 2px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("../assets/hero-bg.jpg");
  background-image: image-set(
    url("../assets/hero-bg.webp") type("image/webp"),
    url("../assets/hero-bg.jpg") type("image/jpeg")
  );
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: hsl(var(--background) / 0.4);
}

.hero__blob {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.hero__blob--1 {
  top: 7rem;
  left: 10%;
  width: 4rem;
  height: 4rem;
  background: hsl(var(--blush) / 0.4);
  filter: blur(4px);
}

.hero__blob--2 {
  top: 33%;
  right: 8%;
  width: 6rem;
  height: 6rem;
  background: hsl(var(--sage) / 0.3);
  filter: blur(4px);
}

.hero__blob--3 {
  bottom: 25%;
  left: 15%;
  width: 3rem;
  height: 3rem;
  background: hsl(var(--rose-soft) / 0.3);
  filter: blur(4px);
}

.hero__botanical {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 400px;
  height: 400px;
  max-width: 55vw;
  border-radius: 9999px;
  overflow: hidden;
  opacity: 0.3;
  pointer-events: none;
}

.hero__botanical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 48rem;
  margin: 0 auto;
}

.hero__icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--primary));
}

.hero__icons .icon-sage {
  color: hsl(var(--sage));
}
.hero__icons .icon-rose {
  color: hsl(var(--rose-soft));
}

.hero__content picture {
  display: block;
  width: fit-content;
  margin: 0 auto 0.85rem;
}

.hero__logo {
  display: block;
  width: clamp(9rem, 22vw, 14rem);
  height: auto;
  margin: 0;
}

.hero__subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__desc {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hero-citaat onder introtekst, net boven de knoppen (zelfde .blockquote-stijl als elders) */
.hero .blockquote.hero__tagline-quote {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 34rem;
  text-align: left;
}

.hero .blockquote.hero__tagline-quote p {
  text-align: left;
}

.hero__hint {
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  max-width: 34rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(var(--background) / 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hero__pill:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-hero-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-hero-secondary {
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.btn-hero-secondary:hover {
  background: hsl(var(--muted));
}

.hero__rule {
  margin-top: 4rem;
  height: 1px;
  width: 12rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(
    to right,
    transparent,
    hsl(var(--primary) / 0.4),
    transparent
  );
}

.hero__legal-note {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  max-width: 34rem;
  margin: 1.25rem auto 0;
  line-height: 1.55;
  text-align: center;
}

/* Juridische pagina's */
.legal-page__header {
  margin-bottom: 2rem;
  text-align: center;
}

.legal-page__updated {
  font-size: 0.875rem;
  margin: 0.75rem 0 0;
}

.legal-page__body h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin: 2rem 0 0.75rem;
}

.legal-page__body h2:first-child {
  margin-top: 0;
}

.legal-page__body ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.legal-page__body li + li {
  margin-top: 0.35rem;
}

.legal-page__body p {
  margin: 0 0 1rem;
}

.legal-page__body a {
  color: hsl(var(--primary));
}

.site-legal-consent {
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 28rem;
  margin: 0.85rem auto 0;
  text-align: center;
}

.site-legal-consent a {
  color: hsl(var(--primary));
}

.hero__actions .site-legal-consent {
  margin-top: 1rem;
}

.schedule-section .site-legal-consent {
  margin-top: 1.25rem;
}

.review-submit-form .site-legal-consent {
  margin: 0 0 1rem;
  text-align: left;
  max-width: none;
}

.site-nav__drawer .site-nav__consent-item .site-legal-consent {
  margin: 0.5rem 0 0;
  text-align: left;
  max-width: none;
  font-size: 0.75rem;
}

/* About */
.section {
  padding: 6rem 1.5rem;
}

/* Main content onder fixed .site-nav (geen eigen hero zoals homepage) */
main.section.page-under-site-nav {
  padding-top: 5.75rem;
}

.section--card {
  background: hsl(var(--card));
}

/* Hoe werkt het — intro gecentreerd, foto naast biotensor-tekst */
.how-it-works__header {
  margin-bottom: 2.5rem;
}

.how-it-works__header .section-intro {
  margin-top: 0;
  margin-bottom: 0;
}

.how-it-works__layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .how-it-works__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .how-it-works__visual {
    grid-column: 1;
    grid-row: 1;
  }

  .how-it-works__steps-col,
  .how-it-works__biotensor-col {
    grid-column: 2;
    grid-row: 1;
  }
}

.how-it-works__visual {
  margin: 0;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  background: #fff;
}

.how-it-works__visual-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.how-it-works__steps-col,
.how-it-works__biotensor-col {
  min-width: 0;
}

.how-it-works__biotensor-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.6vw, 1.875rem);
  line-height: 1.22;
  margin: 0 0 1rem;
}

.how-it-works__biotensor-body p {
  margin: 0;
  line-height: 1.65;
}

.how-it-works__flow-label {
  margin: 0 0 1.25rem;
  text-align: left;
}

.how-it-works__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.how-it-works__step {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0 1.15rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.how-it-works__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: hsl(var(--section-label, var(--primary)));
  background: hsl(var(--accent));
  border: 1px solid hsl(var(--border) / 0.65);
}

.how-it-works__step-icon svg {
  display: block;
}

.how-it-works__step:first-child {
  padding-top: 0;
}

.how-it-works__step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.how-it-works__step-body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: hsl(var(--foreground));
}

.how-it-works__formats {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.how-it-works__formats li {
  display: grid;
  gap: 0.15rem;
  padding-left: 0.85rem;
  border-left: 2px solid hsl(var(--section-label, var(--primary)) / 0.4);
}

.how-it-works__format-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  line-height: 1.4;
}

.how-it-works__format-desc {
  font-size: 0.875rem;
  line-height: 1.45;
  color: hsl(var(--muted-foreground));
}

.how-it-works__footer {
  max-width: 34rem;
  margin: 2.25rem auto 0;
  padding-top: 0.25rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.how-it-works__footer p {
  margin: 0;
}

.how-it-works__footer p + p {
  margin-top: 0.65rem;
}

/* Inline info: klik voor uitlegpaneel (mobiel-proof); ESC en klik daarbuiten sluiten */
.info-tip {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}

.info-tip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 0.2rem;
  padding: 0;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
  border: none;
  background: transparent;
  color: hsl(var(--primary));
  opacity: 0.75;
  cursor: pointer;
  border-radius: 50%;
}

.info-tip-trigger:hover {
  opacity: 1;
}

.info-tip-trigger:focus-visible {
  opacity: 1;
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.info-tip-panel {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 0.375rem);
  z-index: 60;
  min-width: min(15rem, max(13rem, 100vw - 2.75rem));
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  font-weight: 400;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 12px 32px -8px rgb(0 0 0 / 0.22);
}

.info-tip-panel[hidden] {
  display: none !important;
}

.how-it-works__subnote {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* Verhalen-hub: compacte springkaarten naar voor_wie-pagina */
.verhalen-hub__jump-grid {
  align-items: stretch;
}

.verhalen-hub__jump-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.verhalen-hub__jump-card:hover {
  box-shadow: 0 14px 28px -6px rgb(0 0 0 / 0.12);
  transform: translateY(-2px);
}

.verhalen-hub__jump-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: hsl(var(--muted));
}

.verhalen-hub__jump-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.verhalen-hub__jump-img--placeholder {
  min-height: 6rem;
}

.verhalen-hub__jump-title {
  display: block;
  padding: 0.85rem 1rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  color: hsl(var(--foreground));
}

/* Verhalen-hub: meer kolommen en compactere tekst (~halve kaart-footprint vs homepage-doelgroepen) */
.doelgroepen-grid.verhalen-hub__jump-grid {
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .doelgroepen-grid.verhalen-hub__jump-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .doelgroepen-grid.verhalen-hub__jump-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.verhalen-hub__jump-grid .verhalen-hub__jump-title {
  padding: 0.55rem 0.65rem 0.65rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.verhalen-hub__jump-grid .verhalen-hub__jump-img--placeholder {
  min-height: 3rem;
}

.about__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about__visual {
  position: relative;
}

.about__main-img {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.about__main-img img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

.about__inset {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 4px solid hsl(var(--background));
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.about__inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__deco-circle {
  position: absolute;
  border-radius: 9999px;
  z-index: -1;
}

.about__deco-circle--1 {
  bottom: -1rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
  background: hsl(var(--blush) / 0.4);
}

.about__deco-circle--2 {
  top: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: hsl(var(--sage) / 0.25);
}

/* CMS homepage: meerdere alinea's (witregel in beheer) */
.homepage-rich > p + p {
  margin-top: 1rem;
}

.blockquote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid hsl(var(--primary) / 0.4);
}

.blockquote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: hsl(var(--foreground) / 0.8);
  margin: 0;
}

/* Doelgroepen (homepage) */
.doelgroepen-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .doelgroepen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .doelgroepen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.doelgroep-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.doelgroep-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: hsl(var(--muted));
}

.doelgroep-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doelgroep-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.doelgroep-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0;
  color: hsl(var(--foreground));
  line-height: 1.25;
}

.doelgroep-card__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.doelgroep-card__more {
  margin-top: auto;
  padding-top: 0.85rem;
  margin-bottom: 0;
}

.doelgroep-card__more a {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-decoration: none;
}

.doelgroep-card__more a:hover {
  text-decoration: underline;
}

.doelgroep-card__img a {
  display: block;
  height: 100%;
  color: inherit;
}

/* Label chips (doelgroepen + labelpagina’s) */
.label-chip-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.doelgroep-card__text + .label-chip-row {
  margin-top: 0.35rem;
}

.label-chip-row--page {
  margin-top: 0.5rem;
}

.label-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.25rem 0.55rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.35);
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

a.label-chip:hover {
  background: hsl(var(--muted) / 0.55);
  border-color: hsl(var(--primary) / 0.35);
  text-decoration: none;
}

.doelgroep-page-main {
  padding-top: 4.25rem;
}

/* Voor wie — ruimte tussen titel, labels, foto en omschrijving */
.doelgroep-page .label-chip-row--page {
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

.doelgroep-page .section-title + .doelgroep-page__hero {
  margin-top: 1.75rem;
}

.doelgroep-page .label-chip-row--page + .doelgroep-page__hero {
  margin-top: 0;
}

.doelgroep-page__hero {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
}

.doelgroep-page__body {
  margin-top: 0;
  line-height: 1.65;
  font-size: 1rem;
}

.doelgroep-page .section-title + .doelgroep-page__body,
.doelgroep-page .label-chip-row--page + .doelgroep-page__body {
  margin-top: 1.75rem;
}

.doelgroep-page__hero img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.doelgroep-page .section-label a {
  color: hsl(var(--muted-foreground));
}

.doelgroep-page .section-label a:hover {
  color: hsl(var(--primary));
}

.doelgroep-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.doelgroep-page__actions .btn-hero-secondary {
  margin-left: 0 !important;
}

/* Tighter stack when Verhalen follows the action buttons */
.doelgroep-page--with-verhalen {
  padding-bottom: 1.25rem;
}

.verhalen-section {
  padding-top: 1.25rem;
  padding-bottom: 4rem;
}

.verhalen-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: hsl(var(--foreground));
}

.verhalen-section__intro {
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0 0 2rem;
}

/* Labels detail: verhalen-blok iets donkerder voor contrast met verhaal-cards (--background) */
.labels-page-main .verhalen-section.section--card {
  padding-top: 2.5rem;
  background: hsl(var(--muted));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.labels-page-main .verhalen-section__title {
  margin-bottom: 2rem;
}

.page-not-found {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.page-not-found__intro {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

.page-not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.verhalen-lijst {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.verhaal-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: 0 8px 20px -8px rgb(0 0 0 / 0.06);
}

.verhaal-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
}

.verhaal-card__doelgroep {
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

a.verhaal-card__doelgroep--link {
  color: hsl(var(--primary));
  font-weight: 500;
  text-decoration: none;
}

a.verhaal-card__doelgroep--link:hover {
  text-decoration: underline;
}

.verhaal-card__probleem {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.35;
  color: hsl(var(--primary));
}

.verhaal-card__doelgroepen {
  display: inline;
  font-size: 0.8125rem;
  font-weight: 500;
}

.verhaal-card__doelgroep-sep {
  color: hsl(var(--muted-foreground));
}

.verhaal-card__block {
  margin-top: 1rem;
}

.verhaal-card__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 0.35rem;
}

.verhaal-card__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.review-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
}

.review-card__meta {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.review-card__score {
  margin: 0;
}

.review-stars {
  display: inline-flex;
  gap: 0.12rem;
  align-items: center;
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.review-stars__star {
  color: hsl(var(--muted-foreground) / 0.45);
}

.review-stars__star.is-filled {
  color: hsl(38deg 92% 50%);
}

.reviews-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.star-rating-fieldset {
  min-width: 0;
}

.star-rating-picker__track {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

.star-rating-picker__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.star-rating-picker__glyph {
  font-size: 1.85rem;
  line-height: 1;
  color: hsl(var(--muted-foreground) / 0.45);
  transition:
    color 0.12s ease,
    transform 0.12s ease;
}

.star-rating-picker__star:hover .star-rating-picker__glyph,
.star-rating-picker__star:focus-visible .star-rating-picker__glyph {
  transform: scale(1.06);
}

.star-rating-picker__star--on .star-rating-picker__glyph {
  color: hsl(38deg 92% 50%);
}

.star-rating-picker__star--preview .star-rating-picker__glyph {
  color: hsl(38deg 78% 55%);
}

.star-rating-picker__star:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

.review-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: hsl(var(--foreground));
}

.review-card__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: hsl(var(--foreground));
  margin: 0;
}

.pillars {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  transition: box-shadow 0.3s;
}

.pillar:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.pillar__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: hsl(var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: hsl(var(--primary));
}

.pillar h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* Services / pricing */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 1px solid hsl(var(--border));
  background: #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
}

.price-card--featured {
  background: #fff;
  color: hsl(var(--foreground));
  border: 2px solid hsl(var(--primary));
  box-shadow: 0 16px 32px -8px rgb(0 0 0 / 0.14);
}

@media (min-width: 768px) {
  .price-card--featured {
    transform: scale(1.02);
  }
}

.price-card__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
  color: hsl(var(--primary));
}

.price-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.price-card .price-card__desc {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.price-card .price-card__desc .price-card__whatsapp-link {
  color: hsl(var(--primary));
}

.price-card__amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.price-card__amount span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  margin-left: 0.5rem;
  opacity: 0.75;
}

.price-card--featured .price-card__amount span {
  opacity: 0.7;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.price-card li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(var(--primary));
}

.price-card__feature-text {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}

.price-card__whatsapp-link {
  display: inline;
  color: hsl(var(--primary));
  font-weight: 500;
  text-decoration: none;
  white-space: normal;
}

.price-card__whatsapp-link:hover {
  text-decoration: underline;
}

.schedule-contact-strip {
  text-align: center;
  margin: 1.75rem auto 2rem;
  max-width: 36rem;
}

.schedule-contact-strip__lead {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: hsl(var(--muted));
}

.schedule-contact-strip__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 1rem;
}

.schedule-contact-strip__links li {
  margin: 0;
}

.schedule-contact-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.schedule-contact-strip__btn:hover {
  border-color: hsl(var(--primary) / 0.35);
  background: hsl(var(--muted) / 0.35);
}

.schedule-contact-strip__btn--icon-only {
  padding: 0.55rem;
}

.schedule-contact-strip__btn svg {
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  color: hsl(var(--primary));
}

.schedule-contact-strip__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  color: hsl(var(--primary));
  text-transform: lowercase;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.referral-steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .referral-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.referral-step {
  text-align: center;
}

.referral-step .pillar__icon {
  margin-bottom: 1rem;
}

.referral-form-wrap {
  max-width: 32rem;
  margin: 0 auto;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
}

.referral-form-wrap h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 4rem 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.site-footer h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.site-footer > .container {
  max-width: 56rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.footer-links a {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-links a:hover {
  color: hsl(var(--primary));
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin: 0 0 2rem;
}

.footer-legal-links a,
.footer-legal-links__btn {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links__btn:hover {
  color: hsl(var(--primary));
}

.footer-legal-links__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 200;
  padding: 0 1rem 1rem;
  pointer-events: none;
}

.cookie-consent:not([hidden]) {
  pointer-events: auto;
}

.cookie-consent__panel {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.15rem 1.25rem 1.25rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  box-shadow: 0 12px 40px hsl(0 0% 0% / 0.12);
}

.cookie-consent-open .site-footer {
  padding-bottom: 0.5rem;
}

.cookie-consent__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: hsl(var(--foreground));
}

.cookie-consent__text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: hsl(var(--muted-foreground));
  margin: 0 0 1rem;
}

.cookie-consent__text a {
  color: hsl(var(--primary));
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.cookie-consent__actions--settings {
  margin-bottom: 0;
}

.cookie-consent__btn {
  flex: 1 1 auto;
  min-width: 9rem;
  text-align: center;
}

.cookie-consent__settings-toggle {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.75rem;
  color: hsl(var(--primary));
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.cookie-consent__settings {
  margin-top: 0.25rem;
}

.cookie-consent__categories {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.cookie-consent__category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.cookie-consent__category-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.cookie-consent__category-desc {
  font-size: 0.75rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.cookie-consent__badge {
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
  white-space: nowrap;
}

.cookie-consent__switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-consent__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-consent__switch-ui {
  position: relative;
  display: block;
  width: 2.5rem;
  height: 1.35rem;
  border-radius: 9999px;
  background: hsl(var(--border));
  transition: background 0.2s;
}

.cookie-consent__switch-ui::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.15);
  transition: transform 0.2s;
}

.cookie-consent__switch input:checked + .cookie-consent__switch-ui {
  background: hsl(var(--primary));
}

.cookie-consent__switch input:checked + .cookie-consent__switch-ui::after {
  transform: translateX(1.15rem);
}

.cookie-consent__switch input:focus-visible + .cookie-consent__switch-ui {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .cookie-consent__panel {
    max-width: 42rem;
    padding: 1.25rem 1.5rem 1.35rem;
  }

  .cookie-consent__actions {
    justify-content: flex-end;
  }

  .cookie-consent__btn {
    flex: 0 1 auto;
  }
}

.footer-copy {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.site-footer__legal {
  margin: 2rem auto 1.25rem;
  max-width: 28rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: hsl(var(--muted-foreground));
}

.site-footer__legal p {
  margin: 0.35rem 0;
}

.site-footer__legal-maps {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: hsl(var(--primary) / 0.45);
  text-underline-offset: 0.15em;
}

.site-footer__legal-maps:hover {
  color: hsl(var(--primary));
  text-decoration-color: hsl(var(--primary));
}

.site-footer__contact {
  margin: 1.75rem auto 1.75rem;
  max-width: 36rem;
}

.site-footer__contact-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.375rem;
  color: hsl(var(--foreground));
  letter-spacing: 0.02em;
}

.site-footer__contact-sub {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

/* Audience detail */
.page-hero-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.points-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
}

.points-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

.points-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: hsl(var(--primary));
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: hsl(var(--primary));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-wrap {
  padding-top: 5rem;
  padding-bottom: 4rem;
  min-height: 100svh;
}

.page-wrap .container {
  max-width: 48rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
