/* ============================================
   FUTURE YOU — Version 6
   Professional, clean, no AI-tells
   Vanilla HTML/CSS/JS — Hostinger compatible
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Primaire merkkleuren */
  --deep-rose: #C1375A;
  --dark-brown: #3D2B1F;
  --dark-green-bg: #2D4A3E;
  --off-white: #FFF0F3;

  /* Secundaire kleuren */
  --lighter-rose: #E8607A;
  --soft-pink: #F2A0B0;
  --very-light-pink: #FAD4DC;
  --dark-green: #4A7057;
  --light-green: #6B8F71;

  /* Module kleuren */
  --m1: #C1375A;
  --m1-light: #E8607A;
  --m1-bg: #FDE8ED;
  --m2: #4A7057;
  --m2-light: #6B8F71;
  --m2-bg: #E8F0EB;
  --m3: #7EA8C4;
  --m3-light: #A3C4D8;
  --m3-bg: #EBF3F8;
  --m4: #D4845A;
  --m4-light: #E0A07E;
  --m4-bg: #FBF0E8;
  --m5: #8B5E83;
  --m5-light: #A87EA1;
  --m5-bg: #F4EDF3;

  /* Neutrale kleuren */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Lettertypes */
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Fluid Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 2.4vw, 3rem);
  --text-4xl: clamp(2.25rem, 1.5rem + 3.75vw, 4.5rem);
  --text-5xl: clamp(2.75rem, 1.6rem + 5.5vw, 5.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.06);
  --shadow-rose: 0 4px 14px rgba(193,55,90,0.2);
  --shadow-green: 0 4px 14px rgba(74,112,87,0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --nav-height: 72px;
}


/* --- Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--dark-brown);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: var(--deep-rose);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

a:hover {
  color: var(--lighter-rose);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
  text-wrap: balance;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 10000;
  padding: var(--space-3) var(--space-6);
  background: var(--deep-rose);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top var(--duration-fast) ease;
}

.skip-link:focus {
  top: var(--space-4);
}

/* Focus visible — accessibility */
:focus-visible {
  outline: 2px solid var(--deep-rose);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}


/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--container-md);
}


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--duration-base) ease,
              box-shadow var(--duration-base) ease,
              backdrop-filter var(--duration-base) ease;
  background-color: transparent;
}

.nav--scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color var(--duration-fast) ease;
  position: relative;
  z-index: 1001;
}

.nav--scrolled .nav__logo {
  color: var(--deep-rose);
}

.nav__logo span {
  color: var(--soft-pink);
  transition: color var(--duration-fast) ease;
}

.nav--scrolled .nav__logo span {
  color: var(--dark-brown);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--duration-fast) ease;
}

.nav--scrolled .nav__link {
  color: var(--gray-600);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--deep-rose);
  border-radius: 1px;
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active {
  color: var(--deep-rose);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  background: var(--deep-rose);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--duration-fast) ease,
              transform var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
}

.nav__cta:hover {
  background-color: var(--lighter-rose);
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
  color: var(--white) !important;
}

.nav__cta::after {
  display: none;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base) ease,
              background-color var(--duration-base) ease;
  margin-inline: auto;
}

.nav--scrolled .nav__hamburger span {
  background-color: var(--dark-brown);
}

.nav__hamburger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.nav__mobile-menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-brown);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: color var(--duration-fast) ease;
}

.nav__mobile-menu a:hover,
.nav__mobile-menu a:focus-visible {
  color: var(--deep-rose);
}

.nav__mobile-cta {
  margin-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: var(--deep-rose);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
}

.nav__mobile-cta:hover {
  background: var(--lighter-rose);
  color: var(--white) !important;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.85rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
  transition: all var(--duration-fast) ease;
}

.btn--primary {
  background: var(--deep-rose);
  color: var(--white);
  border-color: var(--deep-rose);
}

.btn--primary:hover {
  background: var(--lighter-rose);
  border-color: var(--lighter-rose);
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
  color: var(--white);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--secondary {
  background-color: transparent;
  color: var(--deep-rose);
  border-color: var(--deep-rose);
}

.btn--secondary:hover {
  background: var(--deep-rose);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-rose);
}

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

.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn--green {
  background: var(--dark-green);
  color: var(--white);
  border-color: var(--dark-green);
}

.btn--green:hover {
  background: var(--light-green);
  border-color: var(--light-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
  color: var(--white);
}

.btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 1.05rem 2.5rem;
  font-size: var(--text-base);
}

.btn--full {
  width: 100%;
}


