/* ============================================
   HV Makelaardij — Premium Preview
   Archetype: Editorial
   Fonts: Fraunces (headings) + Libre Franklin (body)
   Colors: Deep teal + Champagne geel-groen + Koraal
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #004D5F;
  --color-primary-light: #006B82;
  --color-secondary: #DCE800;
  --color-accent: #D47A5B;
  --color-text: #1C1C1E;
  --color-text-light: #6B7280;
  --color-bg: #FDFCF9;
  --color-bg-alt: #EDEAE4;
  --color-dark: #0F1923;
  --color-white: #FFFFFF;
  --color-border: #D4D0C8;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Libre Franklin', Arial, sans-serif;
  --max-text: 680px;
  --max-content: 1200px;
  --max-wide: 1400px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  max-width: var(--max-text);
}

.text-light {
  color: var(--color-text-light);
}

.text-sm {
  font-size: 0.875rem;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--color-primary);
  border-left: 4px solid var(--color-secondary);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
  max-width: var(--max-text);
}

.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: var(--space-sm);
}

/* --- Layout --- */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

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

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

.section--alt {
  background-color: var(--color-bg-alt);
}

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark .text-light {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark .overline {
  color: var(--color-secondary);
}

/* --- Skip to content --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-size: 0.875rem;
}

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

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: height 0.3s ease, box-shadow 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  transition: height 0.3s ease;
}

.header.scrolled .header__inner {
  height: 64px;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header__logo img {
  height: 48px;
  width: auto;
  transition: height 0.3s ease;
}

.header.scrolled .header__logo img {
  height: 36px;
}

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

.header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: var(--space-xs) 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a:hover {
  color: var(--color-primary);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-secondary);
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header__cta:hover {
  background: #c5d000;
  color: var(--color-dark);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
}

.header__toggle span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg);
  z-index: 999;
  padding: 100px var(--space-md) var(--space-md);
  flex-direction: column;
  gap: var(--space-sm);
  overflow-y: auto;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
  text-align: center;
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
  .header__toggle {
    display: flex;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 25, 35, 0.85) 0%,
    rgba(15, 25, 35, 0.4) 40%,
    rgba(15, 25, 35, 0.15) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: var(--space-sm);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-secondary);
  color: var(--color-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero__cta:hover {
  background: #c5d000;
  color: var(--color-dark);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  animation: bounce 2s infinite;
}

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

/* --- Editorial Intro Block (2-col) --- */
.editorial-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.editorial-intro__text h2 {
  margin-bottom: var(--space-md);
}

.editorial-intro__text p {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.editorial-intro__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.editorial-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (max-width: 768px) {
  .editorial-intro {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .editorial-intro__image {
    order: -1;
  }
  .editorial-intro__image img {
    aspect-ratio: 16 / 10;
  }
}

/* --- Diensten Magazine Spread --- */
.diensten-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.dienst-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.dienst-card--large {
  grid-row: span 2;
}

.dienst-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.dienst-card--large .dienst-card__image {
  aspect-ratio: 3 / 4;
}

.dienst-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dienst-card:hover .dienst-card__image img {
  transform: scale(1.03);
}

.dienst-card__body {
  padding: var(--space-md);
}

.dienst-card__body .overline {
  margin-bottom: var(--space-xs);
}

.dienst-card__body h3 {
  margin-bottom: var(--space-sm);
}

.dienst-card__body p {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

.dienst-card__link {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.dienst-card__link:hover {
  color: var(--color-accent);
}

.dienst-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.dienst-card__link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .diensten-grid {
    grid-template-columns: 1fr;
  }
  .dienst-card--large {
    grid-row: span 1;
  }
  .dienst-card--large .dienst-card__image {
    aspect-ratio: 16 / 10;
  }
}

/* --- Beoordelingen Sectie --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.review-card {
  padding: var(--space-md);
  border-left: 3px solid var(--color-secondary);
}

.review-card__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.review-card__author {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.reviews-score__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.reviews-score__label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.reviews-score__stars {
  display: flex;
  gap: 2px;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Team Strip --- */
.team-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

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

.team-member__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  background: var(--color-bg-alt);
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.team-member:hover .team-member__photo img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.team-member__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 0.125rem;
}

.team-member__role {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

@media (max-width: 900px) {
  .team-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-strip {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
}

/* --- Nieuws Magazine --- */
.nieuws-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.nieuws-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nieuws-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.nieuws-card--featured {
  grid-row: span 2;
}

.nieuws-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.nieuws-card--featured .nieuws-card__image {
  aspect-ratio: 4 / 3;
}

.nieuws-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nieuws-card__body {
  padding: var(--space-md);
}

.nieuws-card__date {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.nieuws-card__body h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.nieuws-card--featured .nieuws-card__body h3 {
  font-size: 1.5rem;
}

.nieuws-card__body p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nieuws-grid {
    grid-template-columns: 1fr;
  }
  .nieuws-card--featured {
    grid-row: span 1;
  }
}

/* --- Partner Balk --- */
.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding: var(--space-md) 0;
}

.partners img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn--primary {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.btn--primary:hover {
  background: #c5d000;
  color: var(--color-dark);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

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

.btn--accent:hover {
  background: #c06842;
  color: var(--color-white);
  transform: translateY(-1px);
}

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

.btn--dark:hover {
  background: #1a2a38;
  transform: translateY(-1px);
}

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

.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

/* --- Counters --- */
.counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
  text-align: center;
}

.counter {
  padding: var(--space-md);
}

.counter__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.section--dark .counter__number {
  color: var(--color-secondary);
}

.counter__label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.section--dark .counter__label {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding: var(--space-md) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: var(--space-md);
}

.timeline__item:nth-child(odd) {
  padding-right: var(--space-lg);
  text-align: right;
}

.timeline__item:nth-child(even) {
  margin-left: 50%;
  padding-left: var(--space-lg);
}

.timeline__dot {
  position: absolute;
  top: var(--space-md);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-secondary);
  border: 3px solid var(--color-bg);
  z-index: 1;
}

.timeline__item:nth-child(odd) .timeline__dot {
  right: -8px;
}

.timeline__item:nth-child(even) .timeline__dot {
  left: -8px;
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.timeline__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 24px;
  }
  .timeline__item,
  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding-left: 56px;
    padding-right: 0;
    text-align: left;
  }
  .timeline__item:nth-child(odd) .timeline__dot,
  .timeline__item:nth-child(even) .timeline__dot {
    left: 16px;
    right: auto;
  }
}

/* --- FAQ Accordion --- */
.faq-section {
  max-width: var(--max-text);
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: var(--space-xs);
}

.faq-tab {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  padding: var(--space-xs) var(--space-sm);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.faq-tab.active {
  color: var(--color-primary);
}

.faq-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer-inner {
  padding-bottom: var(--space-md);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 77, 95, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-primary);
}

/* --- Calculator --- */
.calculator {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  max-width: 640px;
  margin: 0 auto;
}

.calculator__result {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.calculator__result-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.calculator__result-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.calculator__monthly {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--color-bg-alt);
  outline: none;
  margin: var(--space-sm) 0;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: 3px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* --- Contact Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-info__icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-info__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__about p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--color-secondary);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer__social a:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Page Header (subpages) --- */
.page-header {
  background: var(--color-primary);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(220, 232, 0, 0.08) 100%);
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}

.page-header .overline {
  color: var(--color-secondary);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-sm);
  display: block;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  max-width: var(--max-text);
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--color-text-light);
}

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

