/* DeVerzendExpert — Luxe huisstijl theme
   Drop-in stylesheet. Load AFTER your current CSS. */

:root{
  /* Core */
  --bg: #071225;
  --bg2:#0a1930;
  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);

  --text: rgba(255,255,255,.93);
  --muted: rgba(255,255,255,.72);

  /* Brand */
  --brandBlue: #1f5fff;
  --brandOrange: #ff8a00;
  --brandGrad: linear-gradient(135deg, var(--brandBlue) 0%, #2c7dff 35%, var(--brandOrange) 100%);
  --brandGradSoft: linear-gradient(135deg, rgba(31,95,255,.20), rgba(255,138,0,.18));

  /* Effects */
  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --shadowSoft: 0 10px 25px rgba(0,0,0,.28);
  --radius: 18px;
  --radiusSm: 14px;
  --ring: 0 0 0 4px rgba(31,95,255,.22);
}

html, body{
  background:
    radial-gradient(1000px 600px at 12% 8%, rgba(31,95,255,.22), transparent 60%),
    radial-gradient(900px 520px at 88% 18%, rgba(255,138,0,.17), transparent 55%),
    radial-gradient(900px 520px at 60% 110%, rgba(31,95,255,.14), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
}

a{ color: rgba(255,255,255,.92); }
a:hover{ color: white; }

.wrap{ max-width: 1160px; }

/* Sections */
section{
  padding: 4px 0;
}
section:nth-of-type(even){
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
}
.sectionTitle .sub, .sub, .fine, .hint{ color: var(--muted); }

/* Hero */
.hero{
  padding: 82px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(700px 420px at 20% 30%, rgba(31,95,255,.22), transparent 60%),
              radial-gradient(620px 420px at 80% 20%, rgba(255,138,0,.18), transparent 55%),
              radial-gradient(820px 520px at 40% 110%, rgba(31,95,255,.12), transparent 55%);
  pointer-events:none;
}
.hero > .wrap{ position: relative; z-index: 1; }

h1, h2{ letter-spacing: -0.02em; }
h1{ font-size: clamp(34px, 4vw, 54px); line-height: 1.05; margin: 14px 0 10px; }
h2{ font-size: clamp(26px, 3vw, 34px); line-height: 1.12; }
.lead{ font-size: 16.5px; line-height: 1.7; color: rgba(255,255,255,.82); max-width: 58ch; }

/* Badges */
.badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 10px; }
.badge{
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  backdrop-filter: blur(10px);
}

/* Cards / Surfaces */
.card, .imgCard, details.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  backdrop-filter: blur(12px);
}
.card{ padding: 18px; }
.soft{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radiusSm);
  padding: 12px;
  margin-top: 14px;
}

/* Image card */
.imgCard{ overflow:hidden; position:relative; }
.imgCard img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}
.imgCard:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(7,18,37,0) 40%, rgba(7,18,37,.78) 100%);
}
.imgOverlay{
  position:absolute; left:16px; right:16px; bottom:14px;
  z-index:2;
  color: rgba(255,255,255,.95);
}
.imgOverlay b{ display:block; font-size: 15px; }
.imgOverlay small{ color: rgba(255,255,255,.78); }

.musicPlayer {
    position: ;
    bottom: 500px;
    left: 500px;
    background: rgba(0,0,0,0.7);
    padding: 100px;
    border-radius: 500px;
    z-index: 9;
}

.musicPlayer button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* KPI grid */
.kpiGrid{ display:grid; grid-template-columns: repeat(2,1fr); gap:12px; margin-top:12px; }
.kpi{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radiusSm);
  padding: 14px 14px;
}
.kpi b{ font-weight: 1200; letter-spacing: -0.01em; }
.kpi small{ color: var(--muted); }

/* Lists */
.list{ margin: 12px 0 0; padding: 0; list-style:none; display:grid; gap:10px; }
.dot{
  width:10px; height:10px; border-radius: 99px; display:inline-block;
  background: var(--brandGrad);
  box-shadow: 0 0 0 3px rgba(31,95,255,.10);
  margin-right:10px;
}

