/* =====================================================================
   BEZWAARBRIEFEXPERT — PREMIUM REDESIGN LAYER
   Laadt na style.css en de Customizer-kleuren. Overschrijft het
   design system met een verfijnde, juridisch-professionele uitstraling.
   Geen gefabriceerde content; puur vormgeving.
   ===================================================================== */

:root {
  /* Kleur: diep navy-inkt + verfijnd goud + warme neutralen */
  --color-primary: #B0893B;          /* verfijnd goud */
  --color-primary-light: #C9A455;
  --color-primary-dark: #8F6E2C;
  --color-secondary: #0E2436;        /* diep navy */
  --color-ink: #122A3F;
  --color-ink-soft: #21405A;
  --color-bg: #FBFAF7;               /* warm wit */
  --color-bg-alt: #F3F0E9;           /* zacht zand */
  --color-surface: #FFFFFF;
  --color-text: #25303A;
  --color-text-light: #586673;
  --color-border: #E7E1D4;
  --color-border-soft: #EFEAE0;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(14,36,54,0.05);
  --shadow-sm: 0 4px 16px rgba(14,36,54,0.06);
  --shadow: 0 12px 32px rgba(14,36,54,0.08);
  --shadow-hover: 0 22px 48px rgba(14,36,54,0.14);
  --shadow-gold: 0 12px 28px rgba(176,137,59,0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------------
   BASIS
   --------------------------------------------------------------------- */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.72;
  font-size: 1.02rem;
  letter-spacing: 0.005em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  letter-spacing: -0.01em;
  line-height: 1.18;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }

.container { max-width: var(--max-width); padding: 0 28px; }

::selection { background: var(--color-primary); color: #fff; }

/* Eyebrow / subtitle */
.section-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  position: relative;
  padding-left: 34px;
  margin-bottom: 0.9rem;
}
.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transform: translateY(-50%);
}
.section-header { max-width: 680px; margin: 0 auto 56px; }
.section-header .section-subtitle { padding-left: 0; }
.section-header .section-subtitle::before { display: none; }
.section-desc { color: var(--color-text-light); font-size: 1.08rem; line-height: 1.7; }

/* ---------------------------------------------------------------------
   KNOPPEN
   --------------------------------------------------------------------- */
.btn {
  border-radius: var(--radius-pill);
  padding: 15px 34px;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 55%, var(--color-primary-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(176,137,59,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border-color: rgba(14,36,54,0.22);
}
.btn-outline:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------------------------------------------------------------------
   HEADER
   --------------------------------------------------------------------- */
.site-header {
  background: rgba(251,250,247,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(251,250,247,0.96);
  border-bottom-color: var(--color-border-soft);
  box-shadow: 0 8px 30px rgba(14,36,54,0.07);
}
.header-inner { padding: 18px 28px; }
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--color-secondary);
  letter-spacing: -0.01em;
}
.main-nav ul { gap: 34px; }
.main-nav a {
  color: var(--color-ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.main-nav a::after { height: 2px; bottom: -4px; background: var(--color-primary); }
.main-nav .menu-cta a {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  color: #fff;
  padding: 11px 26px;
  box-shadow: var(--shadow-gold);
}
.main-nav .menu-cta a:hover { transform: translateY(-2px); color: #fff; }
.menu-toggle span { background: var(--color-secondary); }

/* ---------------------------------------------------------------------
   HERO  (werkt mooi met én zonder afbeelding)
   --------------------------------------------------------------------- */
.hero {
  padding-top: 150px;
  padding-bottom: 90px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(176,137,59,0.10) 0%, transparent 45%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}
.hero::before {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(176,137,59,0.10) 0%, transparent 70%);
  top: -38%; right: -16%;
}
.hero .container { gap: 64px; align-items: center; }
.hero-content h1 {
  font-size: clamp(2.6rem, 4.6vw, 3.7rem);
  margin-bottom: 1.4rem;
  color: var(--color-secondary);
}
.hero-content h1 em,
.hero-content h1 .accent { color: var(--color-primary-dark); font-style: normal; }
.hero-content p {
  font-size: 1.16rem;
  color: var(--color-text-light);
  max-width: 540px;
  margin-bottom: 2.2rem;
}
.hero-buttons { gap: 14px; }

/* 24-uur sellingpoint badge in hero */
.hero-usp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 12px 20px 12px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(176,137,59,0.16), rgba(176,137,59,0.07));
  border: 1px solid rgba(176,137,59,0.32);
  color: var(--color-ink);
  font-size: 0.96rem;
  line-height: 1.4;
}
.hero-usp svg { width: 22px; height: 22px; color: var(--color-primary-dark); flex-shrink: 0; }
.hero-usp strong { color: var(--color-primary-dark); }

/* Trust-rij onder hero-knoppen (feitelijk, geen verzonnen cijfers) */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--color-border);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink-soft);
}
.hero-trust span svg { width: 18px; height: 18px; color: var(--color-primary); flex-shrink: 0; }

