/* ═══════════════════════════════════════════
   Huisprijzen.be — Stylesheet
   Colors: Deep Navy #0f2b46, Teal #0ea5a0, Amber #f59e0b, Light #f0f6fa
   ═══════════════════════════════════════════ */

:root {
  --navy: #0f2b46;
  --navy-light: #1a3d5c;
  --teal: #0ea5a0;
  --teal-dark: #0c8c88;
  --teal-light: #e6f7f6;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --bg: #f0f6fa;
  --bg-alt: #f8fbfd;
  --white: #ffffff;
  --text: #1e3a5f;
  --text-muted: #5a7a9a;
  --border: #e2eaf2;
  --shadow-sm: 0 1px 3px rgba(15,43,70,0.06);
  --shadow-md: 0 4px 16px rgba(15,43,70,0.08);
  --shadow-lg: 0 8px 32px rgba(15,43,70,0.10);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --danger: #dc2626;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { overflow-x: hidden; width: 100%; position: relative; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: var(--font); }

/* ── Container ── */
.hp-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.hp-content-narrow { max-width: 780px; }

/* ═══ NAVBAR ═══ */
.hp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.hp-nav.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.hp-nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.hp-logo {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  color: var(--navy); text-decoration: none; letter-spacing: -0.5px;
}
.hp-logo span { color: var(--teal); }
.hp-nav-links { display: flex; align-items: center; gap: 32px; }
.hp-nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.hp-nav-links a:hover { color: var(--navy); text-decoration: none; }
.hp-nav-cta, a.hp-nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 10px 24px; border-radius: 8px; border: none;
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  transition: background 0.2s; text-decoration: none;
}
.hp-nav-cta:hover, a.hp-nav-cta:hover { background: var(--teal-dark); color: var(--white) !important; }

/* Hamburger */
.hp-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
}
.hp-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--navy);
  position: absolute; left: 0; transition: 0.3s;
}
.hp-hamburger span:nth-child(1) { top: 0; }
.hp-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hp-hamburger span:nth-child(3) { bottom: 0; }

/* Mobile menu */
.hp-mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--white); padding: 80px 32px 32px;
  display: flex; flex-direction: column; gap: 24px;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.hp-mobile-menu.open { transform: translateX(0); }
.hp-mobile-menu a {
  font-size: 1.2rem; font-weight: 600; color: var(--navy); text-decoration: none;
}
.hp-mobile-cta {
  background: var(--teal); color: var(--white);
  padding: 16px; border-radius: 10px; text-align: center;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
}
.hp-menu-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 2rem;
  color: var(--navy); cursor: pointer;
}

/* ═══ HERO ═══ */
.hp-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(160deg, #f0f6fa 0%, #e6f0f8 50%, var(--teal-light) 100%);
  position: relative; overflow: hidden;
}
.hp-hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,160,0.06) 0%, transparent 70%);
}
.hp-hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}
.hp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; color: var(--teal-dark);
  margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hp-hero-badge i { color: var(--teal); }
.hp-hero h1 {
  font-family: var(--font-heading); font-size: 3.2rem; font-weight: 800;
  line-height: 1.15; color: var(--navy); margin-bottom: 20px;
  letter-spacing: -1px;
}
.hp-hero h1 span { color: var(--teal); }
.hp-hero-sub {
  font-size: 1.15rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 32px; max-width: 520px;
}

/* ── Hero Inline Form ── */
.hp-hero-form {
  display: flex; gap: 0; margin-bottom: 28px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(15,43,70,0.12);
  border: 2px solid var(--border);
  overflow: visible;
  transition: border-color 0.2s;
  max-width: 560px;
  position: relative;
}
.hp-hero-form:focus-within {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(14,165,160,0.15);
}
.hp-hero-input-wrap {
  flex: 1; display: flex; align-items: center; padding: 0 16px;
  position: relative;
}
.hp-hero-input-wrap > i { color: var(--teal); font-size: 1rem; margin-right: 10px; flex-shrink: 0; }
.hp-hero-input-wrap input {
  border: none; outline: none; width: 100%; padding: 16px 0;
  font-size: 1rem; font-family: var(--font); color: var(--text);
  background: transparent;
}
.hp-hero-input-wrap input::placeholder { color: var(--text-muted); }
.hp-hero-form-btn {
  background: var(--teal); color: var(--white);
  border: none; padding: 16px 28px; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font);
  transition: background 0.2s;
  border-radius: 0 12px 12px 0;
}
.hp-hero-form-btn:hover { background: var(--teal-dark); }

