/* ============================================
   Katten-oppas.nl — "Thuis bij de Kat"
   Playful, warm, organic design
   ============================================ */

/* --- CSS Variables --- */
:root {
  --sage: #7BAE7F;
  --sage-dark: #5E9462;
  --sage-light: #E8F3E9;
  --sage-pale: #F2F9F3;
  --coral: #F4845F;
  --coral-dark: #E06B44;
  --coral-light: #FDE8E0;
  --peach: #FFD6B8;
  --cream: #FFF8F0;
  --cream-dark: #FFEFD9;
  --gold: #F5C542;
  --gold-light: #FFF6D5;
  --graphite: #2D2D2D;
  --graphite-mid: #5A5A5A;
  --graphite-light: #8A8A8A;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(45,45,45,0.06);
  --shadow-md: 0 4px 20px rgba(45,45,45,0.08);
  --shadow-lg: 0 8px 40px rgba(45,45,45,0.1);
  --shadow-hover: 0 12px 48px rgba(45,45,45,0.14);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1200px;
  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--graphite);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--graphite);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--graphite-mid);
  max-width: 65ch;
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

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

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123,174,127,0.35);
}

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

.btn-secondary:hover {
  background: var(--graphite);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244,132,95,0.35);
}

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255,248,240,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--transition);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.05);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--graphite);
}

.logo-text .dot {
  color: var(--sage);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 60px;
  color: var(--graphite-mid);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--graphite);
  background: rgba(123,174,127,0.1);
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
  transition: all var(--transition);
}

html.nav-open .mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

html.nav-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

html.nav-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Decorative Elements --- */
.paw-decoration {
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.blob-shape {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.wave-divider {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: calc(var(--header-height) + 3rem) 0 5rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--sage);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45,45,45,0.08);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--graphite);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--graphite-light);
  margin-top: 0.25rem;
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
}

.hero-image-blob {
  width: 100%;
  height: 100%;
  border-radius: 60% 40% 35% 65% / 55% 35% 65% 45%;
  background: linear-gradient(145deg, var(--sage-light), var(--peach));
  overflow: hidden;
  position: relative;
}

.hero-image-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating badges */
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.hero-float-badge.badge-top {
  top: 5%;
  right: -10%;
  animation-delay: 0s;
}

.hero-float-badge.badge-bottom {
  bottom: 10%;
  left: -8%;
  animation-delay: 1.5s;
}

.hero-float-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-badge .badge-icon.green { background: var(--sage-light); }
.hero-float-badge .badge-icon.coral { background: var(--coral-light); }
.hero-float-badge .badge-icon.gold { background: var(--gold-light); }

.hero-float-badge .badge-icon svg {
  width: 20px;
  height: 20px;
}

.hero-float-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--graphite);
  line-height: 1.3;
}

.hero-float-badge .badge-text small {
  display: block;
  font-weight: 400;
  color: var(--graphite-light);
  font-size: 0.7rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero background paws */
.hero-paw {
  position: absolute;
  z-index: 0;
  opacity: 0.04;
}

.hero-paw-1 { top: 10%; left: 5%; transform: rotate(-25deg); }
.hero-paw-2 { bottom: 15%; right: 8%; transform: rotate(15deg); }

/* ============================================
   USP SECTION
   ============================================ */
.section-usp {
  background: var(--white);
  position: relative;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.usp-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--sage);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.usp-card:hover::before {
  opacity: 1;
}

.usp-card:nth-child(2)::before { background: var(--coral); }
.usp-card:nth-child(3)::before { background: var(--gold); }
.usp-card:nth-child(4)::before { background: var(--sage-dark); }

.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.usp-icon.green { background: var(--sage-light); }
.usp-icon.coral { background: var(--coral-light); }
.usp-icon.gold { background: var(--gold-light); }
.usp-icon.sage-dark { background: var(--sage-pale); }

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

.usp-card h3 {
  margin-bottom: 0.6rem;
}

.usp-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   WERKWIJZE SECTION
   ============================================ */
.section-werkwijze {
  background: var(--sage-pale);
  position: relative;
}

.werkwijze-image {
  max-width: 400px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.werkwijze-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.werkwijze-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Dotted connector line */
.werkwijze-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--sage) 0px,
    var(--sage) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 1;
}

