@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* =========================================================
   ZEKEROPWEG – MASTER BRAND ENGINE
   Premium warm style B
========================================================= */

/* =========================
   CORE TOKENS
========================= */
:root{
  --navy:#071322;
  --navy-deep:#0a1b32;
  --gold:#d7b56d;

  --text-main:#141414;
  --text-muted:#5a5a5a;

  --bg-soft:#f7f6f2;
  --bg-page:#ffffff;
  --bg-card:#ffffff;

  --radius-card:20px;
  --radius-btn:999px;

  --shadow-soft: 0 18px 48px rgba(0,0,0,.08);
  --shadow-card: 0 20px 55px rgba(0,0,0,.08), 0 4px 14px rgba(0,0,0,.04);

  --container:1200px;

  /* Hero heights */
  --hero-height-desktop: 62vh;
  --hero-height-mobile: 48vh;
  --hero-height-compact-desktop: 40vh;
  --hero-height-compact-mobile: 34vh;
}

/* =========================
   RESET + BASE
========================= */
*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }
body{
  font-family:"Inter","Helvetica Neue",Arial,sans-serif;
  color:var(--text-main);
  background:var(--bg-page);
  line-height:1.65;

  /* sticky footer */
  min-height:100vh;
  display:flex;
  flex-direction:column;

  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }
body.menu-open{ overflow:hidden; }

.container{
  width:90%;
  max-width:var(--container);
  margin:0 auto;
}

/* Voorkom “paarse standaard links” in content */
.page-content a,
.services-section a,
.footer a{
  color:inherit;
  text-decoration:none;
}
.page-content a:hover,
.services-section a:hover,
.footer a:hover{
  text-decoration:underline;
}

/* Kleine helpers */
.section-bg-soft{ background:var(--bg-soft); }
.fade-in{ animation: fadeIn .35s ease both; }
@keyframes fadeIn{ from{opacity:0} to{opacity:1} }

/* =========================
   HEADER + NAV (premium clean)
========================= */
.header{
  position:sticky;
  top:0;
  z-index:1200;
  background:#fff;
  box-shadow:0 1px 0 rgba(0,0,0,0.06);
}
.header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.2rem;
  padding:22px 0;
}

.brand-logo{
  font-size:1.35rem;
  font-weight:600;
  letter-spacing:0.045em;
  color:#0f172a;
  line-height:1;
  white-space:nowrap;
}

.main-nav{ margin-left:auto; }
.main-nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:22px;
}
.main-nav a{
  font-weight:500;
  font-size:0.95rem;
  color:var(--text-main);
  opacity:.9;
}
.main-nav a:hover{ opacity:1; }
.main-nav a.active{
  color:var(--gold);
  opacity:1;
}

.menu-toggle{
  display:none;
  margin-left:auto;
  background:none;
  border:none;
  font-size:1.6rem;
  color:var(--navy);
  cursor:pointer;
  line-height:1;
}
.menu-toggle:focus,
.menu-toggle:active{ outline:none; box-shadow:none; }

/* =========================
   MOBILE MENU (offcanvas)
========================= */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  z-index:3000;
  padding:2.5rem 2rem;
  transform:translateX(100%);
  transition:transform 0.35s ease;
}
.mobile-menu.open{ transform:translateX(0); }

.close-menu{
  position:absolute;
  top:1.5rem;
  right:1.5rem;
  font-size:2rem;
  background:none;
  border:none;
  cursor:pointer;
  color:var(--navy);
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  gap:1.2rem;
  margin-top:2.2rem;
}
.mobile-nav a{
  font-size:1.05rem;
  font-weight:600;
  color:var(--text-main);
}
.mobile-nav a.active{ color:var(--gold); }

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  opacity:0;
  pointer-events:none;
  transition:opacity 0.25s ease;
  z-index:2500;
}
.menu-overlay.active{
  opacity:1;
  pointer-events:auto;
}

@media (max-width:960px){
  .main-nav{ display:none; }
  .menu-toggle{ display:block; }
  .brand-logo{ font-size:1.25rem; letter-spacing:0.035em; }
}

/* =========================
   TYPOGRAPHY HIERARCHY
========================= */
.section-title{
  font-size:2.15rem;
  letter-spacing:-0.015em;
  line-height:1.15;
  margin-bottom:1.25rem;
  position:relative;
}
.section-title::after{
  content:"";
  display:block;
  width:44px;
  height:1px;
  background:rgba(215,181,109,.7);
  margin-top:.65rem;
}

