/* Pixeo — design system */

:root {
  --bg: #faf7f2;
  --bg-alt: #f2ede3;
  --surface: #ffffff;
  --ink: #1a2430;
  --ink-soft: #4b5566;
  --muted: #7a8294;
  --border: #e3ddd1;
  --accent: #1f4e5f;
  --accent-hover: #173b48;
  --accent-soft: #e8eff2;
  --warm: #c46a3d;
  --warm-soft: #f7e9df;
  --success: #2f7d54;
  --warning: #a8561f;
  --shadow-sm: 0 1px 2px rgba(20, 30, 45, 0.06);
  --shadow-md: 0 6px 24px rgba(20, 30, 45, 0.08);
  --shadow-lg: 0 18px 40px rgba(20, 30, 45, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --container: 1180px;
  --ease: cubic-bezier(.22,.8,.32,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 760px;
}
.container-narrow h2 {
  margin-top: 36px;
  font-size: 1.35rem;
}
.container-narrow h2:first-child {
  margin-top: 0;
}
.container-narrow p,
.container-narrow ul {
  line-height: 1.65;
  color: var(--ink-soft);
}
.container-narrow ul { padding-left: 22px; }
.container-narrow ul li { margin-bottom: 6px; }

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}
.site-footer .brand-logo {
  filter: brightness(0) invert(1);
  opacity: .92;
  height: 52px;
}
@media (max-width: 560px) {
  .brand-logo { height: 40px; }
  .site-footer .brand-logo { height: 44px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-hover); color: #fff !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 44px; height: 44px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform .25s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-cta { display: inline-block; margin-top: 8px; text-align: center; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border .2s var(--ease);
  text-decoration: none;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.calc-cta:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover { background: var(--accent-soft); color: var(--accent); }
.btn-warm {
  background: var(--warm);
  color: #fff;
}
.btn-warm:hover { background: #a85a31; color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

/* --- Sections --- */
.section {
  padding: clamp(64px, 8vw, 104px) 0;
}
.section-alt { background: var(--bg-alt); }
.section-accent { background: var(--accent); color: #f5f6f4; }
.section-accent h1, .section-accent h2, .section-accent h3 { color: #fff; }
.section-accent p { color: rgba(255,255,255,0.85); }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 14px;
}
.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header p { font-size: 1.1rem; }

/* --- Hero --- */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(60px, 8vw, 120px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 { margin-bottom: 18px; }
.hero-lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-meta strong { color: var(--ink); font-weight: 600; }
@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; }
  .hero-meta { gap: 16px; font-size: 0.88rem; }
}
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(20,30,45,0.18) 100%);
}
.hero-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-badge::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(47, 125, 84, 0.18);
}

/* --- USP grid --- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usp-grid { grid-template-columns: 1fr; } }
.usp-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .usp-grid-3 { grid-template-columns: 1fr; } }
.usp {
  background: var(--surface);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.usp:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.usp-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
}
.usp h3 { font-family: "Inter", sans-serif; font-size: 1.05rem; letter-spacing: 0; margin-bottom: 6px; }
.usp p { font-size: 0.95rem; margin: 0; }

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; font-family: "Fraunces", serif; margin-bottom: 10px; }
.step p { font-size: 0.97rem; margin-bottom: 0; }
.step-link { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 0.95rem; }

/* --- Split section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image.voor-na {
  aspect-ratio: auto;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-image.voor-na figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}
.split-image.voor-na figure img { width: 100%; height: 100%; object-fit: cover; }
.split-image.voor-na figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(16, 22, 32, .82);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 4px;
}
.split-content h2 { margin-bottom: 20px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231f4e5f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Comparison table --- */
.compare {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}
.compare th, .compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.compare th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--ink);
}
.compare td.yes { color: var(--success); font-weight: 600; }
.compare td.no { color: var(--muted); }
.compare tr:last-child td { border-bottom: 0; }

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 30, 45, 0.75) 100%);
  color: #fff;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  font-weight: 600;
  font-size: 0.95rem;
}
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 18px;
  border: 1px dashed var(--border);
}

