/* Design System & Styling - Mentale APK */

/* Central variables */
:root {
  --primary-color: #16302B;
  --primary-light: #EAF3EF;
  --primary-rgb: 22, 48, 43;
  --accent-color: #f39000;
  --accent-hover: #d98000;
  --bg-light: #ffffff;
  --bg-sage: #F4F8F6;
  --bg-sand: #FBF1E0;
  --text-main: #16302B;
  --text-muted: #4a5b54;
  --border-color: #eef3f1;
  --font-sans: 'Outfit', sans-serif;
  --font-grotesk: 'Schibsted Grotesk', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(22, 48, 43, 0.04);
  --shadow-md: 0 10px 30px rgba(22, 48, 43, 0.06);
  --shadow-lg: 0 20px 50px rgba(22, 48, 43, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-xl: 34px;
}

/* Base resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-family: var(--font-grotesk);
}

/* Animations */
@keyframes lmcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes lmcFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(13px); }
}

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

.reveal-active {
  animation: lmcReveal 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

/* Layout Utilities */
.section {
  padding: 80px 40px;
}

.section-container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 30px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: var(--text-main);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--primary-color);
  color: var(--bg-light);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(22, 48, 43, 0.2);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: var(--primary-light);
  border-radius: var(--radius-xl);
  margin: 20px auto 0;
  max-width: 1160px;
  padding: 90px 80px;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
}

.primary-circle {
  top: -70px;
  right: -50px;
  width: 280px;
  height: 280px;
  background: var(--accent-color);
  opacity: 0.13;
  animation: lmcFloat 9s ease-in-out infinite;
}

.secondary-circle {
  bottom: -110px;
  right: 240px;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  opacity: 0.06;
  animation: lmcFloat2 11s ease-in-out infinite;
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--bg-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 26px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  display: inline-block;
}

.hero-title {
  font-weight: 800;
  font-size: 62px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--text-main);
}

.hero-lead {
  font-size: 21px;
  line-height: 1.5;
  color: #3c4f48;
  margin-bottom: 34px;
  max-width: 480px;
}

.hero-cta-form-container {
  max-width: 480px;
}

.signup-inline-form {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.signup-input {
  flex: 1;
  min-width: 220px;
  height: 54px;
  border: 1px solid #d6e3dd;
  outline: none;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--primary-color);
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  transition: border-color 0.25s ease;
}

.signup-input:focus {
  border-color: var(--accent-color);
}

.signup-btn {
  border: none;
  cursor: pointer;
  padding: 16px 36px;
  border-radius: 14px;
  background: var(--accent-color);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
  display: inline-block;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(243, 144, 0, 0.36);
  background-color: var(--accent-hover);
}

.hero-subtext {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visual-container {
  position: relative;
  width: 320px;
  height: 320px;
}

.dial-shadow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bg-light);
  box-shadow: 0 26px 60px rgba(22, 48, 43, 0.1);
}

.dial-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(135deg);
}

.dial-svg circle {
  transition: stroke-dashoffset 1s ease-in-out;
}

@keyframes fillGauge {
  from {
    stroke-dasharray: 0 465;
  }
  to {
    stroke-dasharray: 320 465;
  }
}

.active-track {
  stroke-dasharray: 0 465;
  stroke-dashoffset: -58 !important;
}