.section-subtitle,
.section-intro{
  max-width:760px;
  color:rgba(20,20,20,.68);
  margin-bottom:2.2rem;
  line-height:1.75;
  font-size:1.02rem;
}

/* Lead / anchored text blocks */
.accentline{
  position:relative;
  padding-left:1.2rem;
  max-width:760px;
  color:rgba(20,20,20,.72);
  line-height:1.75;
}
.accentline::before{
  content:"";
  position:absolute;
  left:0;
  top:.25rem;
  bottom:.25rem;
  width:1px;
  background:rgba(198,168,106,.75);
  opacity:.65;
  border-radius:2px;
}

/* =========================
   SECTION RHYTHM
========================= */
.services-section{
  padding:4.8rem 0;
}
.services-section.container{
  padding:4.8rem 0;
}

/* Maak sections op brede pagina’s netter en premium */
.services-section.container,
.section-bg-soft .container{
  max-width:var(--container);
}

/* =========================
   HERO ENGINE (universal)
   - Zet backgrounds via page classes: hero-home, hero-accucheck, etc
========================================================= */
.hero{
  position:relative;
  height:var(--hero-height-desktop);
  min-height:var(--hero-height-desktop);
  display:flex;
  align-items:center;
  justify-content:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center 55%;
  overflow:hidden;
  isolation:isolate;
}

/* Premium overlay: warm, diep, niet “zwaar zwart” */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(6,14,22,0.35) 0%,
      rgba(6,14,22,0.55) 45%,
      rgba(6,14,22,0.82) 100%
    );
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:920px;
  padding:0 1.6rem;
  text-align:center;
}

.hero-eyebrow{
  display:block;
  margin-bottom:.85rem;
  font-size:.74rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(215,181,109,.95);
}

.hero h1{
  color:#fff;
  font-size:3.05rem;
  font-weight:700;
  letter-spacing:-0.02em;
  line-height:1.12;
  margin-bottom:1.15rem;
  text-shadow:0 18px 45px rgba(0,0,0,.25);
}

.hero p{
  color:rgba(255,255,255,.92);
  max-width:760px;
  margin:0 auto;
  line-height:1.7;
  font-size:1.08rem;
}

/* Hero subline class (jouw HTML gebruikt dit) */
.hero-subline{
  margin-top:.35rem;
  opacity:.95;
}

/* Hero actions */
.hero-actions{
  margin-top:1.65rem;
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
}

@media (max-width:900px){
  .hero{
    height:var(--hero-height-mobile);
    min-height:var(--hero-height-mobile);
    background-position:center 65%;
  }
  .hero h1{ font-size:2.25rem; }
  .hero p{ font-size:1.02rem; }
}

/* Contact hero: bewust compacter */
.hero--compact{
  height:var(--hero-height-compact-desktop);
  min-height:var(--hero-height-compact-desktop);
}
@media (max-width:900px){
  .hero--compact{
    height:var(--hero-height-compact-mobile);
    min-height:var(--hero-height-compact-mobile);
  }
}

/* Hero backgrounds (blijven in master, merk consistent) */
.hero-home{ background-image:url("/assets/images/hero/home-hero-desktop.webp"); }
.hero-over{ background-image:url("/assets/images/hero/over-hero.webp"); }
.hero-gb{ background-image:url("/assets/images/hero/gratisbezwaar-hero.webp"); }
.hero-accucheck{ background-image:url("/assets/images/hero/ev-hero.webp"); }
.hero-accucheck-zakelijk{ background-image:url("/assets/images/hero/ev-accucheck-zakelijk-hero.webp"); }
.hero-contact{ background-image:url("/assets/images/hero/contact-hero.webp"); }

.hero + section{
  margin-top:5.5rem;
}

/* =========================
   GRIDS + CARDS (premium)
========================= */
.usp-premium,
.service-grid,
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:2.1rem;
  margin-top:2.6rem;
}

.usp-item,
.service-card,
.testimonial-card{
  background:var(--bg-card);
  border-radius:var(--radius-card);
  padding:2.55rem;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:var(--shadow-card);
  position:relative;
  overflow:hidden;
}

/* zachte binnenrand */
.usp-item::after,
.service-card::after,
.testimonial-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
}