/* --- FAQ accordion --- */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f4e5f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
}
.faq .answer p:last-child { margin-bottom: 0; }

/* --- Calculator --- */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
}
@media (max-width: 980px) { .calc-wrap { grid-template-columns: 1fr; } }
.calc-form, .calc-result {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.calc-form h2, .calc-result h2 { margin-top: 0; font-size: 1.4rem; }
.calc-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin: -8px 0 20px;
}
.calc-subtitle {
  margin-top: 32px !important;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.vb-entry {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 6px;
  margin-bottom: 16px;
}
@media (max-width: 560px) {
  .vb-entry { padding: 16px 14px 4px; }
  .vb-entry-title { font-size: 0.98rem; }
  .calc-panel { padding: 16px; }
  .calc-panel .calc-field { margin-bottom: 12px; }
}
.vb-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.vb-entry-title {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink);
}
.vb-remove {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.vb-remove:hover:not(:disabled) {
  color: #b04b3a;
  border-color: #b04b3a;
}
.vb-remove:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.btn-add-entry {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-bottom: 10px;
}
.btn-add-entry:hover {
  border-color: var(--warm);
  color: var(--warm);
  background: var(--surface);
}
.label-extra {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.88rem;
}
.calc-field { margin-bottom: 22px; }
.calc-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.98rem;
}
.calc-field .hint {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
.calc-field input[type="number"],
.calc-field input[type="text"],
.calc-field input[type="email"],
.calc-field input[type="tel"],
.calc-field textarea,
.calc-field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -moz-appearance: textfield;
}
.calc-field input[type="number"]::-webkit-outer-spin-button,
.calc-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.calc-field input:focus,
.calc-field textarea:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 78, 95, 0.15);
}
.calc-field textarea {
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
}
.calc-field.error input { border-color: var(--warning); }
.calc-error {
  display: none;
  font-size: 0.88rem;
  color: var(--warning);
  margin-top: 6px;
  font-weight: 500;
}
.calc-field.error .calc-error { display: block; }

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}
.toggle-row label { margin: 0; font-weight: 600; }
.toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle .track {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d5d0c5;
  border-radius: 999px;
  transition: background .2s var(--ease);
}
.toggle .track::before {
  content: "";
  position: absolute;
  height: 22px; width: 22px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle input:checked + .track { background: var(--accent); }
.toggle input:checked + .track::before { transform: translateX(20px); }

.subfields {
  margin-top: 16px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.subfields.visible { display: grid; }
@media (max-width: 480px) {
  .subfields.visible { grid-template-columns: 1fr; }
}

.calc-result {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  border-color: transparent;
  position: sticky;
  top: 100px;
  height: fit-content;
}
@media (max-width: 880px) {
  .calc-result { position: static; top: auto; }
}
.calc-result h2 { color: #fff; }
.calc-rows { margin-bottom: 24px; }
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
}
.calc-row span:last-child { color: #fff; font-weight: 600; }
.calc-row.total {
  border-bottom: 0;
  padding-top: 18px;
  font-size: 1rem;
}
.calc-row.total span:last-child {
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
}
.calc-note {
  background: rgba(255,255,255,0.1);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  line-height: 1.55;
}
.calc-note strong { color: #fff; }
.calc-cta {
  display: block;
  width: 100%;
  background: var(--warm);
  color: #fff;
  padding: 16px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  cursor: pointer;
  transition: background .2s var(--ease), transform .15s var(--ease);
  font-family: inherit;
  text-decoration: none;
}
.calc-cta:hover:not(:disabled) { background: #a85a31; color: #fff; transform: translateY(-1px); }
.calc-cta:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.calc-cta-secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
}
.calc-cta-secondary:hover:not(:disabled) {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.calc-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-panel {
  position: relative;
  margin-top: 18px;
  padding: 20px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.calc-panel h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--ink);
}
.calc-panel p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 14px;
}
.calc-panel .calc-field { margin-bottom: 14px; }
.calc-panel label { color: var(--ink); }
.calc-panel-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
}
.calc-panel-close:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
.calc-link-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.calc-link-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.85rem;
  background: var(--bg);
  color: var(--ink);
  min-width: 0;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .calc-link-row { flex-direction: column; }
  .calc-link-row input,
  .calc-link-row button { width: 100%; }
}
.calc-link-row button {
  padding: 10px 14px;
  background: var(--warm);
  color: #fff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.calc-link-row button:hover { background: #a85a31; }
.calc-mail-link {
  display: inline-block;
  font-size: 0.92rem;
  color: var(--warm);
  text-decoration: none;
  font-weight: 600;
}
.calc-mail-link:hover { text-decoration: underline; }
.calc-status {
  margin-top: 12px;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 8px;
  display: none;
}
.calc-status:empty { display: none; }
.calc-status.success {
  display: block;
  background: rgba(30, 140, 90, 0.12);
  color: #1e8c5a;
  border: 1px solid rgba(30, 140, 90, 0.3);
}
.calc-status.error {
  display: block;
  background: rgba(176, 75, 58, 0.12);
  color: #b04b3a;
  border: 1px solid rgba(176, 75, 58, 0.3);
}
.calc-status a { color: inherit; text-decoration: underline; font-weight: 600; }

/* --- Bedankpagina --- */
.bedankt-hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.bedankt-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.bedankt-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: rgba(40, 130, 90, 0.12);
  color: #1e8c5a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bedankt-card .eyebrow { color: var(--warm); }
.bedankt-card h1 { margin: 8px 0 16px; font-size: 2rem; }
.bedankt-card > p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; max-width: 540px; margin: 0 auto; }
.bedankt-info {
  text-align: left;
  margin: 36px 0 28px;
  padding: 24px 28px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.bedankt-info h2 { margin: 0 0 14px; font-size: 1.15rem; font-family: var(--font-sans); }
.bedankt-steps {
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
}
.bedankt-steps li { margin-bottom: 10px; line-height: 1.5; }
.bedankt-steps li:last-child { margin-bottom: 0; }
.bedankt-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 20px;
  flex-wrap: wrap;
}
.bedankt-contact {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}
.bedankt-contact a { color: var(--accent); font-weight: 600; }
@media (max-width: 560px) {
  .bedankt-hero { padding: 48px 0 60px; }
  .bedankt-card { padding: 32px 22px; }
  .bedankt-card h1 { font-size: 1.5rem; }
  .bedankt-info { padding: 18px 20px; }
}

.calc-warning {
  background: var(--warm-soft);
  color: var(--warning);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 16px;
  display: none;
  line-height: 1.5;
}
.calc-warning.visible { display: block; }

/* --- Cookie consent banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  padding: 16px 24px;
  z-index: 9500;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 0.8, 0.32, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.cookie-banner-text strong { color: var(--ink); }
.cookie-banner-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
}
.cookie-banner-btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  border: 0;
  transition: all 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.cookie-banner-btn-primary {
  background: var(--warm);
  color: #fff;
}
.cookie-banner-btn-primary:hover { background: #a85a31; }
.cookie-banner-btn-secondary {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--border);
}
.cookie-banner-btn-secondary:hover {
  background: var(--bg-alt);
  color: var(--ink);
}
@media (max-width: 640px) {
  .cookie-banner { padding: 14px 16px 16px; }
  .cookie-banner-inner { gap: 14px; }
  .cookie-banner-actions {
    width: 100%;
    flex-direction: row-reverse;
    gap: 8px;
  }
  .cookie-banner-btn { flex: 1; padding: 10px 16px; font-size: 0.9rem; }
  .cookie-banner-text { font-size: 0.88rem; }
}

/* --- FOMO verkoopnotificaties --- */
.fomo-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 12px 38px 12px 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.16), 0 2px 6px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 340px;
  transform: translateX(-140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
  z-index: 9000;
  font-family: var(--font-sans, inherit);
}
.fomo-notification.visible {
  transform: translateX(0);
  opacity: 1;
}
.fomo-icon {
  width: 36px;
  height: 36px;
  background: rgba(31, 78, 95, 0.1);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fomo-content {
  flex: 1;
  min-width: 0;
}
.fomo-message {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 3px;
}
.fomo-message strong { font-weight: 700; }
.fomo-time {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
}
.fomo-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
.fomo-close:hover { opacity: 1; }

@media (max-width: 560px) {
  .fomo-notification {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}

/* --- Meetgids SVG section --- */
.meetgids {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 32px;
}
.meetgids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 820px) { .meetgids-grid { grid-template-columns: 1fr; gap: 28px; } }
.meetgids ol {
  padding-left: 0;
  list-style: none;
  margin: 18px 0 0;
  counter-reset: meet;
}
.meetgids ol li {
  counter-increment: meet;
  padding: 10px 0 10px 40px;
  position: relative;
  color: var(--ink-soft);
}
.meetgids ol li::before {
  content: counter(meet);
  position: absolute;
  left: 0; top: 9px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--warm);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: "Fraunces", serif;
}
.meetgids ol li strong { color: var(--ink); }
.meetgids-svg {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  height: auto;
}
@media (max-width: 820px) {
  .meetgids-svg { max-width: 360px; }
}
@media (max-width: 520px) {
  .meetgids-svg { max-width: 100%; }
}

