/* ============================================================
   DUNES WEBDESIGN — style.css
   Design System: Zand/zee-vibe
   ============================================================ */

/* 1. Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* 3. Custom Properties */
:root {
  --color-sand:       #F0EBD8;
  --color-dune:       #8FB5A0;
  --color-ocean:      #3D6B57;
  --color-foam:       #F7F4EE;
  --color-tide:       #4A7C59;
  --color-ink:        #1A2E1E;
  --color-mist:       #6B8573;
  --color-white:      #FFFFFF;
  --color-gold:       #D4A855;
  --color-gold-light: #E8D48A;
  --color-sage-light: #E8F0E8;
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
  --radius:  16px;
  --shadow:    0 4px 24px rgba(61,107,87,0.10);
  --shadow-md: 0 8px 32px rgba(61,107,87,0.14);
  --shadow-lg: 0 20px 60px rgba(61,107,87,0.16);
  --transition: 0.3s ease;
  --container: 1200px;
}

/* 4. Base */
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  line-height: 1.6;
  background: var(--color-white);
  overflow-x: hidden;
}

body[data-page="home"] { background-color: var(--color-sand); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}

p { font-family: var(--font-body); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================================
   5. Contact Bar
   ============================================================ */
.contact-bar {
  background: #3D6B57;
  color: #F0EBD8;
  height: 40px;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.contact-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}

.contact-bar-phone,
.contact-bar-social { display: none; }

.contact-bar-phone,
.contact-bar-email,
.contact-bar-social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-bar-phone,
.contact-bar-social { display: none; }

.contact-bar a, .contact-bar span, .contact-bar * {
  color: #F0EBD8;
}
.contact-bar a {
  opacity: 0.92;
  transition: opacity var(--transition), color var(--transition);
}
.contact-bar a:hover { opacity: 1; color: #D4A855; }

.contact-bar-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.75rem;
}

/* ============================================================
   6. Navbar
   ============================================================ */
.navbar {
  position: sticky;
  top: 40px;
  z-index: 99;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

body:not([data-page="home"]) .navbar,
.navbar.scrolled {
  background: var(--color-white);
  box-shadow: var(--shadow);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.navbar-brand-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #3D6B57;
  letter-spacing: -0.02em;
}

.navbar-brand-sub {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 400;
  color: #8FB5A0;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  margin-top: 1px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #3D6B57;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A855;
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: #D4A855; }

.nav-cta {
  background: #D4A855;
  color: #1A2E1E !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: #C49840; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ocean);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  padding: 0.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(201,185,154,0.3);
  box-shadow: var(--shadow);
}

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

.mobile-nav .nav-link {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(201,185,154,0.2);
  font-size: 1rem;
}

.mobile-nav .nav-cta {
  margin-top: 1rem;
  text-align: center;
  padding: 0.875rem;
  display: block;
  border-radius: 50px;
}
.mobile-nav .nav-cta::after { display: none; }

/* ============================================================
   7. Footer
   ============================================================ */
.footer {
  background: #1A2E1E;
  color: var(--color-white);
  padding: 4rem 0 0;
  border-top: 2px solid #D4A855;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-brand-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-social-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.8125rem;
  transition: color var(--transition);
}
.footer-social-link:hover { color: var(--color-dune); }
.footer-social-link svg { flex-shrink: 0; }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dune);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.8125rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--color-dune); }
.footer-contact-icon { opacity: 0.55; flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   8. Floating Elements
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.whatsapp-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 0.75rem;
  font-family: var(--font-body);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-fab:hover .whatsapp-fab-tooltip { opacity: 1; }

.custom-cursor {
  position: fixed;
  top: -7px;
  left: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(212,168,85,0.6);
  pointer-events: none;
  z-index: 9999;
  display: none;
}

/* ============================================================
   9. Section Utilities
   ============================================================ */
.section-foam  { background: var(--color-foam); transition: background 0.3s ease; }
.section-sand  { background: var(--color-sand); transition: background 0.3s ease; }
.section-ocean { background: var(--color-ocean); color: var(--color-white); }

section { padding: 4rem 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(61,107,87,0.08);
  color: #3D6B57;
  border: 1px solid #8FB5A0;
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--color-mist);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* Wave dividers — removed, sectie-overgangen worden afgehandeld via padding */
/* .wave-divider { line-height: 0; overflow: hidden; } */
/* .wave-divider svg { display: block; width: 100%; } */

/* ============================================================
   10. Hero (shared)
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
  background: linear-gradient(170deg, #F5F0E8 0%, #EDF4ED 35%, #E8F0E4 60%, #F0EBD8 100%);
}

body[data-page="home"] .hero-section {
  padding-bottom: 0;
  min-height: 100vh;
}

.hero-section .fade-up {
  opacity: 1 !important;
  transform: none !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

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

.hero-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: #3D6B57;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.8rem 1.75rem;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: #D4A855;
  color: #1A2E1E;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(212,168,85,0.30);
}
.btn-primary:hover { background: #C49840; box-shadow: 0 8px 24px rgba(212,168,85,0.40); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #3D6B57;
  border: 2px solid #3D6B57;
}
.btn-outline:hover { background: #3D6B57; color: white; }

.btn-sand { background: #F0EBD8; color: #3D6B57; }
.btn-sand:hover { background: #E8D48A; }

.btn-whatsapp { background: #25D366; color: var(--color-white); }
.btn-whatsapp:hover { background: #1da851; }

.btn-success { background: #16a34a; color: var(--color-white); }

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.btn-group-center { justify-content: center; }
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.9); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F0EBD8;
  border: 1px solid #8FB5A0;
  padding: 0.4rem 0.875rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  color: #3D6B57;
}

/* ============================================================
   11. Homepage
   ============================================================ */

/* Hero two-col */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
  position: relative;
  z-index: 10;
}