.usp-item h3,
.service-card h3{
  margin-bottom:.85rem;
  font-size:1.18rem;
  letter-spacing:-0.01em;
}
.usp-item p,
.service-card p,
.testimonial-card p{
  margin-top:.55rem;
  color:rgba(20,20,20,.68);
  line-height:1.75;
}


/* =========================
   PREMIUM SURFACE SECTIONS
   (maakt “beige blokken” chic ipv goedkoop)
========================= */
.section-bg-soft{
  background:
    linear-gradient(180deg, rgba(247,246,242,1) 0%, rgba(247,246,242,1) 70%, rgba(255,255,255,1) 100%);
}
.section-bg-soft .container{
  padding:0;
}

/* =========================
   TRUST STRIP + GUARDIAN (jouw EV blokken)
========================= */
.trust-strip{
  margin:3.8rem auto 0;
  text-align:center;
  max-width:780px;
}
.trust-head{
  font-size:1rem;
  line-height:1.75;
  color:rgba(20,20,20,.70);
}
.trust-sub{
  margin-top:.9rem;
  font-size:.86rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(215,181,109,.95);
}

.price-guardian{
  max-width:860px;
  margin:2.2rem auto 0;
  padding:1.9rem 2.2rem;
  border-radius:24px;
  background:linear-gradient(135deg,#f7f5f1,#f1ece3);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 45px rgba(0,0,0,.06);
}
.guardian-title{
  font-size:.78rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(215,181,109,.95);
  margin-bottom:.65rem;
}
.guardian-text{
  color:rgba(20,20,20,.72);
  line-height:1.75;
}

/* =========================
   PREMIUM GRID CARDS (EV pricing blokken)
========================= */
.premium-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2.2rem;
  margin-top:2.6rem;
}

