:root {
  --bg: #f8f6f0;
  --bg-soft: #edf5ee;
  --bg-dark: #161e14;
  --surface: #ffffff;
  --surface-alt: #f7faf8;
  --text: #191e17;
  --text-2: #4a5548;
  --text-3: #7a8a78;
  --green: #2b6b35;
  --green-l: #3d8c47;
  --orange: #e8541a;
  --orange-h: #d14c15;
  --border: #e0ddd5;
  --border-d: #c5c2b8;
  --shadow: 0 2px 12px rgba(27,70,39,.07);
  --shadow-lg: 0 10px 36px rgba(27,70,39,.11);
  --r: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --mw: 1200px;
  --hh: 84px;
  --fdisp: "Fraunces", Georgia, serif;
  --fbody: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--fbody);
  color: var(--text);
  background:
    radial-gradient(ellipse 640px 520px at 65% 22%, rgba(43, 107, 53, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 420px 320px at 5% 82%, rgba(196, 144, 48, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #f8f6f0 0%, #fbfaf6 42%, #ffffff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  max-width: var(--mw);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}
.section { padding: 68px 0; }
.mt-16 { margin-top: 16px; }
.prefill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.prefill-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef7f0;
  border: 1px solid #cfe0d1;
  color: #24553a;
  font-size: 12px;
  font-weight: 700;
}
.under-link {
  color: inherit;
  text-decoration: none;
}
.under-link:hover { text-decoration: underline; text-decoration-color: #2b6b35; }
.soon-tag {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f4f6f3;
  border: 1px solid #d8ddd6;
  color: #5b665a;
  font-size: 11px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 86px;
  display: flex;
  align-items: center;
  background: rgba(248, 246, 240, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 480px) {
  .brand-header {
    width: min(240px, 68vw);
    height: 48px;
  }
}

@media (max-width: 375px) {
  .container { padding: 0 14px; }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .wizard-pane { padding: 20px 16px; }
}

.header-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.brand-header {
  width: min(330px, 28vw);
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  font-family: var(--fdisp);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--green);
}

.brand-sub {
  font-size: 12px;
  color: var(--text-3);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-nav a:hover { color: var(--green); }

.header-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
  margin-left: 4px;
}

.header-lang a {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .02em;
}

.header-lang a[aria-current="page"] {
  color: var(--green);
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s ease;
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--bg);
  padding: 24px;
  flex-direction: column;
  gap: 28px;
}

.mob-menu.open { display: flex; }

.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mob-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mob-links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mob-links a {
  font-family: var(--fdisp);
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 600;
  color: var(--text);
}

.mob-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.mob-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
}

.mob-lang a.act {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 84, 26, 0.28);
}

.btn-primary:hover { background: var(--orange-h); }

.btn-soft {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  border-color: var(--border-d);
}

.btn-soft:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-whatsapp {
  background: #25d366;
  color: #06361c;
  font-weight: 800;
}

.btn-whatsapp.disabled {
  opacity: 0.55;
  pointer-events: none;
}

.mobile-quickbar {
  display: none;
}

.mobile-quickbar a {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  padding: 0 10px;
}

.mobile-quickbar .mq-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(232, 84, 26, 0.26);
}

.mobile-quickbar .mq-secondary {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border-d);
}

.mobile-quickbar .mq-wa {
  background: #25d366;
  color: #fff;
}

.wa-fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: calc(78px + env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  z-index: 95;
}

.wa-fab svg {
  width: 25px;
  height: 25px;
}

.hero {
  min-height: calc(100vh - var(--hh));
  display: flex;
  align-items: center;
  padding: 54px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 680px 480px at 70% 12%, rgba(43, 107, 53, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 420px 320px at 0% 88%, rgba(196, 144, 48, 0.06) 0%, transparent 62%);
}

.hero::after {
  content: "OPRIT PROPER";
  position: absolute;
  left: -12px;
  bottom: 4%;
  z-index: 0;
  font-family: var(--fdisp);
  font-size: 180px;
  font-weight: 900;
  line-height: 0.8;
  color: rgba(43, 107, 53, 0.035);
  pointer-events: none;
  white-space: nowrap;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 48px;
  align-items: center;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid #d5e7d7;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--fdisp);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.lead {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 620px;
}

.sublead {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--text-3);
  max-width: 620px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 26px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dce8de;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  color: #244932;
}

.trust-pills span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero-form-card {
  position: sticky;
  top: calc(var(--hh) + 18px);
  background: linear-gradient(180deg, #fff 0%, #fcfefb 100%);
  border: 1.5px solid #d1e3d4;
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(43, 107, 53, 0.04);
}

.hero-form-card h2 {
  font-size: 18px;
  line-height: 1.22;
  margin-bottom: 4px;
  color: var(--text);
}

.hero-form-card > p {
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text-3);
  font-size: 13px;
}

.upload-box {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 124px;
  margin-bottom: 14px;
  padding: 14px 14px;
  border: 2px dashed #b8d4bc;
  border-radius: 18px;
  background: linear-gradient(180deg, #f4faf6 0%, #edf5ee 100%);
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.upload-box:hover {
  border-color: var(--green);
  background: linear-gradient(180deg, #edf5ee 0%, #e5f0e7 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(43, 107, 53, 0.1);
}

.upload-icon {
  font-size: 24px;
  line-height: 1;
}

.upload-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
}

.upload-sub {
  max-width: 300px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-3);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}

.field label svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  display: block;
  color: #6e8671;
  flex-shrink: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  transition: all 0.2s ease;
  min-height: 44px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(43, 107, 53, 0.1);
  background: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-3);
  font-weight: 400;
}

.field select {
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 72px;
}

.field-full { grid-column: 1 / -1; }

.form-note {
  margin: 10px 0 0;
  color: var(--text-3);
  font-size: 12px;
}

.form-actions {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.form-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  text-align: center;
}
.form-lock::before {
  content: '🔒';
  font-size: 11px;
}
.wizard-error {
  display: none;
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #9f1239;
  font-size: 13px;
  font-weight: 700;
}
.wizard-error.show { display: block; }
.wizard-error:not(.show) {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  min-height: 0 !important;
}