/* --- Sections --- */
.section {
  padding: var(--space-24) 0;
  position: relative;
}

.section--white { background-color: var(--white); }
.section--off-white { background-color: var(--off-white); }
.section--dark { background-color: var(--dark-green-bg); color: var(--white); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--deep-rose);
  margin-bottom: var(--space-3);
}

.section--dark .section__label {
  color: var(--soft-pink);
}

.section__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--dark-brown);
}

.section--dark .section__title {
  color: var(--white);
}

.section__subtitle {
  font-size: var(--text-lg);
  max-width: 680px;
  margin-inline: auto;
  opacity: 0.8;
  line-height: 1.7;
}

.section--dark .section__subtitle {
  color: rgba(255,255,255,0.85);
}

.section__divider {
  width: 56px;
  height: 3px;
  background: var(--deep-rose);
  border-radius: 2px;
  margin: var(--space-4) auto var(--space-6);
}


/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-green-bg);
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(193,55,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(74,112,87,0.08) 0%, transparent 50%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-6) var(--space-16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content {
  max-width: 620px;
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__title-gradient {
  background: linear-gradient(135deg, var(--soft-pink), var(--lighter-rose), var(--deep-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: var(--space-10);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Hero visual — CSS gradient composition instead of placeholder image */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 40%),
    linear-gradient(160deg, var(--m1) 0%, var(--m1-light) 30%, var(--m2) 60%, var(--m2-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: var(--space-8);
}

.hero__image-placeholder svg {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-3);
  opacity: 0.6;
}

.hero__image-placeholder p {
  font-size: var(--text-sm);
  opacity: 0.7;
  line-height: 1.5;
}


/* --- Page Header (subpages) --- */
.page-header {
  position: relative;
  background-color: var(--dark-green-bg);
  color: var(--white);
  padding: calc(var(--nav-height) + var(--space-20)) 0 var(--space-16);
  text-align: center;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(193,55,90,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(74,112,87,0.06) 0%, transparent 50%);
}

.page-header__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-lg);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.page-header__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.page-header__subtitle {
  font-size: var(--text-lg);
  opacity: 0.85;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  padding: var(--space-3) 0;
  background-color: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb__inner {
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--deep-rose);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__sep {
  color: var(--gray-400);
}


/* --- Intro Section --- */
.intro__text {
  font-size: var(--text-lg);
  line-height: 1.8;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}


/* --- Mission & Vision --- */
.mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.mv__card {
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.mv__card--mission {
  background: var(--very-light-pink);
}

.mv__card--vision {
  background: var(--m2-bg);
}

.mv__label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--deep-rose);
  margin-bottom: var(--space-4);
}

.mv__card--vision .mv__label {
  color: var(--dark-green);
}

.mv__text {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--dark-brown);
}


/* --- Approach --- */
.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.approach__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.approach__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.approach__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.approach__icon svg {
  width: 24px;
  height: 24px;
}

.approach__icon--rose { background: var(--m1-bg); color: var(--m1); }
.approach__icon--green { background: var(--m2-bg); color: var(--m2); }
.approach__icon--blue { background: var(--m3-bg); color: var(--m3); }
.approach__icon--orange { background: var(--m4-bg); color: var(--m4); }
.approach__icon--purple { background: var(--m5-bg); color: var(--m5); }

.approach__card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--dark-brown);
}

.approach__card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-600);
}

.approach__quote {
  text-align: center;
  padding: var(--space-10) var(--space-12);
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--deep-rose);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.6;
  color: var(--dark-brown);
  max-width: 800px;
  margin-inline: auto;
}


/* --- Module Cards (Preview) --- */
.modules-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.module-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
  position: relative;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--module-color, var(--deep-rose)), var(--module-color-light, var(--lighter-rose)));
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.module-card__header {
  padding: var(--space-8) var(--space-6) var(--space-3);
}

.module-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.module-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--module-color, var(--deep-rose));
  margin-bottom: var(--space-1);
}

.module-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: var(--space-2);
}

.module-card__body {
  padding: 0 var(--space-6) var(--space-6);
}

.module-card__meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--text-xs);
  color: var(--gray-500);
}

.module-card__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.module-card__meta svg {
  width: 14px;
  height: 14px;
}

.module-card__desc {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: var(--space-5);
}

.module-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--module-color, var(--deep-rose));
  text-decoration: none;
  transition: gap var(--duration-fast) ease;
}

.module-card__link:hover {
  gap: var(--space-3);
}

.module-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) ease;
}

.module-card__link:hover svg {
  transform: translateX(3px);
}