.premium-card{
  background:#fff;
  border-radius:28px;
  padding:3.1rem;
  position:relative;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:var(--shadow-card);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.premium-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.premium-muted{
  background:linear-gradient(180deg,#ffffff 0%, #fbfaf7 100%);
}

.premium-eyebrow{
  text-transform:uppercase;
  font-size:.74rem;
  letter-spacing:.14em;
  color:rgba(191,160,85,.95);
  display:block;
  margin-bottom:1rem;
}
.price-block{
  margin:1.8rem 0 1.6rem;
  font-size:1.1rem;
  color:rgba(20,20,20,.78);
}
.price-block strong{
  display:block;
  font-size:1.45rem;
  letter-spacing:-0.01em;
  color:rgba(20,20,20,.92);
}
.price-block span{
  display:block;
  font-size:.95rem;
  margin-top:.45rem;
  color:rgba(20,20,20,.55);
}



.lux-list{
  list-style:none;
  padding:0;
  margin-top:1.1rem;
}
.lux-list li{
  position:relative;
  padding-left:18px;
  margin-bottom:14px;
  line-height:1.65;
  color:rgba(20,20,20,.70);
}
.lux-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.65em;
  width:10px;
  height:2px;
  background:linear-gradient(90deg,#d7b96c,#bfa055);
  border-radius:2px;
  opacity:.9;
}

.decision-badge{
  display:inline-block;
  margin-bottom:.6rem;
  padding:.35rem .9rem;
  border-radius:999px;
  font-size:.65rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#9f7c2f;
  background:linear-gradient(180deg,#fff7dd,#f1e2b3);
  border:1px solid rgba(159,124,47,.35);
  box-shadow:0 6px 14px rgba(0,0,0,.06);
}


/* =========================
   FOOTER (premium grid)
========================= */
.footer{
  margin-top:auto;
  background:linear-gradient(to bottom,#06101c,#040b15);
  color:#fff;
  padding:2.4rem 0 2.1rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  max-width:var(--container);
  margin:0 auto;
  padding:0 1.2rem;
  text-align:left;
}
.footer-title{
  font-weight:600;
  margin-bottom:.75rem;
  font-size:.92rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.95;
}
.footer-col p{
  margin:0 0 .7rem 0;
  font-size:.93rem;
  line-height:1.55;
  opacity:.88;
}
.footer a{ color:#fff; text-decoration:none; }
.footer a:hover{ text-decoration:underline; }

.footer-legal{
  white-space:nowrap;
  font-size:.85rem;
  opacity:.65;
  line-height:1.5;
}

@media (max-width:820px){
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
  .footer-legal{
    white-space:normal;
  }
}

/* =========================
   SMALL UTILITIES USED IN PAGES
========================= */
.field-hint{
  font-size:0.8rem;
  opacity:0.55;
  margin-top:0.4rem;
  line-height:1.4;
}
.micro-legal{
  font-size:0.75rem;
  opacity:0.5;
  margin-top:0.6rem;
  line-height:1.45;
}


/* =========================
   ZEKEROPWEG CANONICAL HERO HEIGHT
========================= */
.hero{
  height:56vh;
  min-height:56vh;
}

@media(max-width:900px){
  .hero{
    height:48vh;
    min-height:48vh;
  }
}

.institution-anchor{
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.has-dropdown { position: relative; }

.dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 10px;
  margin: 0;
  list-style: none;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(11,18,32,.12);
  box-shadow: 0 14px 28px rgba(11,18,32,.12);
  display: none;
  z-index: 50;
}

.dropdown li a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
}

.dropdown li a:hover{
  background: rgba(251,246,234,.85);
}

.has-dropdown:hover .dropdown{ display: block; }

.zop-header{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.zop-header-inner{
  max-width:1180px;
  margin:0 auto;
  padding:26px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.zop-logo{
  font-size:22px;
  font-weight:700;
  letter-spacing:.4px;
  text-decoration:none;
  color:#0b1220;
}

.zop-nav{
  display:flex;
  gap:36px;
  align-items:center;
}

.zop-nav a, .zop-drop-label{
  font-size:14px;
  text-decoration:none;
  color:#0b1220;
  position:relative;
  padding:6px 0;
}

/* basis streep */
.zop-nav a::after,
.zop-drop-label::after{
  content:"";
  position:absolute;
  bottom:-6px;
  left:0;
  width:0%;
  height:2px;

  /* echt ZOW goud */
  background: linear-gradient(90deg, #e0c07a, #c6a86a);
  transition:.25s ease;
}

/* hover */
.zop-nav a:hover::after,
.zop-drop-label:hover::after{
  width:100%;
}

/* 🔥 DIT IS DE MAGIE: actief item */
.zop-nav a.active{
  color:#c6a86a;
  font-weight:600;
}

.zop-nav a.active::after{
  width:100%;
}


.zop-contact{
  padding:6px 0;
  border:none;
  border-radius:0;
}

.zop-dropdown{
  position:relative;
}

.zop-drop-menu{
  display:none;
  position:absolute;
  top:38px;
  left:0;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:12px;
  min-width:200px;
}

.zop-dropdown:hover .zop-drop-menu{
  display:block;
}

.zop-mobile-toggle{
  display:none;
  background:none;
  border:none;
  font-size:14px;
  letter-spacing:.3px;
  color:#0b1220;
}

.zop-mobile-overlay{
  position:fixed;
  inset:0;
  background:#0b1220;
  display:none;
  z-index:999;
}

.zop-mobile-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
}

.zop-mobile-inner a{
  color:#fff;
  font-size:22px;
  text-decoration:none;
  letter-spacing:.5px;
}

.zop-mobile-cta{
  border:1px solid rgba(255,255,255,.25);
  padding:14px 28px;
  border-radius:999px;
}

@media(max-width:960px){
  .zop-nav{ display:none; }
  .zop-mobile-toggle{ display:block; }
}

.hero.hero--soft{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255,210,140,.25), transparent 55%),
              radial-gradient(900px 500px at 90% 30%, rgba(180,160,120,.18), transparent 55%),
              #fbf6ea;
  color:#0b1220;
  padding: 120px 0;
}

.hero.hero--soft h1{
  color:#0b1220;
}

.hero.hero--soft p{
  color:#4a5568;
  max-width: 62ch;
}

.benefits{
  margin-top:18px;
  display:grid;
  gap:10px;
  padding:0;
  list-style:none;
}
.benefits li{
  padding:12px 16px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  background:#fff;
  font-weight:500;
}

/* =========================
   HERO – AUTOMATISERING
========================= */

.hero-automatisering{
  position: relative;
  min-height: 56vh;
  background-image: url("../assets/images/hero/automatisering-hero.webp");
  background-size: cover;
  background-position: center bottom;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-automatisering::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(7,18,30,0.66) 0%,
    rgba(7,18,30,0.54) 45%,
    rgba(7,18,30,0.34) 100%
  );
  z-index:1;
}

.hero-automatisering .hero-content{
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.6rem;
}

.hero-automatisering .hero-eyebrow{
  display: block;
  margin-bottom: .85rem;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(215,181,109,.95);
}

.hero-automatisering h1{
  color:#fff;
  font-size:2.7rem;
  font-weight:700;
  letter-spacing:-0.02em;
  margin-bottom:1rem;
  text-shadow:0 18px 45px rgba(0,0,0,.25);
}

.hero-automatisering p{
  color:rgba(255,255,255,.92);
  max-width:720px;
  margin:0 auto;
  line-height:1.7;
  font-size:1.06rem;
}

/* ==========================================
   ACCUCHECK PRICING ENGINE — FINAL
========================================== */

#tarief .packages-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:72px;
  align-items:stretch;
}

#tarief .package{
  display:flex;
  flex-direction:column;
  padding:58px 56px 56px;
  border-radius:34px;
  background:linear-gradient(180deg,#ffffff,#fbfaf7);
  border:1.5px solid rgba(215,181,109,.55);
  box-shadow:0 28px 70px rgba(0,0,0,.12);
  transition:box-shadow .35s ease, transform .35s ease;
}

/* middenkaart premium */
#tarief .package--premium{
  border:2.5px solid rgba(215,181,109,.95);
  transform:translateY(-24px);
}

/* zachte premium hover */
#tarief .package:hover{
  transform:translateY(-10px);
  box-shadow:0 38px 90px rgba(0,0,0,.18);
}