.werkwijze-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.werkwijze-card:nth-child(2) .step-number { background: var(--coral); }
.werkwijze-card:nth-child(3) .step-number { background: var(--gold); color: var(--graphite); }

.werkwijze-card:hover .step-number {
  transform: scale(1.1);
}

.werkwijze-card h3 {
  margin-bottom: 0.8rem;
}

.werkwijze-card p {
  font-size: 0.9rem;
  margin: 0 auto;
}

.werkwijze-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   VERTROUWEN SECTION
   ============================================ */
.section-vertrouwen {
  background: var(--white);
}

.vertrouwen-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vertrouwen-visual {
  position: relative;
}

.vertrouwen-blob {
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.vertrouwen-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vertrouwen-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vertrouwen-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.vertrouwen-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.vertrouwen-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.vertrouwen-item h4 {
  margin-bottom: 0.3rem;
}

.vertrouwen-item p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   TARIEVEN SECTION
   ============================================ */
.section-tarieven {
  background: var(--cream);
}

.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.tarief-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
}

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

.tarief-card.popular {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}

.tarief-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 1rem;
  border-radius: 60px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.tarief-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45,45,45,0.06);
}

.tarief-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.tarief-duration {
  font-size: 0.85rem;
  color: var(--graphite-light);
  margin-bottom: 1rem;
}

.tarief-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--graphite);
  line-height: 1;
}

.tarief-price .currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.tarief-price .per {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--graphite-light);
}

.tarief-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.tarief-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--graphite-mid);
}

.tarief-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sage);
}

.tarief-card .btn {
  width: 100%;
  justify-content: center;
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.faq-intro h2 {
  margin-bottom: 1rem;
}

.faq-intro p {
  margin-bottom: 1.5rem;
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(123,174,127,0.15);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--sage);
  box-shadow: 0 4px 20px rgba(123,174,127,0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--graphite);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--sage-dark);
}

.faq-item.active .faq-question {
  color: var(--sage-dark);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  border: 1px solid var(--sage-light);
}

.faq-item:hover .faq-toggle {
  background: linear-gradient(135deg, var(--sage-pale), var(--sage-light));
  transform: scale(1.05);
}

.faq-item.active .faq-toggle {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  transform: rotate(45deg);
  border-color: var(--sage);
  box-shadow: 0 2px 8px rgba(123,174,127,0.3);
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  color: var(--sage-dark);
  transition: color var(--transition);
}

.faq-item.active .faq-toggle svg {
  color: var(--white);
}

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

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--graphite-mid);
  border-top: 1px dashed rgba(123,174,127,0.2);
  margin: 0 1.5rem;
  padding-top: 1rem;
  margin-bottom: 0.5rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.section-cta-banner {
  background: var(--sage);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123,174,127,0.92), rgba(94,148,98,0.88));
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin: 0 auto 2rem;
  max-width: 500px;
}

.cta-banner-content .btn {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}

.cta-banner-content .btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--graphite);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  padding: 0.4rem 0;
  display: inline-block;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-float-badge.badge-top { right: 0; }
  .hero-float-badge.badge-bottom { left: 0; }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vertrouwen-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vertrouwen-visual {
    display: flex;
    justify-content: center;
  }

  .vertrouwen-blob {
    max-width: 320px;
  }

  .tarieven-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tarieven-grid .tarief-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile nav */
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    padding: 2rem;
  }

  html.nav-open .main-nav {
    display: flex;
    width: 100vw;
    height: 100vh;
  }

  html.nav-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  html.nav-open {
    overflow: hidden;
  }

  .main-nav .nav-link {
    font-size: 1.3rem;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
  }

  .werkwijze-grid::before {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

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

  .usp-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .usp-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

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

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

  .tarieven-grid .tarief-card:last-child {
    max-width: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-float-badge {
    display: none;
  }

  .tarief-card {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 8rem;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--graphite-mid);
  max-width: 580px;
  margin: 0 auto;
}

.page-hero-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.page-hero-decoration svg {
  width: 100%;
  height: auto;
}

/* ============================================
   WERKWIJZE PAGE STYLES
   ============================================ */

/* Intro Section */
.section-intro-werkwijze {
  background: var(--white);
  padding-top: 4rem;
  position: relative;
  overflow: hidden;
}

.section-intro-werkwijze::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-visual {
  position: relative;
}

.intro-blob {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--gold-light) 50%, var(--peach) 100%);
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(123,174,127,0.2);
  transition: all var(--transition);
  position: relative;
}