/* Visueel hero-paneel (vervangt de lelijke placeholder als er geen foto is) */
.hero-visual {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(155deg, var(--color-secondary) 0%, var(--color-ink) 60%, #0A1A28 100%);
  padding: 44px 40px;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 90% 0%, rgba(176,137,59,0.28) 0%, transparent 60%);
  pointer-events: none;
}
.hero-visual .doc-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary-light);
  margin-bottom: 18px;
  position: relative;
}
.hero-visual .doc-lines { display: flex; flex-direction: column; gap: 13px; position: relative; }
.hero-visual .doc-lines i {
  display: block;
  height: 11px;
  border-radius: 6px;
  background: rgba(255,255,255,0.16);
}
.hero-visual .doc-lines i:nth-child(1) { width: 86%; }
.hero-visual .doc-lines i:nth-child(2) { width: 96%; }
.hero-visual .doc-lines i:nth-child(3) { width: 72%; }
.hero-visual .doc-lines i:nth-child(4) { width: 90%; background: rgba(176,137,59,0.5); }
.hero-visual .doc-lines i:nth-child(5) { width: 60%; }
.hero-visual .doc-stamp {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
}
.hero-visual .doc-stamp svg { width: 18px; height: 18px; color: var(--color-primary-light); }

.hero-image img { border-radius: 22px; box-shadow: var(--shadow); }
.hero-image .floating-badge {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border-soft);
  padding: 16px 22px;
}
.floating-badge .badge-icon {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
  box-shadow: var(--shadow-gold);
}

/* ---------------------------------------------------------------------
   SECTIES
   --------------------------------------------------------------------- */
.section { padding: 92px 0; }
.section-alt { background: var(--color-bg-alt); }

/* ---------------------------------------------------------------------
   DIENSTEN / SERVICE-KAARTEN
   --------------------------------------------------------------------- */
.services-grid { gap: 26px; }
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px;
  margin: 0 0 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(176,137,59,0.14), rgba(176,137,59,0.05));
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid rgba(176,137,59,0.22);
}
.service-card h3 { color: var(--color-secondary); margin-bottom: 10px; }
.service-card p { color: var(--color-text-light); font-size: 0.98rem; }

/* ---------------------------------------------------------------------
   WERKWIJZE / PROCES — tijdlijn
   --------------------------------------------------------------------- */
.process-steps { gap: 28px; position: relative; }
.process-steps.three-steps { grid-template-columns: repeat(3, 1fr); }
.process-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  border: 3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.process-step h3 { color: var(--color-secondary); }

/* ---------------------------------------------------------------------
   PRIJZEN
   --------------------------------------------------------------------- */