/* content vult kaart */
#tarief .package-content{
  flex:1;
}

/* CTA altijd exact onder */
#tarief .package > a{
  margin-top:auto;
  align-self:center;
  width:260px;
  height:58px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#0c1220,#02060d);
  color:#ffffff;
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  box-shadow:0 18px 42px rgba(0,0,0,.45);
  cursor:pointer;
}

/* kaart 3 — 2 regels */
#tarief .package:nth-child(3) > a{
  white-space:normal;
  line-height:1.15;
  padding:0 26px;
  letter-spacing:.10em;
}

.section-bg-soft{
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(215,181,109,.06), transparent 55%),
    radial-gradient(900px 500px at 90% 20%, rgba(215,181,109,.05), transparent 55%),
    linear-gradient(180deg,#f7f6f2 0%, #f4f2ec 70%, #ffffff 100%);
}

.pricing-featured{
  background:linear-gradient(180deg,#ffffff,#fbf9f3);
  box-shadow:
    0 50px 120px rgba(0,0,0,.12),
    inset 0 0 0 1px rgba(215,181,109,.25);
}

/* ==========================================
   ACCUCHECK = AANKOOPADVIES PREMIUM ENGINE
========================================== */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
  align-items:stretch;
}

.pricing-card{
  background:#ffffff;
  border-radius:28px;
  padding:3.1rem;
  position:relative;
  border:1px solid rgba(0,0,0,.04);
  box-shadow:var(--shadow-card);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* Zachte binnenrand (exact zoals aankoopadvies) */
.pricing-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}

/* Focuskaart (middelste) */
.pricing-featured{
  transform: translateY(-24px);
  border:2px solid var(--gold);
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

/* Body vult kaart */
.pricing-body{
  flex:1;
}

/* CTA exact zelfde gedrag */
.pricing-cta{
  margin-top:50px;
  height:58px;
  min-width:240px;
  align-self:center;
}

.pricing-card h3{
  margin-bottom:.85rem;
  font-size:1.18rem;
  letter-spacing:-0.01em;
}

.pricing-card p,
.pricing-card li{
  color:rgba(20,20,20,.68);
  line-height:1.75;
}

.pricing-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
}

/* ─────────────────────────
   ZEKEROPWEG STABILITY ENGINE
   ───────────────────────── */

.pricing-card,
.package,
.card,
.service-card{
  transform: none !important;
  transition: box-shadow .35s ease, background .35s ease;
}

.pricing-card:hover,
.package:hover,
.card:hover,
.service-card:hover{
  transform: none !important;
  box-shadow: 0 30px 90px rgba(0,0,0,.12);
}

/* =========================
   HEADER – MOBILE FIX
========================= */

@media (max-width: 900px) {
  .zop-nav {
    display: none;
  }
}

@media (max-width: 900px){
  .zop-nav{
    display:none;
  }
}

