/* styles.css — Gele Kaart */

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.nav.is-solid {
  background: rgba(244,239,227,0.86);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 24px; }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 20px; letter-spacing: -0.01em;
}
.nav-dot { color: var(--yellow-deep); }
.nav-links { margin-left: auto; display: flex; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 15px; opacity: .8; transition: opacity .15s; white-space: nowrap; }
.nav-links a:hover { opacity: 1; }
.nav-cta { padding: 11px 20px; font-size: 15px; white-space: nowrap; }

/* ============ HERO ============ */
.hero { position: relative; padding: 150px 0 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-blob {
  position: absolute; right: -6%; top: 8%;
  width: 760px; height: 760px;
  background: var(--yellow);
  border-radius: 38% 42% 44% 40% / 42% 40% 44% 42%;
  transform: rotate(-8deg);
  opacity: 1;
  will-change: border-radius, transform;
  animation: blobmorph 13s ease-in-out infinite;
}
@keyframes blobmorph {
  0%   { border-radius: 38% 42% 44% 40% / 42% 40% 44% 42%; transform: rotate(-8deg) scale(1) translate(0, 0); }
  25%  { border-radius: 58% 42% 33% 67% / 55% 38% 62% 45%; transform: rotate(-2deg) scale(1.06) translate(-2%, 2%); }
  50%  { border-radius: 36% 64% 57% 43% / 40% 56% 44% 60%; transform: rotate(-13deg) scale(0.97) translate(2%, -1%); }
  75%  { border-radius: 50% 50% 38% 62% / 63% 37% 63% 37%; transform: rotate(-5deg) scale(1.07) translate(-1%, -2%); }
  100% { border-radius: 38% 42% 44% 40% / 42% 40% 44% 42%; transform: rotate(-8deg) scale(1) translate(0, 0); }
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
}
.hero-tag {
  display: inline-block; color: var(--ink);
  background: rgba(18,17,16,0.06);
  padding: 7px 13px; border-radius: 999px; margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(38px, 4.4vw, 60px);
  letter-spacing: 0.005em;
  line-height: 1.04;
}
.hero-hl { position: relative; white-space: nowrap; }
.hero-hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 8%; height: 30%;
  background: var(--yellow); z-index: -1; transform: rotate(-1.2deg);
  border-radius: 3px;
}
.hero-sub {
  margin-top: 26px; max-width: 30em; font-size: 18px; line-height: 1.55;
  color: var(--ink-soft); font-weight: 500;
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  margin: 34px 0 0; padding: 0; list-style: none;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before { content: "✓"; color: var(--yellow-deep); font-weight: 700; }

/* hero card visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.herocard { position: relative; width: min(78%, 380px); }
.herocard-img {
  width: 100%; display: block;
  transform: rotate(7deg);
  filter: drop-shadow(0 38px 44px rgba(18,17,16,0.36)) drop-shadow(0 6px 10px rgba(18,17,16,0.25));
  position: relative; z-index: 2;
}
.herocard.is-float .herocard-img { animation: cardfloat 6s ease-in-out infinite; }
@keyframes cardfloat {
  0%,100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-16px); }
}
.herocard-glow {
  position: absolute; inset: -10% -6% -22% -6%;
  background: radial-gradient(ellipse at 50% 45%, rgba(255,196,0,0.5), transparent 62%);
  filter: blur(20px); z-index: 0;
}
/* PLA print texture overlay on the photo */
[data-pla="on"] .herocard-img {
  /* subtle, the photo already has texture; reinforce with mask-free overlay sibling */
}
.herocard-floor { display: none; }

/* ============ SECTIONS BASE ============ */
.sec { padding: 96px 0; position: relative; }
.sec-paper { background: var(--paper); }
.sec-ink { background: var(--ink); color: var(--paper); }
.wrap-narrow { max-width: 760px; }
.sec-head { max-width: 760px; margin-bottom: 52px; }
.sec-title {
  font-size: clamp(36px, 5vw, 64px); margin-top: 14px; letter-spacing: -0.005em;
}
.sec-sub { margin-top: 18px; font-size: 18px; line-height: 1.55; font-weight: 500; opacity: .8; max-width: 34em; }

/* ============ HOW IT WORKS ============ */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-card {
  background: var(--white); border: 2px solid var(--ink); border-radius: 18px;
  padding: 30px 26px 28px; box-shadow: 6px 6px 0 var(--ink);
}
.how-num { font-size: 56px; color: var(--yellow-deep); -webkit-text-stroke: 1px var(--ink); }
.how-t { font-size: 22px; font-weight: 800; margin-top: 8px; }
.how-d { margin-top: 12px; line-height: 1.55; color: var(--ink-soft); font-weight: 500; }

/* ============ USE CASES ============ */
.uc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.uc-card {
  position: relative; background: #1c1a17; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px 20px 22px; min-height: 168px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.uc-card:hover { transform: translateY(-4px); background: #232019; border-color: var(--yellow); }
.uc-num { font-family: var(--font-mono); font-size: 13px; color: var(--yellow); letter-spacing: .1em; }
.uc-text { font-size: 16.5px; line-height: 1.4; font-weight: 600; }
.uc-card-mark {
  position: absolute; right: 16px; bottom: 16px; width: 18px; height: 24px;
  background: var(--yellow); border-radius: 3px; transform: rotate(-10deg);
  opacity: .9; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}

/* ============ PRODUCT DETAILS ============ */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pd-body { margin-top: 24px; font-size: 18px; line-height: 1.6; color: var(--ink-soft); font-weight: 500; max-width: 32em; }
.pd-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.pd-badge {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  background: var(--ink); color: var(--paper); padding: 8px 14px; border-radius: 999px;
}
.pd-right { position: relative; display: flex; flex-direction: column; gap: 22px; }
.pd-photo-wrap { display: flex; justify-content: center; padding: 8px 0 4px; }
.pd-photo {
  width: 48%; display: block;
  transform: rotate(-5deg);
  filter: drop-shadow(0 22px 30px rgba(18,17,16,0.22));
}
.pd-specs {
  margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.pd-spec {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 18px; display: flex; flex-direction: column; gap: 2px;
}
.pd-spec-k {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .1em; opacity: .5; margin: 0 0 4px;
}
.pd-spec-v { margin: 0; font-size: 19px; font-weight: 800; line-height: 1.1; }
.pd-spec-note { margin: 3px 0 0; font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

/* ============ REVIEWS ============ */
.rv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.rv-card {
  margin: 0; background: #1c1a17; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 28px 26px;
}
.rv-stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; }
.rv-stars-off { color: rgba(255,255,255,0.18); }
.rv-q { margin: 16px 0 18px; font-size: 19px; line-height: 1.5; font-weight: 600; }
.rv-cap { display: flex; align-items: baseline; gap: 10px; }
.rv-name { font-weight: 800; }
.rv-loc { font-family: var(--font-mono); font-size: 12px; opacity: .55; }

/* ============ FAQ ============ */
.faq-list { border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; font-size: 20px; font-weight: 700; color: var(--ink);
}
.faq-ico { font-family: var(--font-mono); font-size: 26px; color: var(--yellow-deep); flex: none; }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item.is-open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-item.is-open .faq-a { padding: 0 4px 26px; }
.faq-a { font-size: 17px; line-height: 1.6; color: var(--ink-soft); font-weight: 500; max-width: 56em; }

/* ============ FINAL CTA ============ */
.finalcta { background: var(--yellow); padding: 84px 0; }
.finalcta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.finalcta-title { font-size: clamp(40px, 6vw, 82px); color: var(--ink); }
.finalcta-side { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.finalcta-price { display: flex; align-items: center; gap: 12px; }
.finalcta-incl { font-family: var(--font-mono); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.finalcta .btn-primary { background: var(--ink); color: var(--yellow); box-shadow: 5px 5px 0 rgba(0,0,0,0.25); }
.finalcta .btn-primary:hover { box-shadow: 8px 8px 0 rgba(0,0,0,0.25); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: var(--paper); padding: 44px 0; }
.footer-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { opacity: .7; font-weight: 600; font-size: 14px; }
.footer-links a:hover { opacity: 1; color: var(--yellow); }
.footer-fine { margin-left: auto; font-family: var(--font-mono); font-size: 12px; opacity: .5; }

/* ============ ORDER MODAL ============ */
.of-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(18,17,16,0.6);
  backdrop-filter: blur(4px); display: grid; place-items: center; padding: 24px;
  animation: offade .2s ease;
}
@keyframes offade { from { opacity: 0; } to { opacity: 1; } }
.of-modal {
  position: relative; width: min(920px, 100%); max-height: 92vh; overflow: auto;
  background: var(--paper); border-radius: 22px; border: 2px solid var(--ink);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4); animation: ofpop .26s cubic-bezier(.2,.8,.3,1);
}
@keyframes ofpop { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.of-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--ink);
  background: var(--paper); font-size: 15px; display: grid; place-items: center;
}
.of-close:hover { background: var(--yellow); }
.of-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; }
.of-aside { background: var(--ink); color: var(--paper); padding: 34px 30px; }
.of-aside-card { display: flex; align-items: center; gap: 14px; margin: 18px 0 24px; }
.of-mini { width: 56px; transform: rotate(-6deg); filter: drop-shadow(0 8px 12px rgba(0,0,0,0.4)); }
.of-aside-name { font-weight: 800; font-size: 18px; }
.of-aside-sub { font-size: 13px; opacity: .65; margin-top: 2px; }
.of-qty { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.of-stepper { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.08); border-radius: 999px; padding: 4px; }
.of-stepper button { width: 30px; height: 30px; border-radius: 50%; border: none; background: var(--paper); color: var(--ink); font-size: 18px; font-weight: 800; line-height: 1; }
.of-stepper button:hover { background: var(--yellow); }
.of-qty-num { min-width: 30px; text-align: center; font-family: var(--font-mono); font-weight: 700; }
.of-lines { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.12); display: grid; gap: 10px; }
.of-line { display: flex; justify-content: space-between; font-size: 15px; }
.of-muted { opacity: .6; }
.of-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); font-weight: 800; }
.of-total span:last-child { font-family: var(--font-mono); font-size: 24px; color: var(--yellow); }
.of-fineprint { margin-top: 14px; font-size: 12px; opacity: .55; line-height: 1.5; }

