/* =========================================================
   denhague.dev — gedeelde stylesheet
   Blauw #1f5a92 (trust) + Oranje #fa7415 (spark)
   Inter (body) + Instrument Serif italic (accent)
   ========================================================= */
:root {
  --blue:         #1f5a92;
  --blue-dk:      #154368;
  --blue-lt:      #e8f0f8;
  --blue-2:       #4a82b8;
  --orange:       #fa7415;
  --orange-dk:    #d85f08;
  --orange-lt:    #fef0e5;

  --ink:          #0a0f1c;
  --ink-2:        #2a3550;
  --ink-3:        #6b7588;
  --ink-4:        #a8aebc;
  --line:         #e4e8ef;
  --line-2:       #eef1f6;
  --bg:           #fafbfc;
  --white:        #ffffff;

  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;
  --font-display: 'Instrument Serif', Georgia, serif;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--orange); color: var(--white); }
a { color: inherit; }

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

/* Typography */
h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
}
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: 1.25rem; }

.display-italic {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
  letter-spacing: -0.01em;
}

/* =========================================================
   NAV
   ========================================================= */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 251, 252, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex; align-items: center; gap: 0.4rem;
  text-decoration: none; color: var(--ink);
}
.brand-text {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand-text .dot { color: var(--orange); }
/* Sub-page brand styling (demolerette/privacy) */
.brand-simple {
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 1.05rem; letter-spacing: -0.02em;
}
.brand-simple .dot { color: var(--orange); }

.nav-links { display: none; list-style: none; gap: 2.25rem; }
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }

.back-link {
  font-size: 0.9rem;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--orange); }

/* =========================================================
   HERO (home)
   ========================================================= */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(31, 90, 146, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 90, 146, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 50%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 50%, transparent 85%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 1.75rem;
  box-shadow: 0 1px 2px rgba(10, 15, 28, 0.04);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
a.hero-pill:hover {
  border-color: var(--ink-4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 15, 28, 0.08);
  color: var(--ink);
}
.hero-pill .badge {
  background: var(--orange-lt);
  color: var(--orange-dk);
  padding: 0.18rem 0.5rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}
.hero-pill .arrow {
  width: 18px; height: 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.65rem;
  margin-left: 0.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero h1 { margin-bottom: 1.5rem; }
.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--ink-2);
  max-width: 34rem;
  margin-bottom: 2.25rem;
  line-height: 1.55;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(250, 116, 21, 0.25); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--line);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover { border-color: var(--ink); }