.breadcrumb__sep {
  color: var(--color-border);
}

/* --- Stappen/Timeline vertical --- */
.steps {
  counter-reset: step;
  position: relative;
  padding-left: 60px;
}

.steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.step {
  position: relative;
  padding-bottom: var(--space-lg);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -60px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 1;
}

.step h3 {
  margin-bottom: var(--space-xs);
}

.step p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

/* --- Regio Kaart --- */
.regio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.regio-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.regio-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.regio-card h3 {
  margin-bottom: var(--space-xs);
}

.regio-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

/* --- Verzekeringen Product Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.product-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--color-primary);
}

.product-card h4 {
  margin-bottom: var(--space-xs);
}

.product-card p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0 auto;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  color: white;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* --- Mobile Sticky CTA --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--color-dark);
  padding: var(--space-sm) var(--space-md);
  border-top: 2px solid var(--color-secondary);
}

.mobile-sticky-cta a {
  display: block;
  text-align: center;
  background: var(--color-secondary);
  color: var(--color-dark);
  font-weight: 600;
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

/* --- Utility --- */
.text-center {
  text-align: center;
}

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

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.gap-md { gap: var(--space-md); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

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

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Print --- */
@media print {
  .header, .footer, .whatsapp-float, .mobile-sticky-cta, .hero__scroll {
    display: none;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}
