* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-family-body);
}

/* NAVIGATIE */
.navLogo {
  width: 160px;
  display: block;
}

.site-nav {
  background-color: var(--background-card-300);
  padding: var(--space-3);
  box-shadow: var(--shadow-nav-dropdown);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin-inline: auto;
  background: var(--text-primary);
  border-radius: 4px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--surface-page);
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 30;
  /* overflow: hidden; */
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  padding: var(--space-3) 0;
  margin-inline: calc(var(--space-4) * -1);
  margin-top: calc(var(--space-4) * -1);
  padding-inline: var(--space-3);
  background: var(--background-card-300);
}

.navLogo--overlay {
  width: 160px;
}

.nav-sluitknop {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-sluitknop span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 4px;
}

.nav-sluitknop span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-sluitknop span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
  z-index: 2;
}

.nav-links li a {
  font-family: var(--font-family-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  color: var(--text-primary);
  text-decoration: none;
  padding-inline: var(--space-1);
  border-radius: var(--space-2);
}

.nav-links li a:hover {
  background-color: var(--brand-highlight);
  transition: background-color 0.3s ease;
}

.nav-links li a:active {
  font-weight: var(--font-weight-bold);
}

.nav-decoratie {
  position: absolute;
  right: -30px;
  bottom: -55px;
  width: 65%;
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

/* FOOTER  */
.site-footer,
.footer {
  position: relative;
  margin-top: var(--space-10);
  padding: var(--space-7) var(--space-8) var(--space-10);
  background: var(--gradient-footer-brand);
  color: var(--text-on-dark);
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.footer-brand img {
  width: 220px;
  max-width: 100%;
  display: block;
}

.tagline {
  margin: 0;
  max-width: 48ch;
  font-family: var(--text-body-small-font-family);
  font-weight: var(--text-body-small-font-weight);
  font-size: var(--text-body-small-font-size);
  line-height: var(--text-body-small-line-height);
  color: var(--text-on-dark);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: var(--background-50);
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-button-hover);
}

.social-icon img {
  width: var(--space-6);
  height: var(--space-6);
  object-fit: contain;
}

.footer-links h3,
.footer-contact h3,
.footer-columns h3 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-md);
  color: var(--text-on-dark);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a,
.footer-columns a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-family: var(--text-body-small-font-family);
  font-weight: var(--text-body-small-font-weight);
  font-size: var(--text-body-small-font-size);
  line-height: var(--text-body-small-line-height);
}

.footer-links a:hover,
.footer-columns a:hover {
  text-decoration: underline;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--button-radius);
  border: var(--button-border-width) var(--button-border-style) var(--button-primary-default-border);
  background: var(--button-primary-default-bg);
  color: var(--button-primary-default-text);
  font-family: var(--text-button-label-font-family);
  font-weight: var(--text-button-label-font-weight);
  font-size: var(--font-size-sm);
  line-height: var(--text-button-label-line-height);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-1px);
  background: var(--primary-50);
  box-shadow: var(--shadow-button-hover);
  border: 1px solid var(--button-primary-active-border);
}

.copyright {
  position: absolute;
  left: 50%;
  bottom: var(--space-6);
  transform: translateX(-50%);
  margin: 0;
  text-align: center;
  font-family: var(--text-body-small-font-family);
  font-weight: var(--text-body-small-font-weight);
  font-size: var(--text-body-small-font-size);
  line-height: var(--text-body-small-line-height);
  color: var(--text-on-dark);
  white-space: nowrap;
}

@media (min-width: 834px) {
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    padding: var(--space-4) var(--space-8);
  }

  .nav-inner {
    flex-shrink: 0;
  }

  .menu-button {
    display: none;
  }

  .nav-overlay {
    position: static;
    inset: auto;
    background: transparent;
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0;
    transition: none;
    overflow: visible;
  }

  .nav-overlay__header,
  .nav-sluitknop,
  .nav-decoratie {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-3);
  }

  .nav-links li a {
    padding-inline: var(--space-1);
    border-radius: var(--space-2);
    font-size: var(--font-size-xs);
  }

  .nav-links li a:hover {
    background-color: var(--brand-highlight);
    transition: background-color 0.3s ease;
  }

  /* FOOTER */
  .site-footer,
  .footer {
    padding: var(--space-8) var(--space-9) var(--space-10);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-9);
  }

  .footer-logo-section {
    grid-column: 1 / -1;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
}