@media (max-width: 900px){
  .menu-toggle{
    order:3;              /* helemaal rechts */
    font-size:1.4rem;
    background:none;
    border:none;
    cursor:pointer;
    color:#0b1c2d;        /* navy */
  }

  .zop-logo{
    order:1;              /* links */
  }
}

@media (max-width: 900px){
  .zop-header-inner{
    padding:18px 20px;
  }
}

.zop-header-inner {
  padding: 26px 40px;
}

@media(max-width: 768px){
  .zop-header-inner{
    padding: 18px 18px;
  }
}

/* -------- HEADER BALANS -------- */

.zop-header-inner{
  padding:26px 40px !important;
}

@media(max-width:768px){
  .zop-header-inner{
    padding:18px 18px !important;
  }
}

/* ===== FOOTER EXACTE LAYOUT FIX ===== */

.footer{
  padding: 72px 0 32px;
}

.footer-grid{
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 64px;
}

.footer-title{
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .18em;
  margin-bottom: 18px;
}

.footer-linkblock span{
  font-size: 13px;
  opacity: .72;
}

.footer-legal-wrap{
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}

.footer-legal{
  font-size: 13px;
  opacity: .62;
}

@media(max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }
}

/* ===== FOOTER MAIL ACCENT ===== */
.footer a.footer-accent {
  color: var(--gold) !important;
  font-weight: 600;
  position: relative;
}

.footer a.footer-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

@media(max-width:960px){

  .menu-toggle{
    display:block !important;
    position:relative;
    z-index:2000;
  }

  .zop-nav{
    display:none !important;
  }

}

/* =========================================================
   ZOP STABILITY — DEFINITIEVE BESCHERMINGSLAGEN
   Deze regels mogen NIET overschreven worden door page CSS
========================================================= */
/* --- Dropdown altijd leesbaar --- */
.zop-dropdown { z-index: 2000 !important; }

.zop-drop-menu {
  background: #ffffff !important;
  color: #0b1220 !important;
  min-width: 240px !important;
  z-index: 3000 !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.18) !important;
}

.zop-drop-menu a {
  color: #0b1220 !important;
  white-space: nowrap !important;
}

/* Specifiek voor index CTA */
.cta-main .btn-cta-main {
  max-width: 340px !important;
}

.zop-drop-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
}

.zop-drop-menu a:hover{
  background:rgba(215,181,109,.12);
}

/* =====================================================
   ZOW – DEFINITIEVE INFO BUTTON STIJL
   Wit + mat goud = standaard
   Navy = ALLEEN voor btn-primary
===================================================== */

/* INFO KNOP = SECONDARY */
.btn-secondary {
  background: #ffffff !important;
  color: #0b1220 !important;
  border: 1px solid rgba(215,181,109,.85) !important;

  box-shadow:
    0 10px 24px rgba(0,0,0,.06),
    inset 0 0 0 1px rgba(215,181,109,.25) !important;

  transition: all .22s ease;
}

/* HOVER VAN INFO KNOP */
.btn-secondary:hover {
  background: rgba(215,181,109,.06) !important;
  color: #0b1220 !important;
  border-color: rgba(215,181,109,1) !important;

  box-shadow:
    0 14px 32px rgba(0,0,0,.10),
    inset 0 0 0 1px rgba(215,181,109,.45) !important;
}