.seo-wz-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 4px;
  padding: 5px 7px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f7f1 0%, #fff 100%);
  border: 1px solid #d5e7d7;
}
.wizard-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
  padding: 0 2px;
}
.wizard-steps::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #ddeadf;
  z-index: 0;
}
.ws-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
  min-width: 44px;
}
.ws-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d0e4d2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.ws-dot svg { width: 11px; height: 11px; color: #b8ccba; }
.ws-lbl {
  font-size: 9px;
  font-weight: 600;
  color: #b0c4b3;
  text-transform: uppercase;
  letter-spacing: .3px;
  text-align: center;
  line-height: 1.2;
}
.ws-step.done .ws-dot { background: var(--green); border-color: var(--green); }
.ws-step.done .ws-dot svg { color: #fff; }
.ws-step.done .ws-lbl { color: var(--green); }
.ws-step.active .ws-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(43,107,53,.2);
}
.ws-step.active .ws-dot svg { color: #fff; }
.ws-step.active .ws-lbl { color: var(--green); font-weight: 800; }
.seo-wz-progress { display: none; }
.seo-wz-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.seo-wz-track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #e0ebe2;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}
.seo-wz-fill {
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2b6b35, #3d8c47);
  transition: width 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 8px rgba(43,107,53,0.3);
}

.wizard-panes { display: block; }
.wizard-pane { display: none; padding: 0; margin: 0; }
.wizard-pane.active {
  display: block;
  padding: 0;
  margin: 0;
  animation: wzFadeIn 0.3s ease;
}
.wizard-progress { display: none !important; }
.wizard-pane.active > *:first-child { margin-top: 0; }
.wizard-pane .field,
.wizard-pane .field.full { margin: 0; }
@keyframes wzFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wizard-pane .field-full,
.wizard-pane .field.full { grid-column: 1 / -1; }
.wizard-pane { margin-top: 2px; }

.wizard-title {
  font-family: var(--fdisp);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wizard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.wizard-grid-1 { grid-template-columns: 1fr; }

.wt-ico {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: var(--green-pale);
  margin-right: 6px;
  vertical-align: middle;
}
.wt-ico svg {
  width: 12px;
  height: 12px;
  display: block;
}

.select-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.select-card {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 14px 12px 12px;
  background: #fff;
  cursor: pointer;
  transition: all .22s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 92px;
  text-align: center;
  position: relative;
}
.select-card:hover {
  border-color: var(--green-l);
  background: #f8fcf9;
  box-shadow: 0 6px 20px rgba(43,107,53,.1);
  transform: translateY(-2px);
}
.select-card:has(input:checked),
.select-card.active {
  border-color: var(--green);
  background: linear-gradient(135deg,#f0f7f1 0%,#fff 100%);
  box-shadow: 0 4px 16px rgba(43,107,53,.14);
}
.select-card input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  min-width: 17px;
  min-height: 0;
  max-width: 17px;
  max-height: 17px;
  padding: 0;
  border: 2px solid var(--border-d);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 9px;
  right: 9px;
  cursor: pointer;
  transition: all .2s ease;
  margin: 0;
  box-sizing: border-box;
}
.select-card input[type="radio"]:checked {
  border-color: var(--green);
  background: var(--green);
}
.select-card input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

/* Type cards (Particulier / Zakelijk) */
.seo-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}
.seo-type-card {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 8px 10px 8px;
  border: 2px solid var(--border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  min-height: 74px;
  text-align: center;
}
.seo-type-card:hover {
  border-color: var(--green-l);
  background: #f8fcf9;
  box-shadow: 0 6px 20px rgba(43, 107, 53, 0.1);
  transform: translateY(-2px);
}
.seo-type-card input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-d);
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
  position: absolute;
  top: 8px;
  left: 8px;
}
.seo-type-card input[type="radio"]:checked {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(43,107,53,0.15);
}
.seo-type-card input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.seo-type-card .ttl {
  display: block;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.12;
}
.seo-type-card .ico {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--green);
  margin-top: 0;
}
.seo-type-card .ico svg {
  width: 100%;
  height: 100%;
  display: block;
}
.seo-type-card.active,
.seo-type-card:has(input:checked) {
  border-color: var(--green);
  background: linear-gradient(135deg, #f0f7f1 0%, #fff 100%);
  box-shadow: 0 4px 16px rgba(43, 107, 53, 0.12);
}
.select-card .sc-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(43,107,53,.09);
  transition: all .22s ease;
}
.select-card .sc-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}
.select-card:has(input:checked) .sc-ico,
.select-card.active .sc-ico {
  background: rgba(43,107,53,.16);
}
.select-card .ttl {
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
  line-height: 1.15;
}
.select-card .sub {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.2;
}