@media (min-width: 1194px) {
  .nav-inner {
    gap: var(--space-2);
  }

  .nav-links {
    gap: var(--space-6);
  }

  .nav-links li a {
    font-size: var(--text-navigation-default-font-size);
  }

  /* FOOTER */
  .site-footer,
  .footer {
    padding: var(--space-8) var(--space-11) var(--space-10);
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
  }

  .footer-logo-section {
    grid-column: auto;
  }

  .footer-columns {
    display: block;
  }

  .footer-columns>div+div {
    margin-top: var(--space-8);
  }

  .footer-links,
  .footer-contact {
    min-width: 220px;
  }
}

/* Stylesheet */
html {
  scroll-behavior: smooth;
}

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

button,
input {
  font: inherit;
}

/* HERO */
.hero {
  margin-top: var(--space-7);
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-11) var(--space-4) var(--space-8);
}

.hero-content {
  width: 100%;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.hero h1 span {
  margin-top: 20px;
  color: var(--brand-primary);
}

.hero p {
  margin: 0 0 var(--space-6);
  font-family: var(--font-family-body);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  color: var(--text-primary);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  width: fit-content;
  justify-self: center;
  gap: var(--space-3);
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 40px;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--button-radius);
  border: var(--button-border-width) var(--button-border-style) var(--border-color-green);
  background: var(--button-primary-active-bg);
  color: var(--text-on-dark);
  font-family: var(--text-button-label-font-family);
  font-size: var(--text-button-label-font-size);
  font-weight: var(--font-weight-semibold);
}

.hero-button:hover {
  background: var(--button-primary-hover-bg);
  color: var(--button-primary-hover-text);
  border-color: var(--border-color-green);
  box-shadow: var(--shadow-button-hover);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-button:active {
  background: var(--button-primary-hover-bg);
  border-color: var(--button-primary-hover-border);
  color: var(--button-primary-hover-text);
}

.hero-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 40px;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--button-radius);
  border: var(--button-border-width) var(--button-border-style) var(--button-accent-default-border);
  background: var(--button-primary-hover-bg);
  color: var(--button-primary-hover-text);
  font-family: var(--text-button-label-font-family);
  font-size: var(--text-button-label-font-size);
  font-weight: var(--font-weight-semibold);
}

