@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("./assets/fonts/Poppins-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("./assets/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("./assets/fonts/Poppins-Bold.ttf") format("truetype");
  font-display: swap;
}

:root {
  --color-background: #eff5ff;
  --color-hero: #ffffff;
  --color-section: #dfeaff;
  --color-download: var(--color-section);
  --color-features: var(--color-section);
  --color-video: var(--color-section);
  --color-accent: #a7f586;
  --color-navy: #091334;
  --color-text: #1f2937;
  --color-muted: #4b5563;
  --max-width: 1120px;
}

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

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

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.layout {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-card {
  background: #fff;
  border-radius: 36px;
  padding: clamp(1.8rem, 3.3vw, 2.75rem);
  box-shadow: none;
  border: none;
  width: 100%;
  text-align: left;
  overflow: hidden;
}

.program-card {
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 1vw, 0.85rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
}

.button--primary {
  background: var(--color-accent);
  color: var(--color-navy);
  box-shadow: none;
}

.button--primary:hover {
  transform: translateY(-1px);
}

.button--primary:active {
  transform: translateY(0);
}

.hero {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 2rem 0 6rem;
}

.hero__inner {
  position: relative;
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.hero__logo img {
  width: 52px;
  height: auto;
}

.hero__install {
  font-weight: 400;
  font-size: clamp(0.8rem, 0.2vw + 0.75rem, 0.95rem);
  padding: 0.65rem 1.3rem;
  white-space: nowrap;
}

.hero__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-left: auto;
  font-size: 1rem;
}

.hero__nav .button {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: clamp(0.9rem, 0.3vw + 0.85rem, 1rem);
}

.hero__contact {
  color: var(--color-navy);
  font-weight: 500;
  font-size: clamp(0.9rem, 0.3vw + 0.85rem, 1rem);
}

.menu-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.15s ease;
  padding: 0.5rem;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle:active {
  transform: translateY(0);
}

.menu-toggle__icon {
  width: 28px;
  height: 28px;
}

.menu-toggle__icon--close {
  display: none;
}

.menu-toggle.is-open .menu-toggle__icon--open {
  display: none;
}

.menu-toggle.is-open .menu-toggle__icon--close {
  display: block;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.site-menu__backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-menu.is-open .site-menu__backdrop {
  opacity: 1;
}

.site-menu__panel {
  --menu-pad: clamp(0.55rem, 1.4vw, 0.85rem);
  --menu-pad-x: calc(var(--menu-pad) + 0.35rem);
  position: absolute;
  top: clamp(0.7rem, 2.5vw, 1.25rem);
  right: max(1rem, calc((100vw - var(--max-width)) / 2 + 1.5rem));
  width: min(88vw, 300px);
  background: #fff;
  border-radius: 18px;
  padding: var(--menu-pad-x);
  box-shadow: 0 26px 58px -28px rgba(9, 19, 52, 0.5), 0 18px 30px -26px rgba(9, 19, 52, 0.35);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu.is-open .site-menu__panel {
  transform: translateY(0);
  opacity: 1;
}

.site-menu__header {
  position: absolute;
  top: var(--menu-pad-x);
  right: var(--menu-pad-x);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  width: auto;
}

.site-menu__close {
  border: none;
  background: transparent;
  border-radius: 12px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  padding: 0.35rem;
}

.site-menu__close:hover {
  transform: translateY(-1px);
}

.site-menu__close img {
  width: 20px;
  height: 20px;
}

.site-menu__sections {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 0.05rem;
  padding-right: var(--menu-pad-x);
}

.site-menu__section {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-menu__section + .site-menu__section {
  margin-top: 0.4rem;
}

.site-menu__heading {
  margin: 0 0 0.25rem;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.95rem;
}

.site-menu__list,
.site-menu__sub-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.24rem 0;
  color: #000;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  border-bottom: 1px solid rgba(9, 19, 52, 0.06);
}

.site-menu__link--contact {
  border-bottom: none;
  padding-top: 0.35rem;
}

.site-menu__sub-list {
  padding-left: 1.4rem;
  gap: 0.28rem;
}

.site-menu__sub-link {
  font-weight: 500;
  color: #000;
  font-size: 0.86rem;
  border-bottom: none;
  padding: 0.18rem 0;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.site-menu__sub-link:hover {
  color: var(--color-navy);
}

.hero__content {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 5.5rem;
}

.hero__text h1 {
  font-size: clamp(1.6rem, 1.4vw + 1.35rem, 2.1rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-navy);
}

.hero__subtitle {
  margin: 0;
  color: var(--color-muted);
  font-weight: 500;
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.1rem);
}

.hero__decoration {
  position: absolute;
  bottom: -1px;
  pointer-events: none;
}

.hero__decoration--lion {
  left: max(calc((100vw - var(--max-width)) / 2), 24px);
  width: 200px;
}

.hero__decoration--goat {
  right: max(calc((100vw - var(--max-width)) / 2), 24px);
  width: 210px;
}

.program-menu {
  position: relative;
  background: var(--color-section);
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3.75rem, 6vw, 5rem);
}

.program-menu__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 3vw, 1.75rem);
  justify-items: center;
}