.pricing-grid { gap: 24px !important; }
.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  padding: 38px 28px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pricing-card-popular {
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 20px 44px rgba(176,137,59,0.18);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.popular-badge { background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark)); color: #fff; box-shadow: var(--shadow-gold); }
.discount-badge { background: var(--color-secondary); color: #fff; }
.spoed-badge { background: #7A3B2E; color: #fff; }
.pricing-name {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-top: 6px;
  margin-bottom: 4px;
}
.pricing-delivery { color: var(--color-text-light); font-size: 0.85rem; margin-bottom: 16px; }
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
}
.pricing-vat { color: var(--color-text-light); font-size: 0.82rem; margin: 6px 0 22px; }
.pricing-features {
  list-style: none;
  margin: 0 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid var(--color-border-soft);
  flex-grow: 1;
}
.pricing-features li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 0.94rem;
  color: var(--color-text);
  cursor: default;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(176,137,59,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238F6E2C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-card .btn { width: 100%; }

/* ---------------------------------------------------------------------
   BEZWAARCATEGORIEËN (vervangt nep-reviews)
   --------------------------------------------------------------------- */
.cases-section { background: var(--color-bg-alt); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.case-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.case-card .case-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(14,36,54,0.06), rgba(14,36,54,0.02));
  color: var(--color-secondary);
  margin-bottom: 16px;
}
.case-card .case-icon svg { width: 22px; height: 22px; }
.case-card h3 { font-size: 1.12rem; color: var(--color-secondary); margin-bottom: 6px; }
.case-card p { font-size: 0.92rem; color: var(--color-text-light); margin: 0; }

/* ---------------------------------------------------------------------
   CTA
   --------------------------------------------------------------------- */
.cta-section {
  background:
    radial-gradient(90% 140% at 100% 0%, rgba(176,137,59,0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-secondary) 0%, var(--color-ink) 55%, #0A1A28 100%);
  padding: 84px 0;
}
.cta-section h2 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.5rem); }
.cta-section p { color: rgba(255,255,255,0.82); }
.cta-section .btn-outline { color: #fff; border-color: rgba(255,255,255,0.45); }
.cta-section .btn-outline:hover { background: #fff; color: var(--color-secondary); border-color: #fff; }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer { background: var(--color-secondary); color: rgba(255,255,255,0.74); }
.footer-slogan { border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-slogan .slogan-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}
.footer-col h4 { color: #fff; font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a, .footer-col ul li { color: rgba(255,255,255,0.72); font-size: 0.93rem; }
.footer-col a:hover { color: var(--color-primary-light); }
.footer-col-brand p { color: rgba(255,255,255,0.62); font-size: 0.93rem; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover { background: var(--color-primary); transform: translateY(-2px); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); }
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 0.85rem; text-align: center; }

/* ---------------------------------------------------------------------
   BESTEL MODAL
   --------------------------------------------------------------------- */
.bestel-modal-content { border-radius: 20px !important; }
#bestel-modal-title, .bestel-modal-header h2 { font-family: var(--font-heading); color: var(--color-secondary); }
.bestel-modal-price { color: var(--color-primary-dark); font-weight: 700; }

/* ---------------------------------------------------------------------
   PAGINA-SJABLOON (page.php) — premium header + content
   --------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: 150px 0 60px !important;
  background:
    radial-gradient(90% 130% at 100% 0%, rgba(176,137,59,0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-secondary) 0%, var(--color-ink) 55%, #0A1A28 100%);
  overflow: hidden;
}
.page-hero.page-hero-compact { padding: 130px 0 48px !important; }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}
.page-hero .breadcrumbs a { color: var(--color-primary-light); }
.page-hero .breadcrumbs a:hover { color: #fff; }
.page-hero .breadcrumbs .current { color: rgba(255,255,255,0.85); }

/* Leesbare, verzorgde content-kolom voor pagina's */
.page-prose { max-width: 820px; margin: 0 auto; }
/* Oude pagina's wikkelen alles in 1 inline-styled div; die strippen we.
   Eigen componenten (usp-strip, dienst-card, cases-grid) uitgezonderd. */
.page-prose > div:not(.usp-strip):not(.dienst-card):not(.cases-grid) {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.page-prose .case-card h3 {
  margin: 0 0 6px !important;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 1.12rem !important;
}
.page-prose h2 {
  font-family: var(--font-heading) !important;
  color: var(--color-secondary) !important;
  font-size: clamp(1.7rem, 3vw, 2.2rem) !important;
  margin: 0 0 18px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.page-prose h3 {
  font-family: var(--font-heading) !important;
  color: var(--color-secondary) !important;
  font-size: 1.35rem !important;
  margin: 36px 0 12px !important;
}
.page-prose p { color: var(--color-text) !important; line-height: 1.8 !important; margin-bottom: 18px !important; font-size: 1.04rem; }
.page-prose ul { list-style: none !important; padding: 0 !important; margin: 0 0 24px !important; }
.page-prose ul li {
  position: relative;
  padding: 10px 0 10px 34px !important;
  color: var(--color-text) !important;
  line-height: 1.6 !important;
  border-bottom: 1px solid var(--color-border-soft);
}
.page-prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(176,137,59,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238F6E2C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Dienst-blokken (herstructurering Diensten-pagina) */
.dienst-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.dienst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dienst-card h3 { margin: 0 0 8px !important; }
.dienst-card p { margin: 0 !important; color: var(--color-text-light) !important; }

/* 24-uur sellingpoint strip (pagina's) */
.usp-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-ink));
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 8px 0 36px;
  box-shadow: var(--shadow-sm);
}
.usp-strip svg { width: 34px; height: 34px; color: var(--color-primary-light); flex-shrink: 0; }
.usp-strip strong { color: #fff; font-family: var(--font-heading); font-size: 1.2rem; display: block; }
.usp-strip span.usp-sub { color: rgba(255,255,255,0.78); font-size: 0.95rem; }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 900px) {
  .process-steps.three-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 120px; padding-bottom: 64px; }
  .hero .container { text-align: center; grid-template-columns: 1fr; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-buttons .btn { flex: 1 1 auto; min-width: 0; }
  .hero-visual { margin-top: 8px; }
  .section-header { margin-bottom: 40px; }
  .service-card { text-align: center; }
  .service-icon { margin-left: auto; margin-right: auto; }
  .case-card { text-align: center; }
  .case-card .case-icon { margin-left: auto; margin-right: auto; }

  /* Premium mobiel menu: paneel met afgeronde onderkant en ruime tikvlakken.
     Overschrijft de kale witte dropdown uit style.css (die !important gebruikt). */
  .main-nav.active {
    background: var(--color-surface) !important;
    padding: 10px 14px 16px !important;
    border-radius: 0 0 var(--radius) var(--radius) !important;
    box-shadow: 0 18px 40px rgba(14,36,54,0.16) !important;
    border-top: 1px solid var(--color-border-soft);
  }
  .main-nav.active a {
    padding: 14px 14px !important;
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 1.02rem !important;
    font-weight: 600;
    color: var(--color-secondary) !important;
    border-bottom: 1px solid var(--color-border-soft) !important;
  }
  .main-nav.active li:last-child a { border-bottom: none !important; }
  .main-nav.active .menu-cta a {
    justify-content: center;
    margin-top: 10px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-dark));
    color: #fff !important;
    box-shadow: var(--shadow-gold);
  }
  .menu-toggle { width: 44px; height: 44px; display: flex !important; align-items: center; justify-content: center; }
}