/* Hero visual: laptop mockup */
.hero-visual { position: relative; perspective: 1500px; }
.laptop {
  position: relative;
  transform: rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform 0.6s;
  filter: drop-shadow(0 30px 50px rgba(10, 15, 28, 0.18));
  animation: laptopFloat 6s ease-in-out infinite;
}
@keyframes laptopFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-10px); }
}
.laptop-screen {
  background: var(--ink);
  border-radius: 12px 12px 4px 4px;
  padding: 12px 12px 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid #2a3550;
}
.laptop-screen-inner {
  background: #faf5ec;
  height: 100%;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  color: #2d1d0f;
  position: relative;
}
.bk-nav {
  background: rgba(250, 245, 236, 0.95);
  border-bottom: 1px solid rgba(45, 29, 15, 0.1);
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.5rem;
}
.bk-nav .bk-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: #2d1d0f;
  letter-spacing: -0.01em;
  font-size: 0.78rem;
  line-height: 1;
}
.bk-nav-links {
  display: flex;
  gap: 8px;
  color: rgba(45, 29, 15, 0.7);
  font-size: 0.42rem;
  font-weight: 500;
}
.bk-nav-cta {
  background: #8b4513;
  color: #faf5ec;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 0.42rem;
  font-weight: 500;
}
.bk-hero {
  padding: 12px 14px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
  align-items: center;
  height: calc(100% - 22px);
}
.bk-eyebrow {
  font-size: 0.36rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8b4513;
  font-weight: 600;
  margin-bottom: 4px;
}
.bk-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #2d1d0f;
  margin-bottom: 5px;
}
.bk-headline em { font-style: italic; color: #8b4513; }
.bk-sub {
  font-size: 0.4rem;
  color: rgba(45, 29, 15, 0.7);
  line-height: 1.4;
  margin-bottom: 6px;
}
.bk-cta-row { display: flex; gap: 4px; }
.bk-btn {
  display: inline-block;
  background: #2d1d0f;
  color: #faf5ec;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 0.42rem;
  font-weight: 500;
}
.bk-btn-ghost {
  background: transparent;
  color: #2d1d0f;
  padding: 3px 7px;
  border: 1px solid rgba(45, 29, 15, 0.3);
  border-radius: 3px;
  font-size: 0.42rem;
}
.bk-visual {
  aspect-ratio: 1;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 35%, #d4a574 0%, #b8845c 40%, #8b4513 80%),
    #8b4513;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.bk-visual::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e8c399 0%, #c9985f 60%, #8b4513 100%);
  box-shadow:
    inset -4px -6px 8px rgba(0, 0, 0, 0.2),
    inset 3px 3px 6px rgba(255, 235, 200, 0.3);
}
.bk-visual::after {
  content: '';
  position: absolute;
  width: 8%;
  height: 8%;
  border-radius: 50%;
  background: rgba(45, 29, 15, 0.3);
  top: 35%;
  left: 38%;
  box-shadow:
    18px 5px 0 -1px rgba(45, 29, 15, 0.3),
    8px 18px 0 -1px rgba(45, 29, 15, 0.3);
}
.laptop-base {
  background: linear-gradient(to bottom, #c8ccd4 0%, #989da8 100%);
  height: 12px;
  border-radius: 0 0 12px 12px;
  position: relative;
  margin: 0 -16px;
}
.laptop-base::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: #6c727c;
  border-radius: 0 0 6px 6px;
}

/* Trust row */
.hero-trust {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-icon.green { background: #d4f0dd; color: #1c8a4a; }
.trust-icon.orange { background: var(--orange-lt); color: var(--orange-dk); }
.trust-icon.blue { background: var(--blue-lt); color: var(--blue); }
.trust-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
}

/* =========================================================
   SECTIONS
   ========================================================= */
section.std { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { margin-bottom: 4rem; text-align: center; max-width: 50rem; margin-left: auto; margin-right: auto; }
.section-head .kicker {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p {
  color: var(--ink-2);
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0 auto;
}

/* =========================================================
   PRICES
   ========================================================= */
.prices {
  background: var(--white);
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 800px) { .prices-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 90, 146, 0.1);
}
.price-card.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-lt) 100%);
}
.price-card.featured::before {
  content: 'Meest gekozen';
  position: absolute;
  top: -10px;
  left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

.price-tag {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
}
.price-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.price-amount {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.price-amount .from {
  font-size: 0.75rem;
  color: var(--ink-3);
  margin-right: 0.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.price-desc {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 1rem 0 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.price-list { list-style: none; font-size: 0.9rem; flex: 1; }
.price-list li {
  color: var(--ink-2);
  padding: 0.45rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.price-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blue);
}
.price-card.featured .price-list li svg { color: var(--orange); }

.prices-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--ink-3);
}

/* =========================================================
   APPROACH
   ========================================================= */
.approach { padding: clamp(4rem, 9vw, 7rem) 0; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}
@media (min-width: 700px) { .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1000px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(31, 90, 146, 0.08);
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--blue-lt);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.step:hover .step-icon {
  background: var(--blue);
  color: var(--white);
}
.step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--orange);
  line-height: 1;
  font-weight: 400;
}
.step h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.step p {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.step-time {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-3);
  font-weight: 500;
}

/* =========================================================
   PROOF — Onze beloften
   ========================================================= */
/* =========================================================
   CASES / WERK
   ========================================================= */
.cases { padding: clamp(4rem, 9vw, 7rem) 0; background: var(--white); border-top: 1px solid var(--line); }
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 800px) { .cases-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; } }

.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.case-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 90, 146, 0.1);
}