.intro-blob::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px dashed var(--sage);
  opacity: 0.3;
  animation: rotate-ring 20s linear infinite;
}

.intro-blob:hover {
  transform: scale(1.02) rotate(2deg);
  box-shadow: 0 24px 72px rgba(123,174,127,0.3);
}

.intro-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.intro-blob:hover img {
  transform: scale(1.05);
}

.intro-content h2 {
  margin-bottom: 1rem;
}

.intro-content > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  color: var(--graphite);
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, var(--sage-pale) 0%, transparent 100%);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
  transition: all var(--transition);
}

.intro-highlight:hover {
  transform: translateX(4px);
  background: linear-gradient(90deg, var(--sage-light) 0%, transparent 100%);
}

.intro-highlight svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: var(--white);
  padding: 4px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(123,174,127,0.2);
}

/* Stappen Section */
.section-stappen {
  background: var(--cream);
}

.stappen-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stap-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  margin-left: 44px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(123,174,127,0.1);
}

.stap-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--sage) 0%, transparent 100%);
  border-radius: var(--radius) 0 0 var(--radius);
  opacity: 0;
  transition: opacity var(--transition);
}

.stap-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
  border-color: var(--sage-light);
}

.stap-card:hover::after {
  opacity: 1;
}

.stap-connector {
  position: absolute;
  left: -44px;
  top: 64px;
  bottom: -4.5rem;
  width: 3px;
  background: linear-gradient(180deg,
    var(--sage) 0%,
    var(--sage) 40%,
    var(--sage-light) 100%
  );
  border-radius: 2px;
  opacity: 0.6;
}

.stap-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 9px;
  height: 9px;
  background: var(--sage);
  border-radius: 50%;
}

.stap-card:last-child .stap-connector {
  display: none;
}

.stap-number-wrapper {
  position: absolute;
  left: -60px;
  top: 2rem;
}

