/* ============================================================
   Hulp Met PC — v4 Stylesheet
   Font: Plus Jakarta Sans
   Theme: Deep navy-dark, cyan + violet + amber
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg:        #07080f;
  --s1:        #0c0e1b;
  --s2:        #111428;
  --glass:     rgba(255,255,255,0.03);
  --glass-h:   rgba(255,255,255,0.055);

  --border:    rgba(255,255,255,0.07);
  --border-md: rgba(255,255,255,0.12);
  --border-hi: rgba(255,255,255,0.2);

  --cyan:      #00dcf0;
  --cyan-dim:  rgba(0,220,240,0.15);
  --cyan-glow: rgba(0,220,240,0.25);
  --violet:    #7c5cfa;
  --violet-dim:rgba(124,92,250,0.15);
  --amber:     #f59e0b;
  --green:     #22d67c;

  --text:   #edf0fa;
  --muted:  #7a8ca6;
  --dim:    #414e66;

  --r:    18px;
  --r-lg: 28px;
  --r-sm: 12px;
  --pill: 999px;

  --shadow:      0 8px 32px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-float:0 24px 80px rgba(0,0,0,0.55);
  --glow-c:      0 0 40px rgba(0,220,240,0.18);
  --glow-v:      0 0 40px rgba(124,92,250,0.18);

  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(1400px 800px at 80% -5%,  rgba(124,92,250,0.14), transparent 60%),
    radial-gradient(1000px 600px at -5% 15%,  rgba(0,220,240,0.10), transparent 55%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* Cursor glow */
.cursor-glow {
  pointer-events: none;
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,220,240,0.055) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: left 0.1s, top 0.1s;
}

/* ── Layout ── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 860px;  margin: 0 auto; padding: 0 28px; }

/* ── Typography ── */
h1, h2, h3, h4 { letter-spacing: -0.025em; line-height: 1.12; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 22px; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 700; }
h4 { font-size: 1.05rem; margin-bottom: 8px; font-weight: 700; }

.gradient-text {
  background: linear-gradient(130deg, var(--cyan) 0%, var(--violet) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 32px; max-width: 580px; line-height: 1.7; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7,8,15,0.75);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: 1300px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: grid; place-items: center;
  font-weight: 800; color: #07080f; font-size: 1rem;
  box-shadow: 0 0 20px rgba(0,220,240,0.3);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px; border-radius: 10px;
  color: var(--muted); font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--glass-h); }
.nav-links a.active { color: var(--cyan); background: var(--cyan-dim); }
.nav-cta {
  padding: 10px 20px !important;
  background: linear-gradient(135deg, var(--cyan), var(--violet)) !important;
  color: #07080f !important; font-weight: 700 !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(0,220,240,0.22);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 8px 28px rgba(0,220,240,0.32) !important; }
.nav-toggle { display: none; padding: 8px; border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: all 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s var(--ease); cursor: pointer;
  border: 1px solid transparent; position: relative; overflow: hidden;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #07080f;
  box-shadow: 0 6px 28px rgba(0,220,240,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,220,240,0.4); }
.btn-ghost {
  background: var(--glass); color: var(--text);
  border: 1px solid var(--border-md);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--glass-h); border-color: var(--cyan); }
.btn-whatsapp { background: #25D366; color: #07080f; font-weight: 700; }
.btn-whatsapp:hover { background: #1fbf5c; transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--pill);
  background: var(--cyan-dim); border: 1px solid rgba(0,220,240,0.22);
  color: var(--cyan); font-size: 0.8rem; font-weight: 700;
  margin-bottom: 24px; letter-spacing: 0.02em; text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
}

/* ── Section ── */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head .lead { margin: 0 auto; }

/* ── Hero ── */
.hero { padding: 100px 0 90px; position: relative; overflow: hidden; }

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 70px; align-items: center;
}