/* Suggestions dropdown (hero) */
.hp-suggestions {
  position: absolute; top: 100%; left: -2px; right: -2px;
  background: var(--white); border: 2px solid var(--teal);
  border-top: none;
  border-radius: 0 0 14px 14px; box-shadow: 0 8px 24px rgba(15,43,70,0.15);
  list-style: none; padding: 0; margin: 0; z-index: 500;
  max-height: 280px; overflow-y: auto;
  display: none;
}
.hp-suggestions.open { display: block; }
.hp-suggestions li {
  padding: 12px 16px; cursor: pointer; font-size: 0.9rem;
  border-bottom: 1px solid var(--border); transition: background 0.1s;
}
.hp-suggestions li:last-child { border-bottom: none; }
.hp-suggestions li:hover, .hp-suggestions li.active { background: var(--teal-light); }
.hp-suggestions li strong { color: var(--navy); }
.hp-suggestions li span { color: var(--text-muted); font-size: 0.85rem; }

/* ── Hero Mini-map ── */
.hero-minimap-wrap {
  max-width: 560px; margin-bottom: 20px;
  border-radius: 14px; overflow: hidden;
  border: 2px solid var(--teal);
  box-shadow: 0 4px 20px rgba(14,165,160,0.18);
  position: relative;
  animation: fnFadeIn 0.4s ease;
}
.hero-minimap-wrap::after {
  content: '\1F4CD  Jouw locatie';
  font-family: var(--font);
  font-weight: 600;
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white; font-size: 0.82rem;
  padding: 30px 16px 10px; z-index: 400; pointer-events: none;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero-minimap {
  height: 180px; width: 100%; z-index: 0;
}

/* Hero trust */
.hp-hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hp-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
}
.hp-trust-item i { color: var(--teal); font-size: 0.9rem; }

/* ── Hero video-variant (poster-first, witte tekst) ── */
.hp-hero--video {
  background: #0d1526 url('assets/hero-zonnepanelen.jpg?v=20260723') center/cover no-repeat;
}
.hp-hero--video::before { display: none; } /* decoratieve glow-cirkel uit boven de foto */
.hp-hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity 1s ease;
}
.hp-hero-media.is-playing { opacity: 1; }
.hp-hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(9,20,38,0.93) 0%, rgba(9,20,38,0.72) 46%, rgba(9,20,38,0.52) 100%);
}
.hp-hero--video .hp-hero-inner { position: relative; z-index: 2; }
.hp-hero--video h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.35); }
.hp-hero--video h1 span { color: #2dd4bf; }
.hp-hero--video .hp-hero-sub { color: rgba(255,255,255,0.92); }
.hp-hero--video .hp-hero-trust .hp-trust-item { color: rgba(255,255,255,0.92); }
.hp-hero--video .hp-hero-trust .hp-trust-item i { color: #2dd4bf; }

/* Hero price card */
.hp-hero-visual { position: relative; }
.hp-price-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hp-price-card-header {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--teal); margin-bottom: 12px;
}
.hp-price-card-location { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; }
.hp-price-card-location i { color: var(--amber); margin-right: 6px; }
.hp-price-card-value {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  color: var(--navy); margin-bottom: 20px; letter-spacing: -0.5px;
}
.hp-price-card-details {
  display: flex; gap: 16px; margin-bottom: 20px;
  font-size: 0.85rem; color: var(--text-muted);
}
.hp-price-card-details i { color: var(--teal); margin-right: 4px; }
.hp-price-card-bar {
  height: 6px; background: var(--bg); border-radius: 3px; overflow: hidden;
  margin-bottom: 10px;
}
.hp-bar-fill {
  height: 100%; width: 72%; border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}
.hp-price-card-label { font-size: 0.8rem; color: var(--text-muted); text-align: right; }


/* ═══════════════════════════════════════════════════════
   FUNNEL OVERLAY
   ═══════════════════════════════════════════════════════ */
.fn-overlay {
  display: none !important;
}
.fn-overlay.open { opacity: 1; pointer-events: all; }

.fn-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 620px; max-height: 90vh;
  overflow-y: auto; padding: 40px;
  box-shadow: 0 24px 64px rgba(15,43,70,0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.fn-overlay.open .fn-container { transform: translateY(0); }

.fn-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 1.8rem;
  color: var(--text-muted); cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.fn-close:hover { color: var(--navy); }

/* ── Progress Bar ── */
.fn-progress { margin-bottom: 32px; }
.fn-progress-track {
  height: 4px; background: var(--border); border-radius: 2px;
  overflow: hidden; margin-bottom: 16px;
}
.fn-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  border-radius: 2px; transition: width 0.5s ease;
  width: 0%;
}
.fn-progress-dots {
  display: flex; justify-content: space-between;
}
.fn-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.fn-dot span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
}
.fn-dot small {
  font-size: 0.7rem; color: var(--text-muted); font-weight: 500;
}
.fn-dot.active span {
  background: var(--teal); color: var(--white); border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(14,165,160,0.3);
}
.fn-dot.done span {
  background: var(--teal-light); color: var(--teal-dark); border-color: var(--teal);
}