.stap-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sage), var(--sage-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(123,174,127,0.4);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.stap-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed var(--sage-light);
  opacity: 0.6;
  animation: rotate-ring 12s linear infinite;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stap-card:hover .stap-number {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(123,174,127,0.5);
}

.stap-number.coral {
  background: linear-gradient(145deg, var(--coral), var(--coral-dark));
  box-shadow: 0 6px 20px rgba(244,132,95,0.4);
}
.stap-number.coral::before { border-color: var(--coral-light); }

.stap-number.gold {
  background: linear-gradient(145deg, var(--gold), #D4A832);
  color: var(--graphite);
  box-shadow: 0 6px 20px rgba(245,197,66,0.4);
}
.stap-number.gold::before { border-color: var(--gold-light); }

.stap-number.sage-dark {
  background: linear-gradient(145deg, var(--sage-dark), #4A7A4E);
}

.stap-number.purple {
  background: linear-gradient(145deg, #8B5CF6, #7C3AED);
  box-shadow: 0 6px 20px rgba(139,92,246,0.4);
}
.stap-number.purple::before { border-color: #EDE9FE; }

.stap-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stap-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stap-icon.green { background: var(--sage-light); }
.stap-icon.coral { background: var(--coral-light); }
.stap-icon.gold { background: var(--gold-light); }
.stap-icon.sage-dark { background: var(--sage-pale); }
.stap-icon.purple { background: #EDE9FE; }

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

.stap-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.stap-intro {
  color: var(--graphite-mid);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.stap-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stap-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--graphite-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.stap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

.stap-list li strong {
  color: var(--graphite);
}

/* Stap Grid (for Stap 2) */
.stap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stap-grid-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.stap-grid-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stap-grid-icon svg {
  width: 20px;
  height: 20px;
}

.stap-grid-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.stap-grid-item p {
  font-size: 0.85rem;
  color: var(--graphite-light);
  line-height: 1.5;
}

/* Update Features (Stap 3) */
.update-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.update-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
}

.update-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.update-icon svg {
  width: 20px;
  height: 20px;
}

.update-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.update-feature p {
  font-size: 0.85rem;
  color: var(--graphite-mid);
}

/* Huis Services (Stap 4) */
.huis-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.huis-service {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
}

.huis-service svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.huis-service strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.huis-service span {
  font-size: 0.82rem;
  color: var(--graphite-light);
  line-height: 1.5;
}

/* Sleutel Belofte (Stap 5) */
.sleutel-belofte {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--sage-pale);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
}

.sleutel-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

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

.sleutel-belofte h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--sage-dark);
}

.sleutel-belofte p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Noodprotocol Section */
.section-noodprotocol {
  background: var(--white);
}

.noodprotocol-card {
  background: linear-gradient(135deg, #4A5568 0%, #2D3748 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.noodprotocol-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.noodprotocol-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--coral));
}

.noodprotocol-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.noodprotocol-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.noodprotocol-icon svg {
  width: 32px;
  height: 32px;
}

.noodprotocol-header h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.noodprotocol-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.noodprotocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.noodprotocol-item {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.noodprotocol-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.2);
}

.noodprotocol-item-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(244,132,95,0.4);
  transition: all var(--transition);
}

.noodprotocol-item:hover .noodprotocol-item-icon {
  transform: scale(1.1);
}

.noodprotocol-item-icon svg {
  width: 26px;
  height: 26px;
}

.noodprotocol-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.noodprotocol-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* CTA Buttons Variant */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   WERKWIJZE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-visual {
    order: -1;
  }

  .intro-blob {
    max-width: 300px;
  }

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

  .intro-highlights {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--header-height) + 2rem) 0 4rem;
  }

  .stap-card {
    margin-left: 0;
    padding: 2rem 1.5rem;
  }

  .stap-number-wrapper {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 1rem;
  }

  .stap-connector {
    display: none;
  }

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

  .huis-services {
    grid-template-columns: 1fr;
  }

  .noodprotocol-card {
    padding: 2rem;
  }

  .noodprotocol-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stap-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .sleutel-belofte {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================
   TARIEVEN PAGE STYLES
   ============================================ */

/* Inclusief Badges */
.section-inclusief {
  background: var(--white);
  padding: 3.5rem 0;
}

.inclusief-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.inclusief-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--graphite);
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--cream) 100%);
  padding: 0.75rem 1.25rem;
  border-radius: 60px;
  border: 1px solid var(--sage-light);
  transition: all var(--transition);
}

.inclusief-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123,174,127,0.15);
  border-color: var(--sage);
}

.inclusief-badge svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
  background: var(--white);
  padding: 2px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(123,174,127,0.2);
}

/* Pakketten Section */
.section-pakketten {
  background: var(--white);
  padding-top: 2rem;
}

.pakketten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pakket-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 2px solid rgba(45,45,45,0.08);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pakket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-light), var(--sage));
  opacity: 0;
  transition: opacity var(--transition);
}

.pakket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.pakket-card:hover::before {
  opacity: 1;
}

.pakket-card.popular {
  border: 3px solid var(--sage);
  background: linear-gradient(165deg, var(--white) 0%, var(--sage-pale) 50%, var(--sage-light) 100%);
  box-shadow: 0 8px 40px rgba(123,174,127,0.25);
  transform: scale(1.05);
}

.pakket-card.popular::before {
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--sage-dark), var(--sage));
  opacity: 1;
}

.pakket-card.popular:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 16px 48px rgba(123,174,127,0.35);
}

.pakket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1.4rem;
  border-radius: 60px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(94,148,98,0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 4px 12px rgba(94,148,98,0.4); }
  50% { box-shadow: 0 4px 20px rgba(94,148,98,0.6); }
}

.pakket-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pakket-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pakket-card.popular .pakket-icon {
  background: var(--sage);
}

.pakket-icon svg {
  width: 28px;
  height: 28px;
  color: var(--sage-dark);
}