.of-form { padding: 38px 36px 32px; }
.of-title { font-size: 34px; }
.of-intro { margin: 10px 0 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.5; font-weight: 500; }
.of-field { display: block; margin-bottom: 16px; }
.of-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 14px; }
.of-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.of-input {
  width: 100%; font-family: var(--font-body); font-size: 16px; font-weight: 500;
  padding: 13px 14px; border-radius: 11px; border: 2px solid var(--ink);
  background: var(--white); color: var(--ink); transition: box-shadow .12s, border-color .12s;
}
.of-input:focus { outline: none; box-shadow: 0 0 0 3px var(--yellow); }
.of-input.has-error { border-color: #d23b3b; background: #fff5f4; }
.of-select-wrap { position: relative; }
.of-select-wrap::after { content: "▾"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; opacity: .6; }
.of-error { display: block; color: #d23b3b; font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.of-secure { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; }

/* confirmation */
.of-done { padding: 48px 44px 40px; text-align: center; position: relative; }
.of-stamp {
  position: absolute; top: 30px; right: 34px; transform: rotate(12deg);
  font-family: var(--font-display); font-size: 30px; color: var(--yellow-deep);
  border: 4px solid var(--yellow-deep); border-radius: 10px; padding: 4px 12px; opacity: .5;
}
.of-done-title { font-size: 46px; margin: 10px 0 16px; }
.of-done-text { font-size: 16.5px; line-height: 1.6; color: var(--ink-soft); font-weight: 500; max-width: 30em; margin: 0 auto 26px; }
.of-receipt { background: var(--white); border: 2px solid var(--ink); border-radius: 14px; padding: 18px 22px; display: grid; gap: 10px; max-width: 380px; margin: 0 auto 22px; text-align: left; }
.of-mono { font-family: var(--font-mono); font-weight: 700; }
.of-pay-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .5; }

/* overschrijving panel */
.of-transfer {
  max-width: 420px; margin: 0 auto 24px; text-align: left;
  background: var(--white); border: 2px solid var(--ink); border-radius: 16px;
  padding: 18px 20px; box-shadow: 5px 5px 0 var(--ink);
}
.of-transfer-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 6px; border-bottom: 2px dashed var(--line);
}
.of-transfer-amt { font-size: 24px; font-weight: 700; color: var(--ink); }
.of-transfer-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-top: 1px solid var(--line);
}
.of-transfer-row:first-of-type { border-top: none; }
.of-transfer-row > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.of-tr-k { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; opacity: .5; }
.of-tr-v { font-size: 16px; font-weight: 700; word-break: break-word; }
.of-copy {
  flex: none; font-family: var(--font-body); font-size: 12.5px; font-weight: 700;
  background: var(--yellow); color: var(--ink); border: 2px solid var(--ink);
  border-radius: 999px; padding: 7px 14px; transition: transform .1s, background .15s;
}
.of-copy:hover { transform: translateY(-1px); }
.of-copy.is-done { background: var(--ink); color: var(--yellow); }