/* ── Funnel Steps ── */
.fn-step { display: none; }
.fn-step.active { display: block; animation: fnFadeIn 0.35s ease; }
@keyframes fnFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fn-step h2 {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800;
  color: var(--navy); margin-bottom: 6px;
}
.fn-subtitle {
  font-size: 0.95rem; color: var(--text-muted); margin-bottom: 24px;
}

/* ── Funnel Fields ── */
.fn-field { margin-bottom: 20px; }
.fn-field label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.fn-field label i { color: var(--teal); margin-right: 4px; }
.fn-input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 0.95rem; font-family: var(--font);
  color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fn-input:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,165,160,0.1);
}
.fn-input[readonly] {
  background: var(--bg); color: var(--text-muted); cursor: default;
}
select.fn-input { appearance: auto; }

.fn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fn-field-error {
  font-size: 0.8rem; color: var(--danger); margin-top: 4px; min-height: 0;
}
/* Suggestions dropdown inside funnel */
.fn-suggestions {
  position: absolute; top: 100%; left: 0; right: 0;
  z-index: 600; border-radius: 0 0 10px 10px;
}
.fn-error {
  font-size: 0.85rem; color: var(--danger); margin-bottom: 12px; text-align: center;
}

/* ── Type Grid ── */
.fn-type-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.fn-type-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 8px; border: 2px solid var(--border);
  border-radius: 10px; background: var(--white); cursor: pointer;
  transition: all 0.2s; font-family: var(--font);
}
.fn-type-btn i { font-size: 1.3rem; color: var(--text-muted); transition: color 0.2s; }
.fn-type-btn span { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.fn-type-btn:hover { border-color: var(--teal); }
.fn-type-btn.selected {
  border-color: var(--teal); background: var(--teal-light);
}
.fn-type-btn.selected i { color: var(--teal); }
.fn-type-btn.selected span { color: var(--teal-dark); }

/* ── Radio Groups ── */
.fn-radio-group { display: flex; flex-direction: column; gap: 10px; }
.fn-radio { cursor: pointer; }
.fn-radio input { display: none; }
.fn-radio span {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; border: 2px solid var(--border);
  border-radius: 10px; font-size: 0.95rem; font-weight: 500;
  color: var(--text); transition: all 0.2s;
}
.fn-radio span i { color: var(--text-muted); width: 20px; text-align: center; transition: color 0.2s; }
.fn-radio:hover span { border-color: var(--teal); }
.fn-radio input:checked + span {
  border-color: var(--teal); background: var(--teal-light);
  color: var(--teal-dark); font-weight: 600;
}
.fn-radio input:checked + span i { color: var(--teal); }

/* ── Funnel Buttons ── */
.fn-btn-full { width: 100%; justify-content: center; }
.fn-btn-row { display: flex; gap: 12px; }
.fn-btn-row .hp-btn { flex: 1; justify-content: center; }

/* ── Loading State ── */
.fn-loading { text-align: center; padding: 20px 0; }
.fn-spinner {
  width: 48px; height: 48px; border: 4px solid var(--border);
  border-top-color: var(--teal); border-radius: 50%;
  animation: fnSpin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes fnSpin { to { transform: rotate(360deg); } }

.fn-loading h2 { margin-bottom: 8px; }
.fn-loading-steps { margin-top: 24px; text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
.fn-loading-item {
  padding: 10px 0; font-size: 0.9rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
  opacity: 0.5; transition: opacity 0.3s, color 0.3s;
}
.fn-loading-item i { width: 18px; text-align: center; color: var(--text-muted); }
.fn-loading-item.done { opacity: 1; color: var(--teal-dark); }
.fn-loading-item.done i { color: var(--teal); }

/* ── Lead Form Teaser ── */
.fn-result-teaser {
  text-align: center; margin-bottom: 28px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.fn-teaser-icon {
  font-size: 2.5rem; color: var(--teal); margin-bottom: 12px;
}
.fn-result-teaser h2 { margin-bottom: 8px; }
.fn-result-teaser p { color: var(--text-muted); font-size: 0.95rem; }

.fn-trust-line {
  text-align: center; font-size: 0.8rem; color: var(--text-muted);
  margin-top: 12px;
}
.fn-trust-line i { margin-right: 4px; }

/* ── Success State ── */
.fn-success { text-align: center; }
.fn-success-check {
  font-size: 3rem; color: var(--teal); margin-bottom: 16px;
  animation: fnPulse 0.5s ease;
}
@keyframes fnPulse {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.fn-success h2 { margin-bottom: 8px; }
.fn-success > .fn-subtitle { margin-bottom: 20px; }

/* Cross-sell cards */
.fn-cross-sell {
  margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  text-align: left;
}
.fn-cross-card {
  padding: 20px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg);
}
.fn-cross-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #dbeafe; color: #2563eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 10px;
}
.fn-cross-icon-reno { background: #fef3c7; color: #d97706; }
.fn-cross-card h3 {
  font-size: 0.9rem; font-weight: 700; color: var(--navy);
  margin-bottom: 6px;
}
.fn-cross-card p {
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5;
}
.fn-cross-link {
  font-size: 0.85rem; font-weight: 600; color: var(--teal-dark);
  display: inline-flex; align-items: center; gap: 4px;
}
.fn-cross-link:hover { text-decoration: underline; }


/* ── Toggle Buttons (slaapkamers, ja/nee grids) ── */
.fn-toggle-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.fn-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border: 2px solid var(--border);
  border-radius: 8px; background: var(--white); cursor: pointer;
  font-family: var(--font); font-size: 0.9rem; font-weight: 600;
  color: var(--text); transition: all 0.2s;
}
.fn-toggle-btn i { font-size: 0.85rem; }
.fn-toggle-btn:hover { border-color: var(--teal); }
.fn-toggle-btn.selected {
  border-color: var(--teal); background: var(--teal-light); color: var(--teal-dark);
}

/* ── EPC Button Grid ── */
.fn-epc-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.fn-epc-btn {
  width: 52px; height: 42px; border: 2px solid var(--border);
  border-radius: 8px; background: var(--white); cursor: pointer;
  font-family: var(--font); font-size: 0.9rem; font-weight: 700;
  color: var(--text); transition: all 0.2s;
}
.fn-epc-btn:hover { border-color: var(--teal); }
.fn-epc-btn.selected {
  border-color: var(--teal); background: var(--teal); color: var(--white);
}

/* ── Checkbox label ── */
.fn-checkbox {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--text-muted); cursor: pointer; font-weight: 500;
}
.fn-checkbox input { accent-color: var(--teal); width: 18px; height: 18px; }
.fn-checkbox.checked { color: var(--teal-dark); font-weight: 600; }

/* ── Mini Leaflet map ── */
.fn-minimap-wrap {
  margin-bottom: 20px; border-radius: 12px; overflow: hidden;
  border: 2px solid var(--teal); box-shadow: 0 4px 16px rgba(14,165,160,0.15);
  position: relative;
  animation: fnFadeIn 0.35s ease;
}
.fn-minimap-wrap::after {
  content: '\1F4CD  Locatie gevonden';
  font-family: var(--font);
  font-weight: 600;
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,43,70,0.75));
  color: white; font-size: 0.8rem;
  padding: 28px 14px 10px; z-index: 1; pointer-events: none;
  letter-spacing: 0.3px;
}
.fn-minimap {
  height: 200px; width: 100%; z-index: 0;
}
@keyframes fnMapPulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ── HP Buttons ── */
.hp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; border: none;
  font-family: var(--font); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  white-space: nowrap;
}
.hp-btn-primary {
  background: var(--teal); color: var(--white);
}
.hp-btn-primary:hover { background: var(--teal-dark); }
.hp-btn-ghost {
  background: transparent; color: var(--text-muted);
  border: 2px solid var(--border);
}
.hp-btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); }
.hp-btn-white {
  background: var(--white); color: var(--navy);
}
.hp-btn-white:hover { background: var(--bg); }
.hp-btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ═══ SECTIONS ═══ */
.hp-section { padding: 80px 0; }
.hp-section-alt { background: var(--bg); }
.hp-section-header { text-align: center; margin-bottom: 48px; }
.hp-tag {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  font-size: 0.8rem; font-weight: 600; padding: 6px 16px;
  border-radius: 50px; margin-bottom: 16px; letter-spacing: 0.5px;
}
.hp-section-header h2 {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  color: var(--navy); margin-bottom: 12px; letter-spacing: -0.5px;
}
.hp-section-header p {
  font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto;
}