.hero-illustration { display: none; }

.hero-deco-arch {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 340px;
  pointer-events: none;
  z-index: 0;
}

.dune-svg { width: 100%; max-width: 460px; }

/* Intro grid */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.intro-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid #D4A855;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.intro-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: #4A7C59; }

.intro-card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.intro-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--color-ocean); }
.intro-card p { font-size: 0.9375rem; color: var(--color-mist); }

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

/* Branche preview cards */
.branche-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.branche-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #D4E8DA;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: block;
  color: inherit;
}
.branche-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #4A7C59; }

.branche-card-thumb {
  height: 100px;
  position: relative;
  overflow: hidden;
}

.branche-card-body {
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.branche-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A7C59;
  margin-bottom: 0.2rem;
}

.branche-card-title { font-size: 1.0625rem; color: var(--color-ocean); }

.branche-card-arrow {
  color: #D4A855;
  font-size: 1.25rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.branche-card:hover .branche-card-arrow { transform: translateX(4px); }

/* Diensten preview */
.diensten-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.dienst-preview-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-bottom: 3px solid #D4A855;
  transition: transform var(--transition), box-shadow var(--transition), border-bottom-color var(--transition);
}
.dienst-preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-bottom-color: #3D6B57; }

.dienst-preview-name { font-size: 0.875rem; font-weight: 600; color: var(--color-mist); letter-spacing: 0.08em; text-transform: uppercase; }
.dienst-preview-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #3D6B57;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.dienst-preview-price span { font-size: 1rem; font-weight: 400; color: var(--color-mist); }
.dienst-preview-desc { font-size: 0.875rem; color: var(--color-mist); }

.dienst-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #D4A855;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: gap var(--transition), color var(--transition);
}
.dienst-preview-link:hover { gap: 0.5rem; color: #3D6B57; }

/* CTA section */
.cta-section { padding: 5rem 0; text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.cta-sub { color: rgba(255,255,255,0.72); margin-bottom: 2rem; font-size: 1.0625rem; }

/* ============================================================
   12. Over-ons
   ============================================================ */
.verhaal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.verhaal-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1.25rem; color: var(--color-ink); }
.verhaal-text p { color: var(--color-mist); margin-bottom: 1rem; line-height: 1.75; font-size: 0.9375rem; }

.info-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.info-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.info-item-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mist); margin-bottom: 0.3rem; }
.info-item-value { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--color-ocean); }

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

.team-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.team-initial {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-dune);
  line-height: 1;
  margin-bottom: 1rem;
}

.team-name { font-size: 1.5rem; color: var(--color-ink); margin-bottom: 0.25rem; }
.team-role { font-size: 0.875rem; color: var(--color-tide); font-weight: 500; margin-bottom: 1rem; letter-spacing: 0.03em; }
.team-bio { color: var(--color-mist); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.25rem; }