/* ============ HERO UPSELL ============ */
.hero-upsell {
  margin-top: 22px; font-size: 15.5px; line-height: 1.5;
  color: var(--ink-soft); font-weight: 500; max-width: 34em;
}
.hero-upsell-link {
  background: none; border: none; padding: 0; font: inherit;
  font-weight: 800; color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--yellow); transition: box-shadow .15s, background .15s;
}
.hero-upsell-link:hover { background: var(--yellow); box-shadow: inset 0 -2px 0 var(--ink); }

/* ============ USE-CASE CARDS AS BUTTONS ============ */
.uc-card {
  appearance: none; text-align: left; font: inherit; color: var(--paper);
  cursor: pointer; width: 100%;
}
.uc-card:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

/* ============ PRODUCT CTA / PRICE BLOCK ============ */
.pd-buy {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
}
.pd-price { display: flex; flex-direction: column; line-height: 1; }
.pd-price-amt {
  font-family: var(--font-display); font-size: 56px; color: var(--ink); letter-spacing: -0.01em;
}
.pd-price-per {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-top: 6px;
}
.pd-buy-action { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.pd-buy-note { font-family: var(--font-mono); font-size: 12.5px; font-weight: 700; letter-spacing: .03em; color: var(--ink-soft); }

/* ============ FINAL CTA SECONDARY ============ */
.finalcta-buy {
  background: none; border: none; padding: 2px 0; font: inherit;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  color: var(--ink); opacity: .7; cursor: pointer; text-align: left;
  box-shadow: inset 0 -1px 0 rgba(18,17,16,.4);
}
.finalcta-buy:hover { opacity: 1; }

/* ============ SEND MODAL (digitale gele kaart) ============ */
.sm-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(18,17,16,0.6);
  backdrop-filter: blur(4px); display: grid; place-items: center; padding: 24px;
  animation: offade .2s ease;
}
.sm-modal {
  position: relative; width: min(940px, 100%); max-height: 92vh; overflow: auto;
  background: var(--paper); border-radius: 22px; border: 2px solid var(--ink);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4); animation: ofpop .26s cubic-bezier(.2,.8,.3,1);
}
.sm-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; }
.sm-aside {
  background: var(--ink); color: var(--paper); padding: 34px 30px;
  display: flex; flex-direction: column; justify-content: center;
}
.sm-aside-note { margin-top: 22px; font-size: 13px; line-height: 1.55; opacity: .6; }