/* ═══ STEPS ═══ */
.hp-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.hp-step-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  text-align: center; border: 1px solid var(--border);
  transition: all 0.3s ease; position: relative;
}
.hp-step-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal);
}
.hp-step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hp-step-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 20px;
}
.hp-step-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.hp-step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.hp-steps-cta { text-align: center; margin-top: 40px; }

/* ═══ PRICE TABLE ═══ */
.hp-price-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--white); box-shadow: var(--shadow-sm);
}
.hp-price-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hp-price-table thead { background: var(--navy); }
.hp-price-table th {
  padding: 16px 20px; text-align: left;
  font-weight: 600; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.5px; color: rgba(255,255,255,0.9);
}
.hp-price-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.hp-price-table tbody tr:last-child td { border-bottom: none; }
.hp-price-table tbody tr:hover { background: var(--teal-light); }
.hp-trend-up { color: #16a34a; font-weight: 600; }
.hp-table-link { color: var(--teal-dark); font-weight: 600; font-size: 0.85rem; white-space: nowrap; }
.hp-table-source { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

/* ═══ REVIEWS ═══ */
.hp-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hp-review-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border); transition: all 0.3s;
}
.hp-review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hp-review-stars { color: var(--amber); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.hp-review-card p {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 16px; font-style: italic;
}
.hp-review-author strong { display: block; font-size: 0.85rem; color: var(--navy); }
.hp-review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ═══ SEO CONTENT ═══ */
.hp-seo-content h2 {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  color: var(--navy); margin-bottom: 20px; letter-spacing: -0.5px;
}
.hp-seo-content h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin: 32px 0 12px;
}
.hp-seo-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.hp-seo-content ul { padding-left: 20px; margin-bottom: 16px; }
.hp-seo-content li { font-size: 0.93rem; color: var(--text-muted); line-height: 2; }