.hero-stats {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-num {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(130deg, var(--cyan), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 0.82rem; color: var(--muted); margin-top: 2px; font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

/* ── Dashboard Card (hero visual) ── */
.hero-visual { position: relative; }

.dash-card {
  position: relative; z-index: 2;
  background: linear-gradient(160deg, #0e1120 0%, #0a0c18 100%);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float), var(--glow-c);
}
.dash-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,220,240,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,220,240,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 40% 30%, black 20%, transparent 70%);
  pointer-events: none;
}

.dash-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red    { background: #ff5f57; }
.dash-dot.yellow { background: #ffbd2e; }
.dash-dot.green  { background: #28c840; }
.dash-titlebar-label {
  margin-left: 8px; font-size: 0.8rem; font-weight: 600; color: var(--muted);
  letter-spacing: 0.01em; flex: 1;
}
.dash-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.dash-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(34,214,124,0.5); }
  50%      { opacity:0.6; box-shadow: 0 0 0 6px rgba(34,214,124,0); }
}

.dash-body { padding: 22px 22px 16px; }

.dash-device-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: var(--r-sm);
  background: rgba(0,220,240,0.05);
  border: 1px solid rgba(0,220,240,0.12);
  margin-bottom: 20px;
}
.dash-phone-icon {
  width: 36px; height: 60px; border-radius: 8px;
  border: 1.5px solid var(--cyan);
  background: rgba(0,220,240,0.08);
  flex-shrink: 0; position: relative; overflow: hidden;
}
.dash-phone-icon::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scanLine 1.8s ease-in-out infinite;
}
@keyframes scanLine { 0% { top: 0; } 100% { top: 100%; } }

.dash-device-info { flex: 1; }
.dash-device-name { font-weight: 700; font-size: 0.95rem; }
.dash-device-issue { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.dash-status-chip {
  padding: 4px 10px; border-radius: var(--pill);
  background: rgba(124,92,250,0.15);
  border: 1px solid rgba(124,92,250,0.3);
  color: #b09aff; font-size: 0.72rem; font-weight: 700;
  white-space: nowrap;
}

.dash-progress-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px; font-size: 0.82rem; color: var(--muted); font-weight: 600;
}
.dash-progress-pct { color: var(--cyan); font-weight: 700; }
.dash-progress-bar {
  height: 6px; border-radius: var(--pill);
  background: rgba(255,255,255,0.07); margin-bottom: 20px; overflow: hidden;
}
.dash-progress-fill {
  height: 100%; border-radius: var(--pill);
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  width: 0;
  transition: width 1.4s var(--ease);
  box-shadow: 0 0 12px rgba(0,220,240,0.5);
}

.dash-steps {
  display: flex; gap: 0; margin-bottom: 20px;
}
.dash-step-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 6px; position: relative;
}
.dash-step-item:not(:last-child)::after {
  content: '';
  position: absolute; top: 10px; left: 50%; width: 100%;
  height: 1px; background: var(--border-md); z-index: 0;
}
.dash-step-item.done:not(:last-child)::after { background: var(--cyan-dim); }
.dash-step-dot {
  width: 20px; height: 20px; border-radius: 50%; z-index: 1; position: relative;
  background: var(--s2); border: 2px solid var(--border-md);
  display: grid; place-items: center;
  transition: all 0.3s;
}
.dash-step-item.done  .dash-step-dot { background: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 10px rgba(0,220,240,0.4); }
.dash-step-item.active .dash-step-dot { background: var(--violet); border-color: var(--violet); box-shadow: 0 0 10px rgba(124,92,250,0.5); }
.dash-step-item.done .dash-step-dot::after {
  content: ''; width: 8px; height: 5px;
  border-left: 2px solid #07080f; border-bottom: 2px solid #07080f;
  transform: rotate(-45deg) translateY(-1px);
}
.dash-step-item.active .dash-step-dot::after {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: white;
}
.dash-step-lbl { font-size: 0.68rem; font-weight: 600; color: var(--dim); text-align: center; }
.dash-step-item.done  .dash-step-lbl { color: var(--cyan); }
.dash-step-item.active .dash-step-lbl { color: #b09aff; }

.dash-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--r-sm); overflow: hidden;
}
.dash-meta-item {
  background: var(--s1); padding: 12px 14px; text-align: center;
}
.dash-meta-val { font-size: 1rem; font-weight: 800; color: var(--text); }
.dash-meta-val.amber { color: var(--amber); }
.dash-meta-key { font-size: 0.68rem; color: var(--dim); font-weight: 600; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }

/* Floating chips */
.dash-chip {
  position: absolute; z-index: 3;
  background: rgba(12,14,27,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-md);
  border-radius: var(--pill);
  padding: 8px 14px;
  font-size: 0.78rem; font-weight: 700;
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: floatChip 5s ease-in-out infinite;
}
.chip-a { top: -16px; left: -16px; color: var(--green); animation-delay: 0s; }
.chip-b { top: -16px; right: -16px; color: #c4b5fd; animation-delay: 1.8s; }
.chip-c { bottom: -16px; left: 50%; transform: translateX(-50%); color: var(--cyan); animation-delay: 3.5s; }
.chip-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; }
.chip-dot.g { background: var(--green); box-shadow: 0 0 8px var(--green); }
.chip-dot.v { background: #a78bfa; box-shadow: 0 0 8px #a78bfa; }
.chip-dot.c { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
@keyframes floatChip {
  0%,100% { transform: translateY(0) translateX(var(--tx,0)); }
  50%      { transform: translateY(-8px) translateX(var(--tx,0)); }
}
.chip-c { --tx: -50%; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature-cell {
  background: var(--s1);
  padding: 32px 28px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-cell::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-cell:hover { background: var(--s2); }
.feature-cell:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px;
  background: var(--glass-h); border: 1px solid var(--border-md);
  display: grid; place-items: center;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-cell h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-cell p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; position: relative;
  overflow: hidden; transition: all 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); border-color: var(--border-md); box-shadow: var(--shadow-float); }
.svc-num {
  position: absolute; top: 20px; right: 22px;
  font-size: 3rem; font-weight: 800; letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04); line-height: 1;
}
.svc-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 18px;
  background: var(--glass-h); border: 1px solid var(--border-md);
  display: grid; place-items: center;
}
.svc-icon-wrap svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svc-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.88rem; flex: 1; margin-bottom: 20px; line-height: 1.6; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cyan); font-weight: 700; font-size: 0.88rem;
  transition: gap 0.2s;
}
.svc-link:hover { gap: 10px; }
.svc-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* ── Process ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: 12%; right: 12%;
  height: 1px; background: linear-gradient(90deg, var(--cyan-dim), var(--violet-dim));
  z-index: 0;
}
.process-step {
  padding: 0 20px; position: relative; z-index: 1;
}
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--s2); border: 1px solid var(--border-md);
  display: grid; place-items: center; margin: 0 auto 20px;
  font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #07080f;
  box-shadow: 0 0 20px rgba(0,220,240,0.2);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.process-step:hover .process-num { transform: scale(1.1); box-shadow: 0 0 32px rgba(0,220,240,0.35); }
.process-step h4 { text-align: center; font-size: 1rem; margin-bottom: 8px; }
.process-step p { text-align: center; color: var(--muted); font-size: 0.87rem; line-height: 1.6; }

/* ── Testimonials ── */
.testimonials-track {
  display: flex; gap: 20px;
  overflow: hidden;
}
.testimonials-carousel { overflow: hidden; position: relative; }
.testimonials-carousel::before,
.testimonials-carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.testimonials-carousel::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.testimonials-carousel::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.testimonial-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  flex: 0 0 340px; transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--border-md); }
.t-stars { color: var(--amber); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 14px; }
.t-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  display: grid; place-items: center;
  font-weight: 800; font-size: 0.8rem; color: #07080f;
}
.t-name { font-weight: 700; font-size: 0.9rem; }
.t-role { font-size: 0.78rem; color: var(--dim); }