@media (min-width: 900px) {
  .program-menu__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.program-menu__card {
  width: min(100%, 320px);
  background: #fff;
  border-radius: 48px;
  padding: clamp(1.6rem, 3vw, 2.25rem) clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-navy);
  font-weight: 500;
  box-shadow: none;
  border: none;
  min-height: 210px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .program-menu__card:hover {
    transform: translateY(-8px);
    box-shadow: none;
  }
}

.program-menu__card h3 {
  margin: 0;
  font-size: clamp(1.08rem, 0.45vw + 1rem, 1.35rem);
  font-weight: 600;
}

.program-menu__card p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.92rem, 0.35vw + 0.88rem, 1.05rem);
  line-height: 1.55;
}

.program-menu__card[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 900px) {
  .program-menu__card h3 {
    font-size: clamp(1rem, 0.9vw + 0.92rem, 1.15rem);
  }

  .program-menu__card p {
    font-size: clamp(0.88rem, 0.5vw + 0.82rem, 0.98rem);
    line-height: 1.5;
  }
}

@media (max-width: 850px) {
  .program-menu__card h3 {
    font-size: clamp(0.95rem, 1vw + 0.85rem, 1.08rem);
  }

  .program-menu__card p {
    font-size: clamp(0.86rem, 0.6vw + 0.78rem, 0.95rem);
  }
}

.plansje {
  background: var(--color-section);
  padding: clamp(3.2rem, 5vw, 4.8rem) 0;
}

.plansje__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.plansje__content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 1.2vw + 1.2rem, 2rem);
  color: var(--color-navy);
  font-weight: 600;
}

.plansje__content p {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  font-size: clamp(0.98rem, 0.4vw + 0.9rem, 1.1rem);
  line-height: 1.7;
}

.plansje__link {
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}

.plansje__card {
  background: var(--color-background);
  border-radius: 32px;
  padding: clamp(1.2rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(9, 19, 52, 0.05);
}

.plansje__card img {
  border-radius: 24px;
  box-shadow: 0 24px 54px -36px rgba(9, 19, 52, 0.45);
  width: min(100%, 360px);
}

.plansje__button {
  padding: 0.65rem 2rem;
}

.download {
  position: relative;
  padding: 5rem 0 6rem;
  background: var(--color-download);
  overflow: hidden;
}

/* .download__inner no longer in use */

.download__heading {
  margin-bottom: clamp(0.2rem, 0.7vw, 0.45rem);
}

.download__heading h2 {
  margin: 0;
  font-size: clamp(1.5rem, 1vw + 1.2rem, 1.95rem);
  color: var(--color-navy);
  font-weight: 600;
  text-align: left;
  scroll-margin-top: clamp(4rem, 12vh, 7rem);
}


.features {
  width: 100%;
}

.features--embedded {
  padding-top: clamp(0.8rem, 2vw, 1.5rem);
}

.features__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.features__info-text {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: clamp(0.5rem, 1.2vw, 0.9rem);
}

.features__cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0.6rem 0 0.9rem;
}