.pakket-card.popular .pakket-icon svg {
  color: var(--white);
}

.pakket-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--graphite);
  margin-bottom: 0.3rem;
}

.pakket-duration {
  font-size: 0.9rem;
  color: var(--graphite-light);
  margin-bottom: 0.8rem;
}

.pakket-ideal {
  font-size: 0.85rem;
  color: var(--graphite-mid);
  line-height: 1.5;
}

.pakket-price {
  text-align: center;
  padding: 1.75rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(45,45,45,0.06);
  border-bottom: 1px solid rgba(45,45,45,0.06);
  position: relative;
}

.pakket-price .currency {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--graphite);
  vertical-align: top;
  position: relative;
  top: 0.5rem;
  margin-right: 0.1rem;
}

.pakket-price .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--graphite);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pakket-price .cents {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--graphite-mid);
  line-height: 1;
  vertical-align: top;
  position: relative;
  top: 0.5rem;
}

.pakket-card.popular .pakket-price {
  background: linear-gradient(180deg, transparent 0%, rgba(123,174,127,0.08) 100%);
  margin-left: -2rem;
  margin-right: -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.pakket-card.popular .pakket-price .currency,
.pakket-card.popular .pakket-price .amount {
  color: var(--sage-dark);
}

.pakket-card.popular .pakket-price .cents {
  color: var(--sage);
}

.pakket-price .per {
  display: block;
  font-size: 0.9rem;
  color: var(--graphite-light);
  margin-top: 0.4rem;
  font-weight: 500;
}

.pakket-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pakket-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--graphite-mid);
}

.pakket-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--sage);
}

.pakket-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* Extra Services Table */
.section-extra-services {
  background: var(--white);
}

.services-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123,174,127,0.15);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
}

.services-table th,
.services-table td {
  padding: 1.35rem 1.75rem;
  text-align: left;
}

.services-table thead {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
}

.services-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.services-table tbody tr {
  border-bottom: 1px solid rgba(45,45,45,0.06);
  transition: all var(--transition);
}

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

.services-table tbody tr:hover {
  background: linear-gradient(90deg, var(--sage-pale) 0%, transparent 100%);
  transform: scale(1.01);
}

.services-table td {
  font-size: 0.95rem;
  color: var(--graphite-mid);
}

.services-table td:first-child {
  color: var(--graphite);
}

.services-table td:nth-child(2) {
  font-family: var(--font-display);
  font-weight: 600;
}

.services-table .gratis,
.services-table .inbegrepen {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  padding: 0.3rem 0.8rem;
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Betaal FAQ */
.section-betaal-faq {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-betaal-faq::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.faq-layout-with-image {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.faq-image-column {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.faq-layout-with-image .faq-intro-image {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(123,174,127,0.25);
  position: relative;
  transition: all var(--transition);
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
}

.faq-layout-with-image .faq-intro-image::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px dashed var(--sage);
  opacity: 0.4;
  animation: rotate-ring 18s linear infinite reverse;
}

.faq-layout-with-image .faq-intro-image:hover {
  transform: scale(1.03) rotate(-2deg);
  box-shadow: 0 20px 60px rgba(123,174,127,0.35);
}

.faq-layout-with-image .faq-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.faq-layout-with-image .faq-intro-image:hover img {
  transform: scale(1.05);
}

.faq-content-column {
  display: flex;
  flex-direction: column;
}

.faq-header {
  margin-bottom: 2rem;
}

.faq-header h2 {
  margin-bottom: 0.75rem;
}

.faq-header p {
  color: var(--graphite-mid);
  font-size: 1.05rem;
}

.faq-content-column .faq-list {
  margin-bottom: 2rem;
}

.faq-cta-btn {
  align-self: flex-start;
}

/* ============================================
   TARIEVEN RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pakketten-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .pakket-card.popular {
    order: -1;
  }

  .faq-layout-with-image {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-image-column {
    position: relative;
    top: auto;
    display: flex;
    justify-content: center;
  }

  .faq-layout-with-image .faq-intro-image {
    max-width: 300px;
  }

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

  .faq-cta-btn {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .inclusief-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .services-table th,
  .services-table td {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .services-table th:last-child,
  .services-table td:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .pakket-card {
    padding: 2rem 1.5rem;
  }

  .pakket-price .cents {
    font-size: 2.5rem;
  }
}

/* ============================================
   OVER ONS PAGE STYLES
   ============================================ */

/* Missie Section */
.section-missie {
  background: var(--white);
  padding-top: 4rem;
}

.missie-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.missie-blob {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--gold-light) 50%, var(--peach) 100%);
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(123,174,127,0.2);
  transition: all var(--transition);
  position: relative;
}

.missie-blob::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px dashed var(--sage);
  opacity: 0.3;
  animation: rotate-ring 20s linear infinite;
}