.hero-button-secondary:hover {
  background: var(--button-primary-active-bg);
  color: var(--text-on-dark);
  border-color: var(--border-color-green);
  box-shadow: var(--shadow-button-hover);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-button-secondary:active {
  background: var(--button-primary-active-bg);
  border-color: var(--button-primary-hover-border);
  color: var(--text-on-dark);
}

.hero-image {
  margin-top: var(--space-8);
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  /* width: 60vw; */
  width: 280px;
  height: auto;
  display: block;
  animation: breathe 6s ease-in-out infinite;
  transform-origin: center;
}

/* HERKENBAAR SECTIE */
.herkenbaar-sectie {
  padding: var(--space-0) var(--space-0) var(--space-10);
  background: var(--gradient-section);
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  margin-bottom: var(--space-6);
  padding-top: 2rem;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* KAART */
.kaart {
  --kaart-breedte: clamp(280px, 70vw, 360px);
  flex: 0 0 var(--kaart-breedte);
  width: var(--kaart-breedte) !important;
  max-width: 100%;
  scroll-snap-align: center;
  transform-origin: center center;
  margin-top: 0px;
  min-width: 300px;
  min-height: 220px;
  background: var(--surface-page);
  border: 2px solid var(--brand-highlight);
  border-radius: 2rem;
  padding: var(--space-5) var(--space-8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.92);
  opacity: 0.65;
}

.kaart--actief {
  transform: scale(1);
  opacity: 1;

}

.kaart--clone {
  pointer-events: none;
}

.kaart__icoon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.kaart h3 {
  margin: 0 0 var(--space-3);
  font-family: var(--text-heading-1-font-family);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.kaart p {
  margin: 0;
  font-family: var(--text-body-regular-font-family);
  font-size: var(--font-size-xs);
  color: var(--text-secondary);
}

/* PIJLEN */
.slider-pijl {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
}

.slider-pijl img {
  width: 100%;
  height: 100%;
  display: block;
}

.slider-pijl--links {
  left: 1rem;
}

.slider-pijl--rechts {
  right: 1rem;
}

/* INDICATOREN */
.slider-indicatoren {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  margin-bottom: var(--space-6);
}

.indicator {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1.5px solid #a8b6aa;
}

.indicator--actief {
  background: #a8b6aa;
}

/* ONDERSTE TEKST */
.herkenbaar-inhoud {
  text-align: center;
  margin: 0 auto;
  padding: 22px var(--space-2) 0;
}

.herkenbaar-inhoud h2 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin: 0 0 var(--space-4);
}

.herkenbaar-inhoud p {
  font-family: var(--text-body-regular-font-family);
  font-size: var(--font-size-xs);
  color: var(--text-secondary-300);
}

/* GENERAL SECTIONS */
.section {
  padding: 22px var(--space-2) 0;
}

.section h2 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin: var(--space-3);
}

.feature-card p,
.team-intro {
  font-size: var(--font-size-xxs);
  line-height: var(--line-height-xs);
  color: var(--text-primary);
}

/* Over Re:Mind */
.over-remind {
  padding: var(--space-8) var(--space-4) var(--space-10);
}

.over-remind__intro {
  margin-bottom: var(--space-8);
}

.over-remind h2 {
  margin: 0 0 var(--space-5);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.over-remind p {
  margin: 0 0 var(--space-4);
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-sm);
  color: var(--text-primary);
}

.over-remind__highlight {
  margin-top: var(--space-6);
}

.over-remind a {
  color: var(--primary-600);
  font-weight: var(--font-weight-semibold);
  text-decoration: underline;
}

.missie-kaart {
  position: relative;
  overflow: hidden;
  padding: var(--space-5);
  background: var(--highlight-200);
  border-radius: 24px;
  margin-bottom: var(--space-6);
}

.missie-kaart__decoratie {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  opacity: 0.75;
  pointer-events: none;
}

.missie-kaart__decoratie img {
  width: 84px;
  height: 84px;
  display: block;
}

.missie-kaart h3,
.visie-blok h3 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.missie-kaart p:last-of-type,
.visie-blok p:last-of-type,
.over-remind__intro p:last-of-type {
  margin-bottom: 0;
}

.visie-blok {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}

.visie-blok p {
  color: var(--text-primary);
}

/* PRICING */
.pricing {
  padding: var(--space-8) var(--space-4) var(--space-10);
}

.pricing h2 {
  font-size: var(--font-size-lg);
  text-align: center;
}

.pricing-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin: 0 auto 0 auto;
  width: 80%;
}

.pricing-card {
  background: var(--gradient-pricing-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-img-default);
  text-align: center;
}

.pricing-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 120px;
  padding: var(--space-1) var(--space-3);
  background: var(--background-50);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-family: var(--text-button-label-font-family);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-xs);
  color: var(--text-primary);
}

.pricing-card h3 {
  margin: var(--space-7) 0 var(--space-3);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 0 auto 0 auto;
  padding-left: var(--space-0);
  width: fit-content;
}

.pricing-card li {
  position: relative;
  margin-bottom: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--text-primary);
  max-width: 260px;
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  margin-top: var(--space-7);
  padding: 0 var(--space-3);
  border-radius: var(--button-radius);
  font-size: var(--font-size-xs);
  font-family: var(--font-family-heading);
  border: var(--button-border-width) var(--button-border-style) var(--primary-700);
  background: var(--button-primary-active-bg);
  color: var(--text-on-dark);
  font-weight: var(--font-weight-semibold);
}