.hero-visual.active .active-track {
  animation: fillGauge 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.dial-center {
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.checkmark-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.checkmark {
  color: var(--bg-light);
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

.dial-label-top {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.dial-label-bottom {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.05;
  margin-top: 3px;
}

.floating-badge {
  position: absolute;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(22, 48, 43, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.floating-badge:hover {
  transform: scale(1.05);
}

.badge-duration {
  top: 8px;
  right: -14px;
}

.badge-price {
  bottom: 0px;
  left: -18px;
  background: var(--primary-color);
  box-shadow: 0 12px 30px rgba(22, 48, 43, 0.18);
}

.badge-price .badge-title {
  color: #9db3aa;
}

.badge-price .badge-value {
  color: var(--bg-light);
}

.badge-title {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 2px;
}

/* Trust Strip */
.trust-strip {
  padding: 34px 40px;
}

.trust-container {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 26px 0;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.trust-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Wat is het Section */
.wat-section {
  background-color: var(--bg-light);
}

.section-header {
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--text-main);
}

.section-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.feature-card {
  background: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 48, 43, 0.02);
}

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

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  box-shadow: 0 4px 10px rgba(22, 48, 43, 0.04);
}

.feature-icon::after {
  content: '';
  display: block;
  background: var(--accent-color);
}

.icon-circle::after {
  width: 18px;
  height: 18px;
  border: 3px solid var(--accent-color);
  background: transparent;
  border-radius: 50%;
}

.icon-square::after {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.icon-line::after {
  width: 18px;
  height: 6px;
  border-radius: 99px;
}

.icon-border-square::after {
  width: 16px;
  height: 16px;
  border: 3px solid var(--accent-color);
  background: transparent;
  border-radius: 4px;
}

.feature-title {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text-main);
}

.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Hoe het werkt Section */
.hoe-section {
  padding-bottom: 40px;
}

.dark-container {
  background: var(--primary-color);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--bg-light);
}

.dark-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 42px;
  flex-wrap: wrap;
  gap: 16px;
}

.dark-title {
  font-weight: 800;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--bg-light);
  max-width: 440px;
}

.dark-subtitle {
  font-size: 15px;
  color: #9db3aa;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: background 0.3s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.step-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--bg-light);
  margin-bottom: 9px;
}

.step-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #b8c9c2;
}

/* Voor wie & Wat je krijgt Section */
.checklist-card {
  border-radius: var(--radius-lg);
  padding: 44px;
}

.bordered-card {
  border: 1px solid #e3ece8;
  background: var(--bg-light);
}

.filled-card {
  background: var(--bg-sand);
}

.card-heading {
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--text-main);
}

.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.45;
  color: #3c4f48;
}

.checklist-list > li {
  position: relative;
  padding-left: 24px;
}

.checklist-list > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
}

.checked-list > li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--bg-light);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checked-list > li {
  padding-left: 36px;
  line-height: 22px;
}

.sub-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding-left: 0px;
}

.sub-checklist li {
  font-family: var(--font-grotesk);
  font-size: 14px;
  color: #4a5b54;
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.sub-checklist li::before {
  content: '•';
  position: absolute;
  left: 4px;
  top: -1px;
  color: var(--accent-color);
  font-size: 14px;
}

/* Over de psycholoog Section */
.psycholoog-section {
  background-color: var(--bg-sage);
}

.rounded-box {
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 52px;
}

.grid-photo-text {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
}

.photo-wrapper {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background: #cfe4db;
}

.psycholoog-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.psycholoog-heading {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--text-main);
}

.psycholoog-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Reviews Section */
.review-card {
  border: 1px solid #e3ece8;
  border-radius: var(--radius-md);
  padding: 30px;
  background: var(--bg-light);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

.stars {
  color: var(--accent-color);
  font-size: 15px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 18px;
}

.review-author {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

/* Prijs + Wachtlijst CTA Section */
.cta-section {
  padding-bottom: 80px;
}

.cta-box {
  position: relative;
  background: var(--accent-color);
  border-radius: var(--radius-xl);
  padding: 86px 64px;
  overflow: hidden;
  text-align: center;
  max-width: 1160px;
  margin: 0 auto;
}

.cta-bg-circle {
  position: absolute;
  border-radius: 50%;
}

.left-circle {
  top: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.16);
}

.right-circle {
  bottom: -100px;
  right: -30px;
  width: 230px;
  height: 230px;
  background: rgba(22, 48, 43, 0.12);
}

.cta-inner {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  z-index: 2;
}

.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--bg-light);
  margin-bottom: 6px;
}

.price-prefix {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.85;
}