/* --- Module Detail (Modules page) --- */
.module-detail {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.module-detail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--module-color, var(--deep-rose)), var(--module-color-light, var(--lighter-rose)));
  opacity: 0.5;
}

.module-detail + .module-detail {
  border-top: 1px solid var(--gray-200);
}

.module-detail:nth-child(even) {
  background-color: var(--off-white);
}

.module-detail__inner {
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.module-detail__header {
  margin-bottom: var(--space-8);
}

.module-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.module-detail__number {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: var(--space-2);
  display: inline-block;
  padding: var(--space-1) var(--space-4);
  background: var(--module-color, var(--deep-rose));
  color: var(--white);
  border-radius: var(--radius-full);
}

.module-detail__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.module-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.module-detail__meta span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.module-detail__meta svg {
  width: 16px;
  height: 16px;
}

.module-detail__meta .price {
  font-weight: 700;
  color: var(--module-color, var(--deep-rose));
}

.module-detail__intro {
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 780px;
}

.module-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.module-detail__topics h3,
.module-detail__included h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.module-detail__topics h3 svg,
.module-detail__included h3 svg {
  width: 20px;
  height: 20px;
}

.module-detail__topics ul,
.module-detail__included ul {
  list-style: none;
}

.module-detail__topics li,
.module-detail__included li {
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  position: relative;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-700);
}

.module-detail__topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--module-color, var(--deep-rose));
  opacity: 0.6;
}

.module-detail__included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 16px;
  height: 16px;
  background: var(--module-color, var(--deep-rose));
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.7;
}

/* Module color variants */
.module-detail--m1 { --module-color: var(--m1); --module-color-light: var(--m1-light); }
.module-detail--m2 { --module-color: var(--m2); --module-color-light: var(--m2-light); }
.module-detail--m3 { --module-color: var(--m3); --module-color-light: var(--m3-light); }
.module-detail--m4 { --module-color: var(--m4); --module-color-light: var(--m4-light); }
.module-detail--m5 { --module-color: var(--m5); --module-color-light: var(--m5-light); }


/* --- Pricing Table --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: var(--space-8) 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.pricing-table thead {
  background: var(--dark-green-bg);
  color: var(--white);
}

.pricing-table th {
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
}

.pricing-table td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--gray-100);
  font-size: var(--text-sm);
}

.pricing-table tbody tr {
  transition: background-color var(--duration-fast) ease;
}

.pricing-table tbody tr:hover {
  background-color: var(--off-white);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table .price {
  font-weight: 700;
  color: var(--deep-rose);
  white-space: nowrap;
}

.pricing-table .highlight {
  background-color: var(--very-light-pink);
  font-weight: 600;
}

.pricing-table .highlight td {
  border-bottom-color: var(--soft-pink);
}

.pricing-table__note {
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-style: italic;
  margin-top: var(--space-4);
}


/* --- Package Cards --- */
.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-100);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
  position: relative;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.package-card--featured {
  border-color: var(--deep-rose);
  background: linear-gradient(180deg, var(--white) 0%, var(--m1-bg) 100%);
}

.package-card--featured::before {
  content: 'Populair';
  position: absolute;
  top: -14px;
  left: var(--space-8);
  background: var(--deep-rose);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.package-card__price {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--deep-rose);
  margin-bottom: var(--space-2);
}

.package-card__price small {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--gray-500);
}

.package-card__details {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-6);
}

.package-card__modules li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.package-card__modules li svg {
  width: 16px;
  height: 16px;
  color: var(--deep-rose);
  flex-shrink: 0;
}


/* --- Feature Cards (Extra Diensten) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--dark-green);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--m2-bg);
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: var(--space-2);
}

.feature-card__price {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: var(--space-4);
}

.feature-card__desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--gray-600);
}


/* --- Values --- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
}

.value-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--deep-rose);
  opacity: 0.3;
  margin-bottom: var(--space-3);
}

.value-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--dark-brown);
}

.value-card__text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-600);
}


/* --- Profile (Over Ons) --- */
.profile__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-12);
  align-items: start;
}

.profile__image {
  position: relative;
}

.profile__photo {
  width: 280px;
  height: 340px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
}

.profile__image-placeholder {
  width: 280px;
  height: 340px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--m1) 0%, var(--m1-light) 40%, var(--m2) 80%, var(--m2-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: var(--space-8);
}

.profile__initials {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  opacity: 0.85;
}

.profile__info h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-1);
}

.profile__info h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--deep-rose);
  margin-bottom: var(--space-6);
}