.card-button:hover {
  background: var(--button-primary-hover-bg);
  border-color: var(--button-primary-hover-border);
  box-shadow: var(--shadow-button-hover);
  color: var(--text-on-light);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.card-button:active {
  background: var(--primary-50);
  border-color: var(--primary-300);
}

.billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 80%;
  margin: 0 auto var(--space-4);
  padding: var(--space-1);
  background: var(--primary-200);
  border: 1px solid var(--primary-600);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
}

.billing-pill {
  appearance: none;
  border: none;
  background: transparent;
  min-height: var(--space-7);
  border-radius: var(--radius-xs);
  color: var(--text-primary);
  cursor: pointer;
}

.billing-pill.active {
  background: var(--button-primary-active-bg);  
  color: var(--text-on-dark);
}

/* CONTACT */
.contact h2 {
  padding-left: var(--space-4);
  margin: 0;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.contact h3 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-sm);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-align: center;
}

.contact_content {
  padding: var(--space-5) var(--space-4) var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.socials-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.socials-links a {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: fit-content;
}

.socials-links a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.socials-links a span {
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-sm);
  color: var(--text-primary);
  border-radius: var(--radius-xs);
  padding: 0 var(--space-1);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  transition: background-color 0.3s ease;
}

.socials-links a:hover span {
  background-color: var(--brand-highlight);
}

.contact-form-wrap {
  width: 100%;
}

.contact-form {
  width: 100%;
  background: var(--highlight-200);
  border: var(--border-width-sm) var(--border-style-solid) var(--border-color-green);
  border-radius: 18px;
  padding: var(--space-4);
  margin: 0;
  box-shadow: var(--shadow-img-default);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.contact-form label:last-of-type {
  margin-bottom: var(--space-4);
}

.contact-form input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border-200);
  border-radius: 12px;
  background: var(--background-50);
  padding: 0 var(--space-3);
  margin: 0;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-regular);
  color: var(--text-primary);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.contact-form input::placeholder {
  color: var(--text-placeholder);
}

.contact-form input:focus {
  outline: 2px solid rgba(130, 154, 138, 0.25);
  outline-offset: 1px;
  border-color: var(--brand-primary);
}

.submit-button {
  width: 100%;
  min-height: 48px;
  margin-top: var(--space-2);
  border-radius: 12px;
  border: 1px solid var(--button-accent-default-border);
  background: var(--background-50);
  color: var(--text-primary);
  font-family: var(--font-family-heading);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease,
    color 0.3s ease;
}

.submit-button:hover {
  background: var(--button-accent-hover-bg);
  border-color: var(--button-accent-hover-border);
  box-shadow: var(--shadow-button-hover);
}

.submit-button:active {
  background: var(--button-accent-active-bg);
  border-color: var(--button-accent-active-border);
  color: var(--text-on-dark);
}

/* BREAKPOINTS */
@media (min-width: 834px) {
  .hero {
    margin-top: var(--space-8);
    padding: var(--space-10) var(--space-11);
    min-height: calc(85vh - 80px);
  }

  .hero-content {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    align-items: center;
    column-gap: var(--space-8);
    text-align: left;
  }

  .hero h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-8);
  }

  .hero p {
    margin: 0 0 var(--space-8);
    width: 80%;
  }

  .hero-image {
    justify-content: flex-end;
  }

  .hero-cta {
    justify-self: start;
  }

  /* HERKENBAAR SECTIE */
  .kaart {
    --kaart-breedte: clamp(280px, 80vw, 420px);
  }

  /* OVER RE:MIND */
  .over-remind {
    padding: var(--space-9) var(--space-8) var(--space-10);
    /*48 - 40 - 64*/
  }

  .missie-visie {
    display: flex;
    flex-direction: row;
    gap: var(--space-7);
    justify-content: space-between;
    align-items: center;
  }

  .missie-kaart {
    width: 80%;
    margin-bottom: 0;
  }

  /* PRICING */
  .pricing {
    padding: var(--space-9) var(--space-8) var(--space-10);
  }

  .pricing h2 {
    font-size: var(--font-size-md);
    margin: 0 0 var(--space-3);
  }

  .pricing-stack {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-5);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .pricing-card {
    flex: 1;
  }

  .billing-toggle {
    width: fit-content;
    max-width: 400px;
  }

  .billing-pill {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  /* CONTACT */
  .contact_content {
    padding: var(--space-9) var(--space-8) var(--space-10);
    display: flex;
    flex-direction: row;
    gap: var(--space-10);
    align-items: start;
  }

  .contact h2 {
    grid-column: 1 / -1;
  }

  .contact h3 {
    text-align: left;
  }

  .socials-links {
    grid-column: 1;
    grid-row: 2;
    padding-top: var(--space-2);
  }

  .socials-links a {
    gap: var(--space-4);
  }

  .socials-links a img {
    width: 36px;
    height: 36px;
  }

  .contact-form-wrap {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
  }

  .contact-form {
    padding: var(--space-5);
    border-radius: 20px;
  }

  .submit-button {
    min-height: 52px;
  }
}

