:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --muted-surface: #f1f5f9;
  --text: #1e293b;
  --muted-text: #64748b;
  --brand: #10b981;
  --brand-strong: #059669;
  --accent: #059669;
  --danger: #ef4444;
  --ok: #10b981;
  --shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 80% -10%, #ecfdf5 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 300;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-badge {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(145deg, #10b981, #059669, #047857);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.25);
}

.brand-name { font-size: 18px; }
.brand-sub { font-size: 12px; color: var(--muted-text); display: block; margin-top: 2px; }

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

.nav a {
  color: var(--muted-text);
  text-decoration: none;
  font-weight: 600;
}

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

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: white !important;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.25);
}

.phone-chip small { opacity: 0.9; font-weight: 600; }

.hero {
  padding: 56px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 14px 0 10px;
}

.lead {
  color: var(--muted-text);
  font-size: clamp(16px, 2.4vw, 18px);
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.25);
}

.btn:hover { transform: translateY(-1px); }

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--text);
  box-shadow: none;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 18px;
}

.checks li { list-style: none; color: var(--muted-text); }

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

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

.kpi {
  background: linear-gradient(180deg, var(--muted-surface), transparent);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.kpi strong { font-size: 22px; display: block; }
.kpi span { color: var(--muted-text); font-size: 13px; }

.section {
  padding: 28px 0;
}

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

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

.card {
  background: linear-gradient(180deg, var(--muted-surface), transparent);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 14px;
  padding: 18px;
}

.card h3 { margin: 0 0 8px; }
.card p { color: var(--muted-text); }

.banner {
  background: linear-gradient(145deg, rgba(16,185,129,0.1), rgba(5,150,105,0.08));
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.banner p { margin: 0; color: var(--muted-text); }

.footer {
  padding: 28px 0 80px; /* extra ruimte voor sticky belknop */
  color: var(--muted-text);
}

.footer small { color: var(--muted-text); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
}

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

.divider { height: 1px; background: rgba(16, 185, 129, 0.1); margin: 20px 0; }

/* Sticky belknop (mobiel) */
.sticky-call {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  color: white;
  text-decoration: none;
  font-weight: 900;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.3);
}

/* Floating belknop (desktop) */
@media (min-width: 901px) {
  .sticky-call {
    left: auto;
    right: 24px;
    width: auto;
    min-width: 220px;
    border-radius: 14px;
  }
}

.badges {
  display: grid;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), transparent);
  color: var(--muted-text);
  font-weight: 700;
}

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

.hero-media {
  display: grid;
  gap: 12px;
  align-content: start;
}

.hero-media .img-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, var(--muted-surface), transparent);
}

.hero-media img { display: block; width: 100%; height: auto; }

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

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

.review {
  background: linear-gradient(180deg, var(--muted-surface), transparent);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 14px;
  padding: 18px;
}

.review .stars { color: #ffd166; font-size: 18px; margin-bottom: 8px; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag { background: rgba(16,185,129,0.1); color: var(--brand); padding: 6px 10px; border-radius: 999px; font-weight: 700; font-size: 12px; } 

/* Afbeelding ratios en cover */
.img-frame.aspect-hero { aspect-ratio: 3 / 2.3; }
.img-frame.aspect-services { 
  aspect-ratio: 3 / 0.9; 
  overflow: hidden;
}
.img-frame .cover { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Specifieke styling voor services afbeelding */
.img-frame.aspect-services .cover {
  object-position: center 30%;
}

/* Zorg dat hero-media frames een hoogte krijgen op kleine schermen */
@media (max-width: 900px) {
  .img-frame.aspect-hero { aspect-ratio: 16 / 10; }
} 

/* Mobile responsiveness tweaks */
@media (max-width: 600px) {
  .header-inner { padding: 10px 0; gap: 10px; }
  .nav { gap: 12px; flex-wrap: wrap; }
  .nav a { font-size: 14px; }
  .brand-badge { width: 32px; height: 32px; }
  .brand-name { font-size: 16px; }

  .hero { padding: 36px 0 16px; }
  h1 { font-size: clamp(24px, 8vw, 32px); }
  .lead { font-size: 15px; }

  .cta-row { flex-direction: column; }
  .btn, .btn.secondary, .phone-chip { width: 100%; justify-content: center; }

  .checks { grid-template-columns: 1fr; }
  .badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  .kpi strong { font-size: 20px; }
  .footer { padding: 24px 0 96px; }
}

/* Mobile menu styles */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 350;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu button active state */
.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile navigation */
@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--surface), var(--bg));
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(16, 185, 129, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    gap: 0;
    transition: left 0.3s ease;
    z-index: 200;
    box-shadow: var(--shadow);
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    font-size: 16px;
    font-weight: 600;
  }
  
  .nav a:last-child {
    border-bottom: none;
  }
  
  .nav .phone-chip {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: white !important;
  }
  
  /* Overlay when menu is open */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 150;
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Fix sticky call button z-index when menu is open */
  .sticky-call {
    z-index: 100;
  }
} 