/* ============================================================
   PIFORGE — Custom Raspberry Pi Builds
   Design: dark tech with raspberry red + circuit green accents
   ============================================================ */

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

:root {
  --bg:         #0A0E1A;
  --bg-2:       #0F1525;
  --bg-3:       #151C30;
  --red:        #C8173A;
  --red-glow:   rgba(200, 23, 58, 0.25);
  --green:      #00FF88;
  --green-dim:  rgba(0, 255, 136, 0.12);
  --blue:       #1E6FFF;
  --text:       #F0F4FF;
  --text-dim:   #8899AA;
  --border:     rgba(255,255,255,0.07);
  --border-lit: rgba(0, 255, 136, 0.3);
  --font-display: 'Orbitron', monospace;
  --font-body:    'Inter', sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── CIRCUIT CANVAS ─────────────────────────────────── */
#circuit-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }

/* ── LAYOUT UTILITY ─────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header.light h2,
.section-header.light p { color: var(--text); }
.section-header p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 24px var(--red-glow);
}
.btn-primary:hover {
  background: #e01a40;
  box-shadow: 0 0 40px rgba(200,23,58,0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: auto;
}
.logo-icon { color: var(--red); font-size: 1.5rem; }
.logo-accent { color: var(--red); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.btn-nav {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--green);
  color: var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: rgba(10,14,26,0.98);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1.5rem 2rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu ul a { color: var(--text); text-decoration: none; font-size: 1.1rem; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content { flex: 1; }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-accent { color: var(--red); }

.hero-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.25rem; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* PI BOARD VISUAL */
.hero-visual {
  flex: 0 0 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 360px;
}

.pi-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ring-pulse 3s ease-in-out infinite;
}
.pi-ring-1 {
  width: 220px; height: 220px;
  border-color: rgba(200,23,58,0.5);
  animation-delay: 0s;
}
.pi-ring-2 {
  width: 300px; height: 300px;
  border-color: rgba(200,23,58,0.25);
  animation-delay: 0.5s;
}
.pi-ring-3 {
  width: 360px; height: 360px;
  border-color: rgba(200,23,58,0.1);
  animation-delay: 1s;
}

@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.6; }
}

.pi-board {
  width: 160px;
  height: 110px;
  background: linear-gradient(135deg, #1a2a1a 0%, #0f1f0f 100%);
  border: 2px solid #2a4a2a;
  border-radius: 8px;
  position: relative;
  box-shadow:
    0 0 40px rgba(0,255,136,0.15),
    0 0 80px rgba(0,255,136,0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.pi-chip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #1a1a2a, #0a0a1a);
  border: 1px solid #3a3a5a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pi-chip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.42rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.pi-pins {
  position: absolute;
}
.pi-pins.top, .pi-pins.bottom {
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 3px;
}
.pi-pins.top { top: -8px; }
.pi-pins.bottom { bottom: -8px; }
.pi-pins.left, .pi-pins.right {
  top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 3px;
}
.pi-pins.left { left: -8px; }
.pi-pins.right { right: -8px; }

.pi-pins::before, .pi-pins::after {
  content: '';
  width: 5px; height: 5px;
  background: #4a6a4a;
  border-radius: 1px;
  display: block;
}
.pi-pins.left::before, .pi-pins.right::before,
.pi-pins.left::after, .pi-pins.right::after {
  width: 5px; height: 5px;
}

.pi-ports {
  position: absolute;
  bottom: 6px; left: 8px;
  display: flex; gap: 4px;
}
.pi-port {
  font-size: 0.38rem;
  font-family: var(--font-display);
  color: #5a7a5a;
  background: #0a1a0a;
  border: 1px solid #2a4a2a;
  padding: 2px 4px;
  border-radius: 2px;
}

.pi-led {
  position: absolute;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.led-green {
  right: 20px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: led-blink 2s ease-in-out infinite;
}
.led-red {
  right: 10px;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

@keyframes led-blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── BUILDS SECTION ──────────────────────────────────── */
.builds { background: var(--bg); }

.builds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.build-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
  cursor: default;
}
.build-card:hover {
  border-color: var(--border-lit);
  box-shadow: 0 0 30px rgba(0,255,136,0.08), 0 8px 40px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}
.build-card.featured {
  border-color: rgba(200,23,58,0.4);
  background: linear-gradient(135deg, var(--bg-2) 0%, #1a0f14 100%);
}
.build-card.featured:hover {
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow), 0 8px 40px rgba(0,0,0,0.4);
}

.build-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  background: var(--red);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.build-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.build-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.build-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.build-card p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1.25rem; }

.build-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.build-features li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.build-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.build-link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}
.build-link:hover { color: #fff; }

/* ── CONFIGURATOR ────────────────────────────────────── */
.configurator { background: var(--bg-3); }

.config-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.config-steps {
  background: var(--bg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
}

.config-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  cursor: default;
  transition: background 0.2s;
  opacity: 0.45;
}
.config-step.active { background: var(--green-dim); opacity: 1; }
.config-step.done { opacity: 0.8; }

.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-lit);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--green);
  flex-shrink: 0;
}
.config-step.active .step-num {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
}
.config-step.done .step-num {
  background: rgba(0,255,136,0.2);
  border-color: var(--green);
}

.config-step strong { display: block; font-size: 0.85rem; }
.config-step span { font-size: 0.75rem; color: var(--text-dim); }

.config-form { padding: 2.5rem; }

.form-step { display: none; }
.form-step.active { display: block; }

