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

:root {
  --green: #2c5f4f;
  --green-dark: #234a3d;
  --green-soft: #f0f7f4;
  --green-pale: #e8f5e9;
  --ink: #1a1a1a;
  --text: #333;
  --muted: #666;
  --line: #e0e0e0;
  --panel: #fff;
  --wash: rgba(7, 123, 19, 0.03);
  --footer: #1a2e27;
  --container: 1400px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #fff;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: #fff;
  padding: 1rem;
}

.skip-link:focus {
  left: 0;
}

.php-form-message {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
}

.php-form-message--success {
  background: #eaf7f1;
  color: #1f6b50;
  border: 1px solid #b8e3d2;
}

.php-form-message--error {
  background: #fff0f0;
  color: #a83232;
  border: 1px solid #f0b7b7;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.65rem 5%;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: auto;
  height: 68px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--green);
}

.contact-btn,
.cta-btn,
.demo-btn,
.faq-cta-btn,
.footer-demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff !important;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.contact-btn {
  padding: 0.5rem 1.2rem;
}

.cta-btn,
.faq-cta-btn {
  padding: 1rem 2.5rem;
}

.demo-btn {
  padding: 1rem 3rem;
  border-radius: 8px;
}

.footer-demo-btn {
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
}

.contact-btn:hover,
.cta-btn:hover,
.demo-btn:hover,
.faq-cta-btn:hover,
.footer-demo-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #dfe8e4;
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section-container {
  width: min(var(--container), 90%);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #2e7d5e;
  margin-bottom: 8px;
}