/* Buttons */
.btnRow{ display:flex; flex-wrap:wrap; gap:12px; margin-top: 16px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 1000;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  gap: 10px;
}
.btn.primary{
  background: var(--brandGrad);
  color: white;
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 14px 30px rgba(31,95,255,.20), 0 12px 30px rgba(255,138,0,.12);
}
.btn.primary:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.primary:active{ transform: translateY(0px) scale(.99); }

.btn.secondary{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.16);
}
.btn.secondary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
}

/* Forms */
label{ color: rgba(255,255,255,.86); font-weight: 900; font-size: 13px; }
input, select, textarea{
  width:100%;
  background: lightgrey;
  border: 1px solid rgba(255,255,255,.14);
  color: black;
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
}
select{ appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.8) 50%), linear-gradient(135deg, rgba(255,255,255,.8) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
input::placeholder, textarea::placeholder{ color: black; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(31,95,255,.55);
  box-shadow: var(--ring);
}

/* Range sliders */
input[type="range"]{ padding: 0; height: 28px; background: transparent; border: none; }
input[type="range"]:focus{ box-shadow:none; }
input[type="range"]::-webkit-slider-runnable-track{
  height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.14);
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width: 18px; height: 18px; border-radius: 999px;
  background: white;
  margin-top: -5px;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
  border: 3px solid rgba(31,95,255,.65);
}

/* Details / FAQ */
details.card{ padding: 14px 16px; }
details.card > summary{
  list-style: none;
  display:flex; align-items:center; justify-content:space-between;
}
details.card > summary::-webkit-details-marker{ display:none; }
details.card > summary:after{
  content:"＋";
  font-weight: 1000;
  color: rgba(255,255,255,.75);
}
details[open].card > summary:after{ content:"－"; }

/* Dark CTA */
.darkCta{
  background: linear-gradient(135deg, rgba(31,95,255,.22), rgba(255,138,0,.16));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 2px);
  padding: 20px;
  box-shadow: var(--shadowSoft);
}

/* Pricing rows */
.row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.row:last-child{ border-bottom: none; }

/* Platform pills (if your function outputs .pill/.pills) */
.pills, .platformPills{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  font-weight: 900;
  text-decoration:none;
}
.pill:hover{ background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.20); }

/* Utility: make images/cards spacing a touch tighter on mobile */
@media (max-width: 900px){
  section{ padding: 54px 0; }
  .kpiGrid{ grid-template-columns: 1fr; }
}
/* FIX: Lead modal (popup) leesbaarheid + luxe styling */
.modalBack{
  background: rgba(0,0,0,.62) !important;
  backdrop-filter: blur(10px);
}

.modal{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05)) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.92) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.45) !important;
  backdrop-filter: blur(14px);
}

.modal .sub,
.modal label,
.modal .fine{
  color: rgba(255,255,255,.75) !important;
}

.modal input,
.modal select,
.modal textarea{
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.92) !important;
}

.modal input::placeholder,
.modal textarea::placeholder{
  color: rgba(255,255,255,.55) !important;
}

.modal .btn.primary{
  background: var(--brandGrad) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 999px !important;
}

.modal .xbtn{
  background: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 999px !important;
}
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.whatsapp-float svg {
    display: block;
}
/* =========================
   LIGHT THEME (HIGH CONVERSION)
========================= */

/* 🎯 1. BASIS */
html, body{
  background: #f8fafc !important;
  color: #0f172a !important;
}

/* 🎯 2. HERO LICHT + CLEAN */
.hero::before{
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(59,130,246,.15), transparent 60%),
    radial-gradient(800px 480px at 85% 15%, rgba(255,138,0,.12), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

/* tekst donker maken */
.hero h1,
.hero h2,
.hero p,
.hero .lead,
.hero .fine{
  color: #0f172a !important;
}

/* subtitel */
.hero h2{
  opacity: 0.75;
}

/* 🎯 3. BADGES */
.badge{
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #334155 !important;
}

/* 🎯 4. CARDS */
.card,
.imgCard,
.kpi{
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.05) !important;
}

/* tekst in cards */
.card p,
.card .sub,
.kpi small{
  color: #64748b !important;
}

/* 🎯 5. LISTS */
.list{
  color: #334155 !important;
}

/* 🎯 6. CTA KNOP (BELANGRIJK) */
.btn.primary{
  background: #ff8a00 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(255,138,0,.3) !important;
}