.case-mockup {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 16 / 10;
  position: relative;
}
.case-browser {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.case-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f3f5f9;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.case-browser-bar .dot-r,
.case-browser-bar .dot-y,
.case-browser-bar .dot-g {
  width: 9px; height: 9px; border-radius: 50%;
}
.case-browser-bar .dot-r { background: #ed6a5e; }
.case-browser-bar .dot-y { background: #f4bf4f; }
.case-browser-bar .dot-g { background: #61c554; }
.case-url {
  flex: 1;
  text-align: center;
  font-size: 0.7rem;
  color: var(--ink-3);
  background: var(--white);
  border-radius: 6px;
  padding: 3px 10px;
  margin: 0 8px;
  font-weight: 500;
}
.case-browser-body {
  flex: 1;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
}

/* Rihab mockup — recreates rihablaaraj.nl (cream + rose-brown + Bebas Neue) */
.case-mockup-rihab .case-browser-body.rihab-real {
  padding: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  background: #fff9ef;
}
.rihab-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 11px;
  border-bottom: 1px solid #ead8cd;
  flex-shrink: 0;
}
.rihab-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #946b66;
}
.rihab-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid #946b66;
  color: #946b66;
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}
.rihab-logo-name {
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #946b66;
}
.rihab-nav-items {
  display: flex;
  gap: 11px;
  font-size: 0.42rem;
  color: #946b66;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.rihab-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 11px 14px 14px;
  min-height: 0;
}
.rihab-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.38rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b08881;
}
.rihab-display {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.95rem;
  line-height: 0.9;
  letter-spacing: 0.005em;
  color: #946b66;
  text-transform: uppercase;
  align-self: flex-start;
}
.rihab-display .soft { color: #b08881; }

/* denhague.nl mockup — recreates the real homepage */
.case-mockup-dh .case-browser-body.dh-real {
  padding: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  background: #ffffff;
}
.dh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 6px 10px;
  border-bottom: 1px solid #eef1f6;
  gap: 6px;
  flex-shrink: 0;
}
.dh-logo {
  font-size: 0.62rem;
  font-weight: 700;
  color: #1769d1;
  letter-spacing: -0.02em;
}
.dh-logo span { color: #1769d1; }
.dh-nav-items {
  display: flex;
  gap: 8px;
  font-size: 0.42rem;
  color: #4a5566;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.dh-nav-items .active { color: #0a0f1c; font-weight: 700; }
.dh-login {
  font-size: 0.42rem;
  font-weight: 600;
  color: #1769d1;
  border: 1px solid #1769d1;
  border-radius: 3px;
  padding: 2px 6px;
}

.dh-hero {
  flex: 1;
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 6px;
  padding: 9px 10px 8px;
  background:
    linear-gradient(135deg, #0e2a5c 0%, #0a3a82 50%, #0e4a9e 100%);
  overflow: hidden;
}
.dh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}
.dh-hero-left {
  position: relative;
  flex: 1.35;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  min-width: 0;
}
.dh-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #d6e3f5;
  font-size: 0.42rem;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.dh-pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 4px rgba(34,197,94,0.6);
}
.dh-h1 {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.dh-h1-soft { color: #88b4ee; font-weight: 800; }
.dh-ctas { display: flex; gap: 5px; margin-top: 2px; }
.dh-cta-primary {
  background: #f97316;
  color: #ffffff;
  font-size: 0.42rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.dh-cta-ghost {
  background: transparent;
  color: #ffffff;
  font-size: 0.42rem;
  font-weight: 600;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
}

.dh-hero-right {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dh-portrait {
  position: absolute;
  inset: 0 0 0 auto;
  width: 88%;
  border-radius: 6px;
  background:
    radial-gradient(ellipse 50% 38% at 50% 26%, rgba(214,227,245,0.55) 0%, rgba(214,227,245,0.05) 65%, transparent 75%),
    radial-gradient(ellipse 38% 50% at 50% 75%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.12);
}
.dh-portrait-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 4px;
  padding: 4px 7px 4px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  margin-bottom: 5px;
  text-align: left;
}
.dh-portrait-brand {
  font-size: 0.5rem;
  font-weight: 700;
  color: #1769d1;
  letter-spacing: -0.02em;
  line-height: 1;
}
.dh-portrait-brand span { color: #1769d1; }
.dh-portrait-sub {
  font-size: 0.36rem;
  color: #6b7588;
  font-weight: 500;
  margin-top: 1px;
}

/* Bakker mockup */
.case-mockup-bakker .case-browser-body { background: linear-gradient(180deg, #fff8ee, #fdecd0); }
.bk-eyebrow-c { font-size: 0.58rem; letter-spacing: 0.15em; color: #8a5a1c; font-weight: 700; }
.bk-headline-c { font-family: 'Instrument Serif', serif; font-size: 1.5rem; line-height: 1; color: #3a2510; }
.bk-headline-c em { font-style: italic; color: #b85a18; }
.bk-sub-c { font-size: 0.7rem; color: #6b4a25; }
.bk-products { display: flex; flex-direction: column; gap: 3px; margin-top: 0.2rem; }
.bk-prod {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #3a2510;
  background: rgba(255,255,255,0.6);
  padding: 3px 8px;
  border-radius: 5px;
}
.bk-prod-price { font-weight: 600; color: #b85a18; }
.bk-cta-c {
  display: inline-block;
  background: #b85a18;
  color: white;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  margin-top: 0.3rem;
  align-self: flex-start;
}

/* Billance mockup — recreates app.billance.nl dashboard */
.case-mockup-bill .case-browser-body.bill-real {
  padding: 0;
  flex-direction: row;
  justify-content: flex-start;
  gap: 0;
  background: #f6f9fc;
}
.bill-sidebar {
  width: 38%;
  background: #ffffff;
  border-right: 1px solid #e3e8ee;
  padding: 8px 5px 8px 7px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  overflow: hidden;
}
.bill-brand {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 2px 5px;
}
.bill-brand-mark {
  width: 11px; height: 11px;
  border-radius: 3px;
  background: linear-gradient(135deg, #635bff 0%, #00d4ff 100%);
  color: #ffffff;
  font-size: 0.45rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bill-brand-name {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #0a2540;
}
.bill-group-label {
  font-size: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #8792a2;
  padding: 4px 3px 1px;
}
.bill-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.4rem;
  font-weight: 500;
  font-family: inherit;
  color: #425466;
  padding: 2.5px 5px;
  border: 0;
  border-radius: 3px;
  letter-spacing: 0.01em;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  background: transparent;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.bill-nav-item:hover {
  background: #f3f5f9;
  color: #0a2540;
}
.bill-nav-item:focus-visible {
  outline: 2px solid #635bff;
  outline-offset: 1px;
}
.bill-nav-item .bill-icon {
  width: 5px; height: 5px;
  border-radius: 1.5px;
  background: #c9d2dd;
  flex-shrink: 0;
}
.bill-nav-item.active {
  background: #eef1f6;
  color: #0a2540;
  font-weight: 600;
}
.bill-nav-item.active::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  border-radius: 2px;
  background: #635bff;
}
.bill-nav-item.active .bill-icon { background: #635bff; }
.bill-nav-item.bill-ai {
  color: #635bff;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(99,91,255,0.08) 0%, rgba(0,212,255,0.04) 100%);
  margin-bottom: 2px;
}
.bill-nav-item.bill-ai .bill-icon-ai {
  background: linear-gradient(135deg, #635bff 0%, #00d4ff 100%);
}

.bill-main {
  flex: 1;
  min-width: 0;
  padding: 9px 10px 9px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.bill-greeting { display: flex; flex-direction: column; gap: 0; }
.bill-greet-eyebrow {
  font-size: 0.32rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #8792a2;
  text-transform: uppercase;
}
.bill-greet-title {
  font-size: 0.66rem;
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.bill-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.bill-kpi {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 4px;
  padding: 4px 6px 5px;
  box-shadow: 0 1px 2px rgba(10,37,64,0.04);
}
.bill-kpi-label,
.bill-card-label {
  font-size: 0.3rem;
  letter-spacing: 0.18em;
  color: #8792a2;
  font-weight: 700;
  text-transform: uppercase;
}
.bill-kpi-value {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -0.02em;
  margin-top: 1px;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.bill-kpi-trend {
  font-size: 0.34rem;
  font-weight: 600;
  color: #0e9f6e;
  margin-top: 1px;
}

/* Line chart widget */
.bill-chart {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 4px;
  padding: 4px 6px 4px;
  box-shadow: 0 1px 2px rgba(10,37,64,0.04);
  display: flex;
  flex-direction: column;
}
.bill-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
}
.bill-chart-total {
  font-size: 0.48rem;
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}
.bill-chart-svg {
  width: 100%;
  height: 22px;
  margin-top: 2px;
  display: block;
}
.bill-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.28rem;
  font-weight: 500;
  color: #a3acba;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1px;
}

/* Lists row */
.bill-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-height: 0;
}
.bill-list {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 4px;
  padding: 4px 6px 4px;
  box-shadow: 0 1px 2px rgba(10,37,64,0.04);
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.bill-list .bill-card-label { margin-bottom: 1px; }
.bill-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  font-size: 0.34rem;
  color: #425466;
  font-weight: 500;
  line-height: 1.3;
  border-top: 1px solid #f1f4f9;
  padding: 1.5px 0;
}
.bill-row:first-of-type { border-top: 0; }
.bill-row-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.bill-row-amt {
  font-weight: 700;
  color: #0a2540;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.bill-row-amt.out { color: #e3342f; }
.bill-row-amt.out::before { content: '−'; margin-right: 1px; }

.bill-action {
  background: linear-gradient(135deg, #635bff 0%, #7c3aed 55%, #00d4ff 135%);
  border-radius: 5px;
  padding: 6px 7px 6px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
}
.bill-action-text { min-width: 0; }
.bill-action-label {
  font-size: 0.34rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.bill-action-title {
  font-size: 0.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 1px;
  line-height: 1.15;
}
.bill-action-btn {
  background: #ffffff;
  color: #635bff;
  font-size: 0.42rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

/* Billance — screens (interactive switcher) */
.bill-screen {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 0;
  flex: 1;
}
.bill-screen[hidden] { display: none; }

.bill-listpage-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
}
.bill-pill-add {
  background: #635bff;
  color: #ffffff;
  font-size: 0.38rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}

.bill-table {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 5px;
  padding: 2px 6px;
  box-shadow: 0 1px 2px rgba(10,37,64,0.04);
  display: flex;
  flex-direction: column;
}
.bill-tr {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 0;
  border-top: 1px solid #f1f4f9;
  font-size: 0.36rem;
  color: #425466;
  font-weight: 500;
}
.bill-tr:first-child { border-top: 0; }
.bill-tr-text { flex: 1; min-width: 0; }
.bill-tr-name {
  font-size: 0.4rem;
  font-weight: 600;
  color: #0a2540;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.bill-tr-sub {
  font-size: 0.32rem;
  color: #8792a2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}
.bill-avatar {
  width: 13px; height: 13px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.36rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}
.bill-mono {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.34rem;
  color: #8792a2;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 32px;
  letter-spacing: -0.02em;
}
.bill-tag {
  font-size: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 100px;
  text-transform: uppercase;
  flex-shrink: 0;
  line-height: 1;
}
.bill-tag.green  { background: #e7f7ee; color: #0e9f6e; }
.bill-tag.blue   { background: #eef1ff; color: #635bff; }
.bill-tag.red    { background: #fdecec; color: #e3342f; }
.bill-tag.amber  { background: #fff4e0; color: #b45309; }
.bill-tag.neutral{ background: #eef1f6; color: #6b7588; }
.bill-amt {
  font-size: 0.4rem;
  font-weight: 700;
  color: #0a2540;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}
.bill-amt.out { color: #e3342f; }

/* AI Assistant screen */
.bill-ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.bill-ai-chip {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  color: #425466;
  font-size: 0.36rem;
  font-weight: 500;
  padding: 3px 6px;
  border-radius: 100px;
  box-shadow: 0 1px 2px rgba(10,37,64,0.04);
}
.bill-ai-msg {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}
.bill-ai-avatar {
  width: 13px; height: 13px;
  border-radius: 3px;
  background: linear-gradient(135deg, #635bff 0%, #00d4ff 100%);
  color: #ffffff;
  font-size: 0.44rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.bill-ai-bubble {
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 6px;
  border-top-left-radius: 2px;
  padding: 5px 7px;
  font-size: 0.38rem;
  color: #0a2540;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(10,37,64,0.04);
}
.bill-ai-actions { display: flex; gap: 4px; margin-top: 4px; }
.bill-ai-act {
  font-size: 0.34rem;
  font-weight: 700;
  background: #635bff;
  color: #ffffff;
  padding: 2px 7px;
  border-radius: 100px;
}
.bill-ai-act.ghost {
  background: transparent;
  color: #635bff;
  border: 1px solid #635bff;
}
.bill-ai-input {
  margin-top: auto;
  background: #ffffff;
  border: 1px solid #e3e8ee;
  border-radius: 100px;
  padding: 4px 5px 4px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(10,37,64,0.04);
}
.bill-ai-placeholder {
  font-size: 0.36rem;
  color: #a3acba;
  font-weight: 500;
}
.bill-ai-send {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #635bff 0%, #7c3aed 100%);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Placeholder screen */
.bill-screen-empty {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bill-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px dashed #cdd6e2;
  border-radius: 6px;
  max-width: 80%;
}
.bill-empty-mark {
  font-size: 0.8rem;
  font-weight: 800;
  color: #635bff;
  letter-spacing: 0.18em;
  line-height: 1;
}
.bill-empty-title {
  font-size: 0.46rem;
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -0.005em;
}
.bill-empty-sub {
  font-size: 0.34rem;
  color: #8792a2;
  font-weight: 500;
  line-height: 1.4;
}

/* Case meta + content */
.case-meta { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 0.55rem; }
.case-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.case-badge-real { background: #e7f5ec; color: #1f7a3a; }
.case-badge-own { background: var(--blue-lt); color: var(--blue-dk); }
.case-badge-concept { background: var(--orange-lt); color: var(--orange-dk); }
.case-branche { font-size: 0.78rem; color: var(--ink-3); }

.case-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.case-body {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.case-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.case-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--line-2);
  padding: 4px 10px;
  border-radius: 100px;
}

.case-link {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.case-link:hover { color: var(--orange); border-bottom-color: var(--orange); }

.cases-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--ink-3);
}

/* =========================================================
   PROOF
   ========================================================= */
.proof {
  background: var(--white);
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .guarantees-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.guarantee {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.guarantee::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
}
.guarantee:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(31, 90, 146, 0.08);
}
.guarantee:hover::before {
  transform: scaleY(1);
  background: var(--orange);
}
.guarantee-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-lt);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.guarantee:hover .guarantee-icon {
  background: var(--orange);
  color: var(--white);
}
.guarantee h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.guarantee p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: clamp(4rem, 9vw, 7rem) 0; }
.faq-list { max-width: 50rem; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--blue-2); }
.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(31, 90, 146, 0.06);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-lt);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.25s;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231f5a92' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.faq-item[open] summary::after {
  background-color: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}
.faq-item p {
  color: var(--ink-2);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* =========================================================
   CTA (home + demolerette)
   ========================================================= */
.cta {
  background: var(--ink);
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(31, 90, 146, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(250, 116, 21, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}
.cta .kicker {
  display: inline-block;
  background: rgba(250, 116, 21, 0.15);
  color: var(--orange);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cta-lede {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
  text-align: left;
}
@media (min-width: 850px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 2rem; }
}
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  transition: all 0.2s;
}
.contact-block:hover {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
}
.contact-label {
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.contact-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.3rem;
}
.contact-value:hover { color: var(--orange); }
.contact-value-sm { font-size: 1rem; }
.contact-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  color: var(--ink);
}
@media (min-width: 600px) {
  .contact-form { padding: 2rem 2rem 1.75rem; }
}
.form-row { margin-bottom: 1rem; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 500px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(31, 90, 146, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form-submit:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(250, 116, 21, 0.3);
}
.form-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 1rem;
  line-height: 1.5;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--bg);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-col h5 {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li {
  padding: 0.35rem 0;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.footer-col a { text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-tagline {
  color: var(--ink-2);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 26rem;
  line-height: 1.55;
}
.footer-bottom {
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--ink-3);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* Sub-page footer (demolerette/privacy) */
.footer-simple {
  background: var(--bg);
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.footer-simple-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--ink-3);
}
.footer-simple-inner a {
  color: var(--ink-2);
  text-decoration: none;
}
.footer-simple-inner a:hover { color: var(--orange); }
.footer-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0 2rem;
  margin-top: 4rem;
  font-size: 0.85rem;
}
.footer-dark .footer-simple-inner { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }
.footer-dark .footer-simple-inner a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-dark .footer-simple-inner a:hover { color: var(--orange); }

/* =========================================================
   ANIMATIONS — stagger fade-up
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.in > *:nth-child(7) { transition-delay: 0.48s; }

/* Fallback: when JS is disabled or IntersectionObserver unsupported, show content */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
}
.no-js .reveal,
.no-js .stagger > * { opacity: 1; transform: none; }

/* =========================================================
   DEMOLERETTE PAGE
   ========================================================= */
.demo-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.demo-hero .kicker {
  display: inline-block;
  background: var(--orange-lt);
  color: var(--orange-dk);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.demo-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.demo-hero h1 em {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
}
.demo-hero p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-2);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.55;
}
.video-wrap {
  margin: 2.5rem 0 clamp(2rem, 4vw, 3.5rem);
  position: relative;
}
.video-container {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 1px 1px rgba(10, 15, 28, 0.05),
    0 4px 16px rgba(10, 15, 28, 0.08),
    0 20px 50px rgba(10, 15, 28, 0.12);
}
.video-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(31, 90, 146, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(250, 116, 21, 0.2) 0%, transparent 50%),
    var(--ink);
  pointer-events: none;
  z-index: 0;
}
.video-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.video-fallback-link {
  color: var(--white);
  text-decoration: underline;
}
.video-caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-3);
}
.video-caption strong { color: var(--ink-2); font-weight: 600; }

.whats-in {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line);
}
.whats-in-head { text-align: center; margin-bottom: 2.5rem; }
.whats-in-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.whats-in-head h2 em {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
}
.whats-in-head p {
  color: var(--ink-2);
  max-width: 32rem;
  margin: 0 auto;
  font-size: 0.95rem;
}
.whats-in-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 750px) {
  .whats-in-grid { grid-template-columns: repeat(3, 1fr); }
}
.whats-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all 0.25s;
}
.whats-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(31, 90, 146, 0.08);
}
.whats-icon {
  width: 44px; height: 44px;
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  transition: all 0.25s;
}
.whats-card:hover .whats-icon {
  background: var(--blue);
  color: var(--white);
}
.whats-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.whats-card p {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.cta-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}
@media (min-width: 600px) { .cta-options { grid-template-columns: 1fr 1fr; } }
.cta-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  transition: all 0.2s;
  display: block;
}
.cta-option:hover {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.cta-option .opt-label {
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.cta-option .opt-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.cta-option .opt-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
}
.cta-extra {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.cta-extra a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================================================
   PRIVACY PAGE
   ========================================================= */
.privacy header.hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.privacy header.hero .kicker {
  display: inline-block;
  background: var(--blue-lt);
  color: var(--blue);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.privacy header.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.privacy header.hero h1 em {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
}
.privacy header.hero p {
  font-size: 1.05rem;
  color: var(--ink-2);
  max-width: 36rem;
}
.privacy header.hero .meta {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-3);
}
.privacy header.hero .meta strong { color: var(--ink-2); font-weight: 600; }
.privacy body { line-height: 1.7; }
.privacy main { padding: clamp(3rem, 6vw, 5rem) 0; }
.privacy main h2 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.privacy main h2:first-child { margin-top: 0; }
.privacy main h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--ink);
}
.privacy main p {
  color: var(--ink-2);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}
.privacy main ul {
  margin: 0.5rem 0 1.25rem 0;
  padding-left: 1.5rem;
  color: var(--ink-2);
}
.privacy main li { margin-bottom: 0.5rem; font-size: 0.98rem; }
.privacy main a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.privacy main a:hover { color: var(--orange); }
.privacy main strong { color: var(--ink); font-weight: 600; }
.privacy .wrap { max-width: 800px; }
.info-card {
  background: var(--blue-lt);
  border: 1px solid rgba(31, 90, 146, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}
.info-card .label {
  font-size: 0.72rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.info-card p { margin-bottom: 0; font-size: 0.95rem; }
.info-card--accent {
  background: var(--orange-lt);
  border-color: rgba(250, 116, 21, 0.15);
  margin-top: 3rem;
}
.info-card--accent .label { color: var(--orange-dk); }

/* Footer link in form disclaimer */
.link-blue { color: var(--blue); text-decoration: underline; }

/* =========================================================
   FLOATING WHATSAPP CTA
   ========================================================= */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.1rem 0.75rem 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.whatsapp-fab:hover {
  background: #1ebc5a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
}
.whatsapp-fab:active { transform: translateY(0); }
.whatsapp-fab svg { flex-shrink: 0; }
.whatsapp-fab .whatsapp-label { white-space: nowrap; }

@media (max-width: 540px) {
  .whatsapp-fab {
    padding: 0.85rem;
    border-radius: 50%;
  }
  .whatsapp-fab .whatsapp-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