.missie-blob:hover {
  transform: scale(1.02) rotate(2deg);
  box-shadow: 0 24px 72px rgba(123,174,127,0.3);
}

.missie-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.missie-blob:hover img {
  transform: scale(1.05);
}

.missie-content h2 {
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.missie-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Kernwaarden Section */
.section-kernwaarden {
  background: var(--sage-pale);
}

.kernwaarden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.kernwaarde-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.kernwaarde-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sage);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.kernwaarde-card:hover::before {
  opacity: 1;
}

.kernwaarde-card:nth-child(2)::before { background: var(--coral); }
.kernwaarde-card:nth-child(3)::before { background: var(--gold); }
.kernwaarde-card:nth-child(4)::before { background: #8B5CF6; }

.kernwaarde-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.kernwaarde-icon.green { background: var(--sage-light); }
.kernwaarde-icon.coral { background: var(--coral-light); }
.kernwaarde-icon.gold { background: var(--gold-light); }
.kernwaarde-icon.purple { background: #EDE9FE; }

.kernwaarde-icon svg {
  width: 32px;
  height: 32px;
}

.kernwaarde-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.kernwaarde-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--graphite-mid);
}

/* Waarom Wij Section */
.section-waarom-wij {
  background: var(--white);
}

.waarom-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.waarom-content h2 {
  margin-bottom: 2rem;
}

.waarom-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.waarom-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: linear-gradient(90deg, var(--sage-pale) 0%, transparent 100%);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
  transition: all var(--transition);
}

.waarom-item:hover {
  transform: translateX(6px);
  background: linear-gradient(90deg, var(--sage-light) 0%, transparent 100%);
}

.waarom-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

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

.waarom-item h4 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.waarom-item p {
  font-size: 0.9rem;
  color: var(--graphite-mid);
  line-height: 1.6;
}

.waarom-visual {
  position: relative;
}

.waarom-blob {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--sage-light) 100%);
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(123,174,127,0.2);
  transition: all var(--transition);
}

.waarom-blob:hover {
  transform: scale(1.02) rotate(-2deg);
}

.waarom-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.waarom-blob:hover img {
  transform: scale(1.05);
}

.waarom-badge {
  position: absolute;
  bottom: 5%;
  left: -5%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.waarom-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.waarom-badge-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--sage-dark);
  line-height: 1;
}

.waarom-badge-text {
  font-size: 0.8rem;
  color: var(--graphite-light);
}

/* Filosofie Section */
.section-filosofie {
  background: var(--cream);
  padding: 5rem 0;
}

.filosofie-card {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.filosofie-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.filosofie-quote {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.quote-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.quote-icon path {
  fill: var(--white);
}

.filosofie-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.filosofie-quote cite {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-style: normal;
}

/* ============================================
   OVER ONS RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .missie-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .missie-visual {
    order: -1;
  }

  .missie-blob {
    max-width: 320px;
  }

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

  .missie-content h2 {
    max-width: none;
  }

  .kernwaarden-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .waarom-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .waarom-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .waarom-blob {
    max-width: 320px;
  }

  .waarom-badge {
    left: auto;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .kernwaarden-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .kernwaarde-card {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .kernwaarde-card h3,
  .kernwaarde-card p {
    flex-basis: calc(100% - 64px - 1.25rem);
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .kernwaarde-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .filosofie-card {
    padding: 3rem 2rem;
  }

  .waarom-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .filosofie-quote blockquote {
    font-size: 1.15rem;
  }
}

/* ============================================
   SERVICEGEBIEDEN PAGE STYLES
   ============================================ */

/* Regio's Section */
.section-regios {
  background: var(--white);
}

.regios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.regio-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.regio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-light);
}

