:root {
  --bg: #020617;            /* bijna zwart/blauw */
  --bg-alt: #020617;
  --header-bg: #020617;     /* donkere header */
  --accent: #3b82f6;        /* blauw accent */
  --accent-soft: rgba(59,130,246,0.16);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --card-bg: #020617;
  --card-border: #1f2937;
  --radius: 8px;
  --shadow-soft: 0 16px 38px rgba(0,0,0,0.6);
}

/* Basis */

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, #1e293b 0, #020617 55%, #000 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Topbar / nav */

.topbar {
  background: rgba(2,6,23,0.96);
  color: #e5e7eb;
  border-bottom: 1px solid #111827;
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  /* 20% groter dan 38px ≈ 46px */
  width: 92px;
  height: 92px;

  /* geen vierkantje meer eromheen */
  border-radius: 0;
  background: transparent url("../images/logo.png") center/contain no-repeat;
  border: none;
  box-shadow: none;
}

.brand-text-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand-text-sub {
  font-size: 0.8rem;
  color: #9ca3af;
}

.nav {
  display: flex;
  gap: 0.1rem;
  font-size: 0.9rem;
}

.nav a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: #d1d5db;
  border: 1px solid transparent;
  transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out;
  white-space: nowrap;
}

.nav a:hover {
  background: rgba(15,23,42,0.9);
  border-color: #374151;
}

.nav a.current {
  background: #f9fafb;
  color: #111827;
  font-weight: 600;
}

@media (max-width: 840px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    flex-wrap: wrap;
  }
}

/* Verhuisbanner – bewust licht/oranje voor contrast */

.move-banner {
  background: linear-gradient(90deg, #f97316, #facc15);
  color: #111827;
  padding: 0.75rem 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.move-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.move-banner-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.move-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #fefce8;
  border: 1px solid rgba(15,23,42,0.15);
  position: relative;
}

.move-icon::before,
.move-icon::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 3px;
  border: 2px solid #f59e0b;
}

.move-icon::after {
  inset: 34% 20% 10% 20%;
  border-top: none;
}

.move-text-main {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.move-text-sub {
  font-size: 0.9rem;
}

.move-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.25);
  background: #f9fafb;
  color: #111827;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .move-banner-inner {
    align-items: flex-start;
  }
}

/* Layout hoofdcontent */

.main-wrap {
  max-width: 1120px;
  margin: 1.75rem auto 0;
  padding: 0 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .main-wrap {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: radial-gradient(circle at top left, #111827 0, #020617 55%);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.6rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(148,163,184,0.2), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

/* Hero / intro */

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #1f2937;
  color: #9ca3af;
  background: rgba(15,23,42,0.9);
}

.badge--accent {
  border-color: rgba(59,130,246,0.6);
  color: #bfdbfe;
  background: var(--accent-soft);
}

h1 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--accent);
}

.intro-sub {
  color: #d1d5db;
  max-width: 38rem;
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
}

.keyline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.keyline-item strong {
  color: var(--accent);
  font-weight: 600;
}

.keyline-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4b5563;
}

/* CTA knoppen */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out, transform 0.1s ease-out, box-shadow 0.1s ease-out;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
}

.btn-primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
}

.btn-ghost {
  background: rgba(15,23,42,0.9);
  border-color: #374151;
  color: #e5e7eb;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  opacity: 0.9;
}

/* Services grid */

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .services {
    grid-template-columns: minmax(0, 1fr);
  }
}

.service-card {
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid #1f2937;
  background: radial-gradient(circle at top left, #111827 0, #020617 70%);
  padding: 0.85rem 0.9rem;
}

.service-card.appearance {
  background: radial-gradient(circle at top left, rgba(37,99,235,0.25), #020617 70%);
  border-color: #1d4ed8;
}

.service-label {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.service-title {
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.service-body {
  color: #d1d5db;
  font-size: 0.83rem;
}

/* Sidebar */

.sidebar-card {
  background: radial-gradient(circle at top, #020617 0, #020617 60%);
  border-radius: var(--radius);
  border: 1px solid #1f2937;
  padding: 1.2rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 5.4rem;
}

@media (max-width: 900px) {
  .sidebar-card {
    position: static;
  }
}

.side-heading {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.side-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f9fafb;
}

.rdw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid #22c55e;
  color: #bbf7d0;
  background: rgba(6,78,59,0.8);
  margin-bottom: 0.85rem;
}

.rdw-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.35);
}

.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.83rem;
  color: #d1d5db;
}

.side-list li {
  padding: 0.3rem 0;
  border-bottom: 1px dashed #111827;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.side-list li:last-child {
  border-bottom: none;
}

.side-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: #9ca3af;
}

.side-value {
  font-weight: 600;
  color: #f9fafb;
  font-size: 0.86rem;
  text-align: right;
}

.side-note {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.side-note strong {
  color: var(--accent);
  font-weight: 600;
}

.side-contact {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px dashed #111827;
  font-size: 0.8rem;
  color: #d1d5db;
}

.side-contact a {
  color: var(--accent);
}

/* Footer */

footer {
  border-top: 1px solid #0b1120;
  background: #020617;
  margin-top: auto;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-addr span {
  display: inline-block;
  margin-right: 0.8rem;
}

.footer-addr strong {
  color: #e5e7eb;
  font-weight: 600;
}
/* Zorg dat invoervelden niet breder worden dan de container */
input, textarea {
  max-width: 100%;
}

/* Fix voor mobiele weergave van de contactpagina */
@media (max-width: 900px) {
  .main-wrap {
    display: flex;
    flex-direction: column;
  }
  .sidebar-card {
    width: 100%;
    position: static;
  }
}