/* ═══ ACCORDION (SEO content) ═══ */
.hp-accordion {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: border-color 0.2s; margin-bottom: 12px;
}
.hp-accordion[open] { border-color: var(--teal); }
.hp-accordion summary {
  padding: 18px 24px; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.hp-accordion summary::-webkit-details-marker { display: none; }
.hp-accordion summary::marker { display: none; content: ''; }
.hp-accordion summary::after {
  content: '+'; font-size: 1.3rem; color: var(--teal);
  font-weight: 300; transition: transform 0.2s; flex-shrink: 0; margin-left: 16px;
}
.hp-accordion[open] summary::after { content: '\2212'; }
.hp-accordion-body {
  padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
}
.hp-accordion-body p { margin-bottom: 12px; }
.hp-accordion-body p:last-child { margin-bottom: 0; }
.hp-accordion-body ul { padding-left: 20px; margin: 0; }
.hp-accordion-body ul li { margin-bottom: 8px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 768px) {
  .hp-accordion summary { padding: 14px 16px; font-size: 0.9rem; }
  .hp-accordion-body { padding: 0 16px 16px; }
}

/* ═══ FAQ ═══ */
.hp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.hp-faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: border-color 0.2s;
}
.hp-faq-item[open] { border-color: var(--teal); }
.hp-faq-item summary {
  padding: 20px 24px; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.hp-faq-item summary::-webkit-details-marker { display: none; }
.hp-faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--teal);
  font-weight: 300; transition: transform 0.2s;
}
.hp-faq-item[open] summary::after { content: '\2212'; }
.hp-faq-item p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ═══ CTA BANNER ═══ */
.hp-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
}
.hp-cta-inner { text-align: center; }
.hp-cta-inner h2 {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}
.hp-cta-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; }