.price-amount {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-suffix {
  font-size: 16px;
  opacity: 0.85;
}

.cta-heading {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  color: var(--bg-light);
}

.cta-text {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.cta-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.cta-wachtlijst-btn {
  border: none;
  cursor: pointer;
  padding: 16px 36px;
  border-radius: 14px;
  background: var(--primary-color);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  display: inline-block;
}

.cta-wachtlijst-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 48, 43, 0.24);
}

/* FAQ Section */
.faq-section {
  border-top: 1px solid var(--border-color);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.faq-item {
  background: var(--bg-sage);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-main);
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  padding-top: 4px;
  padding-bottom: 34px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 480px;
}

.footer-tagline {
  font-family: var(--font-grotesk);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* Fade-in & Scroll reveal classes */
.fade-in-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fade-in-element.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation helpers */
.stagger-container > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.stagger-container.reveal-active > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-container.reveal-active > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-container.reveal-active > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-container.reveal-active > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-container.reveal-active > *:nth-child(4) { transition-delay: 0.35s; }

/* Responsive adjustments */
@media (max-width: 960px) {
  .section {
    padding: 60px 24px;
  }
  
  .hero-section {
    margin: 10px 16px 0;
    padding: 48px 32px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-form-container {
    margin-left: auto;
    margin-right: auto;
  }
  
  .signup-inline-form {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 46px;
  }
  
  .grid-4, .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .dark-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .grid-photo-text {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .photo-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .text-wrapper {
    text-align: center;
  }
  
  /* Mobile Menu Toggling */
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 67px;
    left: 0;
    width: 100%;
    height: calc(100vh - 67px);
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-item {
    font-size: 18px;
    font-weight: 600;
  }
  
  .mobile-nav-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-nav-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 36px 20px;
  }
  
  .hero-title {
    font-size: 34px;
    line-height: 1.1;
  }
  
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .trust-strip {
    padding: 24px 16px;
  }
  
  .trust-container {
    padding: 16px 0;
  }
  
  .trust-title {
    font-size: 24px;
  }
  
  .dark-container {
    padding: 32px 24px;
  }
  
  .dark-title {
    font-size: 28px;
  }
  
  .cta-box {
    padding: 40px 24px;
  }
  
  .cta-heading {
    font-size: 28px;
  }
  
  .price-amount {
    font-size: 42px;
  }

  .nav-container {
    padding: 14px 20px;
  }

  .hero-cta-form-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .signup-btn {
    width: 100%;
    max-width: 320px;
    white-space: normal;
    text-align: center;
  }

  .cta-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-wachtlijst-btn {
    width: 100%;
    max-width: 320px;
    white-space: normal;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-brand-section {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .visual-container {
    width: 260px;
    height: 260px;
  }
  
  .dial-center {
    inset: 40px;
    padding: 12px;
  }
  
  .checkmark-circle {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
  }
  
  .checkmark {
    font-size: 22px;
  }
  
  .dial-label-top {
    font-size: 11px;
  }
  
  .dial-label-bottom {
    font-size: 24px;
  }
  
  .floating-badge {
    padding: 8px 12px;
  }
  
  .badge-value {
    font-size: 16px;
  }
  
  .badge-duration {
    right: -10px;
    top: 10px;
  }
  
  .badge-price {
    left: -12px;
    bottom: 0;
  }
}

/* Info Pages Layout */
.info-section {
  padding: 120px 24px 80px;
  min-height: calc(100vh - 300px);
}

.info-container {
  max-width: 760px;
  margin: 0 auto;
}

.info-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-color);
  line-height: 1.15;
}

.info-subtitle {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 32px;
  display: block;
}

.info-content {
  font-family: var(--font-grotesk);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.info-content p {
  margin-bottom: 20px;
}

.info-content h2 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 16px;
}

.info-content a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.info-content a:hover {
  border-bottom-color: var(--accent-color);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

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

@media (max-width: 600px) {
  .info-section {
    padding: 100px 20px 60px;
  }
  
  .info-title {
    font-size: 32px;
  }
  
  .info-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
