:root {
  --blue-dark: #11224E;
  --orange: #F87B1B;
  --green-soft: #CBD99B;
  --gray-light: #EEEEEE;
  --text-dark: #1f2933;
}

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

/* ===== BASIS ===== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--gray-light);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 1.5rem;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--blue-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  padding: 0.75rem 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-header .logo {
  display: flex;
  align-items: center;
}

.site-header .logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
}

/* Navigatie */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-dark), #1b2f6b);
  color: #ffffff;
  text-align: center;
  padding: 4.5rem 0;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.6rem;
  background: var(--orange);
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ===== SECTIONS ===== */
.section {
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.section .btn {
  margin-top: 1rem;
}

/* === TEKST SPACING === */
.section h2 {
  margin-bottom: 1rem;
}

.section p {
  margin-bottom: 1rem;
  max-width: 720px;
}

.section p:last-child {
  margin-bottom: 0;
}

.section.alt {
  padding: 3.5rem 0;
  background: var(--green-soft);
}

.section.alt .contact-box p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  text-align: center;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.centered {
  text-align: center;
}

.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* Grid & cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-3px);
  transition: transform 0.15s ease;
}

.card h3 {
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

/* ===== CONTACT ===== */
.contact-card {
  background: #ffffff;
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Formulier */
.contact-form {
  max-width: 520px;
  margin: 1.5rem auto 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.form-group label {
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--blue-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-dark);
  box-shadow: 0 0 0 2px rgba(17, 34, 78, 0.15);
}

/* Contact info */
.contact-box {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center; /* 👈 dit is de sleutel */
}

.contact-box a {
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: none;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--blue-dark);
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.site-footer a:hover::after {
  width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-header .logo img {
    height: 32px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 1.5rem;
  }
}
@media print {
  .site-header,
  .site-footer {
    display: none;
  }
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  white-space: nowrap;
}

.price {
  margin-top: 12px;
  font-size: 1.2rem;
}

.muted {
  opacity: 0.7;
  font-size: 0.95rem;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Als je een tweede knop-stijl wil zonder je bestaande .btn te slopen */
.btn.secondary {
  background: transparent;
  border: 1px solid currentColor;
}
/* SCRIPT CARDS */
.script-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.script-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.script-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f2f2f2;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.script-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.script-card:hover .script-image img {
  transform: scale(1.03);
}

.script-content {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.script-title {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.script-intro {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.demo-login {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 8px 0 12px;
}

/* Zorgt dat knoppen onderaan blijven */
.script-card .actions {
  gap: 8px;
}
/* BUTTON VARIANTS */
.btn-primary {
  background: #111;
  color: #fff;
}

.btn-demo {
  background: #2563eb; /* modern blauw */
  color: #fff;
}

.btn-admin {
  background: #16a34a; /* professioneel groen */
  color: #fff;
}

.btn-demo:hover,
.btn-admin:hover,
.btn-primary:hover {
  opacity: 0.9;
}
/* PROJECT CARD MET SCREENSHOT */
.project-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f2f2f2;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-content {
  padding-top: 14px;
}

.project-intro {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* optioneel: subtiele hover */
.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}
/* Actieve navigatie-link op basis van URL */
.nav a {
  position: relative;
}

.nav a.active {
  font-weight: 600;
}

/* fallback: underline-effect */
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
}
/* DIENSTEN CARDS – consistent met scripts */
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card p {
  margin-bottom: 0.6rem;
}

/* Lijsten compacter & rustiger */
.card .list {
  margin: 0.4rem 0 0.8rem;
  padding-left: 18px;
}

.card .list li {
  margin-bottom: 4px;
  line-height: 1.4;
}

/* Actieknoppen altijd onderaan */
.card .actions {
  margin-top: auto;
  padding-top: 0.8rem;
}

/* Subtiele hover (zelfde feel als scripts) */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Hero titles (some pages use h1) */
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* Contact process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.process-step {
  background: #fff;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.process-step span {
  display: inline-flex;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  margin-bottom: 0.4rem;
  color: var(--blue-dark);
}

.process-step p {
  margin-bottom: 0;
}