@media (min-width: 1194px) {
  .hero {
    margin-top: var(--space-9);
  }

  .hero-content {
    column-gap: var(--space-11);
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-cta {
    display: flex;
    flex-direction: row;
    gap: var(--space-4);
  }

  /* HERKENBAAR SECTIE */
  .kaart {
    --kaart-breedte: clamp(280px, 30vw, 400px);
    opacity: 1;
    transform: scale(1);
  }

  .kaart h3 {
    font-size: var(--font-size-md);
  }

  .kaart p {
    font-size: var(--text-body-regular-font-size);
  }

  .herkenbaar-inhoud p {
    font-size: var(--text-body-regular-font-size);
  }

  .slider-track {
    justify-content: center;
  }

  .slider-pijl {
    display: none;
  }

  .slider-indicatoren {
    display: none;
  }

  /* OVER RE:MIND */
  .over-remind {
    padding: var(--space-9) var(--space-9) var(--space-10);
    /*48 - 48 - 64*/
  }

  .over-remind h2 {
    font-size: var(--font-size-lg);
  }

  .over-remind h3 {
    font-size: var(--font-size-md);
  }

  .over-remind p {
    margin: 0 0 var(--space-4);
    font-size: var(--text-body-regular-font-size);
    line-height: var(--line-height-sm);
  }

  .missie-visie {
    gap: var(--space-8);
  }

  /* PRICING */
  .pricing {
    padding: var(--space-9) var(--space-9) var(--space-10);
  }

  .pricing h2 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-5);
  }

  .pricing-stack {
    gap: var(--space-8);
  }

  .pricing h3 {
    font-size: var(--font-size-md);
  }

  /* CONTACT */
  .contact_content {
    padding: var(--space-9) var(--space-9) var(--space-0);
    max-width: 80vw;
    margin: 0 auto;
  }

  .contact h2 {
    font-size: var(--font-size-lg);
    margin: 0;
  }

  .contact-socials {
    width: 60%;
  }

  .socials-links {
    gap: var(--space-5);
  }

  .socials-links a img {
    width: 40px;
    height: 40px;
  }

  .socials-links a span {
    font-size: var(--text-body-regular-font-size);
  }

  .contact-form {
    padding: var(--space-6);
  }

  .contact-form label {
    font-size: var(--text-body-regular-font-size);
  }

  .contact-form input {
    height: 56px;
    font-size: var(--text-body-regular-font-size);
    border-radius: 14px;
  }

  .submit-button {
    min-height: 56px;
    border-radius: var(--radius-md);
  }
}