.btn.primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255,138,0,.4) !important;
}

/* 🎯 7. SECONDARY BUTTON */
.btn.secondary{
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
}

/* 🎯 8. KPI BLOKKEN */
.kpi{
  background: #ffffff !important;
}

/* 🎯 9. FORMS */
input, select, textarea{
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #cbd5f5 !important;
}

input::placeholder,
textarea::placeholder{
  color: #94a3b8 !important;
}

/* 🎯 10. NAV (heel belangrijk visueel) */
.topbar{
  background: rgba(255,255,255,.85) !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.links a{
  color: #334155 !important;
}

.links a:hover{
  background: #f1f5f9 !important;
}

/* 🎯 CTA knop in navbar */
.cta{
  background: #ff8a00 !important;
  color: #fff !important;
}

/* 🎯 11. IMAGE OVERLAY */
.imgOverlay{
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,0)) !important;
}

/* 🎯 12. DARK CTA BLOCK behouden maar softer */
.darkCta{
  background: linear-gradient(135deg, #1f5fff, #ff8a00) !important;
  color: #fff !important;
}

/* 🎯 13. SECTION SPACING */
section{
  margin-bottom: 40px;
}

/* 🎯 14. WhatsApp netjes */
.whatsapp-float{
  bottom: 110px !important;
}
/* 🎯 PLATFORM PILLS FIX (heel belangrijk) */
.logoPill{
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
  font-weight: 800;
}

/* hover netjes */
.logoPill:hover{
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
}

/* tekst binnen pill */
.logoPill span{
  color: #0f172a !important;
}

/* afkorting (SHOP / M1 etc.) iets subtieler */
.logoPill span:last-child{
  color: #64748b !important;
}

/* bolletje links (logoDot) zichtbaar maken */
.logoDot{
  background: linear-gradient(135deg, #1f5fff, #ff8a00) !important;
}
/* =========================
   FINAL READABILITY FIX
========================= */

/* 🔥 1. TARIEVEN BLOKKEN */
#tarieven .card,
#tarieven .card * {
  color: #0f172a !important;
}

#tarieven .sub,
#tarieven .fine {
  color: #64748b !important;
}

#tarieven .row span {
  color: #475569 !important;
}

#tarieven .row b {
  color: #0f172a !important;
  font-weight: 800;
}

/* zachte blokken (verpakkingsmateriaal etc) */
#tarieven .soft {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

/* 🔥 2. CALCULATOR */
#calculator,
#calculator * {
  color: #0f172a !important;
}

#calculator .sub,
#calculator .hint,
#calculator .fine {
  color: #64748b !important;
}

#calculator .row span {
  color: #475569 !important;
}

#calculator .row b {
  color: #0f172a !important;
  font-weight: 800;
}

/* calculator cards */
#calculator .card {
  background: #ffffff !important;
}

/* mix boxes */
.mixBox {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}

/* 🔥 3. ALGEMENE TEKST FIX */
.sub,
.fine,
.hint {
  color: #64748b !important;
}

/* 🔥 4. LINKS / STEDEN (belangrijk) */
a {
  color: #1f5fff !important;
}

a:hover {
  color: #1d4ed8 !important;
}

/* specifieke stadspagina links (extra zekerheid) */
section a {
  color: #1f5fff !important;
}

/* 🔥 5. LISTS */
.list li {
  color: #334155 !important;
}

/* 🔥 6. DARK CTA BLOK (wit houden) */
.darkCta,
.darkCta * {
  color: #ffffff !important;
}
/* =========================
   FOOTER FIX (LIGHT THEME)
========================= */

.siteFooter {
  background: #0f172a !important; /* donker voor contrast */
  color: #e2e8f0 !important;
  border-top: none !important;
}

/* titels */
.siteFooter .footTitle {
  color: #ffffff !important;
  font-weight: 900;
}

/* gewone tekst */
.siteFooter .footText,
.siteFooter .footMeta {
  color: #cbd5e1 !important;
}

/* links */
.siteFooter a {
  color: #cbd5e1 !important;
}

.siteFooter a:hover {
  color: #ffffff !important;
}

/* bottom regel */
.siteFooter .footBottom {
  color: #94a3b8 !important;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 20px;
  padding-top: 10px;
}