/* Check cards (Type werk) */
.check-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.seo-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}
.seo-check-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 8px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.check-card {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 8px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.seo-check-card:hover {
  border-color: var(--green-l);
  background: #f8fcf9;
  box-shadow: 0 4px 14px rgba(43, 107, 53, 0.08);
  transform: translateY(-1px);
}
.check-card:hover {
  border-color: var(--green-l);
  background: #f8fcf9;
  box-shadow: 0 4px 14px rgba(43, 107, 53, 0.08);
  transform: translateY(-1px);
}
.seo-check-card input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 0;
  max-width: 18px;
  max-height: 18px;
  padding: 0;
  border: 2px solid var(--border-d);
  border-radius: 6px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.check-card input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 0;
  max-width: 18px;
  max-height: 18px;
  padding: 0;
  border: 2px solid var(--border-d);
  border-radius: 6px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.seo-check-card input[type="checkbox"]:checked {
  border-color: var(--green);
  background: var(--green);
}
.check-card input[type="checkbox"]:checked {
  border-color: var(--green);
  background: var(--green);
}
.seo-check-card input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.check-card input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.seo-check-card.active,
.seo-check-card:has(input:checked) {
  border-color: var(--green);
  background: linear-gradient(135deg, #f0f7f1 0%, #fff 100%);
  box-shadow: 0 4px 12px rgba(43, 107, 53, 0.1);
}
.check-card.active,
.check-card:has(input:checked) {
  border-color: var(--green);
  background: linear-gradient(135deg, #f0f7f1 0%, #fff 100%);
  box-shadow: 0 4px 12px rgba(43, 107, 53, 0.1);
}
.check-card .cc-ico {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(43,107,53,.06);
  color: var(--green);
}
.check-card .cc-ico svg {
  width: 13px;
  height: 13px;
  display: block;
}
.check-card .ttl {
  font-weight: 600;
  color: var(--text);
  font-size: 11.5px;
  line-height: 1.25;
}

.dirt-cards { display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; margin-top: 4px; }
.dirt-card {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 8px 4px 7px;
  background: #fff;
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.dirt-card:hover { border-color: var(--green-l); background: #f8fcf9; }
.dirt-card.dc-active { border-color: var(--green); background: linear-gradient(135deg,#f0f7f1,#fff); box-shadow: 0 2px 8px rgba(43,107,53,.1); }
.dirt-card .d-ico { font-size: 17px; line-height: 1; }
.dirt-card .d-lbl { font-size: 9px; font-weight: 700; color: var(--text-2); line-height: 1.2; }
.dirt-card.dc-active .d-lbl { color: var(--green); }

.tg-wrap { display: flex; flex-direction: column; gap: 4px; }
.tg-lbl { font-size: 12px; font-weight: 600; color: var(--text-2); }
.toggle-group { display: flex; gap: 4px; }
.toggle-group button {
  flex: 1;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-2);
  cursor: pointer;
  transition: all .18s ease;
  font-family: var(--fbody);
}
.toggle-group button:hover { border-color: var(--green-l); color: var(--green); background: #f8fcf9; }
.toggle-group button.tg-yes { border-color: var(--green); background: var(--green); color: #fff; }
.toggle-group button.tg-no { border-color: var(--border-d); background: #f5f5f4; color: var(--text-2); }

.wizard-hint {
  margin-top: 8px;
  padding: 8px 10px;
  background: #f8faf8;
  border: 1px solid #e2ebe2;
  border-radius: 8px;
  color: var(--text-3);
  font-size: 11px;
  line-height: 1.5;
}

#op-prev-btn {
  flex-shrink: 0;
  padding: 11px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1.5px solid var(--border-d);
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .18s ease;
}
#op-prev-btn:not([disabled]):hover { border-color: var(--green); color: var(--green); }
#op-prev-btn[disabled] { opacity: .35; cursor: not-allowed; }
#op-prev-btn svg { width: 15px; height: 15px; }

#op-next-btn {
  flex: 1;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .18s ease;
  font-family: var(--fbody);
  box-shadow: 0 4px 14px rgba(43,107,53,.28);
}
#op-next-btn:hover { background: var(--green-l); box-shadow: 0 6px 18px rgba(43,107,53,.35); }
#op-next-btn svg { width: 15px; height: 15px; }
.wizard-submit { display: none; margin-top: 10px; }
.wizard-submit.show { display: inline-flex; }

/* Consent */
.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 8px 9px;
  border-radius: 10px;
  background: #f8faf8;
  border: 1px solid #e8ede8;
  color: var(--text-2);
  font-size: 11.5px;
  line-height: 1.35;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

/* Wizard form overrides */
.seo-wizard-form .upload-box {
  min-height: 84px;
  margin: 0;
  padding: 10px 12px;
  border-radius: var(--r-lg);
}
.seo-wizard-form .upload-icon { font-size: 22px; }
.seo-wizard-form .upload-title { font-size: 12.5px; }
.seo-wizard-form .upload-sub { max-width: 320px; font-size: 10.5px; line-height: 1.35; }
.seo-wizard-form #op-fotos {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
}
.seo-wizard-form .form-actions { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.seo-wizard-form .form-actions .btn-whatsapp { grid-column: 1 / -1; }
.seo-wizard-form .wizard-nav { margin-top: 10px; }
.seo-wizard-form .wizard-error { margin-top: 8px; }
.seo-wizard-form .field { gap: 2px; }
.seo-wizard-form .wizard-pane { margin-top: 0; }
.seo-wizard-form .wizard-pane.active > *:first-child { margin-top: 0; }
.seo-wizard-form .wizard-title { margin-bottom: 8px; }
.seo-wizard-form .wizard-error:empty { display: none !important; margin: 0 !important; padding: 0 !important; border: 0 !important; }


.tone-a {
  background: linear-gradient(180deg, #f7faf6 0%, #ffffff 100%);
}

.tone-b {
  background: linear-gradient(180deg, #edf5ee 0%, #fbfaf6 100%);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.three > .card,
.grid.three > .price-card {
  height: 100%;
}

.card,
.price-card,
.step,
.cross-card,
.faq-wrap details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.card {
  padding: 20px;
  min-height: 150px;
}

.card p,
.cross-card p,
.faq-wrap p {
  margin: 0;
  color: var(--text-2);
}

.cross-card h2,
.cross-card h3 {
  color: var(--text);
}

.price-card {
  padding: 28px 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  transition: all 0.22s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(155deg, #f0f7f1 0%, #fff 45%);
}

@media (min-width: 992px) {
  .price-card.featured {
    transform: scale(1.03);
    z-index: 2;
  }
  .price-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
  }
}

.price-card .pc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.price-card .pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.price {
  margin: 0 0 8px;
  font-family: var(--fdisp);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.price span {
  font-size: 26px;
}

.price-from {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 18px;
}

.price-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.price-feat {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-feat li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.price-feat li::before {
  content: '';
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232b6b35' stroke-width='3' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
  margin-top: 4px;
}

.price-card .btn {
  margin-top: auto;
}

.rate-box {
  margin-top: 16px;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(10, 24, 16, .04);
}

.rate-hdr {
  padding: 26px 28px 20px;
  background: linear-gradient(180deg, #235f32 0%, #1c4c28 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 0;
}

.rate-hdr h3 {
  margin-bottom: 6px;
  color: #fff;
}

.rate-hdr p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  margin: 0;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  gap: 14px;
  transition: background .15s ease;
}

.rate-row:last-of-type {
  border-bottom: none;
}

.rate-row:hover {
  background: #fafcf9;
}

.rate-lbl {
  color: var(--text-2);
  min-width: 0;
}

.rate-val {
  font-weight: 700;
  color: #215d35;
  text-align: right;
  white-space: nowrap;
}

.rate-note {
  margin: 0;
  padding: 16px 24px;
  background: #eef5ef;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: #3d5a47;
  font-weight: 500;
  line-height: 1.55;
}

/* Legacy rate-box with ul (subpages) */
.rate-box ul {
  margin: 0 0 8px;
  padding-left: 18px;
}

.rate-box li {
  margin-bottom: 6px;
  color: var(--text-2);
}

.rate-box > p {
  margin: 0;
  color: var(--text-3);
  font-size: 13px;
}

.step {
  padding: 16px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: var(--text-2);
}

.area-copy {
  margin: 0;
  max-width: 860px;
  color: var(--text-2);
  font-size: 17px;
}

.cross-card {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(43, 107, 53, 0.08), transparent 34%),
    #fff;
}

.faq-wrap details {
  padding: 14px 16px;
  margin-bottom: 10px;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.faq-wrap p {
  margin-top: 10px;
}

.site-footer {
  margin-top: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-row strong {
  font-family: var(--fdisp);
  font-size: 20px;
  color: var(--green);
}

.footer-row p {
  margin: 6px 0 0;
  color: var(--text-3);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

.footer-links a:hover {
  color: var(--green-l);
}

/* Subpagina's: hou hero compacter en zonder grote watermark */
body.seo-subpage .hero {
  min-height: auto;
  padding: 24px 0 28px;
}

body.seo-subpage .hero::after {
  display: none;
}

body.seo-subpage .hero-grid {
  align-items: start;
  gap: 28px;
}

body.seo-subpage .hero-form-card {
  top: calc(var(--hh) + 8px);
}

/* Main-page stijl voor CTA band + donkere footer op subpagina's */
.seo-final-cta {
  background: linear-gradient(135deg, #2f7c3b 0%, #2b6b35 62%);
  color: #fff;
  padding: 64px 0;
}

.seo-final-cta .seo-final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.seo-final-cta h2 {
  margin: 0 0 14px;
  color: #fff;
}

.seo-final-cta p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
}

.seo-final-cta .hero-cta {
  justify-content: center;
  margin: 0;
}

.ftr {
  background: #0e1512;
  color: rgba(255, 255, 255, 0.55);
  padding: 52px 0 32px;
}

.ftr-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.ftr-name {
  font-family: var(--fdisp);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ftr-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.42);
  max-width: 320px;
}

.ftr-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
}

.ftr-mark img {
  width: 100%;
  max-width: 64px;
  height: 64px;
  object-fit: contain;
}

.ftr-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.ftr-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ftr-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  transition: color 0.2s;
}

.ftr-col ul a:hover {
  color: #fff;
}

.ftr-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.ftr-langs {
  display: flex;
  gap: 16px;
}

.ftr-langs a {
  color: rgba(255, 255, 255, 0.35);
}

.ftr-langs a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .site-header {
    height: 82px;
  }

  .brand-header {
    width: min(290px, 34vw);
    height: 56px;
  }

  .header-row {
    gap: 14px;
  }

  .header-nav {
    gap: 12px;
  }

  .header-nav a {
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-form-card {
    position: static;
  }

  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ftr-g {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    padding: 8px 0;
  }

  .header-row {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .header-nav {
    display: none;
  }

  .header-lang {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .ham {
    display: flex;
  }

  .mobile-quickbar {
    display: flex;
  }

  .wa-fab {
    display: inline-flex;
  }

  .brand-header {
    width: min(200px, 54vw);
    height: 44px;
  }
}

@media (max-width: 720px) {
  .container { padding: 0 16px; }

  .site-header {
    position: sticky;
    height: auto;
    padding: 8px 0 10px;
  }

  .header-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
  }

  .brand-header {
    width: min(200px, 54vw);
    height: 44px;
  }

  .header-cta {
    margin-left: 0;
    font-size: 13px;
    padding: 0 12px;
    min-height: 38px;
  }

  .header-nav {
    display: none;
    width: auto;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--hh) + 10px) 0 24px;
  }

  .hero::after {
    font-size: 72px;
    bottom: 16%;
    opacity: 0.42;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  .lead {
    font-size: 15px;
  }

  h2 {
    font-size: 30px;
  }

  .section { padding: 42px 0; }

  .grid.three,
  .form-grid,
  .wizard-grid {
    grid-template-columns: 1fr;
  }
  .select-cards,
  .check-cards {
    grid-template-columns: 1fr 1fr;
  }
  .seo-type-grid { grid-template-columns: 1fr; }
  .seo-check-grid { grid-template-columns: 1fr; }
  .seo-wizard-form .upload-box {
    min-height: 108px;
    padding: 16px 12px;
  }

  .hero-cta,
  .trust-pills,
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-pills span:last-child {
    grid-column: 1 / -1;
  }

  .trust-pills span {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    line-height: 1.25;
    padding: 8px 10px;
  }

  .hero-cta .btn,
  .form-actions .btn,
  .footer-links a {
    width: 100%;
    justify-content: center;
  }

  .hero-form-card,
  .cross-card,
  .price-card,
  .card,
  .step {
    padding: 14px;
  }

  .hero-form-card {
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
  }

  .brand-header {
    width: min(188px, 52vw);
    height: 40px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .seo-final-cta {
    padding: 48px 0;
  }

  .ftr-g {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 26px;
  }

  .ftr-bot {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .seo-wz-progress {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .wizard-steps {
    margin-bottom: 8px;
    gap: 0;
  }
  .ws-step {
    min-width: 0;
    flex: 1;
  }
  .ws-dot {
    width: 22px;
    height: 22px;
  }
  .ws-dot svg {
    width: 10px;
    height: 10px;
  }
  .ws-lbl {
    font-size: 8px;
  }

  .seo-wz-track {
    width: 100%;
  }

  .seo-wizard-form .form-actions {
    grid-template-columns: 1fr;
  }

  .rate-box {
    border-radius: 16px;
  }

  .rate-hdr {
    padding: 22px 20px 18px;
  }

  .rate-row {
    padding: 13px 18px;
    gap: 12px;
  }

  .rate-lbl {
    flex: 1;
  }

  .rate-val {
    font-size: 14px;
  }

  .rate-note {
    padding: 14px 20px;
  }

  .mobile-quickbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    gap: 8px;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    background: rgba(248, 246, 240, 0.98);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
    z-index: 94;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .wa-fab {
    display: inline-flex;
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }
}

/* ===== Homepage wizard hard override (source: test.html) ===== */
body.homepage .form-card {
  background: linear-gradient(180deg,#fff 0%,#fcfefb 100%);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: 0 8px 36px rgba(0,0,0,.1),0 0 0 1px rgba(43,107,53,.04);
  border: 1.5px solid #d1e3d4;
  position: sticky;
  top: calc(var(--hh) + 20px);
}
body.homepage .fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--bg-soft);
  border-radius: 100px;
  padding: 4px 10px 4px 8px;
  margin-bottom: 10px;
}
body.homepage .fc-badge svg { width: 12px; height: 12px; }
body.homepage .fc-title {
  font-family: var(--fdisp);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 3px;
  color: var(--text);
}
body.homepage .fc-sub {
  font-size: 12.5px;
  color: var(--text-3);
  margin-bottom: 4px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
body.homepage .fc-sub a { color: var(--green); font-weight: 600; }
body.homepage .wizard-steps { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:14px; position:relative; padding:0 2px; }
body.homepage .wizard-steps::before { content:''; position:absolute; top:12px; left:16px; right:16px; height:2px; background:#ddeadf; z-index:0; }
body.homepage .ws-step { display:flex; flex-direction:column; align-items:center; gap:5px; position:relative; z-index:1; min-width:44px; }
body.homepage .ws-dot { width:24px; height:24px; border-radius:50%; background:#fff; border:2px solid #d0e4d2; display:flex; align-items:center; justify-content:center; transition:all .3s ease; }
body.homepage .ws-dot svg { width:11px; height:11px; color:#b8ccba; }
body.homepage .ws-lbl { font-size:9px; font-weight:600; color:#b0c4b3; text-transform:uppercase; letter-spacing:.3px; text-align:center; line-height:1.2; }
body.homepage .ws-step.done .ws-dot, body.homepage .ws-step.active .ws-dot { background:var(--green); border-color:var(--green); }
body.homepage .ws-step.done .ws-dot svg, body.homepage .ws-step.active .ws-dot svg { color:#fff; }
body.homepage .ws-step.active .ws-dot { box-shadow:0 0 0 4px rgba(43,107,53,.2); }
body.homepage .ws-step.done .ws-lbl, body.homepage .ws-step.active .ws-lbl { color:var(--green); }
body.homepage .ws-step.active .ws-lbl { font-weight:800; }
body.homepage .wizard-pane { display:none; }
body.homepage .wizard-pane.active { display:block; animation:wzFadeIn .3s ease; }
body.homepage .wizard-progress { display: none !important; }
body.homepage .wizard-title { font-family:var(--fdisp); font-size:15px; font-weight:700; line-height:1.2; margin:0 0 10px; color:var(--text); display:flex; align-items:center; gap:8px; }
body.homepage .wt-ico { width:30px; height:30px; min-width:30px; border-radius:8px; background:var(--green-pale); display:flex; align-items:center; justify-content:center; color:var(--green); }
body.homepage .wt-ico svg { width:15px; height:15px; }
body.homepage .wizard-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
body.homepage .select-cards { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
body.homepage .select-card { border:2px solid var(--border); border-radius:14px; padding:14px 12px 12px; background:#fff; cursor:pointer; transition:all .22s ease; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; min-height:92px; text-align:center; position:relative; }
body.homepage .select-card:hover { border-color:var(--green-l); background:#f8fcf9; box-shadow:0 6px 20px rgba(43,107,53,.1); transform:translateY(-2px); }
body.homepage .select-card:has(input:checked) { border-color:var(--green); background:linear-gradient(135deg,#f0f7f1 0%,#fff 100%); box-shadow:0 4px 16px rgba(43,107,53,.14); }
body.homepage .select-card input[type="radio"] { appearance:none; -webkit-appearance:none; width:17px; height:17px; border:2px solid var(--border-d); border-radius:50%; background:#fff; position:absolute; top:9px; right:9px; cursor:pointer; transition:all .2s ease; margin:0; }
body.homepage .select-card input[type="radio"]:checked { border-color:var(--green); background:var(--green); }
body.homepage .select-card input[type="radio"]:checked::after { content:''; position:absolute; top:50%; left:50%; width:6px; height:6px; border-radius:50%; background:#fff; transform:translate(-50%,-50%); }
body.homepage .select-card .sc-ico { width:40px; height:40px; border-radius:11px; background:var(--green-pale); display:flex; align-items:center; justify-content:center; color:var(--green); }
body.homepage .select-card .sc-ico svg { width:21px; height:21px; }
body.homepage .select-card:has(input:checked) .sc-ico { background:rgba(43,107,53,.16); }
body.homepage .select-card .ttl { font-weight:700; color:var(--text); font-size:13px; line-height:1.15; }
body.homepage .select-card .sub { font-size:11px; color:var(--text-3); line-height:1.2; }
body.homepage .check-cards { display:grid; grid-template-columns:1fr 1fr; gap:5px; }
body.homepage .check-card { border:1.5px solid var(--border); border-radius:10px; padding:8px 10px; background:#fff; cursor:pointer; transition:all .2s ease; display:flex; align-items:center; gap:8px; }
body.homepage .check-card:hover { border-color:var(--green-l); background:#f8fcf9; }
body.homepage .check-card:has(input:checked) { border-color:var(--green); background:linear-gradient(135deg,#f0f7f1 0%,#fff 100%); }
body.homepage .check-card input[type="checkbox"] { appearance:none; -webkit-appearance:none; width:17px; height:17px; min-width:17px; border:2px solid var(--border-d); border-radius:5px; background:#fff; position:relative; cursor:pointer; transition:all .2s ease; }
body.homepage .check-card input[type="checkbox"]:checked { border-color:var(--green); background:var(--green); }
body.homepage .check-card input[type="checkbox"]:checked::after { content:''; position:absolute; top:2px; left:4px; width:5px; height:8px; border:solid #fff; border-width:0 2px 2px 0; transform:rotate(45deg); }
body.homepage .check-card .cc-ico { width:26px; height:26px; min-width:26px; border-radius:7px; background:#f0f5f1; display:flex; align-items:center; justify-content:center; color:#8aa88c; transition:all .2s; flex-shrink:0; }
body.homepage .check-card:has(input:checked) .cc-ico { background:rgba(43,107,53,.12); color:var(--green); }
body.homepage .check-card .cc-ico svg { width:13px; height:13px; }
body.homepage .check-card .ttl { font-weight:600; color:var(--text); font-size:11.5px; line-height:1.25; }
body.homepage .dirt-cards { display:grid; grid-template-columns:repeat(5,1fr); gap:4px; margin-top:4px; }
body.homepage .dirt-card { border:1.5px solid var(--border); border-radius:9px; padding:8px 4px 7px; background:#fff; cursor:pointer; transition:all .2s ease; display:flex; flex-direction:column; align-items:center; gap:4px; text-align:center; }
body.homepage .dirt-card.dc-active { border-color:var(--green); background:linear-gradient(135deg,#f0f7f1,#fff); box-shadow:0 2px 8px rgba(43,107,53,.1); }
body.homepage .dirt-card .d-ico { font-size:17px; line-height:1; }
body.homepage .dirt-card .d-lbl { font-size:9px; font-weight:700; color:var(--text-2); line-height:1.2; }
body.homepage .dirt-card.dc-active .d-lbl { color:var(--green); }
body.homepage .tg-wrap { display: flex; flex-direction: column; gap: 4px; }
body.homepage .tg-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 5px;
}
body.homepage .tg-lbl svg { width: 12px; height: 12px; color: var(--text-3); flex-shrink: 0; }
body.homepage .toggle-group { display:flex; gap:4px; }
body.homepage .toggle-group button { flex:1; padding:7px 8px; border-radius:8px; font-size:12.5px; font-weight:600; border:1.5px solid var(--border); background:#fff; color:var(--text-2); cursor:pointer; transition:all .18s ease; font-family:var(--fbody); display:flex; align-items:center; justify-content:center; gap:5px; }
body.homepage .toggle-group button.tg-yes { border-color:var(--green); background:var(--green); color:#fff; }
body.homepage .toggle-group button.tg-no { border-color:var(--border-d); background:#f5f5f4; color:var(--text-2); }
body.homepage .toggle-group button svg { width: 12px; height: 12px; flex-shrink: 0; }
body.homepage .wizard-hint {
  margin-top: 8px;
  padding: 8px 10px;
  background: #f8faf8;
  border: 1px solid #e2ebe2;
  border-radius: 8px;
  color: var(--text-3);
  font-size: 11px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
body.homepage .wizard-hint svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 1px; color: var(--green); opacity: .7; }
body.homepage .wizard-nav { display:flex; gap:8px; margin-top:12px; align-items:stretch; }
body.homepage #op-prev-btn { flex-shrink:0; padding:11px 14px; border-radius:10px; background:#fff; border:1.5px solid var(--border-d); color:var(--text-2); display:flex; align-items:center; gap:5px; font-size:13px; font-weight:600; cursor:pointer; }
body.homepage #op-next-btn { flex:1; padding:12px 18px; border-radius:10px; font-size:14px; font-weight:700; background:var(--green); color:#fff; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:8px; box-shadow:0 4px 14px rgba(43,107,53,.28); }
body.homepage .wizard-submit { display:none; margin-top:10px; }
body.homepage .wizard-submit.show { display:flex; }
body.homepage .form-acts { display:flex; flex-direction:column; gap:8px; margin-top:10px; }
body.homepage .form-lock { display:flex; align-items:center; gap:6px; font-size:11px; font-weight:500; color:var(--text-3); margin-top:6px; justify-content:center; }
body.homepage .form-lock::before { content: none; }
body.homepage .form-lock svg { width: 13px; height: 13px; color: var(--green); flex-shrink: 0; }
body.homepage .wizard-error svg { width: 15px; height: 15px; flex-shrink: 0; }
body.homepage .upload-note svg { width: 11px; height: 11px; flex-shrink: 0; margin-top: 1.5px; }
body.homepage .photo-upload-card { display:flex; flex-direction:column; align-items:center; gap:6px; min-height:86px; padding:12px; border:2px dashed #b8d4bc; border-radius:var(--r-lg); background:linear-gradient(180deg,#f4faf6 0%,#edf5ee 100%); text-align:center; cursor:pointer; position:relative; }
body.homepage .photo-upload-card input[type="file"] { position:absolute; opacity:0; pointer-events:none; width:1px; height:1px; }
body.homepage .photo-upload-title { font-size: 13px; font-weight: 700; color: var(--green); }
body.homepage .photo-upload-help { font-size: 11px; line-height: 1.4; color: var(--text-3); }
body.homepage .consent-row { display:flex; align-items:flex-start; gap:8px; margin-top:4px; padding:9px 10px; border-radius:10px; background:#f8faf8; border:1px solid #e8ede8; font-size:12px; line-height:1.4; color:var(--text-2); font-weight:600; cursor:pointer; }
body.homepage .consent-row input[type="checkbox"] { margin-top:1px; width:17px; height:17px; accent-color:var(--green); flex-shrink:0; }
body.homepage .wizard-pane .field,
body.homepage .wizard-pane .field.full { margin: 0; }
body.homepage .wizard-pane.active > *:first-child { margin-top: 0; }
body.homepage .wizard-pane { margin-top: 0; }
body.homepage .wizard-title { margin-bottom: 8px; }
body.homepage .wizard-nav { margin-top: 10px; }
body.homepage .wizard-error:empty { display: none !important; margin: 0 !important; padding: 0 !important; border: 0 !important; }

/* ---- FORM CARD POLISH ---- */

/* Diepere, groene elevatie op de card */
body.homepage .form-card {
  background: linear-gradient(175deg, #ffffff 0%, #f8fdf8 55%, #f3faf4 100%);
  border: 1.5px solid #c6ddc9;
  box-shadow:
    0 2px 4px rgba(27,70,39,.04),
    0 8px 24px rgba(27,70,39,.09),
    0 24px 56px rgba(27,70,39,.07),
    0 0 0 1px rgba(43,107,53,.03);
}

/* Badge: pulserende groene dot (zelfde als hero eyebrow) */
@keyframes formBadgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.7); }
}
body.homepage .fc-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: block;
  flex-shrink: 0;
  animation: formBadgePulse 2s ease-in-out infinite;
}
body.homepage .fc-badge {
  gap: 7px;
  background: #eef7f0;
  border: 1px solid #d0e8d3;
  color: #1e5229;
}

/* Step dots: grotere actieve ring + scale + transitie */
body.homepage .ws-dot { transition: all .25s cubic-bezier(.22,.68,0,1.1); }
body.homepage .ws-step.active .ws-dot {
  box-shadow: 0 0 0 5px rgba(43,107,53,.15), 0 0 0 9px rgba(43,107,53,.06);
  transform: scale(1.12);
}
/* Connector-lijn: groen gedeelte via gradient (statisch voor stap 1 = 10% filled) */
body.homepage .wizard-steps::before {
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 0%, #ddeadf 0%, #ddeadf 100%);
  height: 2px;
  transition: background .3s ease;
}

/* Wizard pane: slide vanuit rechts */
@keyframes wzSlideIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
body.homepage .wizard-pane.active {
  animation: wzSlideIn .22s cubic-bezier(.22,.68,0,1) forwards;
}

/* Select card: micro-pop bij selectie */
@keyframes selectPop {
  0%   { transform: scale(1); }
  55%  { transform: scale(1.025); }
  100% { transform: scale(1); }
}
body.homepage .select-card:has(input:checked) {
  animation: selectPop .2s cubic-bezier(.22,.68,0,1.1) forwards;
}

/* Check card: subtiele green flush bij aanvinken */
@keyframes checkFlash {
  0%   { background-color: rgba(43,107,53,.08); }
  100% { background-color: transparent; }
}
body.homepage .check-card:has(input:checked) {
  animation: checkFlash .25s ease forwards;
  background: linear-gradient(135deg, #f0f7f1 0%, #fff 100%);
}

/* Next button: sterkere hover + subtiele shimmer */
body.homepage #op-next-btn {
  background: var(--green);
  position: relative;
  overflow: hidden;
  transition: all .2s cubic-bezier(.22,.68,0,1.1);
}
body.homepage #op-next-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
body.homepage #op-next-btn:hover { background: #2a6433; box-shadow: 0 6px 22px rgba(43,107,53,.42); transform: translateY(-1px); }
body.homepage #op-next-btn:hover::after { transform: translateX(100%); }
body.homepage #op-next-btn:active { transform: translateY(0); box-shadow: 0 3px 10px rgba(43,107,53,.28); }

/* Submit button: oranje gloed + appear animatie */
@keyframes submitAppear {
  from { opacity: 0; transform: translateY(6px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
body.homepage .wizard-submit.show {
  box-shadow: 0 6px 28px rgba(232,84,26,.36);
  animation: submitAppear .28s cubic-bezier(.22,.68,0,1.1) forwards;
  transition: all .2s;
}
body.homepage .wizard-submit.show:hover {
  box-shadow: 0 8px 32px rgba(232,84,26,.46);
  transform: translateY(-1px);
}

/* Wt-ico: subtiele puls-ring op actieve pane */
body.homepage .wizard-title .wt-ico {
  background: linear-gradient(135deg, #eef7f0 0%, #ddf0e1 100%);
  box-shadow: 0 0 0 0 rgba(43,107,53,.22);
  animation: wtiPulse 3s ease-in-out infinite;
}
@keyframes wtiPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(43,107,53,.18); }
  50%     { box-shadow: 0 0 0 5px rgba(43,107,53,.0); }
}

/* Form-lock (privacy): groen icoontje, iets meer vertrouwen */
body.homepage .form-lock { color: #4a6e4d; font-weight: 600; font-size: 11.5px; }
body.homepage .form-lock svg { color: var(--green); width: 14px; height: 14px; }

/* Wizard-hint: iets warmer */
body.homepage .wizard-hint {
  background: linear-gradient(135deg, #f6faf7 0%, #f0f7f1 100%);
  border-color: #d4e8d6;
}

/* Photo upload card: iets meer karakter */
body.homepage .photo-upload-card {
  border-color: #b0d4b7;
  background: linear-gradient(180deg, #f6fbf7 0%, #eef7f0 100%);
  transition: all .2s ease;
}
body.homepage .photo-upload-card:hover {
  border-color: var(--green);
  background: linear-gradient(180deg, #f2f9f4 0%, #e8f4ea 100%);
}

/* Consent row: beter zichtbaar */
body.homepage .consent-row {
  background: linear-gradient(135deg, #f6faf7 0%, #f0f7f1 100%);
  border-color: #d4e8d6;
}

/* Reduced motion: alle animaties uit */
@media (prefers-reduced-motion: reduce) {
  body.homepage .wizard-pane.active,
  body.homepage .select-card:has(input:checked),
  body.homepage .check-card:has(input:checked),
  body.homepage .wizard-submit.show { animation: none !important; }
  body.homepage .fc-badge::before { animation: none !important; }
  body.homepage .wizard-title .wt-ico { animation: none !important; }
}

@media (max-width: 980px) {
  body.homepage .wizard-grid,
  body.homepage .select-cards,
  body.homepage .check-cards {
    grid-template-columns: 1fr;
  }
  body.homepage .dirt-cards { grid-template-columns: repeat(3,1fr); }
}

/* Homepage surface cards: enlarge media while preserving full uncropped artwork */
body.homepage .surf-sec .surface-card,
body#top .surf-sec .surface-card {
  overflow: hidden !important;
}
body.homepage .surf-sec .surface-card__media,
body#top .surf-sec .surface-card__media {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  display: block !important;
}
body.homepage .surf-sec .surface-card__media img,
body#top .surf-sec .surface-card__media img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  object-fit: contain !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}
body.homepage .surf-sec .surface-card__body,
body#top .surf-sec .surface-card__body {
  padding: clamp(18px, 2vw, 24px) !important;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.in { opacity: 1; transform: none; transition: none; } }

/* ===== SEO PAGE: HERO FORM CARD POLISH ===== */
body.seo-subpage .hero-form-card {
  background: linear-gradient(175deg, #ffffff 0%, #f8fdf8 55%, #f3faf4 100%);
  border: 1.5px solid #c6ddc9;
  box-shadow:
    0 2px 4px rgba(27,70,39,.04),
    0 8px 24px rgba(27,70,39,.09),
    0 24px 56px rgba(27,70,39,.07),
    0 0 0 1px rgba(43,107,53,.03);
}

/* Wizard-pane slide animatie voor SEO injected wizard */
body.seo-subpage .wizard-pane.active {
  animation: wzSlideIn .22s cubic-bezier(.22,.68,0,1) forwards;
}
body.seo-subpage .select-card:has(input:checked) {
  animation: selectPop .2s cubic-bezier(.22,.68,0,1.1) forwards;
}

/* SEO next button hover */
body.seo-subpage #op-next-btn {
  position: relative;
  overflow: hidden;
  transition: all .2s cubic-bezier(.22,.68,0,1.1);
}
body.seo-subpage #op-next-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .4s ease;
}
body.seo-subpage #op-next-btn:hover {
  background: #2a6433;
  box-shadow: 0 6px 22px rgba(43,107,53,.42);
  transform: translateY(-1px);
}
body.seo-subpage #op-next-btn:hover::after { transform: translateX(100%); }

/* Step dots */
body.seo-subpage .ws-dot { transition: all .25s cubic-bezier(.22,.68,0,1.1); }
body.seo-subpage .ws-step.active .ws-dot {
  box-shadow: 0 0 0 5px rgba(43,107,53,.15), 0 0 0 9px rgba(43,107,53,.06);
  transform: scale(1.12);
}

/* Submit button */
body.seo-subpage .wizard-submit.show {
  box-shadow: 0 6px 28px rgba(232,84,26,.36);
  animation: submitAppear .28s cubic-bezier(.22,.68,0,1.1) forwards;
}

/* ===== SEO PAGE: SECTION SPACING ===== */
body.seo-subpage .section {
  padding-top: clamp(52px, 6vw, 88px);
  padding-bottom: clamp(52px, 6vw, 88px);
}
body.seo-subpage .section + .section {
  padding-top: clamp(48px, 5.5vw, 80px);
}
body.seo-subpage h2 {
  letter-spacing: -0.025em;
  margin-bottom: clamp(24px, 3vw, 40px);
}
body.seo-subpage h3 { letter-spacing: -0.01em; }

@media (prefers-reduced-motion: reduce) {
  body.seo-subpage .wizard-pane.active,
  body.seo-subpage .select-card:has(input:checked),
  body.seo-subpage .wizard-submit.show { animation: none !important; }
}

/* ===== FORM SUCCESS STATE ===== */
.op-form-success {
  padding: 32px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeIn .3s ease;
}
.ofs-ico {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 4px;
  box-shadow: 0 6px 20px rgba(43,107,53,.3);
}
.ofs-h {
  font-family: var(--fdisp, 'Fraunces', Georgia, serif);
  font-size: 22px; font-weight: 700;
  color: var(--text, #191e17); margin: 0;
}
.ofs-p {
  font-size: 14px; color: var(--text-2, #4a5548);
  line-height: 1.6; max-width: 300px; margin: 0;
}
.ofs-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--green, #2b6b35);
  color: #fff; border-radius: 100px; font-size: 14px;
  font-weight: 700; text-decoration: none; margin-top: 4px;
  transition: background .18s;
}
.ofs-btn:hover { background: #235a2c; }
.ofs-note { font-size: 11.5px; color: var(--text-3, #7a8a78); margin: 0; }

/* ===== MOBILE WIZARD: progress bar instead of icon-dots ===== */
@media (max-width: 640px) {
  body.homepage .wizard-steps { display: none !important; }
  body.homepage .wizard-progress {
    display: flex !important;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
  }
  .wizard-step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--green, #2b6b35);
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .wizard-track {
    height: 5px;
    background: #ddeadf;
    border-radius: 99px;
    overflow: hidden;
  }
  .wizard-fill {
    height: 100%;
    background: var(--green, #2b6b35);
    border-radius: 99px;
    width: 20%;
    transition: width .35s cubic-bezier(.22,.68,0,1);
  }

  /* Step 1 klanttype: compact toggle bar */
  body.homepage .wizard-pane[data-step="1"] .select-cards {
    display: flex;
    background: #e4ede5;
    border-radius: 14px;
    padding: 5px;
    gap: 5px;
    margin-top: 4px;
    border: 1.5px solid #c8d9ca;
  }
  body.homepage .wizard-pane[data-step="1"] .select-card {
    flex: 1;
    flex-direction: row;
    min-height: 54px;
    padding: 10px 14px;
    border-radius: 10px;
    gap: 10px;
    border: 2px solid transparent;
    background: transparent;
    box-shadow: none;
    transform: none !important;
    justify-content: flex-start;
    opacity: .48;
    transition: all .2s ease;
  }
  body.homepage .wizard-pane[data-step="1"] .select-card:has(input:checked),
  body.homepage .wizard-pane[data-step="1"] .select-card.is-sel {
    background: #fff;
    border-color: var(--green, #2b6b35);
    box-shadow: 0 4px 16px rgba(43,107,53,.22);
    opacity: 1;
  }
  body.homepage .wizard-pane[data-step="1"] .select-card:has(input:checked) .ttl,
  body.homepage .wizard-pane[data-step="1"] .select-card.is-sel .ttl {
    color: var(--green, #2b6b35);
    font-weight: 800;
  }
  body.homepage .wizard-pane[data-step="1"] .select-card:has(input:checked) .sc-ico,
  body.homepage .wizard-pane[data-step="1"] .select-card.is-sel .sc-ico {
    background: rgba(43,107,53,.14);
    color: var(--green, #2b6b35);
  }
  body.homepage .wizard-pane[data-step="1"] .select-card input[type="radio"] {
    display: none;
  }
  body.homepage .wizard-pane[data-step="1"] .select-card .sc-ico {
    width: 32px; height: 32px; min-width: 32px; border-radius: 8px;
    flex-shrink: 0;
  }
  body.homepage .wizard-pane[data-step="1"] .select-card .sub {
    display: none;
  }
  body.homepage .wizard-pane[data-step="1"] .select-card .ttl {
    font-size: 14px;
  }
}

/* AD BANNER */
.ad-banner { width: 100%; line-height: 0; overflow: hidden; }
.ad-banner img { width: 100%; height: auto; display: block; object-fit: cover; }
