/* =========================================================
   RESET & BASIS
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #071626;
  color: #ffffff;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
}

/* =========================================================
   CONTAINER
   ========================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   HEADER & NAV
   ========================================================= */
.header {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo span {
  color: #f7931e;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  color: #fff;
  text-decoration: none;
}

.mobile-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 100px 0;
}

.hero h1 {
  font-size: 3rem;
}

.subtitle {
  margin: 10px 0;
  color: #f7931e;
}

.hero-trust {
  max-width: 600px;
  opacity: 0.85;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform .3s ease, box-shadow .3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f7931e, #ffb347);
  color: #111;
  box-shadow: 0 10px 24px rgba(247,147,30,0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(247,147,30,0.6);
}

.btn-outline {
  border: 2px solid #f7931e;
  color: #f7931e;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.service-card {
  background-color: #0b1d2e;
  background-image: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  padding: 30px;
  border-radius: 20px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* =========================================================
   WHY SECTION  (HIER ZITTE DE PROBLEMEN – NU GEFIXT)
   ========================================================= */
.why {
  padding: 90px 0;
}

.why-sub {
  max-width: 700px;
  opacity: 0.8;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 26px;
}

/* ⬇⬇⬇ DE ENIGE WAARHEID VOOR WHY-CARDS ⬇⬇⬇ */
.why-card {
  display: flex;
  gap: 16px;
  padding: 26px;
  align-items: flex-start;

  /* NOOIT MEER WIT */
  background-color: #0b1d2e !important;
  background-image: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  ) !important;

  color: #ffffff !important;

  border-radius: 20px;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    0 0 18px rgba(247,147,30,0.35),
    inset 0 1px 0 rgba(255,255,255,0.12);

  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s cubic-bezier(.22,.61,.36,1);
}

/* GLOW & LIFT – TERUG NAAR MOOI */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 65px rgba(0,0,0,0.55),
    0 0 28px rgba(247,147,30,0.45),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ICON */
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f7931e, #ffb347);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  text-align: center;
  padding: 90px 20px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 60px 0 30px;
  background: rgba(0,0,0,0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 30px;
}

.footer-copy {
  text-align: center;
  opacity: 0.6;
  margin-top: 30px;
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 900px) {
  .nav {
    display: none;
    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