/* --- Forms --- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.98rem;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 13px 16px;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  font-family: inherit;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 78, 95, 0.15);
}
.form-row textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-row .required { color: var(--warm); }
.form-note { font-size: 0.88rem; color: var(--muted); }

/* --- Terugbel-verzoek (callback) --- */
.callback-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.callback-intro h2 { margin-top: 4px; margin-bottom: 14px; }
.callback-intro .check-list { margin-top: 14px; }
.callback-form .form-row { margin-bottom: 16px; }
.callback-form button[type="submit"] { width: 100%; }
@media (max-width: 880px) {
  .callback-card { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
}
@media (max-width: 560px) {
  .callback-card { gap: 24px; padding: 20px; }
}

/* --- Page hero (non-home) --- */
.page-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(32px, 5vw, 56px);
  text-align: center;
}
.page-hero .eyebrow { color: var(--warm); }
.page-hero h1 { max-width: 820px; margin: 0 auto 18px; }
.page-hero p { max-width: 680px; margin: 0 auto; font-size: 1.1rem; }
@media (max-width: 560px) {
  .page-hero p { font-size: 1rem; }
}

/* --- CTA band --- */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #0d2a37 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  margin: clamp(48px, 7vw, 80px) 0;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 28px; font-size: 1.1rem; }
.cta-band .btn-primary { background: var(--warm); }
.cta-band .btn-primary:hover { background: #a85a31; }

/* --- Testimonial strip --- */
.reviews-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .reviews-strip { grid-template-columns: 1fr; } }
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.review .stars { color: var(--warm); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 10px; }
.review blockquote {
  margin: 0 0 16px;
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.4;
}
.review cite { font-style: normal; color: var(--muted); font-size: 0.9rem; font-weight: 600; }

/* --- Footer --- */
.site-footer {
  background: #0e1820;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer .brand { color: #fff; margin-bottom: 8px; }
.footer-tagline {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  margin: 0 0 14px;
  line-height: 1.4;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.88); }
.site-footer a:hover { color: #fff; }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background .2s var(--ease);
}
.footer-socials a:hover { background: var(--accent); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 520px) { .footer-bottom { flex-direction: column; text-align: center; } }

/* --- Fade in on scroll --- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-in.in { opacity: 1; transform: translateY(0); }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