.regio-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.regio-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.regio-icon svg {
  width: 24px;
  height: 24px;
  color: var(--sage-dark);
}

.regio-icon.uitbreiding {
  background: var(--gold-light);
}

.regio-icon.uitbreiding svg {
  color: #D4A832;
}

.regio-header h3 {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.regio-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 60px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.regio-status.beschikbaar {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.regio-status.binnenkort {
  background: var(--gold-light);
  color: #9A7B00;
}

.regio-card > p {
  font-size: 0.92rem;
  color: var(--graphite-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.regio-plaatsen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.regio-plaatsen li {
  font-size: 0.8rem;
  background: var(--white);
  padding: 0.3rem 0.7rem;
  border-radius: 60px;
  color: var(--graphite-mid);
  border: 1px solid rgba(45,45,45,0.08);
}

.regio-uitbreiding {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--cream) 100%);
  border: 2px dashed var(--gold);
}

.regio-uitbreiding:hover {
  border-color: var(--gold);
}

/* Lokaal Voordelen Section */
.section-lokaal-voordelen {
  background: var(--sage-pale);
}

.lokaal-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lokaal-content h2 {
  margin-bottom: 1rem;
}

.lokaal-content > p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.lokaal-voordelen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lokaal-voordeel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.lokaal-voordeel:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.lokaal-voordeel-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.lokaal-voordeel h4 {
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

.lokaal-voordeel p {
  font-size: 0.9rem;
  color: var(--graphite-mid);
  line-height: 1.6;
}

.lokaal-blob {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(123,174,127,0.2);
  transition: all var(--transition);
}

.lokaal-blob:hover {
  transform: scale(1.02) rotate(2deg);
}

.lokaal-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.lokaal-blob:hover img {
  transform: scale(1.05);
}

/* Beschikbaarheid Section */
.section-beschikbaarheid {
  background: var(--white);
  padding: 4rem 0;
}

.beschikbaarheid-card {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.beschikbaarheid-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.beschikbaarheid-content {
  position: relative;
  z-index: 1;
}

.beschikbaarheid-content h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.8rem;
}

.beschikbaarheid-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 500px;
}

.beschikbaarheid-action {
  position: relative;
  z-index: 1;
  text-align: center;
  flex-shrink: 0;
}

.beschikbaarheid-action .btn {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}

.beschikbaarheid-action .btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.beschikbaarheid-note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SERVICEGEBIEDEN RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .regios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lokaal-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lokaal-visual {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .lokaal-blob {
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .regios-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .beschikbaarheid-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }

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

  .beschikbaarheid-content p {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .regio-header {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Form Section */
.section-contact-form {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Form Wrapper */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--graphite-mid);
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--graphite);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border: 2px solid rgba(45,45,45,0.1);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--graphite);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(123,174,127,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--graphite-light);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--sage);
  cursor: pointer;
}

.form-checkbox label {
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--graphite-mid);
}

.form-checkbox label a {
  color: var(--sage-dark);
  text-decoration: underline;
  padding: 0.2rem 0;
  display: inline-block;
}

.contact-form .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--sage-pale);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--sage-dark);
}

.contact-info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--graphite);
  margin-bottom: 0.15rem;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 0.95rem;
  color: var(--graphite-mid);
  padding: 0.2rem 0;
  display: inline-block;
}

.contact-info-item a:hover {
  color: var(--sage-dark);
}

.contact-bedrijf {
  background: var(--cream);
}

.bedrijf-gegevens p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--graphite-mid);
}

.bedrijf-gegevens p strong {
  color: var(--graphite);
}

.contact-belofte {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--sage-light), var(--sage-pale));
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
}

.belofte-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(123,174,127,0.2);
}

.belofte-icon svg {
  width: 24px;
  height: 24px;
  color: var(--sage-dark);
}

.contact-belofte strong {
  display: block;
  font-size: 0.95rem;
  color: var(--sage-dark);
  margin-bottom: 0.25rem;
}