.button--secondary {
  background: #d2e2fe;
  color: var(--color-navy);
  border: none;
  box-shadow: none;
}
.button--secondary:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.features__link-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.5rem;
  max-width: 360px;
}
.features__link-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border: 1px solid #e6ebf2;
}
.features__link--primary {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.features__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.features__pdf {
  width: 100%;
  max-width: 520px;
  background: var(--color-background);
  border-radius: 32px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: inset 0 0 0 1px rgba(9, 19, 52, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  align-items: center;
}

.features__pdf-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-navy);
  font-weight: 600;
}

.features__pdf-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-muted);
  font-weight: 400;
}

.features__pdf img {
  width: min(100%, 360px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 24px 54px -36px rgba(9, 19, 52, 0.45);
}

.features__pdf-button {
  padding: 0.65rem 2.2rem;
}

.features__info {
  grid-column: 1 / -1;
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.features__links-row {
  margin-top: 4.4rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.features__links-row .features__link {
  font-size: clamp(0.9rem, 0.3vw + 0.85rem, 0.98rem);
}

.features__left {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  padding: 0;
}

.features__eyebrow {
  margin: 0;
  font-size: clamp(1.05rem, 0.7vw + 0.95rem, 1.25rem);
  color: var(--color-muted);
  font-weight: 500;
}

.features__left ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.5vw, 1.9rem);
}

.features__left li {
  padding-bottom: clamp(0.9rem, 1.8vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
  padding-left: clamp(1rem, 1.8vw, 1.4rem);
}

.features__left li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  border-radius: 999px;
  background: rgba(9, 19, 52, 0.15);
}

.features__left li h3 {
  margin: 0;
  font-size: clamp(0.92rem, 0.55vw + 0.82rem, 1.12rem);
  font-weight: 600;
  color: var(--color-navy);
}

.features__left li p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.95rem, 0.45vw + 0.85rem, 1.05rem);
  line-height: 1.7;
}

.features__title {
  color: var(--color-navy);
  font-weight: 500;
  font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.08rem);
  line-height: 1.5;
}

.features__info-text p,
.features__info p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.98rem, 0.45vw + 0.9rem, 1.12rem);
  line-height: 1.8;
}


.features__videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.2rem, 3vw, 1.9rem);
  margin: clamp(0.9rem, 2vw, 1.4rem) 0 clamp(0.75rem, 2vw, 1.1rem);
}

.features__videos .video__frame {
  width: 100%;
  max-width: none;
  box-shadow: none;
  border: 1px solid rgba(9, 19, 52, 0.12);
}

.features__link {
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 6px;
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;
}

.features__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0;
  background: none;
}

.features__panel {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.2vw, 1.75rem);
  background: transparent;
}

.features__panel img {
  width: 100%;
  height: 100%;
  max-width: min(100%, 360px);
  object-fit: contain;
}

.features__cta {
  align-self: center;
  padding: 0.75rem 2.25rem;
  text-align: center;
}

.features__note {
  margin: 0.35rem 0 0;
  text-align: center;
  color: var(--color-muted);
  font-size: clamp(0.78rem, 0.3vw + 0.75rem, 0.9rem);
}

.support {
  background: var(--color-section);
  padding: clamp(3.25rem, 5.5vw, 4.5rem) 0;
}

.support__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 3vw, 2.5rem);
}

.support__header h2 {
  margin: 0 0 clamp(0.6rem, 2vw, 0.9rem);
  font-size: clamp(1.3rem, 1vw + 1.05rem, 1.75rem);
  color: var(--color-navy);
  font-weight: 600;
}

.support__header p {
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(0.95rem, 0.45vw + 0.85rem, 1.05rem);
  max-width: 44ch;
}

.support__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.2rem);
}

.support__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
  align-items: center;
  padding: clamp(1.1rem, 2.4vw, 1.75rem);
  border-radius: 16px;
  background: var(--color-background);
}

.support__image {
  width: clamp(92px, 10vw, 132px);
  box-shadow: 0 16px 32px -24px rgba(9, 19, 52, 0.28);
}

.support__image--wide {
  width: clamp(120px, 15vw, 200px);
}

.support__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 2vw, 0.75rem);
}