/* Carousel controls */
.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px;
}
.carousel-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--s1); border: 1px solid var(--border-md);
  display: grid; place-items: center; cursor: pointer;
  transition: all 0.2s; color: var(--muted);
}
.carousel-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.carousel-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.carousel-dots { display: flex; gap: 6px; }
.c-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-hi); cursor: pointer; transition: all 0.2s;
}
.c-dot.active { width: 20px; border-radius: var(--pill); background: var(--cyan); }

/* ── CTA ── */
.cta-band {
  text-align: center; padding: 100px 28px;
  background:
    radial-gradient(ellipse at center, rgba(0,220,240,0.1), transparent 70%),
    linear-gradient(135deg, rgba(0,220,240,0.06), rgba(124,92,250,0.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,220,240,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,220,240,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 65%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lead { margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-about p { color: var(--muted); font-size: 0.9rem; max-width: 300px; margin-top: 12px; line-height: 1.7; }
.footer h5 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 18px; font-weight: 700;
}
.footer li { margin-bottom: 10px; }
.footer a { color: var(--dim); font-size: 0.9rem; transition: color 0.2s; }
.footer a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--border);
  color: var(--dim); font-size: 0.82rem;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: all 0.25s var(--ease);
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  60%      { box-shadow: 0 8px 28px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 80px 0 60px; text-align: center; position: relative;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }

/* ── Pricing ── */
.price-section { padding: 70px 0; border-top: 1px solid var(--border); }
.price-section:first-of-type { border-top: none; }
.price-category { margin-bottom: 48px; }
.price-cat-header {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.price-cat-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--cyan-dim); border: 1px solid rgba(0,220,240,0.2);
  display: grid; place-items: center;
}
.price-cat-icon svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.price-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}
.price-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; gap: 12px;
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r-sm); transition: all 0.2s;
}
.price-item:hover { border-color: var(--border-md); background: var(--s2); }
.price-name { font-weight: 600; font-size: 0.92rem; }
.price-sub { font-size: 0.75rem; color: var(--dim); margin-top: 2px; }
.price-value { font-weight: 800; color: var(--amber); font-size: 1rem; white-space: nowrap; text-align: right; }
.price-from { font-size: 0.68rem; color: var(--dim); font-weight: 500; }

/* Device tabs */
.device-tabs {
  display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
  padding: 6px; border-radius: var(--r-sm);
  background: var(--s1); border: 1px solid var(--border);
  max-width: 500px; margin: 0 auto 36px;
}
.device-tab {
  padding: 9px 18px; border-radius: 8px;
  font-weight: 600; color: var(--muted); font-size: 0.9rem;
  transition: all 0.2s; cursor: pointer; border: none; background: transparent;
}
.device-tab:hover { color: var(--text); }
.device-tab.active {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #07080f;
  box-shadow: 0 3px 12px rgba(0,220,240,0.25);
}
.price-panel { display: none; }
.price-panel.active { display: block; animation: fadeUp 0.35s var(--ease); }

/* ── FAQ ── */
.faq { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; color: var(--text);
}
.faq-q::after {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--glass-h); border: 1px solid var(--border-md);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8ca6' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
  flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding-bottom: 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ── Forms ── */