.contact-belofte p {
  font-size: 0.9rem;
  color: var(--graphite-mid);
}

/* Contact FAQ */
.section-contact-faq {
  background: var(--cream);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================
   CONTACT RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-info {
    order: -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

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

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }

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

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

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

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   BLOG OVERVIEW PAGE
   ============================================ */
.section-blog-grid {
  background: var(--white);
  padding-top: 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.9rem;
  border-radius: 60px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--graphite-light);
  margin-bottom: 0.75rem;
}

.blog-card-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--graphite-light);
}

.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--graphite);
  transition: color var(--transition);
}

.blog-card:hover .blog-card-title {
  color: var(--sage-dark);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--graphite-mid);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage-dark);
  transition: all var(--transition);
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card-link {
  color: var(--sage);
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.page-hero-article .page-hero-content {
  max-width: 800px;
}

.page-hero-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--graphite-light);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--sage-dark);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--sage);
}

.breadcrumb svg {
  width: 8px;
  height: 12px;
  color: var(--graphite-light);
  flex-shrink: 0;
}

.breadcrumb span:last-child {
  color: var(--graphite-mid);
}

.blog-hero-category {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.9rem;
  border-radius: 60px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--graphite-mid);
  margin-top: 0.5rem;
}

/* Article Layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.section-article {
  background: var(--white);
  padding-top: 4rem;
}

/* Article Content */
.article-content {
  max-width: 100%;
}

.article-featured-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-content .article-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--graphite);
  margin-bottom: 2rem;
  max-width: none;
}

.article-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(123,174,127,0.2);
}

.article-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--graphite-mid);
  margin-bottom: 1.25rem;
  max-width: none;
}

.article-content ul {
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.article-content ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--graphite-mid);
}

.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.article-content ul li strong {
  color: var(--graphite);
}

/* Article Callout Box */
.article-callout {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--sage-pale);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--sage);
}

.article-callout-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.article-callout strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 0.3rem;
}

.article-callout p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--graphite-mid);
  margin-bottom: 0;
}

/* Article Table */
.article-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

.article-table thead {
  background: var(--sage-pale);
}

.article-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--sage-dark);
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 2px solid var(--sage-light);
}

.article-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(45,45,45,0.06);
  color: var(--graphite-mid);
}

.article-table td:first-child {
  font-weight: 600;
  color: var(--graphite);
}

.article-table td.positive {
  color: var(--sage-dark);
  font-weight: 600;
}

.article-table td.negative {
  color: var(--coral);
  font-weight: 600;
}

.article-table td.neutral {
  color: var(--graphite-light);
}

.article-table tbody tr:hover {
  background: var(--cream);
}

/* Article Inline CTA */
.article-cta-inline {
  background: linear-gradient(135deg, var(--sage-pale), var(--cream));
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  border: 1px dashed var(--sage);
}

.article-cta-inline h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.article-cta-inline p {
  font-size: 0.95rem;
  color: var(--graphite-mid);
  margin: 0 auto 1.5rem;
  max-width: 450px;
}

/* Article Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--sage-pale), var(--cream-dark));
  text-align: center;
  border: 1px solid var(--sage-light);
}

.sidebar-cta-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-cta-icon svg {
  width: 32px;
  height: 32px;
}

.sidebar-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.sidebar-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--graphite-mid);
  margin-bottom: 1rem;
}

.sidebar-card .btn {
  width: 100%;
  justify-content: center;
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--sage-dark);
  transition: all var(--transition);
  padding: 0.3rem 0;
}

.sidebar-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.sidebar-link:hover {
  color: var(--sage);
}

.sidebar-link:hover svg {
  transform: translateX(3px);
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .breadcrumb {
    font-size: 0.78rem;
  }

  .breadcrumb a {
    padding: 0.3rem 0.15rem;
  }

  .article-callout {
    flex-direction: column;
    gap: 0.8rem;
  }

  .article-cta-inline {
    padding: 1.8rem;
  }

  .article-table th,
  .article-table td {
    padding: 0.7rem 0.8rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .blog-card-title {
    font-size: 1.05rem;
  }

  .article-cta-inline .btn {
    width: 100%;
    justify-content: center;
  }
}
