/* EXPANDO — Bol.com kalkulačka příležitosti
   Brand: #ff4d00 orange (10 %), #191919 dark (30 %), light/greys (60 %).
   Font: DM Sans. */

:root {
  --orange: #ff4d00;
  --orange-600: #e64500;
  --bol-blue: #3366ca;
  --dark: #191919;
  --dark-soft: #2a2a2a;
  --white: #ffffff;
  --grey-50: #f7f7f6;
  --grey-100: #f0f0ee;
  --grey-200: #e4e4e1;
  --grey-300: #d2d2ce;
  --grey-500: #8a8a86;
  --grey-700: #555553;

  --green: #1f9d55;
  --green-bg: #e6f4ec;
  --amber: #b8770a;
  --amber-bg: #fbf1de;
  --red: #d13212;
  --red-bg: #fbe9e4;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(25, 25, 25, 0.04), 0 8px 24px rgba(25, 25, 25, 0.06);
  --shadow-lg: 0 12px 40px rgba(25, 25, 25, 0.12);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', 'Open Sans', 'Montserrat', 'Roboto', system-ui, sans-serif;
  color: var(--dark);
  background: var(--grey-50);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; font-weight: 700; }
p { margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- EXPANDO symbol ---------- */
.logo-mark {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: 8px;
  display: grid; place-items: center;
  flex: none;
}
.logo-mark svg { width: 20px; height: 20px; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 247, 246, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .wordmark { font-weight: 700; font-size: 20px; letter-spacing: 0.02em; }
.site-header .tagline { color: var(--grey-500); font-size: 13px; font-weight: 500; }
@media (max-width: 720px) { .site-header .tagline { display: none; } }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #ffffff 0%, #fbf5f1 100%);
  color: var(--dark);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--grey-200);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding-top: 68px; padding-bottom: 76px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--orange);
  background: rgba(255, 77, 0, 0.12);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(30px, 4.4vw, 52px); }
.hero h1 .accent { color: var(--bol-blue); }
.hero .sub { color: var(--grey-700); font-size: clamp(16px, 2vw, 19px); margin-top: 18px; max-width: 40ch; }
.hero .cta-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { display: grid; place-items: center; }
.map-wrap {
  position: relative; width: 100%;
  background: #f4f3f1; border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.map-img { width: 100%; height: auto; display: block; }

/* bol marker — the new main marketplace, placed over the Netherlands */
.bol-marker {
  position: absolute; left: 49.7%; top: 41.5%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  pointer-events: none;
}
.bol-pill {
  background: var(--bol-blue); color: #fff; font-weight: 700; font-size: 15px;
  padding: 6px 12px; border-radius: 999px; white-space: nowrap; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 10px 26px rgba(51, 102, 202, 0.45);
}
.bol-dot {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--bol-blue); border: 2.5px solid #fff;
  box-shadow: 0 0 0 0 rgba(51, 102, 202, 0.6);
  animation: bolPulse 2.2s infinite;
}
@keyframes bolPulse {
  0% { box-shadow: 0 0 0 0 rgba(51, 102, 202, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(51, 102, 202, 0); }
  100% { box-shadow: 0 0 0 0 rgba(51, 102, 202, 0); }
}
@media (prefers-reduced-motion: reduce) { .bol-dot { animation: none; } }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 52px; }
  .hero-visual { order: 1; margin-top: 26px; }
  .map-wrap { max-width: 440px; margin: 0 auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  padding: 13px 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform 0.08s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost { background: transparent; color: var(--dark); border-color: var(--grey-300); }
.btn-ghost:hover { border-color: var(--dark); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* Dominant CTA button */
.btn-xl {
  font-size: clamp(16px, 1.6vw, 19px); font-weight: 700;
  padding: 17px 30px; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.38);
}
.btn-primary.btn-xl:hover { box-shadow: 0 14px 38px rgba(255, 77, 0, 0.5); transform: translateY(-1px); }

/* Dominant CTA band under the results */
.cta-inline {
  margin-top: 34px;
  background: var(--dark); color: #fff; border-radius: var(--radius);
  padding: 30px 34px; display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap; box-shadow: var(--shadow-lg);
}
.cta-inline-copy h3 { font-size: clamp(20px, 2.4vw, 26px); }
.cta-inline-copy p { color: #c8c8c4; font-size: 16px; margin-top: 6px; max-width: 46ch; }
.cta-inline .btn-xl { flex: none; }
@media (max-width: 640px) {
  .cta-inline { padding: 24px; }
  .cta-inline .btn-xl { width: 100%; }
}

/* Sticky / floating CTA */
.sticky-cta {
  position: fixed; z-index: 60; right: 24px; bottom: 24px;
  background: var(--orange); color: #fff; text-decoration: none;
  font-family: inherit; font-weight: 700; font-size: 16px;
  padding: 15px 24px; border-radius: 999px;
  box-shadow: 0 12px 34px rgba(255, 77, 0, 0.5);
  transition: transform 0.12s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(255, 77, 0, 0.6); }
.sticky-cta.hide { opacity: 0; pointer-events: none; transform: translateY(12px); }
@media (max-width: 640px) {
  .sticky-cta {
    left: 16px; right: 16px; bottom: 16px; text-align: center;
    padding: 16px; font-size: 16px;
  }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-head { max-width: 60ch; margin-bottom: 32px; }
.section-head .eyebrow {
  color: var(--orange); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(24px, 3.2vw, 34px); }
.section-head p { color: var(--grey-700); font-size: 17px; margin-top: 12px; }

/* ---------- Calculator layout ---------- */
.calc-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-pad { padding: 26px; }

/* ---------- Form ---------- */
.field { margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field > label {
  display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--dark);
}
.field .hint { color: var(--grey-500); font-weight: 500; font-size: 12.5px; }
.field-note {
  margin-top: 8px; font-size: 12.5px; color: var(--amber);
  background: var(--amber-bg); padding: 8px 10px; border-radius: 8px;
}

input[type='text'], input[type='email'], input[type='tel'], input[type='number'], select {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--dark);
  padding: 12px 13px; border: 1px solid var(--grey-300); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.15);
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555553' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }

/* Range slider */
.range-row { display: flex; align-items: center; gap: 14px; }
input[type='range'] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 999px; background: var(--grey-200); cursor: pointer;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); border: 3px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
input[type='range']::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--orange);
  border: 3px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.range-val { flex: none; min-width: 60px; text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }

/* Toggle (LVB / VDV) */
.toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: var(--grey-100); border-radius: var(--radius-sm); padding: 4px;
}
.toggle button {
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--grey-700);
  border: none; background: transparent; padding: 10px 8px; border-radius: 8px; cursor: pointer;
  transition: all 0.15s ease;
}
.toggle button .t-sub { display: block; font-size: 11px; font-weight: 500; color: var(--grey-500); margin-top: 2px; }
.toggle button[aria-pressed='true'] { background: var(--dark); color: #fff; box-shadow: var(--shadow); }
.toggle button[aria-pressed='true'] .t-sub { color: #bdbdba; }

/* Advanced disclosure */
.advanced { margin-top: 6px; border-top: 1px solid var(--grey-200); }
.advanced > summary {
  cursor: pointer; list-style: none; font-weight: 600; font-size: 14px;
  padding: 16px 0 6px; display: flex; align-items: center; gap: 8px; color: var(--grey-700);
}
.advanced > summary::-webkit-details-marker { display: none; }
.advanced > summary::after { content: '+'; margin-left: auto; font-size: 18px; color: var(--grey-500); }
.advanced[open] > summary::after { content: '–'; }

/* ---------- Results ---------- */
.econ-table { width: 100%; border-collapse: collapse; }
.econ-table td { padding: 11px 0; border-bottom: 1px solid var(--grey-200); font-size: 15px; }
.econ-table tr:last-child td { border-bottom: none; }
.econ-table .lbl { color: var(--grey-700); }
.econ-table .lbl small { display: block; color: var(--grey-500); font-size: 12px; }
.econ-table .val { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
.econ-table .val.minus { color: var(--grey-700); font-weight: 500; }
.econ-table .total td { border-top: 2px solid var(--dark); padding-top: 14px; font-size: 17px; font-weight: 700; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; padding: 4px 11px; border-radius: 999px;
}
.badge.green { color: var(--green); background: var(--green-bg); }
.badge.amber { color: var(--amber); background: var(--amber-bg); }
.badge.red { color: var(--red); background: var(--red-bg); }

.warn {
  margin-top: 16px; font-size: 13.5px; color: var(--red);
  background: var(--red-bg); border-radius: var(--radius-sm); padding: 12px 14px;
  display: none;
}
.warn.show { display: block; }

/* KPI cards (dark + orange numbers) */
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
@media (max-width: 560px) { .kpis { grid-template-columns: 1fr; } }
.kpi {
  background: var(--dark); color: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-lg);
}
.kpi .kpi-label { font-size: 13px; font-weight: 600; color: #bdbdba; letter-spacing: 0.03em; text-transform: uppercase; }
.kpi .kpi-value { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; color: var(--orange); margin-top: 10px; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.kpi .kpi-value .to { color: #6f6f6c; font-weight: 600; margin: 0 6px; }
.kpi .kpi-foot { font-size: 12.5px; color: #9a9a97; margin-top: 8px; }

.range-note { margin-top: 18px; font-size: 13px; color: var(--grey-700); }

/* ---------- CTA / lead ---------- */
.cta {
  background: var(--orange); color: #fff;
}
.cta .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; padding: 60px 24px; }
@media (max-width: 860px) { .cta .wrap { grid-template-columns: 1fr; gap: 30px; } }
.cta h2 { font-size: clamp(26px, 3.4vw, 38px); color: #fff; }
.cta p { color: rgba(255,255,255,0.92); font-size: 17px; margin-top: 14px; max-width: 42ch; }
.cta .micro { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; font-size: 14px; font-weight: 600; }
.cta .micro span { display: inline-flex; align-items: center; gap: 7px; }

.lead-card { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-lg); }
.lead-card h3 { color: var(--dark); font-size: 19px; margin-bottom: 4px; }
.lead-card .lead-sub { color: var(--grey-700); font-size: 14px; margin-bottom: 18px; }
.lead-card label { color: var(--dark); }
.lead-card .req { color: var(--orange); }
.err-msg { color: var(--red); font-size: 12.5px; margin-top: 6px; display: none; }
.err-msg.show { display: block; }
input.invalid { border-color: var(--red); }

.lead-success { display: none; text-align: center; padding: 12px 0; }
.lead-success.show { display: block; }
.lead-success .ok-mark {
  width: 54px; height: 54px; border-radius: 50%; background: var(--green-bg); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 14px; font-size: 26px;
}
.lead-success h3 { color: var(--dark); }
.lead-success p { color: var(--grey-700); font-size: 15px; margin-top: 8px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--white); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; padding: 26px 24px; }
.trust .stat { text-align: center; }
.trust .stat b { display: block; font-size: 22px; font-weight: 700; color: var(--dark); font-variant-numeric: tabular-nums; }
.trust .stat span { font-size: 12.5px; color: var(--grey-500); font-weight: 500; }
.trust .sep { width: 1px; height: 34px; background: var(--grey-200); }
@media (max-width: 720px) { .trust .sep { display: none; } }

/* ---------- Footer / methodology ---------- */
.site-footer { background: var(--dark); color: #b9b9b6; padding: 52px 0 40px; font-size: 13.5px; }
.site-footer .foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.site-footer .foot-brand .wordmark { color: #fff; font-weight: 700; font-size: 18px; }
.site-footer h4 { color: #fff; font-size: 14px; margin: 0 0 10px; }
.site-footer .foot-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
@media (max-width: 720px) { .site-footer .foot-cols { grid-template-columns: 1fr; gap: 28px; } }
.site-footer ul { margin: 0; padding-left: 18px; }
.site-footer li { margin-bottom: 7px; }
.site-footer .disclaimer { margin-top: 28px; padding-top: 20px; border-top: 1px solid #333; color: #7f7f7c; font-size: 12.5px; line-height: 1.7; }
.site-footer .mission { color: #d8d8d5; font-style: italic; margin-bottom: 8px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Feature sections (Why sell on Bol / Need to know) ---------- */
.section.alt { background: var(--white); border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 28px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feat-ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--orange);
  display: grid; place-items: center; margin-bottom: 16px;
}
.feat-ico svg { width: 24px; height: 24px; display: block; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { font-size: 17px; line-height: 1.28; margin-bottom: 9px; }
.feat p { color: var(--grey-700); font-size: 14.5px; }
.feat p strong { color: var(--dark); font-weight: 600; }