/* DIENSTKNOP BLIJFT NAVY */
.btn-primary {
  background: linear-gradient(180deg,#0c1220,#02060d) !important;
  color: #ffffff !important;
}

/* HOVER DIENSTKNOP */
.btn-primary:hover {
  background: linear-gradient(180deg,#10182c,#03070f) !important;
}

/* Vierkante CTA op aankoopadvies dwingen naar ZOW stijl */
.service-card .card-cta,
.package-card a,
.pricing-card a {
  border-radius: 999px !important;
}

/* ===== PREMIUM CARD – SUBTIEL & MERKWAARDIG ===== */

.package-card.featured{
  border: 2px solid rgba(215,181,109,.95) !important;

  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%) !important;

  box-shadow:
    0 28px 70px rgba(0,0,0,.10),
    inset 0 0 0 1px rgba(215,181,109,.18) !important;

  transform: none !important;
}

/* hover = alleen zachte glow, GEEN move */
.package-card.featured:hover{
  transform: none !important;

  box-shadow:
    0 38px 90px rgba(0,0,0,.14),
    inset 0 0 0 1px rgba(215,181,109,.32) !important;
}

/* ===== EV ADDON KNOP GELIJK AAN ZOW STANDAARD ===== */

.ev-addon-cta{
  margin-top:22px;
  text-align:center;
}

.ev-addon-cta .btn-secondary{
  min-width:260px;
  border-radius:999px !important;
}

/* =========================================================
   ZEKEROPWEG – PREMIUM INTAKE FORM
   Zelfde gevoel als start-aankoopadvies.html
========================================================= */

.intake-shell{
  max-width:780px;
  margin:0 auto;
}

/* Hoofdkaart */
.advisor-card{
  background:linear-gradient(180deg,#fbfaf7,#ffffff);
  border-radius:32px;
  padding:3.2rem 3.6rem;

  border:1px solid rgba(0,0,0,.06);
  box-shadow:
    0 48px 120px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(255,255,255,.6);

  margin-top:3.2rem;
}

/* Labels */
.advisor-card label{
  display:block;
  margin-top:2.1rem;

  font-weight:600;
  font-size:.96rem;
  letter-spacing:.02em;
}

/* Input styling = ZOW signature */
.advisor-card input,
.advisor-card select,
.advisor-card textarea{

  width:100%;
  margin-top:.6rem;

  padding:16px 18px;
  border-radius:18px;

  border:1px solid rgba(0,0,0,.10);
  background:#ffffff;

  font-size:.97rem;
  line-height:1.6;

  transition:.18s ease;
}

/* Focus = goud accent */
.advisor-card input:focus,
.advisor-card textarea:focus,
.advisor-card select:focus{

  outline:none;

  border-color:#c6a86a;
  box-shadow:
    0 0 0 3px rgba(198,168,106,.15),
    0 14px 32px rgba(0,0,0,.06);
}

/* Placeholder subtiel */
.advisor-card ::placeholder{
  color:rgba(0,0,0,.42);
}

/* Hints onder velden */
.field-hint{
  font-size:.82rem;
  opacity:.58;
  margin-top:.5rem;
  line-height:1.45;
}

/* Vertrouwensregel */
.advisor-microtrust{
  font-size:0.86rem;
  opacity:.68;
  margin-top:2.6rem;
  margin-bottom:.8rem;
}

/* SUBMIT = ZOW CTA */
.advisor-submit{

  margin-top:1rem;
  padding:18px 34px;

  border-radius:999px;

  background:linear-gradient(180deg,#0c1220,#02060d);
  color:#ffffff;

  font-weight:600;
  letter-spacing:.08em;

  border:none;
  width:100%;

  transition:.22s ease;
}

.advisor-submit:hover{
  background:linear-gradient(180deg,#111b2f,#050b16);
  transform:translateY(-1px);
}

/* Mobile verfijning */
@media(max-width:768px){

  .advisor-card{
    padding:2.2rem 1.8rem;
    border-radius:24px;
  }

  .advisor-card input,
  .advisor-card select,
  .advisor-card textarea{
    padding:15px 16px;
  }

}

/* ===== B2B Intake in ZOW stijl ===== */

.intake-shell{
  max-width:760px;
  margin:0 auto;
}

.advisor-card{
  background:#faf9f7;
  border-radius:26px;
  padding:3rem 3.4rem;
  box-shadow:0 50px 120px rgba(0,0,0,.08);
  border:1px solid #f0ece6;
  margin-top:3rem;
}

.advisor-card label{
  display:block;
  margin-top:1.8rem;
  font-weight:600;
}

.advisor-card input,
.advisor-card select,
.advisor-card textarea{
  width:100%;
  margin-top:.4rem;
  padding:15px 18px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-size:.96rem;
}

.advisor-card input:focus,
.advisor-card textarea:focus,
.advisor-card select:focus{
  outline:none;
  border-color:#c6a86a;
  box-shadow:0 0 0 3px rgba(198,168,106,.15);
}

.advisor-submit{
  margin-top:1.2rem;
  padding:18px 34px;
  border-radius:999px;
  background:#0b1220;
  color:#ffffff;
  font-weight:600;
  border:none;
  width:100%;
  letter-spacing:.06em;
}

.advisor-submit:hover{
  background:#101a30;
}

.advisor-microtrust{
  font-size:0.85rem;
  opacity:0.65;
  margin-top:2.4rem;
}
