.support__content h3 {
  margin: 0;
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.2rem);
  color: var(--color-navy);
  font-weight: 600;
}

.support__button {
  align-self: flex-start;
  padding: 0.7rem 1.65rem;
}

.video {
  background: var(--color-video);
  padding: 6rem 0;
}

.video__inner {
  text-align: center;
}

.video__inner h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 1.6vw + 1.5rem, 2.25rem);
  color: var(--color-navy);
  font-weight: 600;
}

.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(9, 19, 52, 0.16);
}

.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact {
  position: relative;
  padding: 5.5rem 0 6.75rem;
  background-color: var(--color-section) !important;
}

.contact__inner {
  display: flex;
  justify-content: flex-start;
}

.contact__content {
  max-width: 680px;
  text-align: left;
}

.contact__content h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 1.6vw + 1.5rem, 2.25rem);
  color: var(--color-navy);
  font-weight: 600;
}

.contact__content p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.contact__content a {
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section-decoration {
  position: absolute;
  bottom: -1px;
  pointer-events: none;
}

.section-decoration--contact {
  right: max(calc((100vw - var(--max-width)) / 2), 24px);
  width: 220px;
}

@media (max-width: 1024px) {
  .support__inner {
    gap: clamp(1.6rem, 2.8vw, 2.1rem);
  }

  .support__items {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .hero__decoration--lion,
  .hero__decoration--goat {
    width: 170px;
  }

  .section-decoration--contact {
    width: 190px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .hero__top {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .hero__nav {
    flex: 1;
    justify-content: flex-end;
    gap: 0.75rem;
  }

  .hero__nav .button {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .download__inner {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.3rem);
    padding-inline: clamp(1.35rem, 4.5vw, 1.85rem);
    text-align: left;
  }

  .features__inner {
    grid-template-columns: 1fr;
    gap: clamp(1.1rem, 3vw, 1.8rem);
  }

  .features__left {
    gap: clamp(1.35rem, 4vw, 1.95rem);
  }

  .features__panel {
    padding: clamp(0.8rem, 3.2vw, 1.25rem);
  }

  .features__panel img {
    max-width: min(100%, 280px);
  }

  .support__items {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 560px) {
  html {
    font-size: 14.5px;
  }

  .hero__install {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero__nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero__nav .button,
  .hero__contact {
    display: none;
  }

  .hero__logo {
    font-size: 1rem;
  }

  .hero__logo img {
    width: 44px;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0.55rem;
  }

  .hero {
    padding: 2rem 0 3.5rem;
  }

  .program-menu {
    padding: 2rem 0 3rem;
  }

  .program-menu__card {
    text-align: center;
    align-items: center;
    min-height: auto;
    width: 100%;
    border-radius: 40px;
  }

  .plansje__inner {
    padding: clamp(1.2rem, 7vw, 1.8rem);
    grid-template-columns: 1fr;
  }

  .plansje__card {
    width: 100%;
  }

  .download {
    padding: 4.5rem 0 5.5rem;
  }

  .features__inner {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 5vw, 1.75rem);
  }

  .features__left {
    gap: clamp(1.45rem, 5.5vw, 2.1rem);
  }

  .features__panel {
    padding: clamp(1rem, 6vw, 1.75rem);
  }

  .features__panel img {
    width: 100%;
    height: auto;
    max-width: 320px;
    margin: 0 auto;
  }

  .features__right {
    padding: 0;
    justify-content: center;
  }

  .support__inner {
    gap: clamp(1.35rem, 5vw, 1.85rem);
  }

  .support__items {
    gap: clamp(1.1rem, 4.5vw, 1.6rem);
  }

  .support__item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .support__content {
    align-items: center;
    gap: clamp(0.55rem, 3.5vw, 0.85rem);
  }

  .support__button {
    align-self: center;
  }

  .video {
    padding: 4.5rem 0;
  }

  .video__frame {
    width: 100%;
  }

  .features__videos {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-card {
    border-radius: 28px;
  }

  .contact {
    padding: 4.5rem 0 5.5rem;
  }

  .hero__decoration {
    display: none;
  }

  .section-decoration--contact {
    display: none;
  }
}