/* live card preview */
.dc-card {
  margin-top: 18px; background: var(--yellow); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 14px;
  padding: 20px 22px 16px; transform: rotate(-2deg);
  box-shadow: 8px 10px 0 rgba(0,0,0,0.35);
  display: flex; flex-direction: column; gap: 16px; min-height: 230px;
}
.dc-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dc-card-badge {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  background: var(--ink); color: var(--yellow); padding: 4px 9px; border-radius: 5px;
}
.dc-card-date { font-family: var(--font-mono); font-size: 11px; font-weight: 700; opacity: .7; }
.dc-card-body { display: flex; flex-direction: column; gap: 14px; flex: 1; }
.dc-row { display: flex; flex-direction: column; gap: 4px; }
.dc-k { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; opacity: .55; }
.dc-aan { font-family: var(--font-display); font-size: 26px; line-height: 1; text-transform: uppercase; letter-spacing: .01em; }
.dc-reden { font-size: 18px; font-weight: 700; line-height: 1.3; }
.dc-card-foot {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  border-top: 2px dashed rgba(18,17,16,0.28); padding-top: 12px;
}
.dc-van { font-size: 13px; font-weight: 600; font-style: italic; opacity: .8; word-break: break-word; }
.dc-brand { font-family: var(--font-mono); font-size: 11px; font-weight: 700; opacity: .7; flex: none; }

/* compose form */
.sm-form { padding: 38px 36px 30px; }
.sm-title { font-size: 34px; }
.sm-intro { margin: 10px 0 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.5; font-weight: 500; }
.sm-opt { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .45; margin-left: 4px; }
.sm-textarea { resize: vertical; line-height: 1.4; min-height: 64px; }
.sm-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: -4px 0 18px; }
.sm-chip {
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  background: var(--white); color: var(--ink-soft); border: 1.5px solid var(--line);
  border-radius: 999px; padding: 7px 12px; cursor: pointer;
  transition: border-color .14s, color .14s, background .14s;
}
.sm-chip:hover { border-color: var(--ink); color: var(--ink); background: var(--yellow-soft); }