.profile__text p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
  color: var(--gray-700);
}


/* --- Certificates --- */
.certificates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.certificate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.certificate-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--m1-bg);
  color: var(--deep-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.certificate-card__icon svg {
  width: 20px;
  height: 20px;
}

.certificate-card h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark-brown);
}


/* --- Expertise Tags --- */
.expertise__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.expertise__tag {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark-brown);
}


/* --- Contact Info --- */
.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--m1-bg);
  color: var(--deep-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark-brown);
}

.contact-info__value a {
  color: var(--deep-rose);
}

.contact-info__value a:hover {
  text-decoration: underline;
}


/* --- Steps --- */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  counter-reset: step;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep-rose);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.step__title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--dark-brown);
}

.step__text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--gray-600);
}


/* --- Contact Form --- */
.contact-form__inner {
  max-width: 640px;
  margin-inline: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--dark-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: var(--text-base);
  transition: border-color var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deep-rose);
  box-shadow: 0 0 0 3px rgba(193,55,90,0.1);
  outline: none;
}

.form-group input.touched:invalid,
.form-group textarea.touched:invalid {
  border-color: #DC2626;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  text-align: center;
  padding: var(--space-12) var(--space-6);
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--dark-green);
  margin: 0 auto var(--space-4);
}

.form-success h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.form-success p {
  color: var(--gray-600);
}

/* Honeypot — hidden from users, visible to bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}


/* --- Map Placeholder --- */
.map-placeholder {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
  border: 2px dashed var(--gray-200);
}

.map-placeholder__inner svg {
  width: 32px;
  height: 32px;
  color: var(--deep-rose);
  margin: 0 auto var(--space-3);
}

.map-placeholder__inner span {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: var(--space-2);
}

.map-placeholder__inner p {
  font-size: var(--text-sm);
  color: var(--gray-500);
}


/* --- FAQ --- */
.faq__list {
  max-width: 780px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark-brown);
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) ease;
}

.faq__question:hover {
  color: var(--deep-rose);
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-out);
}

.faq__item--open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out);
}

.faq__item--open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 0 var(--space-5) 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--gray-600);
}


/* --- CTA Section --- */
.cta-section {
  padding: var(--space-20) 0;
  text-align: center;
  background: var(--dark-green-bg);
  color: var(--white);
}

.cta-section__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.cta-section__text {
  font-size: var(--text-lg);
  opacity: 0.85;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-inline: auto;
}

.cta-section__email {
  margin-bottom: var(--space-6);
}

.cta-section__email a {
  color: var(--soft-pink);
  font-weight: 600;
  font-size: var(--text-lg);
}

.cta-section__email a:hover {
  color: var(--white);
}


/* --- Footer --- */
.footer {
  background: var(--dark-green-bg);
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
  padding-bottom: var(--space-12);
}

.footer__brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.footer__brand h3 span {
  color: var(--soft-pink);
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  max-width: 300px;
}

.footer__col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: var(--space-1) 0;
  transition: color var(--duration-fast) ease;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer__kvk {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: var(--space-4);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.footer__legal a:hover {
  color: var(--white);
}


/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--deep-rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--duration-base) ease,
              transform var(--duration-base) ease;
  z-index: 100;
}

.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--lighter-rose);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}


/* --- Legal Content --- */
.legal-content h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--dark-brown);
}

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

.legal-content p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
  color: var(--gray-700);
}

.legal-content ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.legal-content li {
  list-style: disc;
  padding: var(--space-1) 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--gray-700);
}


/* --- 404 Page --- */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8);
  background: var(--off-white);
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  line-height: 1;
  color: var(--deep-rose);
  opacity: 0.2;
  margin-bottom: var(--space-4);
}

.error-page__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--dark-brown);
  margin-bottom: var(--space-4);
}

.error-page__text {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    display: flex;
    margin-top: var(--space-8);
  }

  .hero__image-wrapper {
    max-width: 320px;
  }

  .mv__grid {
    grid-template-columns: 1fr;
  }

  .module-detail__grid {
    grid-template-columns: 1fr;
  }

  .profile__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile__image {
    display: flex;
    justify-content: center;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .hero__inner {
    padding-top: calc(var(--nav-height) + var(--space-12));
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .contact-info__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .package-cards {
    grid-template-columns: 1fr;
  }

  .certificates__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--space-4);
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__image-wrapper {
    max-width: 260px;
  }

  .modules-preview__grid {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .approach__grid {
    grid-template-columns: 1fr;
  }

  .approach__quote {
    padding: var(--space-8);
  }
}