.team-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tag {
  background: var(--color-foam);
  color: var(--color-ocean);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.waarde-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.waarde-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.waarde-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.waarde-title { font-size: 1.25rem; color: var(--color-ocean); margin-bottom: 0.5rem; }
.waarde-card p { font-size: 0.9375rem; color: var(--color-mist); line-height: 1.65; }

/* ============================================================
   13. Ons werk — CSS Illustraties
   ============================================================ */
.branche-werk-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.branche-werk-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.branche-werk-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.branche-illustratie {
  height: 220px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Bouw & Ambacht — diagonal gradient bars */
.illustratie-bouw { background: #1A1A2E; }
.illustratie-bouw::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, transparent 0%,   transparent 20%, #D4A017 20%, #D4A017 27%, transparent 27%),
    linear-gradient(145deg, transparent 32%,  transparent 46%, rgba(255,255,255,0.1) 46%, rgba(255,255,255,0.1) 51%, transparent 51%),
    linear-gradient(145deg, transparent 55%,  transparent 67%, #D4A017 67%, #D4A017 76%, transparent 76%),
    linear-gradient(145deg, transparent 78%,  transparent 86%, rgba(255,255,255,0.07) 86%, rgba(255,255,255,0.07) 91%, transparent 91%);
  opacity: 0.9;
}

/* Horeca & Restaurant — circles + warm glow */
.illustratie-horeca { background: #2C1810; }
.illustratie-horeca::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 50px solid rgba(196,98,45,0.45);
  border-radius: 50%;
  bottom: -90px;
  left: -70px;
}
.illustratie-horeca::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 25% 80%, rgba(196,98,45,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 72% 28%, rgba(245,230,211,0.16) 0%, transparent 70%),
    radial-gradient(circle 50px at 68% 72%, rgba(196,98,45,0.55) 0%, transparent 100%);
}

/* Zakelijke Dienstverlening — grid lines + accent block */
.illustratie-zakelijk { background: #F0F4F8; }
.illustratie-zakelijk::before {
  content: '';
  position: absolute;
  top: 35px; left: 24px;
  width: 130px; height: 36px;
  background: rgba(28,58,94,0.13);
  border-radius: 6px;
  box-shadow: 0 24px 0 rgba(28,58,94,0.07), 0 48px 0 rgba(28,58,94,0.05);
}
.illustratie-zakelijk::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,  transparent, transparent 33px, rgba(28,58,94,0.07) 33px, rgba(28,58,94,0.07) 34px),
    repeating-linear-gradient(90deg, transparent, transparent 52px, rgba(28,58,94,0.04) 52px, rgba(28,58,94,0.04) 53px);
}

/* Retail & Webshop */
.illustratie-retail {
  background: #E8F4E8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.5rem;
}

.retail-card {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(74,124,89,0.18);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 64px;
}
.retail-card-thumb { background: #4A7C59; opacity: 0.22; height: 50px; }
.retail-card-body { padding: 0.4rem; }
.retail-card-line { height: 5px; border-radius: 3px; background: rgba(74,124,89,0.2); margin-bottom: 4px; }
.retail-card-line-short { width: 65%; }
.retail-card-price { height: 5px; border-radius: 3px; background: #F4D03F; width: 55%; }

.branche-pill {
  display: inline-flex;
  align-items: center;
  background: var(--color-foam);
  color: var(--color-ocean);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.branche-werk-body { padding: 1.75rem; }
.branche-werk-title { font-size: 1.375rem; color: var(--color-ink); margin-bottom: 0.75rem; }
.branche-werk-desc { color: var(--color-mist); font-size: 0.9375rem; line-height: 1.65; margin-bottom: 1.125rem; }

.branche-checklist { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.branche-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}
.branche-checklist li::before { content: '✓'; color: var(--color-tide); font-weight: 600; flex-shrink: 0; }

/* ============================================================
   14. Diensten
   ============================================================ */
.pakketten-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.pakket-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pakket-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.pakket-card.highlighted {
  background: var(--color-ocean);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.pakket-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dune);
  color: var(--color-ink);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 0.3rem 1.125rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pakket-name { font-size: 1.375rem; margin-bottom: 0.25rem; }
.pakket-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  margin: 0.25rem 0 0.25rem;
  letter-spacing: -0.03em;
}
.pakket-card.highlighted .pakket-price { color: var(--color-dune); }
.pakket-price-sub { font-size: 1rem; font-weight: 400; opacity: 0.65; }

.pakket-divider {
  border: none;
  border-top: 1px solid rgba(201,185,154,0.35);
  margin: 1.25rem 0;
}
.pakket-card.highlighted .pakket-divider { border-color: rgba(255,255,255,0.18); }

.pakket-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pakket-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.pakket-feature::before { content: '✓'; color: var(--color-tide); font-weight: 600; flex-shrink: 0; margin-top: 1px; }
.pakket-card.highlighted .pakket-feature { color: rgba(255,255,255,0.88); }
.pakket-card.highlighted .pakket-feature::before { color: var(--color-dune); }

.pakket-note { text-align: center; color: var(--color-mist); font-size: 0.875rem; margin-top: 2rem; font-style: italic; }

/* Inbegrepen */
.inbegrepen-grid { display: grid; grid-template-columns: 1fr; gap: 0.875rem; }
.inbegrepen-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  font-size: 0.9375rem;
}
.inbegrepen-item::before { content: '✓'; color: var(--color-tide); font-weight: 700; font-size: 1.0625rem; flex-shrink: 0; }

/* Werkwijze */
.werkwijze-steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.step-item { display: flex; gap: 1.125rem; align-items: flex-start; }
.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-ocean);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.step-title { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-ink); margin-bottom: 0.2rem; }
.step-desc { color: var(--color-mist); font-size: 0.875rem; }

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

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-ocean); }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-foam);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--color-ocean);
  transition: transform var(--transition);
  line-height: 1;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--color-mist); font-size: 0.9375rem; line-height: 1.75; }

/* ============================================================
   15. Offerte
   ============================================================ */
.offerte-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; }

.offerte-form-card {
  background: var(--color-white);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-section-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-tide);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,185,154,0.35);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }

.form-label { font-size: 0.875rem; font-weight: 500; color: var(--color-ink); }

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(201,185,154,0.55);
  border-radius: 10px;
  background: var(--color-foam);
  color: var(--color-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-tide);
  box-shadow: 0 0 0 3px rgba(46,95,138,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.form-checkbox-item, .form-radio-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-ink);
  cursor: pointer;
}
.form-checkbox-item input[type="checkbox"],
.form-radio-item input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-ocean);
  cursor: pointer;
  flex-shrink: 0;
}
.form-radio-group { display: flex; flex-direction: column; gap: 0.5rem; }

.conditional-field { display: none; margin-top: 0.75rem; }
.conditional-field.visible { display: block; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 50px;
  background: var(--color-ocean);
  color: var(--color-white);
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
}
.btn-submit:hover { background: var(--color-tide); transform: translateY(-2px); }
.btn-submit:disabled { background: var(--color-mist); cursor: not-allowed; transform: none; }
.btn-submit.sent { background: #16a34a; }

.form-success-banner {
  display: none;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #15803d;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.form-success-banner.visible { display: block; }

.offerte-info { padding: 0.5rem 0; }
.offerte-info-title { font-size: 1.25rem; color: var(--color-ink); margin-bottom: 1.25rem; }

.offerte-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.offerte-step { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9375rem; }
.offerte-step-icon { font-size: 1.125rem; flex-shrink: 0; margin-top: 1px; }
.offerte-step-text strong { display: block; color: var(--color-ink); font-weight: 500; }
.offerte-step-text span { color: var(--color-mist); font-size: 0.875rem; }

.offerte-contact-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.offerte-contact-title { font-size: 1rem; color: var(--color-ocean); margin-bottom: 1rem; }
.offerte-contact-list { display: flex; flex-direction: column; gap: 0.6rem; }
.offerte-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-mist);
}
.offerte-contact-item a { color: var(--color-tide); transition: color var(--transition); }
.offerte-contact-item a:hover { color: var(--color-ocean); }