.sm-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.sm-wa {
  background: #25D366; color: #06351a;
  box-shadow: 0 0 0 2px var(--ink), 4px 4px 0 0 var(--ink);
  justify-content: center;
}
.sm-wa:hover { transform: translate(-2px,-2px); box-shadow: 0 0 0 2px var(--ink), 7px 7px 0 0 var(--ink); }
.sm-wa:active { transform: translate(2px,2px); box-shadow: 0 0 0 2px var(--ink), 2px 2px 0 0 var(--ink); }
.sm-actions-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sm-mail, .sm-copy { justify-content: center; font-size: 15px; padding: 13px 18px; }
.sm-copy.is-done { background: var(--ink); color: var(--yellow); }
.is-disabled, .sm-copy:disabled { opacity: .4; pointer-events: none; cursor: not-allowed; }
.sm-hint { font-size: 12.5px; color: var(--ink-soft); text-align: center; margin-top: 2px; }

.sm-physical {
  margin-top: 22px; width: 100%; text-align: left;
  background: none; border: none; border-top: 1px solid var(--line);
  padding: 18px 2px 2px; font: inherit; font-size: 14px; font-weight: 500;
  color: var(--ink-soft); cursor: pointer;
}
.sm-physical span { font-weight: 800; color: var(--ink); box-shadow: inset 0 -2px 0 var(--yellow); }
.sm-physical:hover span { background: var(--yellow); }

/* ============ STIJL VARIANTS ============ */
/* strak — clean, minder shadows, witte secties */
[data-stijl="strak"] { --paper: #ffffff; --paper-2: #f4f4f2; }
[data-stijl="strak"] .hero-blob { opacity: .16; }
[data-stijl="strak"] .btn-primary { box-shadow: 0 0 0 2px var(--ink); }
[data-stijl="strak"] .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(18,17,16,.18); }
[data-stijl="strak"] .how-card { box-shadow: none; border-radius: 14px; }
[data-stijl="strak"] .herocard-img { transform: rotate(3deg); }
[data-stijl="strak"] .herocard.is-float .herocard-img { animation: none; transform: rotate(3deg); }

/* sportief — donkere hero, diagonale energie */
[data-stijl="sportief"] .hero { background: var(--ink); color: var(--paper); }
[data-stijl="sportief"] .hero-copy .hero-title,
[data-stijl="sportief"] .hero-tag { color: var(--paper); }
[data-stijl="sportief"] .hero-tag { background: rgba(255,255,255,0.1); }
[data-stijl="sportief"] .hero-sub { color: rgba(244,239,227,0.8); }
[data-stijl="sportief"] .hero-trust { color: rgba(244,239,227,0.75); }
[data-stijl="sportief"] .btn-ghost { box-shadow: inset 0 0 0 2px var(--paper); color: var(--paper); }
[data-stijl="sportief"] .btn-ghost:hover { background: var(--paper); color: var(--ink); }
[data-stijl="sportief"] .hero-blob {
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 22px, #1c1a17 22px 44px);
  opacity: .9; border-radius: 28px; animation: none;
}
[data-stijl="sportief"] .nav.is-solid { background: rgba(18,17,16,0.9); color: var(--paper); }
[data-stijl="sportief"] .nav.is-solid .nav-brand { color: var(--paper); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .herocard { width: 220px; }
  .hero-blob { width: 460px; height: 460px; right: -20%; top: -4%; }
  .how-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr 1fr; }
  .pd-grid { grid-template-columns: 1fr; gap: 36px; }
  .pd-photo { width: 48%; }
  .rv-grid { grid-template-columns: 1fr; }
  .of-grid { grid-template-columns: 1fr; }
  .of-aside { order: 2; }
  .sm-grid { grid-template-columns: 1fr; }
  .sm-aside { order: 2; }
  .footer-fine { margin-left: 0; width: 100%; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .uc-grid { grid-template-columns: 1fr; }
  .of-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .sm-actions-row { grid-template-columns: 1fr; }
  .finalcta-inner { flex-direction: column; align-items: flex-start; }
}
