:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #dcfce7;
  --blue: #0ea5e9;
  --blue-dark: #0369a1;
  --blue-light: #e0f2fe;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-alt: #f1f5f9;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  --max: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text .name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-text .tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: 4px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}
.brand-mark svg {
  width: 20px;
  height: 20px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--green-dark); text-decoration: none; }
.nav-links a.active { color: var(--green-dark); }

.nav-cta {
  display: inline-block;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: white;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.05s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow-sm); }
.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--ink-soft); }
.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  padding: 10px 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 72px;
  background:
    radial-gradient(1200px 400px at 90% -10%, var(--blue-light), transparent 60%),
    radial-gradient(900px 380px at -10% 10%, var(--green-light), transparent 60%),
    var(--bg);
  overflow: hidden;
}

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

.eyebrow {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats div { min-width: 110px; }
.hero-stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--ink);
}
.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.energy-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.energy-tile {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.energy-tile .icon { font-size: 1.4rem; }
.energy-tile .val {
  display: block;
  font-weight: 700;
  margin-top: 4px;
}
.energy-tile .lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.energy-bar {
  height: 10px;
  border-radius: 999px;
  background: var(--bg-alt);
  overflow: hidden;
  margin: 8px 0 6px;
}
.energy-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  width: 72%;
}
.energy-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.alt { background: var(--bg-soft); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info .icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why ul li .check svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card.green .icon-wrap { background: var(--green-light); color: var(--green-dark); }
.card.blue .icon-wrap { background: var(--blue-light); color: var(--blue-dark); }
.card.mixed .icon-wrap {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  color: var(--green-dark);
}

.card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.card p { color: var(--ink-soft); margin: 0 0 16px; }
.card ul { padding-left: 18px; margin: 0 0 18px; color: var(--ink-soft); }
.card ul li { margin-bottom: 4px; }
.card .card-link { margin-top: auto; font-weight: 600; }

/* ---------- Why us ---------- */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why ul { list-style: none; padding: 0; margin: 24px 0 0; }
.why ul li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why ul li:last-child { border-bottom: none; }
.why ul li .check {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.why-visual {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
}
.why-visual .stat {
  background: white;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.why-visual .stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--ink);
}
.why-visual .stat span { color: var(--muted); font-size: 0.9rem; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--green);
  color: white;
  width: 28px; height: 28px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.step h4 { margin: 8px 0 6px; font-size: 1rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.cta-band p {
  margin: 0 0 24px;
  opacity: 0.92;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-primary {
  background: white;
  color: var(--green-dark);
}
.cta-band .btn-primary:hover { background: var(--bg-alt); }

/* ---------- Detail page hero ---------- */
.page-hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(800px 320px at 90% -20%, var(--blue-light), transparent 60%),
    radial-gradient(700px 280px at -10% 0%, var(--green-light), transparent 60%);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 12px 0 14px;
  letter-spacing: -0.01em;
}
.page-hero p { color: var(--ink-soft); max-width: 720px; font-size: 1.05rem; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.split.reverse { grid-template-columns: 1fr 1.1fr; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-list li:last-child { border: 0; }
.feature-list .dot {
  flex: none;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--green);
  margin-top: 9px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.product h4 { margin: 0 0 6px; }
.product .spec {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 10px;
}
.product .price {
  font-weight: 700;
  color: var(--green-dark);
}

.callout {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
  color: var(--ink-soft);
}

/* ---------- Contact / forms ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.form .field { margin-bottom: 18px; }

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: white;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
}
.form textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form .check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.form .check-row input { width: auto; margin-top: 4px; }

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 500;
  margin-top: 14px;
}
.form-status.show { display: block; }

.contact-info { padding: 8px 0; }
.contact-info h3 { margin: 0 0 12px; }
.contact-info ul { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-info ul li {
  padding: 12px 0;
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.contact-info ul li:last-child { border: 0; }
.contact-info .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-dark);
  display: grid; place-items: center;
  font-size: 1rem;
}
.contact-info strong { color: var(--ink); }
.contact-info span { color: var(--muted); font-size: 0.9rem; display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.faq details[open] { border-color: var(--green); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 600;
  margin-left: 12px;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 12px 0 0; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: #cbd5e1;
  padding: 64px 0 24px;
  margin-top: 80px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
}
.site-footer h4 {
  color: white;
  margin: 0 0 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.site-footer a {
  color: #cbd5e1;
  transition: color 0.15s ease;
}
.site-footer a:hover { color: white; text-decoration: none; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 6px 0; font-size: 0.92rem; }
.site-footer .brand { color: white; }
.site-footer .brand-text .name { font-size: 1.2rem; }
.site-footer .brand-text .tag { color: #86efac; }
.site-footer .footer-brand p {
  font-size: 0.92rem;
  margin: 16px 0 20px;
  color: #94a3b8;
  max-width: 320px;
  line-height: 1.6;
}
.site-footer .footer-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
}
.site-footer .footer-tagline .pulse {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: footer-pulse 2s infinite;
}
@keyframes footer-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.footer-contact { padding-top: 4px; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.footer-contact svg {
  flex: none;
  width: 18px;
  height: 18px;
  stroke: #64748b;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.15s ease;
}
.footer-contact li:hover svg { stroke: #94a3b8; }
.footer-contact a:hover svg { stroke: white; }

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .footer-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .footer-meta a { color: #64748b; }
.footer-bottom .footer-meta a:hover { color: #cbd5e1; }

/* ---------- Tech tags / stack ---------- */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.tech-tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.tech-tag.green { background: var(--green-light); color: var(--green-dark); border-color: transparent; }
.tech-tag.blue  { background: var(--blue-light);  color: var(--blue-dark);  border-color: transparent; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.stack-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.stack-item .nm {
  font-weight: 700;
  margin-bottom: 4px;
}
.stack-item .role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Code block (mock dashboard / config) ---------- */
.code-card {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 20px 22px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.55;
  box-shadow: var(--shadow);
  overflow-x: auto;
}
.code-card .c-key   { color: #7dd3fc; }
.code-card .c-str   { color: #86efac; }
.code-card .c-num   { color: #fbbf24; }
.code-card .c-com   { color: #64748b; font-style: italic; }
.code-card .c-fn    { color: #c4b5fd; }

.code-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: #94a3b8;
  font-size: 0.8rem;
}
.code-head .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: #475569;
}
.code-head .dot.r { background: #ef4444; }
.code-head .dot.y { background: #eab308; }
.code-head .dot.g { background: #22c55e; }
.code-head .ttl { margin-left: auto; }

/* ---------- Use case list ---------- */
.usecases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.usecase {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.usecase h3 { margin: 0 0 8px; font-size: 1.15rem; }
.usecase .role-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.usecase p { margin: 0 0 12px; color: var(--ink-soft); }
.usecase .meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
.usecase .meta strong { color: var(--ink); }

/* ---------- Mini dashboard preview ---------- */
.dash-preview {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.dash-bar .dot {
  width: 9px; height: 9px; border-radius: 999px;
}
.dash-bar .ttl { font-size: 0.85rem; color: var(--muted); margin-left: 6px; }
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.dash-kpi {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.dash-kpi .lbl { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.dash-kpi .val { font-weight: 700; margin-top: 4px; }
.dash-kpi .delta { font-size: 0.75rem; color: var(--green-dark); }
.dash-chart {
  height: 90px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(22,163,74,0.18), rgba(14,165,233,0.05) 80%, transparent),
    repeating-linear-gradient(0deg, var(--border) 0 1px, transparent 1px 22px);
  position: relative;
  overflow: hidden;
}
.dash-chart svg { width: 100%; height: 100%; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .why,
  .split,
  .split.reverse,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
  .usecases { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .site-footer .footer-brand p { max-width: none; }
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border: 0; }
  .nav-cta { display: none; }
  section { padding: 56px 0; }
  .cta-band { padding: 36px 24px; }
}

@media (max-width: 560px) {
  .product-grid,
  .steps,
  .form-row { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
}

/* brand-kit logo */
.brand-mark{background:none!important;border-radius:0!important;width:34px;height:34px}
.brand-mark img{width:34px;height:34px;display:block}

/* volledig numabit.io-logo */
.brand-logo{height:30px;width:auto;display:block}
.brand{display:inline-flex;align-items:center}

/* ===== Numabit brand switcher ===== */
.brand-switch{position:relative}
.brand-toggle{display:inline-flex;align-items:center;gap:8px;background:none;border:0;padding:0;cursor:pointer;font:inherit;color:#8b96ad;line-height:0}
.brand-caret{transition:transform .25s ease;flex:none}
.brand-switch.open .brand-caret{transform:rotate(180deg)}
.brand-menu{position:absolute;top:calc(100% + 14px);left:0;min-width:222px;background:#fff;border:1px solid rgba(20,36,70,.10);border-radius:14px;box-shadow:0 20px 44px rgba(20,36,70,.16);padding:8px;display:flex;flex-direction:column;gap:2px;transform-origin:top left;opacity:0;transform:scaleY(.5) translateY(-10px);pointer-events:none;transition:opacity .18s ease,transform .24s cubic-bezier(.34,1.4,.5,1);z-index:200}
.brand-switch.open .brand-menu{opacity:1;transform:scaleY(1) translateY(0);pointer-events:auto}
.brand-menu-item{display:flex;align-items:center;padding:10px 14px;border-radius:10px;transition:background .15s ease}
.brand-menu-item:hover{background:#f4f7fb}
.brand-menu-item img{height:21px;width:auto;display:block;pointer-events:none}