/* spacing netter */
.siteFooter .footGrid {
  gap: 20px;
}
/* =========================
   LINK STYLING (NETJES & CONSISTENT)
========================= */

/* standaard links */
a {
  color: inherit !important;
  text-decoration: none !important;
}

/* hover effect (subtiel) */
a:hover {
  color: #ff8a00 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* =========================
   HEADER LINKS FIX
========================= */

/* alle links in header */
.topbar a,
.brand,
.brand * {
  color: rgba(255,255,255,0.9) !important;
}

/* hover */
.topbar a:hover {
  color: #ffffff !important;
}

/* CTA knop blijft zoals die is */
.topbar .cta {
  color: #ffffff !important;
}
/* =========================
   LOGO PILLS (DUidelijk & klikbaar)
========================= */

.logoPill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;

  padding: 6px 10px;
  border-radius: 999px;

  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: all .2s ease;
}

/* hover = duidelijk interactief */
.logoPill:hover{
  background: #fffbeb !important;
  border-color: #ff8a00 !important;
  color: #0f172a !important;
}

/* hoofdtekst */
.logoPill:hover span{
  color: #0f172a !important;
}

/* label (SHOP / M1 etc.) */
.logoPill span:last-child{
  color: #64748b !important;
  font-weight: 800;
  opacity: 1 !important;
}

/* bolletje */
.logoDot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f5fff, #ff8a00);
  flex-shrink: 0;
}
.logoPill{
  cursor: pointer;
  border: 1.5px solid #e2e8f0 !important;
}
}
.platform-title{
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #475569;
}
/* =========================
   COOKIE BANNER FIX
========================= */

.banner{
  background: #0f172a !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(255,255,255,.1) !important;
}

/* titel */
.banner b{
  color: #ffffff !important;
}

/* tekst */
.bannerText,
.bannerSub{
  color: #cbd5e1 !important;
}

/* links in banner */
.banner a{
  color: #ff8a00 !important;
  text-decoration: underline;
}

.banner a:hover{
  color: #ffa94d !important;
}

/* knoppen */
.banner .btn.primary{
  background: #ff8a00 !important;
  color: #fff !important;
}

.banner .btn.secondary{
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  color: #e2e8f0 !important;
}

.banner .btn.secondary:hover{
  background: rgba(255,255,255,.08) !important;
}
/* 🔥 FORCE FIX FORM (CONTACT) */

#contact label {
  color: #0f172a !important;
  font-weight: 600;
}

#contact input,
#contact textarea {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid #cbd5e1 !important;
}

#contact input::placeholder,
#contact textarea::placeholder {
  color: #94a3b8 !important;
}

#contact .card {
  background: #ffffff !important;
  color: #0f172a !important;
}
#contact label {
  color: #0f172a !important;
}
#contact .card label {
  color: #0f172a !important;
}
/* =========================
   🔥 CLEAN FORM + READABILITY FIX
========================= */

/* 🎯 CONTACT FORM (BELANGRIJKSTE) */
#contact {
  color: #0f172a;
}

#contact .card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
}

/* LABELS */
#contact label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

/* INPUTS */
#contact input,
#contact textarea {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  transition: border .2s ease, box-shadow .2s ease;
}

/* PLACEHOLDER */
#contact input::placeholder,
#contact textarea::placeholder {
  color: #94a3b8;
}

/* FOCUS STATE */
#contact input:focus,
#contact textarea:focus {
  outline: none;
  border-color: #ff8a00;
  box-shadow: 0 0 0 3px rgba(255,138,0,.15);
}

/* BUTTON */
#contact .btn.primary {
  background: #ff8a00;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

#contact .btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(255,138,0,.3);
}

/* SMALL TEXT */
#contact .fine {
  font-size: 13px;
  color: #64748b;
}

/* =========================
   🔥 GLOBAL TEXT FIX (voorkomt wit-op-wit)
========================= */

label {
  color: #0f172a;
}

input, textarea {
  color: #0f172a;
}

/* =========================
   🔥 CARD FIX (BELANGRIJK)
========================= */

.card {
  color: #0f172a;
}

/* =========================
   🔥 QUICK DEBUG (tijdelijk, mag je later verwijderen)
========================= */

/* force alles in form zichtbaar */
#contact * {
  color: inherit;
}