@media (min-width: 1440px) {
  .nav-inner {
    gap: var(--space-6);
  }

  .hero {
    margin-top: var(--space-10);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero p {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-md);
  }

  /* HERKENBAAR SECTIE */
  .slider {
    margin-bottom: var(--space-8);
  }

  .slider-track {
    gap: 2rem;
  }

  /* OVER RE:MIND */
  .over-remind {
    padding: clamp(64px, 4.44vw, 128px) clamp(80px, 5.56vw, 240px) clamp(80px, 5.56vw, 160px);
  }

  /* PRICING */
  .pricing {
    padding: clamp(64px, 4.44vw, 128px) clamp(80px, 5.56vw, 240px);
  }

  .pricing-card {
    max-width: 350px;
  }

  /* CONTACT */
  .contact {
    padding: var(--space-10) var(--space-11) var(--space-11);
    /* column-gap: var(--space-4); */
  }

  .contact h3 {
    font-size: var(--font-size-md);
    margin-bottom: var(--space-3);
  }

  .contact-link span {
    font-size: var(--text-body-regular-font-size);
  }

  .contact-form-wrap h3 {
    font-size: var(--font-size-md);
  }

  .contact-form input {
    font-size: var(--text-body-regular-font-size);
  }

  .contact-form span {
    font-size: var(--font-size-sm);
  }
}

/* Animations */

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeftSoft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightSoft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes featureImageIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes featureContentIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes breathe {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.1);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* FEATURE PANEL ANIMATIES */
.feature-panel-image,
.feature-panel-content {
  opacity: 0;
  transform: translateX(0);
}

/* beginposities */
.feature-panel-image {
  transform: translateX(-40px);
}

.feature-panel-content {
  transform: translateX(40px);
}

/* actieve animatie */
.feature-panel.is-animating .feature-panel-image {
  animation: featureImageIn 0.6s ease forwards;
}

.feature-panel.is-animating .feature-panel-content {
  animation: featureContentIn 0.6s ease forwards;
  animation-delay: 0.1s;
  /* kleine stagger */
}

/* MOOD CHECK-IN DEMO */
/* MOOD CHECK-IN DEMO */
.mood-demo {
  padding: 0;
  background: var(--highlight-200);
}

.mood-demo__card {
  width: 100%;
  max-width: none;
  min-height: 225px;
  margin: 0;
  padding: 36px var(--space-4);
  background: var(--highlight-200);
  border-radius: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mood-demo__screen {
  display: none;
  width: 100%;
}

.mood-demo__screen.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mood-demo h2 {
  margin: 0 0 32px;
  font-family: var(--font-family-heading);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-sm);
  color: var(--text-primary);
  text-align: center;
}

.mood-demo__options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.mood-demo__option {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mood-demo__option:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 0.9;
}

.mood-demo__option img,
.mood-demo__icon {
  width: 100%;
  height: 100%;
  display: block;
}

.mood-demo__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
}

.mood-demo__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
}

.mood-demo__text {
  max-width: 780px;
  margin: 0 auto 22px;
  font-family: var(--font-family-body);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  color: var(--text-primary);
  text-align: center;
}

.mood-demo__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mood-demo__primary,
.mood-demo__secondary {
  min-height: 40px;
  padding: 7px 17px 8px;
  border-radius: 10px;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xs);
  cursor: pointer;
}

.mood-demo__primary {
  background: var(--primary-300);
  color: var(--text-on-dark);
  border: 1px solid var(--primary-700);
  font-family: var(--font-family-body);
}

.mood-demo__secondary {
  background: var(--primary-50);
  color: var(--text-primary);
  border: 1px solid var(--primary-300);
  font-family: var(--font-family-heading);
}

@media (min-width: 834px) {
  .mood-demo__card {
    min-height: 300px;
  }

  .mood-demo h2 {
    font-size: 32px;
    line-height: 41px;
  }

  .mood-demo__options {
    gap: 48px;
  }

  .mood-demo__option {
    width: 100px;
    height: 100px;
  }

  .mood-demo__icon {
    width: 100px;
    height: 100px;
  }

  .mood-demo__text,
  .mood-demo__primary,
  .mood-demo__secondary {
    font-size: 20px;
    line-height: 27px;
  }
}

@media (min-width: 1194px) {
  .mood-demo__card {
    min-height: 363px;
  }

  .mood-demo__option {
    width: 128px;
    height: 128px;
  }

  .mood-demo__options {
    gap: 51px;
  }
}