/* ═══ CITY DROPDOWN ═══ */
.hp-city-dropdown { margin-top: 24px; }
.hp-city-dropdown-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 2px solid var(--border);
  padding: 16px 24px; border-radius: 12px;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy);
  cursor: pointer; transition: all 0.2s; list-style: none;
  width: 100%; justify-content: center;
}
.hp-city-dropdown-btn::-webkit-details-marker { display: none; }
.hp-city-dropdown-btn::marker { display: none; content: ''; }
.hp-city-dropdown-btn i { color: var(--teal); font-size: 1.2rem; }
.hp-city-dropdown-btn span { font-weight: 400; font-size: 0.9rem; color: var(--muted); }
.hp-city-dropdown-btn:hover { border-color: var(--teal); background: var(--teal-light); }
.hp-city-dropdown[open] .hp-city-dropdown-btn { border-color: var(--teal); background: var(--teal-light); border-radius: 12px 12px 0 0; }
.hp-city-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px; padding: 16px; background: var(--bg);
  border: 2px solid var(--teal); border-top: none;
  border-radius: 0 0 12px 12px;
}
.hp-city-link {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  transition: all 0.2s; text-decoration: none;
  background: white; border: 1px solid var(--border);
}
.hp-city-link:hover {
  background: var(--teal-light); border-color: var(--teal);
  color: var(--teal-dark); text-decoration: none;
}
@media (max-width: 768px) {
  .hp-city-dropdown-btn { flex-direction: column; gap: 4px; padding: 14px 16px; font-size: 1rem; }
  .hp-city-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 12px; }
  .hp-city-link { padding: 8px 12px; font-size: 0.8rem; }
}

/* ═══ FOOTER ═══ */
.hp-footer {
  background: var(--navy); padding: 64px 0 32px; color: rgba(255,255,255,0.7);
}
.hp-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.hp-footer-logo {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800;
  color: var(--white); text-decoration: none; display: block; margin-bottom: 16px;
}
.hp-footer-logo span { color: var(--teal); }
.hp-footer-col p { font-size: 0.85rem; line-height: 1.7; }
.hp-footer-col h4 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--white); margin-bottom: 16px;
}
.hp-footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; padding: 4px 0; transition: color 0.2s;
}
.hp-footer-col a:hover { color: var(--teal); text-decoration: none; }
.hp-footer-col button {
  display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; padding: 4px 0; transition: color 0.2s;
  background: none; border: none; cursor: pointer; text-align: left;
}
.hp-footer-col button:hover { color: var(--teal); }
.hp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center;
}
.hp-footer-bottom p { font-size: 0.8rem; }
.hp-footer-bottom a { color: var(--teal); }

