/* ========================================
   SurfaceLabs — Complete Stylesheet
   ======================================== */

/* ----- CSS Variables ----- */
:root {
  --primary: #0B2D5C;
  --primary-dark: #071e3f;
  --accent: #1F5EFF;
  --accent-hover: #1a4edb;
  --bg: #FFFFFF;
  --bg-light: #F6F8FB;
  --bg-dark: #0a0f1a;
  --text: #1F2937;
  --text-light: #6B7280;
  --text-white: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 72px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ----- Text utilities ----- */
.text-accent { color: var(--accent); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(31,94,255,0.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ----- Section defaults ----- */
.section {
  padding: 100px 0;
}
.section-dark { background: var(--primary); color: var(--text-white); }
.section-light { background: var(--bg-light); }
.section-counters { background: linear-gradient(135deg, var(--primary-dark), var(--primary)), url('../img/bannerstraal.webp'); background-blend-mode: overlay; background-size: cover; background-position: center; background-attachment: fixed; color: var(--text-white); }
.section-cta { background: linear-gradient(135deg, var(--primary-dark), #0f2040); color: var(--text-white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(31,94,255,0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-dark .section-tag { background: rgba(255,255,255,0.12); color: #8ab4ff; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,0.7); }
.section-counters .section-desc,
.section-cta .section-desc { color: rgba(255,255,255,0.7); }

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
#header.scrolled .logo-text { color: var(--primary); }
#header.scrolled .nav-link { color: var(--text); }
#header.scrolled .nav-link:hover { color: var(--accent); }
#header.scrolled .btn-outline {
  color: var(--text);
  border-color: var(--border);
}
#header.scrolled .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  transition: var(--transition);
}
.logo-icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
}
.logo-highlight { color: var(--accent); }

/* Nav */
.nav-list {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; }
#header.scrolled .nav-link.active { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
#hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled #hamburger span { background: var(--text); }
#hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#hamburger.active span:nth-child(2) { opacity: 0; }
#hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ========================================
   HERO
   ======================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a0f1a 0%, #0f1a30 50%, #0B2D5C 100%);
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(31,94,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31,94,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1920&q=80') center/cover;
  opacity: 0.06;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 0 60px;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 4px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

/* ========================================
   CARDS GRID
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(31,94,255,0.2);
}
.section-dark .card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}
.section-dark .card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}
.card-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,94,255,0.1);
  border-radius: 16px;
  font-size: 24px;
  color: var(--accent);
  transition: var(--transition);
}
.card:hover .card-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}
.card-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.card-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.section-dark .card-text { color: rgba(255,255,255,0.65); }

/* Service cards */
.service-card {
  text-align: left;
  padding: 0 0 28px;
  overflow: hidden;
}
.service-card .card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
}
.service-card .card-icon {
  margin: 0 28px 16px;
}
.service-card .card-title,
.service-card .card-text { padding: 0 28px; }
.service-card .card-text { margin-bottom: 16px; }
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 0 28px;
  transition: var(--transition);
}
.card-cta:hover { gap: 10px; }

/* ========================================
   STEPS / WERKWIJZE
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border));
  opacity: 0.3;
}
@media (max-width: 1024px) { .steps::before { display: none; } }
.step {
  text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: rgba(31,94,255,0.08);
  line-height: 1;
  margin-bottom: -16px;
}
.step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  font-size: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(31,94,255,0.3);
}
.step-title {
  font-size: 18px;
  margin-bottom: 10px;
}
.step-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ========================================
   COUNTERS
   ======================================== */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.counter-box {
  padding: 40px 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.counter-box:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.counter-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
}
.counter {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.counter-suffix {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  vertical-align: super;
}
.counter-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author strong {
  display: block;
  font-size: 14px;
}
.review-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================
   FAQ — ACCORDION
   ======================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(31,94,255,0.2);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  transition: var(--transition);
}
.faq-question i {
  font-size: 13px;
  color: var(--text-light);
  transition: var(--transition);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.cta-text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
#footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col .logo { color: #fff; margin-bottom: 16px; display: inline-flex; }
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.5);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}
.footer-contact i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 3px;
  min-width: 16px;
}
.footer-contact a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ========================================
   SCROLL-TO-TOP
   ======================================== */
#scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(31,94,255,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}
#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.6); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

/* ========================================
   COOKIE BANNER
   ======================================== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 10000;
  font-size: 14px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { margin: 0; }
#cookie-banner a { color: var(--accent); text-decoration: underline; }
#cookie-accept {
  padding: 8px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
#cookie-accept:hover { background: var(--accent-hover); }

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.visible:nth-child(2) { transition-delay: 0.1s; }
.reveal.visible:nth-child(3) { transition-delay: 0.2s; }
.reveal.visible:nth-child(4) { transition-delay: 0.3s; }
.reveal.visible:nth-child(5) { transition-delay: 0.4s; }
.reveal.visible:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
@media (max-width: 900px) {
  .nav-list {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: right 0.4s ease;
    z-index: 998;
  }
  .nav-list.open { right: 0; }
  .nav-list .nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    padding: 12px 0;
    display: block;
  }
  #hamburger { display: flex; }
  #header.scrolled .nav-list { background: var(--bg); }
  #header.scrolled .nav-list .nav-link { color: var(--text); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 640px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .section { padding: 56px 0; }
  #cookie-banner { flex-direction: column; text-align: center; padding: 16px; }
}

/* ========================================
   INNER PAGE HERO
   ======================================== */
.inner-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a0f1a 0%, #0f1a30 50%, #0B2D5C 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(31,94,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero .hero-content { padding: 80px 0 60px; }

/* ========================================
   INNER PAGE SECTIONS
   ======================================== */
.bg-alt { background: var(--bg-light); }

/* ========================================
   STORY LAYOUT (Over Ons)
   ======================================== */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-content h2 { margin-bottom: 20px; }
.story-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-light);
}
.story-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .story-layout { grid-template-columns: 1fr; gap: 32px; }
  .story-image { order: -1; }
}

/* ========================================
   VALUES GRID (Over Ons)
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(31,94,255,0.2);
}
.value-card .card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-size: 26px;
}
.value-card h3 { font-size: 16px; margin-bottom: 8px; }
.value-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

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

/* ========================================
   GALLERY GRID (Over Ons)
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

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

/* ========================================
   SERVICE CARDS (Diensten page variant)
   ======================================== */
.service-page-card {
  text-align: left;
  padding: 0 0 28px;
  overflow: hidden;
}
.service-page-card .card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.service-page-card .card-icon {
  margin: 20px 28px 12px;
}
.service-page-card .card-title,
.service-page-card .card-text { padding: 0 28px; }
.service-page-card .card-text { margin-bottom: 12px; }
.service-page-card .card-cta { padding: 0 28px; }

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-size: 20px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31,94,255,0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
  margin-top: 8px;
}

/* ========================================
   CONTACT INFO CARDS
   ======================================== */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.info-card:hover {
  border-color: rgba(31,94,255,0.2);
  box-shadow: var(--shadow-lg);
}
.info-card .card-icon {
  width: 44px; height: 44px;
  margin: 0;
  flex-shrink: 0;
  font-size: 18px;
}
.info-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}
.info-card p, .info-card a {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.info-card a { display: block; }
.info-card a:hover { color: var(--accent); }

/* ===== MAP ===== */
.map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== OPENING HOURS ===== */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
}
.hours-row .day { color: var(--text); font-weight: 500; }
.hours-row .time { color: var(--text-light); }
.hours-row.today .day { color: var(--accent); }
.hours-row.today .time { color: var(--accent); font-weight: 600; }

/* ========================================
   RESPONSIVE CONTACT
   ======================================== */
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   INNER PAGE CTA
   ======================================== */
.page-cta .cta-text { color: var(--text-light); }
.page-cta .cta-text { max-width: 520px; margin: 0 auto 28px; }

/* ========================================
   SELECTION
   ======================================== */
::selection { background: var(--accent); color: #fff; }

/* Site Logo */
.site-logo {
  height: 54px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .site-logo {
    height: 45px;
  }
}