.section-header h2,
.benefits h2,
.how-it-works h2,
.faq h2 {
  color: var(--ink);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.hero-text {
  flex: 1;
  max-width: 1200px;
}

.hero-text h1 {
  color: var(--ink);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-text p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero-image img {
  width: 35vw;
  height: 95vh;
  margin-top: 5px;
  margin-left: 0;
  margin-right: -5%;
  object-fit: cover;
  object-position: right top;
}

.benefits {
  padding-bottom: 3%;
  margin-top: 30px;
  background: #fff;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

.benefits-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  text-align: left;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.benefit-card:hover {
  border-color: var(--green);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(44, 95, 79, 0.1);
}

.benefit-item.active .benefit-card {
  border-color: var(--green);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--green-soft);
  box-shadow: 0 5px 20px rgba(44, 95, 79, 0.15);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
}

.benefit-item.active .benefit-icon {
  background: var(--green-dark);
}

.benefit-text {
  flex: 1;
}

.benefit-title,
.benefit-summary {
  display: block;
}

.benefit-title {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.benefit-summary {
  color: var(--muted);
  font-size: 0.9rem;
}

.benefit-arrow {
  color: var(--green);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover .benefit-arrow,
.benefit-item.active .benefit-arrow {
  opacity: 1;
}

.benefit-item.active .benefit-arrow {
  transform: rotate(90deg);
}

.benefit-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  border: 2px solid var(--green);
  border-top: 0;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background: var(--green-soft);
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.benefit-item.active .benefit-details {
  max-height: 300px;
  opacity: 1;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-details p {
  color: var(--text);
  line-height: 1.8;
}

.benefits-image {
  position: sticky;
  top: 100px;
  flex: 1;
  max-width: 500px;
}

.benefits-image img {
  width: 85%;
  height: auto;
}

.how-it-works,
.over-ons {
  padding: 6rem 5%;
  background: var(--wash);
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-card {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  padding: 2.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.step-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
}

.step-number {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 50%;
}

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

.step-card h3 {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.step-card p {
  color: var(--muted);
  line-height: 1.8;
}

.step-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 450px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

.pilot-partner,
.waarom-samenwerken,
.faq {
  padding: 6rem 5%;
  background: #fff;
}

.pilot-content {
  width: min(var(--container), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.9fr);
  align-items: flex-start;
  gap: 4rem;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.pilot-text {
  flex: 1;
}

.pilot-text h3 {
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.pilot-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pilot-image {
  width: 100%;
  max-width: 620px;
  justify-self: end;
}

.pilot-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pilot-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pilot-feature-card,
.waarom-box,
.over-ons-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 15px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pilot-feature-card {
  padding: 2rem;
  text-align: center;
}

.pilot-feature-card:hover,
.waarom-box:hover,
.over-ons-card:hover {
  border-color: var(--green);
  box-shadow: 0 10px 30px rgba(44, 95, 79, 0.1);
  transform: translateY(-5px);
}

.pilot-feature-icon,
.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--green);
}

.pilot-feature-icon svg {
  width: 100%;
  height: 100%;
}

.pilot-feature-card h3 {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.pilot-feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.waarom-container {
  width: min(var(--container), 90%);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.waarom-image {
  flex: 1;
  max-width: 420px;
}

.waarom-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
}

.waarom-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.waarom-box {
  padding: 2rem;
}

.waarom-box h2 {
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.waarom-list {
  list-style: none;
}

.waarom-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.waarom-list li:last-child {
  margin-bottom: 0;
}

.checkmark {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
}

.checkmark svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.over-ons .section-header {
  margin-bottom: 4rem;
}

.over-ons-intro {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  max-height: 350px;
  margin-bottom: 4rem;
}

.over-ons-intro .over-ons-card {
  flex: 1;
}

.over-ons-intro-image {
  flex: 1;
}

.over-ons-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.over-ons-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.over-ons-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.over-ons-card h3 {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.over-ons-card p {
  color: var(--muted);
  line-height: 1.8;
}

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

.waarom-mealyn h3 {
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.waarom-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.feature-icon {
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--green-pale);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.waarom-feature h4 {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.waarom-feature p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-container {
  width: min(800px, 90%);
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.faq-item {
  overflow: hidden;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: 0 4px 15px rgba(44, 95, 79, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font-weight: 600;
}

.faq-question:hover {
  background: #f8faf9;
}

.faq-item.active .faq-question {
  background: var(--green-soft);
  color: var(--green);
  font-weight: 700;
}

.faq-chevron {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  border: 1.5px solid #ccc;
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.faq-chevron svg {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-chevron {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.faq-item.active .faq-chevron svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  background: var(--green-soft);
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.contact-section {
  padding: 36px 48px 44px;
  min-height: 850px;
  background: #f0f5f2;
}

.contact-heading {
  text-align: center;
  padding: 0 20px 36px;
}

.contact-heading span,
.contact-form-header p {
  display: block;
  color: #2e7d5e;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-heading h2 {
  color: #111;
  max-width: 650px;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
}

.contact-layout {
  width: calc(100vw - 96px);
  max-width: 2400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(860px, 1fr) clamp(11rem, 18vw, 32rem) minmax(430px, 650px);
  gap: 0;
  align-items: start;
}

.contact-form {
  grid-column: 1;
}

.contact-info-card {
  grid-column: 3;
}

.contact-form,
.contact-info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-form {
  min-height: 754px;
  padding: 36px 36px 48px;
}

.contact-form-header h3 {
  color: #205e51;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.contact-form-header p {
  color: #98a2b3;
  font-weight: 500;
  margin-bottom: 2.35rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
}

.form-field {
  display: block;
  color: #17223a;
  font-size: 15px;
  line-height: 1.3;
  padding: 0 6px;
  margin-bottom: 34px;
}

.form-field span {
  color: #f04438;
  font-weight: 700;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 45px;
  display: block;
  margin-top: 8px;
  padding: 12px 10px;
  border: 1px solid var(--green);
  border-radius: 5px;
  outline: 0;
  background: #fff;
  color: #000;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(18,18,23,0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 122px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #008268;
  box-shadow: 0 0 5px rgba(0,130,104,0.6);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 12px);
  min-height: 50px;
  padding: 0 16px;
  margin: 8px 6px 0;
  border: 1px solid #008268;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
  box-shadow: 0 1px 1px #eee;
}

.submit-btn:hover {
  background: #006645;
}

.submit-btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.contact-info-card {
  min-height: 410px;
  padding: 36px 38px;
  margin-top: 5px;
}

.info-title {
  color: #2e7d5e;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

.info-divider {
  border: 0;
  border-top: 2px solid #e8f0ec;
  margin-bottom: 39px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 14px;
  margin-bottom: 32px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block:hover {
  background: #f4f9f6;
}

.info-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #edf7f2;
  color: #2e7d5e;
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-label {
  color: #2e7d5e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
}

.info-value {
  display: block;
  color: var(--text);
  font-size: clamp(13px, 2vw, 14.5px);
  line-height: 1.6;
  text-decoration: none;
}

a.info-value:hover {
  color: #2e7d5e;
  text-decoration: underline;
}

.footer {
  padding: 5rem 5% 2rem;
  background: var(--footer);
  color: #cdd8d5;
}

.footer-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-tagline,
.footer-cta-block p {
  color: #9ab5ad;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-tagline {
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #9ab5ad;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.footer-nav-group h4,
.footer-cta-block h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-group a,
.footer-nav-group span {
  color: #9ab5ad;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-nav-group a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #4a9070;
}

.footer-cta-block p {
  margin-bottom: 1.5rem;
}

.footer-demo-btn:hover {
  background: #3a7a65;
}

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

.footer-bottom p {
  color: #fff;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 1500px) {
  .contact-layout {
    width: min(1240px, calc(100vw - 64px));
    grid-template-columns: minmax(0, 1fr) clamp(3rem, 6vw, 6rem) minmax(360px, 430px);
  }

  .contact-form {
    padding: 34px 30px 44px;
  }

  .contact-info-card {
    padding: 32px;
  }
}

@media (max-width: 1024px) {
  .site-header { padding-inline: 4%; }
  .main-nav { gap: 1.5rem; }
  .hero-content { gap: 3rem; padding-inline: 4%; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-text p { font-size: 1rem; }
  .hero-image img { margin-left: 0; margin-right: -4%; }
  .benefits-content { gap: 2rem; }
  .benefit-card { padding: 1.25rem; gap: 1.25rem; }
  .benefit-icon { width: 50px; height: 50px; flex-basis: 50px; }
  .step-image { width: 350px; }
  .step-card { padding: 2rem; }
  .pilot-content { gap: 3rem; }
  .waarom-container { gap: 3rem; }
  .waarom-features { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
  .contact-layout { width: min(900px, 100%); grid-template-columns: 1fr; }
  .contact-form,
  .contact-info-card { grid-column: auto; }
  .contact-form { min-height: auto; }
  .contact-info-card { min-height: auto; margin-top: 0; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }

  .site-header {
    min-height: 64px;
    padding: 0 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
  }

  .main-nav .contact-btn {
    min-height: 54px;
    justify-content: flex-start;
    margin: 0;
    border-radius: 0;
    padding: 0 5%;
  }

  .hero {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .hero-content {
    flex-direction: row;
    gap: 1.5rem;
    padding-inline: 4%;
  }

  .hero-text {
    max-width: 55%;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-image {
    max-width: 45%;
  }

  .hero-image img {
    width: 100%;
    height: 60vw;
    margin: 0;
    object-position: top;
  }

  .benefits { margin-top: 0; padding: 3rem 5%; }
  .section-header h2,
  .benefits h2,
  .how-it-works h2,
  .faq h2 { font-size: 2rem; }
  .benefits h2 { margin-bottom: 2.5rem; }
  .benefits-content { flex-direction: column; }
  .benefits-image { display: none; }
  .how-it-works,
  .pilot-partner,
  .waarom-samenwerken,
  .over-ons,
  .faq { padding: 4rem 5%; }
  .step-card { flex-direction: column; min-height: auto; padding: 2rem 1.5rem; }
  .step-image { position: static; width: 100%; height: 200px; margin-top: 1.5rem; }
  .step-image img { border-radius: 15px; }
  .step-content { max-width: 100%; }
  .pilot-content { grid-template-columns: 1fr; gap: 2rem; }
  .pilot-text h3 { font-size: 1.5rem; }
  .pilot-image { max-width: 100%; justify-self: stretch; }
  .pilot-image img { width: 100%; height: auto; margin: 0; }
  .pilot-features { grid-template-columns: 1fr; gap: 1.5rem; }
  .waarom-container { flex-direction: row; gap: 1.5rem; width: 100%; }
  .waarom-image { position: sticky; top: 100px; width: 45%; max-width: 45%; }
  .waarom-content { flex: 1; }
  .waarom-box { padding: 1rem; }
  .waarom-box h2 { font-size: 1rem; }
  .waarom-list li { font-size: 0.85rem; }
  .over-ons-intro { flex-direction: column; max-height: none; gap: 2rem; }
  .over-ons-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer { padding: 3rem 5% 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-cta-block { grid-column: 1 / -1; }
  .footer-demo-btn { width: 100%; }
  .contact-section { min-height: auto; padding: 40px 20px 40px; }
  .contact-layout { width: min(900px, 100%); grid-template-columns: 1fr; }
  .contact-form,
  .contact-info-card { grid-column: auto; }
  .contact-form { min-height: auto; }
  .contact-info-card { min-height: auto; margin-top: 0; padding: 24px; }
}

@media (max-width: 480px) {
  .site-header { min-height: 60px; }
  .logo img { height: 44px; }
  .main-nav { top: 60px; }
  .hero { padding: 6rem 0 2rem; }
  .hero-content { gap: 1rem; }
  .hero-text h1 { font-size: 1.2rem; margin-bottom: 1rem; }
  .hero-text p { font-size: 0.8rem; line-height: 1.6; margin-bottom: 1.25rem; }
  .cta-btn { padding: 0.875rem 2rem; font-size: 0.95rem; }
  .hero-image img { height: 55vw; margin-left: 0; margin-right: 0; }
  .benefits { padding: 2.5rem 5%; }
  .benefits h2,
  .how-it-works h2,
  .section-header h2,
  .faq h2 { font-size: 1.75rem; }
  .benefit-card { padding: 1rem; gap: 1rem; }
  .benefit-icon { width: 45px; height: 45px; flex-basis: 45px; }
  .benefit-title { font-size: 1rem; }
  .benefit-summary { font-size: 0.85rem; }
  .how-it-works,
  .pilot-partner,
  .waarom-samenwerken,
  .over-ons,
  .faq { padding: 3rem 5%; }
  .step-card { padding: 1.5rem 1.25rem; }
  .step-card h3 { font-size: 1.2rem; }
  .step-card p,
  .pilot-text p,
  .over-ons-card p { font-size: 0.95rem; }
  .step-number { width: 40px; height: 40px; }
  .pilot-text h3,
  .waarom-mealyn h3 { font-size: 1.3rem; }
  .pilot-feature-card { padding: 1.5rem; }
  .pilot-feature-card h3,
  .waarom-feature h4 { font-size: 1rem; }
  .pilot-feature-card p,
  .waarom-feature p { font-size: 0.9rem; }
  .waarom-container { flex-direction: column; width: 90%; }
  .waarom-image { position: static; width: 100%; max-width: 100%; }
  .waarom-box { padding: 1.5rem; }
  .waarom-box h2 { font-size: 1.2rem; }
  .waarom-list li { font-size: 0.95rem; }
  .over-ons-card { padding: 2rem; }
  .over-ons-card h3 { font-size: 1.2rem; }
  .waarom-features { grid-template-columns: 1fr; gap: 2rem; }
  .demo-btn,
  .faq-cta-btn { padding: 0.875rem 2rem; font-size: 0.95rem; }
  .faq-question { padding: 1rem 1.25rem; font-size: 0.95rem; }
  .faq-answer-inner { padding: 0 1.25rem 1.25rem; font-size: 0.9rem; }
  .contact-section { padding: 32px 16px 36px; }
  .contact-heading h2 { font-size: 26px; }
  .contact-form { padding: 24px 18px; }
  .contact-form-header h3 { font-size: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .submit-btn { width: calc(100% - 12px); font-size: 18px; }
  .contact-info-card { padding: 18px; }
  .info-block { padding: 8px; gap: 10px; }
  .footer { padding: 2.5rem 5% 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-logo { font-size: 1.5rem; }
  .footer-tagline,
  .footer-nav-group a,
  .footer-nav-group span { font-size: 0.9rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1.5rem; }
}