/* ═══ ANIMATIONS ═══ */
.hp-animate {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hp-visible { opacity: 1; transform: translateY(0); }
.hp-step-card:nth-child(2).hp-animate { transition-delay: 0.1s; }
.hp-step-card:nth-child(3).hp-animate { transition-delay: 0.2s; }
.hp-review-card:nth-child(2).hp-animate { transition-delay: 0.1s; }
.hp-review-card:nth-child(3).hp-animate { transition-delay: 0.2s; }
.hp-review-card:nth-child(4).hp-animate { transition-delay: 0.3s; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hp-hero-visual { display: flex; justify-content: center; }
  .hp-price-card { max-width: 440px; width: 100%; }
  .hp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fn-cross-sell { grid-template-columns: 1fr; }
}

/* ─── TABLET (768px) ─── */
@media (max-width: 768px) {
  /* Nav */
  .hp-nav-links { display: none; }
  .hp-hamburger { display: block; width: 32px; height: 24px; }
  .hp-mobile-menu { padding: 72px 24px 32px; }

  /* Hero */
  .hp-hero { padding: 100px 20px 52px; }
  .hp-hero-inner { grid-template-columns: 1fr; } /* forceer 1 kolom ook op 768px */
  .hp-hero-visual { display: none; }             /* verberg decoratieve kaart */
  .hp-hero h1 { font-size: 2.1rem; letter-spacing: -0.5px; }
  .hp-hero-sub { font-size: 1rem; max-width: 100%; }
  .hp-hero-badge { font-size: 0.82rem; padding: 7px 14px; }

  /* Hero form — stapelen */
  .hp-hero-form {
    flex-direction: column;
    border-radius: 14px;
    max-width: 100%;         /* KRITIEK: was 560px, bleef buiten beeld */
    overflow: hidden;
  }
  .hp-hero-input-wrap {
    padding: 14px 16px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .hp-hero-input-wrap input { padding: 0; font-size: 1rem; }
  .hp-hero-form-btn {
    border-radius: 0 0 12px 12px;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
  }

  /* Hero trust — rij met wrap */
  .hp-hero-trust { flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }
  .hp-trust-item { font-size: 0.85rem; }

  /* Hero minimap */
  .hero-minimap-wrap { max-width: 100%; }

  /* Steps */
  .hp-steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .hp-step-card { padding: 36px 28px; }

  /* Reviews */
  .hp-reviews-grid { grid-template-columns: 1fr; }

  /* Sections */
  .hp-section { padding: 52px 0; }
  .hp-section-header { margin-bottom: 36px; }
  .hp-section-header h2 { font-size: 1.55rem; }
  .hp-section-header p { font-size: 0.95rem; }

  /* SEO content */
  .hp-seo-content h2 { font-size: 1.4rem; }
  .hp-seo-content h3 { font-size: 1.1rem; }
  .hp-seo-content p, .hp-seo-content li { font-size: 0.93rem; }

  /* Prijstabel */
  .hp-price-table th:nth-child(3),
  .hp-price-table td:nth-child(3) { display: none; } /* verberg prijs/m² */
  .hp-price-table th, .hp-price-table td { padding: 12px 14px; }

  /* CTA banner */
  .hp-cta-banner { padding: 60px 0; }
  .hp-cta-inner h2 { font-size: 1.6rem; }
  .hp-cta-inner p { font-size: 1rem; }

  /* Kaart */
  .hp-map-wrap { height: 300px !important; }

  /* Footer */
  .hp-footer { padding: 52px 0 28px; }
  .hp-footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Funnel — fullscreen app-mode op mobile */
  .fn-overlay {
    align-items: stretch;
  }
  .fn-container {
    padding: 24px 20px 120px;
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
    max-width: 100%;
    width: 100%;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .fn-close {
    position: fixed; top: 12px; right: 16px; z-index: 3100;
    width: 44px; height: 44px; display: flex; align-items: center;
    justify-content: center; font-size: 2rem;
  }

  /* Grotere progress dots */
  .fn-dot span { width: 36px; height: 36px; font-size: 0.85rem; }
  .fn-dot small { font-size: 0.72rem; }

  /* Grotere titels */
  .fn-step h2 { font-size: 1.4rem; }
  .fn-subtitle { font-size: 0.95rem; margin-bottom: 20px; }

  /* Invoervelden — gangbaar mobile formaat */
  .fn-input {
    padding: 12px 14px;
    font-size: 0.95rem;
    min-height: 44px;
    border-radius: 8px;
  }
  .fn-field label { font-size: 0.85rem; margin-bottom: 6px; }
  .fn-field { margin-bottom: 16px; }

  /* Type knoppen */
  .fn-type-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .fn-type-btn { padding: 10px 6px; gap: 4px; }
  .fn-type-btn i { font-size: 1.1rem; }
  .fn-type-btn span { font-size: 0.72rem; }

  /* Toggle knoppen */
  .fn-toggle-btn { padding: 10px 12px; font-size: 0.85rem; min-height: 40px; }
  .fn-epc-btn { width: 40px; height: 36px; font-size: 0.8rem; }

  /* Rijen stacked */
  .fn-row { grid-template-columns: 1fr; gap: 0; }

  /* Alle actieknoppen — fixed bottom bar */
  .fn-btn-row,
  #fn-next-1,
  #fn-submit-btn,
  #fn-download-pdf {
    position: fixed !important;
    bottom: 0; left: 0; right: 0;
    z-index: 3050;
    background: var(--white);
    box-shadow: 0 -4px 16px rgba(15,43,70,0.08);
    border-radius: 0 !important;
    margin: 0 !important;
    min-height: 56px;
    font-size: 1rem;
    padding: 16px 20px;
    width: 100%;
  }
  .fn-btn-row {
    flex-direction: column-reverse; gap: 10px;
  }

  /* Lead form velden */
  #fn-lead-form .fn-input { min-height: 44px; font-size: 0.95rem; padding: 12px 14px; }
}

/* ─── TELEFOON (480px) ─── */
@media (max-width: 480px) {
  /* Nav */
  .hp-mobile-menu { padding: 64px 20px 28px; gap: 20px; }
  .hp-mobile-menu a { font-size: 1.1rem; }
  .hp-container { padding: 0 16px; }

  /* Hero */
  .hp-hero { padding: 88px 16px 44px; }
  .hp-hero h1 { font-size: 1.85rem; letter-spacing: -0.5px; }
  .hp-hero-sub { font-size: 0.93rem; margin-bottom: 24px; }
  .hp-hero-badge { display: none; }
  .hp-hero-form { border-radius: 12px; }
  .hp-hero-input-wrap { padding: 12px 14px; }
  .hp-hero-form-btn { padding: 15px 16px; font-size: 0.95rem; }
  .hp-hero-trust { gap: 8px 14px; }
  .hp-trust-item { font-size: 0.82rem; }

  /* Steps */
  .hp-step-card { padding: 32px 20px; }

  /* Prijstabel */
  .hp-price-table th:nth-child(4),
  .hp-price-table td:nth-child(4) { display: none; } /* verberg Evolutie kolom ook */
  .hp-price-table th, .hp-price-table td { padding: 11px 12px; font-size: 0.85rem; }

  /* Sections */
  .hp-section { padding: 44px 0; }
  .hp-section-header { margin-bottom: 28px; }
  .hp-section-header h2 { font-size: 1.35rem; }
  .hp-section-header p { font-size: 0.9rem; }

  /* Seo content */
  .hp-seo-content h2 { font-size: 1.25rem; }
  .hp-seo-content h3 { font-size: 1rem; }

  /* CTA banner */
  .hp-cta-banner { padding: 48px 0; }
  .hp-cta-inner h2 { font-size: 1.4rem; }
  .hp-cta-inner p { font-size: 0.93rem; margin-bottom: 24px; }
  .hp-btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  /* Kaart */
  .hp-map-wrap { height: 240px !important; }

  /* Footer */
  .hp-footer { padding: 44px 0 24px; }
  .hp-footer-grid { gap: 24px; }

  /* Funnel — kleine telefoon */
  .fn-container { padding: 20px 16px 100px; }
  .fn-type-grid { grid-template-columns: repeat(2, 1fr); }
  .fn-step h2 { font-size: 1.15rem; }
  .fn-toggle-btn { padding: 9px 10px; font-size: 0.82rem; min-height: 36px; }
  .fn-epc-btn { width: 38px; height: 34px; font-size: 0.78rem; }
  .fn-loading h2 { font-size: 1.15rem; }
  .fn-btn-row { padding: 14px 16px; }
  #fn-step-1 #fn-next-1,
  #fn-step-3 .fn-btn-full,
  #fn-step-success .fn-btn-full { padding: 16px 16px; }
}

/* ===== BUTTON OUTLINE ===== */
.hp-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #0ea5a0;
  border: 2px solid #0ea5a0;
  padding: 12px 32px;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hp-btn-outline:hover {
  background: #0ea5a0;
  color: white;
  transform: translateY(-2px);
}

/* ===== BLOG SECTION ===== */
.hp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-blog-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(15, 43, 70, 0.06);
  border: 1px solid #e2eaf2;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.hp-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(14, 165, 160, 0.12);
  border-color: #0ea5a0;
}
.hp-blog-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-blog-thumb i {
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.85);
}
.hp-blog-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hp-blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #5a7a9a;
}
.hp-blog-tag {
  background: rgba(14, 165, 160, 0.1);
  color: #0ea5a0;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hp-blog-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f2b46;
  line-height: 1.4;
  margin-bottom: 8px;
}
.hp-blog-body p {
  font-size: 0.88rem;
  color: #5a7a9a;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .hp-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hp-blog-grid { grid-template-columns: 1fr; gap: 10px; }
  .hp-blog-card { flex-direction: row; align-items: stretch; }
  .hp-blog-thumb { width: 88px; min-width: 88px; height: auto; border-radius: 0; }
  .hp-blog-thumb i { font-size: 1.6rem; }
  .hp-blog-body { padding: 12px 14px; justify-content: center; }
  .hp-blog-meta { margin-bottom: 5px; flex-wrap: wrap; gap: 6px; }
  .hp-blog-body h3 { font-size: 0.88rem; line-height: 1.35; margin-bottom: 0; }
  .hp-blog-body p { display: none; }
}