/* ============================================================
   16. Contact
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }

.contact-cards-col { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-card-title { font-size: 1.0625rem; color: var(--color-ocean); margin-bottom: 0.2rem; }
.contact-card-value { color: var(--color-ink); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.3rem; }
.contact-card-desc { color: var(--color-mist); font-size: 0.8125rem; margin-bottom: 1rem; line-height: 1.5; }

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--color-ink); }

.team-compact-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.team-compact-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-compact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-compact-initial {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dune);
  width: 56px;
  height: 56px;
  background: var(--color-foam);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.team-compact-name { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-ink); margin-bottom: 0.15rem; }
.team-compact-role { font-size: 0.8125rem; color: var(--color-mist); margin-bottom: 0.3rem; }
.team-compact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-tide);
  font-size: 0.8125rem;
  transition: gap var(--transition);
}
.team-compact-link:hover { gap: 0.5rem; }

/* ============================================================
   17. Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-stagger {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   18. Responsive
   ============================================================ */
@media (min-width: 480px) {
  .contact-bar-phone { display: flex; }
  .contact-bar .container { justify-content: space-between; }
}

@media (min-width: 640px) {
  .contact-bar-social { display: flex; }
  .branche-grid { grid-template-columns: repeat(2, 1fr); }
  .diensten-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .waarden-grid { grid-template-columns: repeat(3, 1fr); }
  .branche-werk-grid { grid-template-columns: repeat(2, 1fr); }
  .pakketten-grid { grid-template-columns: repeat(3, 1fr); }
  .inbegrepen-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .team-compact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  section { padding: 5.5rem 0; }
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .hero-two-col { grid-template-columns: 1fr 1fr; }
  .hero-illustration { display: flex; align-items: center; justify-content: center; }
  .verhaal-grid { grid-template-columns: 1.25fr 0.75fr; }
  .offerte-layout { grid-template-columns: 1.4fr 0.6fr; }
  .contact-layout { grid-template-columns: 0.85fr 1.15fr; }
  .footer-grid { grid-template-columns: 1.2fr 0.85fr 1fr; }
  .custom-cursor { display: block; }
  .werkwijze-steps { grid-template-columns: repeat(4, 1fr); }
  .ipad-frame { width: 460px !important; }
  .ipad-screen {
    height: 370px !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  .hero-ipad {
    transform: rotateX(10deg) rotateY(-20deg) rotateZ(3deg) !important;
    filter: drop-shadow(-28px 40px 50px rgba(61,107,87,0.35)) !important;
    -webkit-transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .hero-ipad-wrap:hover .hero-ipad {
    transform: rotateX(6deg) rotateY(-12deg) rotateZ(1.5deg) !important;
  }
}

/* ============================================================
   ONS-WERK — TAB SECTION  (.ow-*)
   ============================================================ */

.ow-tabs-section { padding-bottom: 0; }

/* Tab navigation */
.ow-tab-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 2rem;
  background: var(--color-sand);
  border-radius: 14px;
  padding: 0.4rem;
}
.ow-tab-btn {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.65rem 0.75rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: transparent;
  color: var(--color-ink);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.ow-tab-btn:hover { background: #E8F0E8; }
.ow-tab-btn.active {
  background: #3D6B57;
  color: #fff;
}

/* Tab panels */
.ow-tab-panel { display: none; }
.ow-tab-panel.active {
  display: block;
  animation: owFadeIn 0.32s ease;
}
@keyframes owFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* Panel inner layout */
.ow-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3.5rem;
}

/* Browser chrome */
.ow-browser {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(28,58,94,0.14);
  background: #fff;
  border: 1px solid rgba(28,58,94,0.08);
}
.ow-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.9rem;
  background: #EBEBEB;
  border-bottom: 1px solid #DEDEDE;
}
.ow-browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.ow-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.ow-dot-red    { background: #FF5F57; }
.ow-dot-yellow { background: #FEBC2E; }
.ow-dot-green  { background: #28C840; }
.ow-browser-url {
  flex: 1;
  background: #fff;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-family: var(--font-body);
  color: #777;
  text-align: center;
  border: 1px solid #DEDEDE;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ow-browser-inner {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--color-dune) transparent;
}
.ow-browser-inner::-webkit-scrollbar { width: 5px; }
.ow-browser-inner::-webkit-scrollbar-track { background: transparent; }
.ow-browser-inner::-webkit-scrollbar-thumb { background: var(--color-dune); border-radius: 3px; }

/* Panel info block */
.ow-panel-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.ow-info-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--color-ocean);
  margin: 0;
  line-height: 1.15;
}
.ow-info-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-mist);
  margin: 0;
}
.ow-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ow-features li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink);
  padding-left: 1.5rem;
  position: relative;
}
.ow-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-tide);
  font-weight: 700;
}

/* ============================================================
   MOCK SITE — HORECA  (.mh-*)
   ============================================================ */