.form-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-field label { font-size: 0.82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.form-field input, .form-field textarea, .form-field select {
  padding: 13px 16px;
  background: rgba(7,8,15,0.7); border: 1px solid var(--border-md);
  border-radius: var(--r-sm); color: var(--text); font-size: 0.95rem;
  transition: all 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,220,240,0.1);
  background: rgba(7,8,15,0.95);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { cursor: pointer; }
.form-success { display:none; padding:14px 18px; border-radius:10px; margin-bottom:18px;
  background: rgba(34,214,124,0.1); border:1px solid rgba(34,214,124,0.3); color:var(--green); }
.form-note { font-size: 0.8rem; color: var(--dim); text-align: center; margin-top: 12px; }

/* ── Afspraak Wizard ── */
.wizard-progress {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-bottom: 48px;
}
.wp-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative;
}
.wp-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 19px; left: 50%; width: 120px;
  height: 1px; background: var(--border-md); z-index: 0;
}
.wp-step.completed:not(:last-child)::after { background: var(--cyan-dim); }
.wp-dot {
  width: 38px; height: 38px; border-radius: 50%; z-index: 1;
  background: var(--s2); border: 2px solid var(--border-md);
  display: grid; place-items: center; font-weight: 800; font-size: 0.85rem;
  color: var(--dim); transition: all 0.3s; position: relative;
}
.wp-step.active   .wp-dot { background: linear-gradient(135deg, var(--cyan), var(--violet)); color: #07080f; border-color: transparent; box-shadow: 0 0 18px rgba(0,220,240,0.35); }
.wp-step.completed .wp-dot { background: var(--cyan); color: #07080f; border-color: transparent; }
.wp-label { font-size: 0.75rem; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.wp-step.active    .wp-label { color: var(--cyan); }
.wp-step.completed .wp-label { color: var(--muted); }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeUp 0.4s var(--ease); }

/* Device/Service selection cards */
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice-card {
  padding: 22px 18px; border-radius: var(--r-sm);
  background: var(--s1); border: 2px solid var(--border);
  cursor: pointer; transition: all 0.2s var(--ease); text-align: center;
}
.choice-card:hover { border-color: var(--border-md); transform: translateY(-3px); }
.choice-card.selected { border-color: var(--cyan); background: var(--cyan-dim); box-shadow: 0 0 20px rgba(0,220,240,0.1); }
.choice-card svg { width: 32px; height: 32px; stroke: var(--muted); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 10px; display: block; transition: stroke 0.2s; }
.choice-card:hover svg, .choice-card.selected svg { stroke: var(--cyan); }
.choice-card-label { font-weight: 700; font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
.choice-card.selected .choice-card-label { color: var(--cyan); }

.service-choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.svc-choice {
  padding: 14px 16px; border-radius: var(--r-sm);
  background: var(--s1); border: 2px solid var(--border);
  cursor: pointer; transition: all 0.2s; font-weight: 600; font-size: 0.88rem;
  color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.svc-choice:hover { border-color: var(--border-md); color: var(--text); }
.svc-choice.selected { border-color: var(--cyan); background: var(--cyan-dim); color: var(--cyan); }
.svc-choice-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-hi); flex-shrink: 0; transition: background 0.2s; }
.svc-choice.selected .svc-choice-dot { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 20px;
  transition: all 0.2s;
}
.contact-card:hover { border-color: var(--border-md); transform: translateX(4px); }
.contact-card-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--cyan-dim); border: 1px solid rgba(0,220,240,0.2);
  display: grid; place-items: center;
}
.contact-card-icon svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.cc-val { color: var(--cyan); font-weight: 600; font-size: 0.9rem; }
.cc-sub { color: var(--dim); font-size: 0.8rem; margin-top: 2px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.75; }
.about-visual {
  aspect-ratio: 4/3; border-radius: var(--r-lg);
  border: 1px solid var(--border-md); overflow: hidden;
  background: radial-gradient(circle at 30% 30%, rgba(0,220,240,0.25), transparent 55%),
              radial-gradient(circle at 70% 70%, rgba(124,92,250,0.25), transparent 55%),
              linear-gradient(135deg, #0f1129, #08091a);
  display: grid; place-items: center; font-size: 5rem; position: relative;
  box-shadow: var(--shadow-float);
}
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.value-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; text-align: center;
  transition: all 0.3s var(--ease);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--border-md); }
.value-card p { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }

/* ── Utility / Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .nav-links { display: none; flex-direction: column; align-items: stretch; gap: 4px; position: absolute; top: 100%; left: 0; right: 0; background: rgba(7,8,15,0.97); backdrop-filter: blur(20px); padding: 12px 20px 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-inner { position: relative; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .wizard-progress .wp-step:not(:last-child)::after { width: 60px; }
  .form-row { grid-template-columns: 1fr; }
}