.form-step h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.form-step h4 { font-size: 0.9rem; color: var(--text-dim); }

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.option-grid.cols-3 { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

.option-card { cursor: pointer; }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  height: 100%;
}
.option-inner .option-icon { font-size: 1.4rem; margin-bottom: 0.3rem; }
.option-inner strong { font-size: 0.85rem; font-family: var(--font-display); }
.option-inner span { font-size: 0.75rem; color: var(--text-dim); }

.option-card:hover .option-inner { border-color: var(--border-lit); }
.option-card input:checked + .option-inner {
  border-color: var(--green);
  background: var(--green-dim);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-fields { display: flex; flex-direction: column; gap: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.82rem; color: var(--text-dim); font-family: var(--font-display); letter-spacing: 0.05em; }
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select {
  outline: none;
  border-color: var(--green);
}
.field select { cursor: pointer; }

.summary-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border-lit);
  border-radius: var(--radius);
}
.summary-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
#summary-content { font-size: 0.85rem; color: var(--text-dim); }

.success-state {
  text-align: center;
  padding: 3rem 1rem;
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--green);
  color: var(--bg);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 900;
}

/* ── SPECS ───────────────────────────────────────────── */
.specs { background: var(--bg); }

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.spec-category h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.spec-tags span {
  font-size: 0.78rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  color: var(--text-dim);
  transition: all 0.2s;
}
.spec-tags span:hover {
  border-color: var(--border-lit);
  color: var(--green);
}

/* ── WHY US ──────────────────────────────────────────── */
.why { background: var(--bg-3); }
.why .section-inner { padding-top: 5rem; padding-bottom: 5rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--border-lit);
  transform: translateY(-2px);
}
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { margin-bottom: 0.75rem; font-size: 1rem; }
.why-card p { color: var(--text-dim); font-size: 0.88rem; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact { background: var(--bg); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin: 0.5rem 0 1rem; }
.contact-info p { color: var(--text-dim); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.contact-icon { font-size: 1.1rem; }
.contact-item a { color: var(--green); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.footer-tagline { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 1.5rem; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { color: #4a5a6a; font-size: 0.78rem; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: 7rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; height: 280px; flex: none; }

  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .config-wrapper { grid-template-columns: 1fr; }
  .config-steps { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); padding: 1rem; }
  .config-step span { display: none; }

  .contact-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .builds-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .pi-ring-3 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── VERHAAL SECTIE ──────────────────────────────────── */
.verhaal { background: var(--bg-3); }

.verhaal-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

.verhaal-label {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.verhaal-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--red), #8a0f28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin: 1rem 0 0.5rem;
  box-shadow: 0 0 30px var(--red-glow);
}

.verhaal-naam {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.verhaal-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.verhaal-tekst h2 {
  margin-bottom: 1.5rem;
}

.verhaal-intro {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.verhaal-tekst p {
  color: var(--text-dim);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.verhaal-tekst strong { color: var(--text); }

.verhaal-blok {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--red);
  background: rgba(200,23,58,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.verhaal-quote {
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.verhaal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.verhaal-badges span {
  font-size: 0.8rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  color: var(--text-dim);
}

/* ── BUILD PRICE ─────────────────────────────────────── */
.build-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.build-badge.new-badge {
  background: var(--green);
  color: var(--bg);
}

/* ── BUDGET BANNER ───────────────────────────────────── */
.budget-banner {
  background: linear-gradient(135deg, #0f1a2a 0%, #1a0f14 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.budget-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.budget-tekst h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.budget-tekst p { color: var(--text-dim); max-width: 560px; }
.budget-tekst strong { color: var(--green); }
.budget-cta { flex-shrink: 0; }

/* ── RESPONSIVE EXTRA ────────────────────────────────── */
@media (max-width: 900px) {
  .verhaal-wrapper { grid-template-columns: 1fr; }
  .verhaal-label { position: static; flex-direction: row; text-align: left; gap: 1rem; flex-wrap: wrap; }
  .verhaal-label .btn-primary { display: none !important; }
  .budget-inner { flex-direction: column; text-align: center; }
  .budget-cta { width: 100%; text-align: center; }
}

/* ── BETALING SECTIE ─────────────────────────────────── */
.betaling { background: var(--bg); }

.betaling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.betaal-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.25s;
}
.betaal-card:hover {
  border-color: var(--border-lit);
  transform: translateY(-2px);
}
.betaal-card .betaal-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.betaal-card strong { display: block; font-family: var(--font-display); font-size: 0.82rem; margin-bottom: 0.25rem; }
.betaal-card span { font-size: 0.78rem; color: var(--text-dim); }
.betaal-card.xmr { border-color: rgba(0,255,136,0.25); }
.betaal-card.xmr strong { color: var(--green); }

.mollie-btn {
  display: inline-block;
  background: #0070f3;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  margin-top: 0.75rem;
  transition: all 0.2s;
}
.mollie-btn:hover { background: #005bb5; transform: translateY(-1px); }

.xmr-adres {
  background: var(--bg-2);
  border: 1px solid var(--border-lit);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  color: var(--green);
  word-break: break-all;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.xmr-adres:hover { background: var(--green-dim); }
.xmr-label { font-size: 0.7rem; color: var(--text-dim); font-family: var(--font-display); letter-spacing: 0.1em; margin-bottom: 0.4rem; }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover {
  border-color: var(--border-lit);
  transform: translateY(-2px);
}
.review-stars {
  color: var(--green);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.review-build {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
}
.review-quote {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.review-author {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}