.mh-site { font-family: Georgia, serif; background: #FCF8F3; }
.mh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  background: #2C1810;
}
.mh-logo {
  font-style: italic;
  font-size: 1rem;
  color: #F5E6D3;
  letter-spacing: 0.03em;
}
.mh-nav-links {
  display: flex;
  gap: 0.9rem;
  font-family: sans-serif;
  font-size: 0.7rem;
  color: rgba(245,230,211,0.7);
}
.mh-hero {
  background: linear-gradient(160deg, #2C1810 55%, #4A2018);
  padding: 1.8rem 1.2rem 2.2rem;
}
.mh-hero-tag {
  font-size: 0.65rem;
  font-family: sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4622D;
  margin-bottom: 0.55rem;
}
.mh-hero-title {
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #F5E6D3;
  margin-bottom: 0.55rem;
}
.mh-hero-sub {
  font-size: 0.78rem;
  font-family: sans-serif;
  line-height: 1.55;
  color: rgba(245,230,211,0.72);
  margin-bottom: 1rem;
  max-width: 340px;
}
.mh-hero-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.mh-btn {
  display: inline-block;
  font-family: sans-serif;
  font-size: 0.7rem;
  padding: 0.42rem 0.85rem;
  border-radius: 4px;
  cursor: default;
}
.mh-btn-primary { background: #C4622D; color: #fff; }
.mh-btn-outline  { background: transparent; color: #F5E6D3; border: 1px solid rgba(245,230,211,0.35); }
.mh-dishes { padding: 1.4rem 1.2rem; background: #FCF8F3; }
.mh-section-title {
  font-style: italic;
  font-size: 1rem;
  color: #2C1810;
  margin-bottom: 0.8rem;
}
.mh-dishes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; }
.mh-dish { border-radius: 6px; overflow: hidden; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
.mh-dish-img { height: 58px; }
.mh-dish-1 { background: linear-gradient(135deg, #8B4513, #C4622D); }
.mh-dish-2 { background: linear-gradient(135deg, #D4662C, #F4A460); }
.mh-dish-3 { background: linear-gradient(135deg, #6B3A2A, #8B5E52); }
.mh-dish-info { padding: 0.35rem 0.5rem; }
.mh-dish-name  { font-size: 0.62rem; font-family: sans-serif; color: #2C1810; margin-bottom: 2px; }
.mh-dish-price { font-size: 0.68rem; font-weight: bold; color: #C4622D; font-family: sans-serif; }
.mh-reservation {
  background: #2C1810;
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.mh-reservation-title { font-style: italic; font-size: 0.95rem; color: #F5E6D3; margin-bottom: 0.35rem; }
.mh-reservation-sub   { font-size: 0.72rem; font-family: sans-serif; color: rgba(245,230,211,0.62); margin-bottom: 0.8rem; }

/* ============================================================
   MOCK SITE — BOUW  (.mb-*)
   ============================================================ */
.mb-site { font-family: sans-serif; background: #F8F8F8; }
.mb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  background: #1A1A2E;
}
.mb-logo { font-size: 0.9rem; font-weight: 700; color: #D4A017; letter-spacing: 0.06em; text-transform: uppercase; }
.mb-nav-links { display: flex; gap: 0.9rem; font-size: 0.7rem; color: rgba(255,255,255,0.65); }
.mb-hero {
  background: #1A1A2E;
  padding: 1.8rem 1.2rem 2.2rem;
  position: relative;
  overflow: hidden;
}
.mb-hero::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,160,23,0.2), transparent 70%);
}
.mb-hero-tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #D4A017; margin-bottom: 0.45rem; }
.mb-hero-title { font-size: 1.45rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 0.5rem; }
.mb-hero-sub { font-size: 0.76rem; color: rgba(255,255,255,0.62); line-height: 1.5; margin-bottom: 1rem; max-width: 320px; }
.mb-btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.42rem 0.95rem;
  border-radius: 4px;
  cursor: default;
  background: #D4A017;
  color: #1A1A2E;
}
.mb-btn-outline { background: transparent; color: #D4A017; border: 1px solid #D4A017; font-weight: 600; }
.mb-services { padding: 1.2rem; background: #F8F8F8; }
.mb-services-title { font-size: 0.78rem; font-weight: 700; color: #1A1A2E; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.7rem; }
.mb-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.mb-service {
  background: #fff;
  border-radius: 6px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border-top: 3px solid #D4A017;
}
.mb-service-icon { font-size: 1.15rem; margin-bottom: 0.2rem; }
.mb-service-name { font-size: 0.62rem; font-weight: 600; color: #1A1A2E; }
.mb-stats {
  display: flex;
  background: #1A1A2E;
  padding: 0.7rem 1.2rem;
}
.mb-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 0.6rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  gap: 2px;
}
.mb-stat:last-child { border-right: none; }
.mb-stat-num { font-size: 1.05rem; font-weight: 700; color: #D4A017; }
.mb-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  background: #EFEFEF;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mb-cta-text { font-size: 0.78rem; font-weight: 600; color: #1A1A2E; }

/* ============================================================
   MOCK SITE — ZAKELIJK  (.mz-*)
   ============================================================ */
.mz-site { font-family: sans-serif; background: #EEF2F7; }
.mz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  background: #fff;
  border-bottom: 1px solid #DDE4EC;
  box-shadow: 0 1px 4px rgba(28,58,94,0.06);
}
.mz-logo { font-size: 0.95rem; font-weight: 700; color: #1C3A5E; }
.mz-nav-links { display: flex; gap: 0.9rem; font-size: 0.7rem; color: #4B6480; }
.mz-hero {
  background: linear-gradient(135deg, #1C3A5E, #2E5F8A);
  padding: 1.8rem 1.2rem 2.2rem;
}
.mz-hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.35rem; }
.mz-hero-title { font-size: 1.35rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 0.5rem; }
.mz-hero-sub { font-size: 0.76rem; color: rgba(255,255,255,0.68); line-height: 1.55; margin-bottom: 1rem; max-width: 340px; }
.mz-btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.42rem 0.95rem;
  border-radius: 4px;
  cursor: default;
  background: #fff;
  color: #1C3A5E;
}
.mz-btn-inv { background: #1C3A5E; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.mz-pillars { padding: 1.2rem; background: #EEF2F7; }
.mz-pillars-title { font-size: 0.78rem; font-weight: 700; color: #1C3A5E; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.7rem; }
.mz-pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
.mz-pillar {
  background: #fff;
  border-radius: 7px;
  padding: 0.7rem 0.55rem;
  box-shadow: 0 2px 8px rgba(28,58,94,0.07);
}
.mz-pillar-icon  { font-size: 1.05rem; margin-bottom: 0.2rem; }
.mz-pillar-name  { font-size: 0.65rem; font-weight: 700; color: #1C3A5E; margin-bottom: 0.15rem; }
.mz-pillar-desc  { font-size: 0.58rem; color: #6B7280; line-height: 1.35; }
.mz-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  background: #1C3A5E;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mz-cta-text { font-size: 0.78rem; font-weight: 600; color: #fff; }

/* ============================================================
   MOCK SITE — RETAIL  (.mr-*)
   ============================================================ */
.mr-site { font-family: sans-serif; background: #F9F9F9; }
.mr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.2rem;
  background: #fff;
  border-bottom: 1px solid #EEE;
}
.mr-logo { font-size: 0.95rem; font-weight: 700; color: #2D2D2D; letter-spacing: 0.05em; }
.mr-nav-links { display: flex; gap: 0.7rem; font-size: 0.7rem; color: #555; align-items: center; }
.mr-cart {
  background: #4A7C59;
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.62rem;
  font-weight: 600;
}
.mr-banner {
  background: #4A7C59;
  color: #fff;
  text-align: center;
  font-size: 0.68rem;
  padding: 0.3rem 1rem;
  letter-spacing: 0.02em;
}
.mr-products { padding: 1.2rem; }
.mr-products-title { font-size: 0.82rem; font-weight: 700; color: #2D2D2D; margin-bottom: 0.7rem; }
.mr-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.55rem; }
.mr-product {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 7px rgba(0,0,0,0.07);
  position: relative;
}
.mr-product-img { height: 68px; width: 100%; }
.mr-product-1 { background: linear-gradient(145deg, #E8B4A0, #D4826A); }
.mr-product-2 { background: linear-gradient(145deg, #A8C5B5, #7BA898); }
.mr-product-3 { background: linear-gradient(145deg, #E8D4A0, #D4B86A); }
.mr-product-name  { font-size: 0.62rem; font-weight: 600; color: #2D2D2D; padding: 0.38rem 0.5rem 0.1rem; }
.mr-product-price { font-size: 0.68rem; color: #2D2D2D; padding: 0 0.5rem 0.28rem; font-weight: 600; }
.mr-sale del { font-weight: 400; color: #999; font-size: 0.58rem; margin-left: 3px; }
.mr-product-badge {
  position: absolute;
  top: 5px; right: 5px;
  background: #E53E3E;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.mr-btn-add {
  display: block;
  margin: 0 0.5rem 0.45rem;
  background: #4A7C59;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 600;
  text-align: center;
  padding: 0.22rem;
  border-radius: 3px;
  cursor: default;
}
.mr-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2D2D2D;
  padding: 0.85rem 1.2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mr-cta-text { font-size: 0.78rem; font-weight: 600; color: #fff; }
.mr-btn {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.38rem 0.85rem;
  border-radius: 4px;
  cursor: default;
  background: #4A7C59;
  color: #fff;
}

/* ============================================================
   ONS-WERK — RESPONSIVE
   ============================================================ */

@media (min-width: 640px) {
  .ow-tab-nav { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .ow-panel-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3rem;
  }
}

/* ============================================================
   HERO — ROTATING BROWSER MOCKUP  (.hib-*)
   ============================================================ */

.hero-illustration-browser {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(61,107,87,0.20);
  overflow: hidden;
  background: #fff;
  border: 1px solid #D4E8DA;
  display: flex;
  flex-direction: column;
}
.hib-chrome {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.85rem;
  height: 36px;
  background: #E8E8E8;
  border-bottom: 1px solid #D5D5D5;
  flex-shrink: 0;
}
.hib-dots { display: flex; gap: 5px; flex-shrink: 0; }
.hib-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.hib-dot-red    { background: #FF5F57; }
.hib-dot-yellow { background: #FEBC2E; }
.hib-dot-green  { background: #28C840; }
.hib-url {
  flex: 1;
  background: #fff;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-family: var(--font-body);
  color: #777;
  text-align: center;
  border: 1px solid #D5D5D5;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.hib-inner {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.hib-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hib-preview.active {
  opacity: 1;
  pointer-events: auto;
}
.hib-products-4 { grid-template-columns: repeat(4, 1fr); }
.hib-products-4 .mr-product-img { height: 52px; }
.hib-products-4 .mr-btn-add { display: none; }
.hib-pillars-2 { grid-template-columns: repeat(2, 1fr); }
.hib-dots-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
  background: #E8E8E8;
  border-top: 1px solid #D5D5D5;
  flex-shrink: 0;
}
.hib-dot-nav {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #8FB5A0;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hib-dot-nav.active {
  background: #D4A855;
  transform: scale(1.3);
}
.hib-dot-nav:hover:not(.active) { background: var(--color-tide); }

@media (min-width: 1024px) {
  .hero-illustration-browser {
    margin: 0;
    align-self: center;
  }
}

/* =============================================
   HERO DUNES ACHTERGROND
   ============================================= */

.hero-dunes-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hdb-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hdb-layer-1 { animation: duneFloat1 8s ease-in-out infinite alternate; }
.hdb-layer-2 { animation: duneFloat2 10s ease-in-out infinite alternate; }
.hdb-layer-3 { animation: duneFloat3 12s ease-in-out infinite alternate; }
.hdb-layer-4 { animation: duneFloat1 9s ease-in-out infinite alternate-reverse; }
.hdb-layer-5 { animation: duneFloat2 11s ease-in-out infinite alternate-reverse; }

@keyframes duneFloat1 {
  from { transform: translateY(0px) scaleX(1); }
  to   { transform: translateY(-6px) scaleX(1.01); }
}
@keyframes duneFloat2 {
  from { transform: translateY(0px); }
  to   { transform: translateY(-4px) scaleX(0.99); }
}
@keyframes duneFloat3 {
  from { transform: translateY(0px); }
  to   { transform: translateY(-8px) scaleX(1.02); }
}

/* =============================================
   HERO IPAD MOCKUP
   ============================================= */

.hero-ipad-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  perspective-origin: 50% 40%;
  will-change: transform;
  position: relative;
  z-index: 10;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-ipad {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: rotateX(12deg) rotateY(-18deg) rotateZ(3deg);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(-20px 30px 40px rgba(61,107,87,0.25));
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-ipad-wrap:hover .hero-ipad {
  transform: rotateX(8deg) rotateY(-12deg) rotateZ(2deg);
}

/* iPad frame */
.ipad-frame {
  background: #E8E8E8;
  border-radius: 24px;
  padding: 10px 10px 16px;
  width: 380px;
  box-shadow:
    inset 0 0 0 2px #D0D0D0,
    0 2px 4px rgba(0,0,0,0.15),
    8px 8px 0px rgba(0,0,0,0.08);
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Top bar met camera */
.ipad-top-bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.ipad-camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C0C0C0;
  border: 1px solid #B0B0B0;
}

/* Scherm */
.ipad-screen {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 320px;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* URL balk bovenaan scherm */
.ipad-url-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: #F5F5F5;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.ipad-url-text {
  font-family: var(--font-body);
  font-size: 10px;
  color: #888;
  transition: opacity 0.3s ease;
}

/* Onderkant met home button */
.ipad-bottom-bar {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.ipad-home-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #D8D8D8;
  border: 1px solid #C8C8C8;
}

/* Previews in het scherm */
.hib-inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 28px;
}

.hib-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

.hib-preview.active {
  opacity: 1;
}

/* === PREVIEW 1: HORECA (iPad) === */
.mh-nav {
  background: #1C0A00;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mh-logo {
  font-family: 'Cormorant Garamond', serif;
  color: #F5E6D3;
  font-size: 14px;
  font-weight: 600;
}
.mh-nav-links {
  font-size: 9px;
  color: #C4A882;
}
.mh-hero {
  background: linear-gradient(160deg, #1C0A00, #3D1C0A);
  padding: 16px 12px 0;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}
.mh-hero-content { position: relative; z-index: 2; }
.mh-label { font-size: 8px; color: #C4622D; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 4px; }
.mh-title { font-family: 'Cormorant Garamond', serif; color: white; font-size: 18px; margin: 0 0 4px; }
.mh-sub { font-size: 9px; color: #F5E6D3; margin: 0 0 10px; }
.mh-btn { background: #8B2E2E; color: white; border: none; border-radius: 20px; padding: 6px 14px; font-size: 9px; cursor: pointer; }
.mh-deco { position: absolute; bottom: 0; left: 0; right: 0; }
.mh-deco svg { width: 100%; height: 60px; display: block; }
.mh-menu-strip { background: #FAF3E8; padding: 10px 12px; }
.mh-menu-item { display: flex; justify-content: space-between; font-size: 9px; color: #3D1C0A; padding: 3px 0; border-bottom: 1px solid #F0E4D0; }

/* === PREVIEW 2: BOUW (iPad) === */
.mb-nav {
  background: #0F1923;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mb-logo { font-size: 11px; font-weight: 800; color: white; letter-spacing: 1px; }
.mb-nav-links { font-size: 9px; color: #8899AA; }
.mb-hero {
  background: #0F1923;
  padding: 16px 12px 12px;
  min-height: 140px;
  position: relative;
}
.mb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(255,255,255,0.015) 18px, rgba(255,255,255,0.015) 36px);
}
.mb-label { font-size: 8px; color: #D4A017; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 4px; }
.mb-title { font-family: 'Cormorant Garamond', serif; color: white; font-size: 20px; margin: 0 0 4px; }
.mb-sub { font-size: 9px; color: #8899AA; margin: 0 0 10px; }
.mb-btn { background: #D4A017; color: #0F1923; border: none; border-radius: 20px; padding: 6px 14px; font-size: 9px; font-weight: 700; cursor: pointer; }
.mb-stats { background: #162230; padding: 10px 12px; display: flex; justify-content: space-around; }
.mb-stat { text-align: center; }
.mb-stat strong { display: block; font-size: 14px; color: #D4A017; font-weight: 800; }
.mb-stat span { font-size: 8px; color: #8899AA; }

/* === PREVIEW 3: ZAKELIJK (iPad) === */
.mz-nav {
  background: white;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
}
.mz-logo { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: #1C3A5E; font-weight: 700; }
.mz-logo em { font-weight: 400; font-style: normal; }
.mz-nav-links { font-size: 9px; color: #6B7280; }
.mz-hero {
  background: linear-gradient(135deg, #F0F4F8, #E8EEF5);
  padding: 16px 12px 12px;
  min-height: 200px;
}
.mz-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: #1C3A5E; margin: 0 0 6px; line-height: 1.3; }
.mz-sub { font-size: 9px; color: #5A6473; margin: 0 0 10px; line-height: 1.4; }
.mz-btn { background: #1C3A5E; color: white; border: none; border-radius: 20px; padding: 6px 14px; font-size: 9px; cursor: pointer; margin-bottom: 10px; display: block; }
.mz-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.mz-badges span { background: white; border-radius: 20px; padding: 3px 8px; font-size: 8px; color: #1C3A5E; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }

/* === PREVIEW 4: RETAIL (iPad) === */
.mr-nav {
  background: white;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
}
.mr-logo { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: #2D5A3D; font-weight: 700; }
.mr-logo em { font-weight: 300; font-style: normal; }
.mr-nav-links { font-size: 9px; color: #4A7C59; }
.mr-hero {
  background: linear-gradient(135deg, #E8F4E8, #F0F8F0);
  padding: 12px 12px 8px;
}
.mr-title { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: #2D5A3D; margin: 0 0 4px; }
.mr-sub { font-size: 9px; color: #4A7C59; margin: 0 0 8px; }
.mr-btn { background: #2D5A3D; color: white; border: none; border-radius: 20px; padding: 5px 12px; font-size: 9px; cursor: pointer; margin-bottom: 10px; }
.mr-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px 12px;
  background: #FAFAFA;
}
.mr-product {
  border-radius: 8px;
  padding: 10px 8px 8px;
  text-align: center;
  position: relative;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.mr-product span {
  display: block;
  font-size: 9px;
  color: #2D5A3D;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.mr-product strong {
  font-size: 10px;
  color: #1A3A26;
}
.mr-sale::after { content: 'Sale'; position: absolute; top: 4px; right: 4px; background: #E53E3E; color: white; font-size: 7px; padding: 1px 4px; border-radius: 3px; }

/* Dot nav (iPad) */
.hib-dot-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}
.hib-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #8FB5A0;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  padding: 0;
}
.hib-dot.active {
  background: #D4A855;
  transform: scale(1.3);
}

/* Responsive: op mobiel geen 3D transform */
@media (max-width: 768px) {
  .hero-ipad {
    transform: none;
    filter: drop-shadow(0 10px 30px rgba(61,107,87,0.20));
  }
  .ipad-frame {
    width: 300px;
  }
  .ipad-screen {
    height: 260px;
  }
}

/* CTA demo tekst */
.cta-demo-text {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-top: 16px;
}
.cta-demo-text a {
  color: #D4A855;
  text-decoration: underline;
}

/* =============================================
   FIX 2 — HERO BADGE FEATURED
   ============================================= */
.hero-badge-featured {
  background: #D4A855 !important;
  color: #1A2E1E !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 10px 20px !important;
  border-color: #C49840 !important;
}

/* =============================================
   FIX 1 — RETAIL MOCKUP (iPad preview)
   ============================================= */
.mr-nav { background: white; padding: 6px 10px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #E5E7EB; }
.mr-logo { font-family: 'Cormorant Garamond', serif; font-size: 12px; color: #2D5A3D; font-weight: 700; }
.mr-logo em { font-weight: 300; font-style: normal; }
.mr-nav-links { font-size: 8px; color: #4A7C59; }
.mr-announcement { background: #2D5A3D; color: white; text-align: center; font-size: 8px; padding: 4px; }
.mr-body { padding: 8px 10px; background: #FAFAFA; }
.mr-section-title { font-size: 9px; font-weight: 700; color: #1A3A26; margin-bottom: 8px; }
.mr-products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; width: 100%; margin-bottom: 8px; }
.mr-product-card { background: white; border-radius: 6px; overflow: hidden; position: relative; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.mr-product-img { height: 55px; width: 100%; }
.mr-product-info { padding: 4px 6px 5px; }
.mr-product-name { display: block; font-size: 8px; color: #2D5A3D; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mr-product-price { display: block; font-size: 8px; color: #1A3A26; margin: 2px 0; }
.mr-product-price s { color: #9CA3AF; font-size: 7px; }
.mr-add-btn { background: #2D5A3D; color: white; border: none; border-radius: 3px; padding: 2px 6px; font-size: 7px; cursor: pointer; width: 100%; }
.mr-sale-badge { position: absolute; top: 4px; right: 4px; background: #E53E3E; color: white; font-size: 7px; padding: 1px 4px; border-radius: 3px; z-index: 2; }
.mr-footer-bar { background: #1A3A26; color: white; display: flex; justify-content: space-between; align-items: center; padding: 5px 8px; border-radius: 4px; }
.mr-footer-bar span { font-size: 7px; }
.mr-shop-btn { background: #4A7C59; color: white; border: none; border-radius: 3px; padding: 3px 8px; font-size: 7px; cursor: pointer; }

.hero-ipad-wrap { transform: translateZ(0); -webkit-transform: translateZ(0); }
.ipad-frame { transform: translateZ(0); backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.ipad-screen { -webkit-font-smoothing: antialiased; image-rendering: -webkit-optimize-contrast; }

/* =============================================
   CTA GOLF OVERGANG
   ============================================= */
.cta-wave-divider {
  margin-bottom: -2px;
  line-height: 0;
  overflow: hidden;
}
.cta-wave-svg {
  width: 100%;
  height: 80px;
  display: block;
  animation: cta-wave-move 6s ease-in-out infinite alternate;
}
@keyframes cta-wave-move {
  from { d: path("M0,40 C240,80 480,10 720,50 C960,85 1200,20 1440,45 L1440,80 L0,80 Z"); }
  to   { d: path("M0,50 C240,15 480,75 720,35 C960,10 1200,65 1440,30 L1440,80 L0,80 Z"); }
}
