/* =====================
   RESET & BASICS
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1E5EFF;     /* Logo blauw */
  --secondary: #FF7A18;   /* Logo oranje */
  --dark: #0B1F44;        /* Donkerblauw tekst */
  --light: #F6F8FC;       /* Zachte achtergrond */
  --border: #E2E8F0;      /* Subtiele borders */
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: #ffffff;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================
   NAVIGATION
===================== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 90px;   /* 🔥 ruimte voor groot logo */
  display: flex;
  align-items: center;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;              /* meer luxe spacing */
  font-size: 26px;        /* 🔥 merknaam groter */
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 72px !important;   /* 💥 duidelijk zichtbaar groter */
  max-height: none;
  width: auto;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color .3s ease;
}

nav a:hover {
  color: var(--primary);
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
}

/* =====================
   HERO
===================== */
.hero-modern {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 120px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 span {
  opacity: 0.9;
}

.hero-text p {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 35px;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}

.btn.primary {
  background: #ffffff;
  color: var(--primary);
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Hero cards */
.hero-visual {
  display: grid;
  gap: 20px;
}

.gradient-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 26px;
  border-radius: 16px;
}

.gradient-card h3 {
  margin-bottom: 10px;
}

/* =====================
   TRUST BAR
===================== */
.trust {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
  padding: 25px 0;
  font-weight: 500;
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 100px 0;
}

.section.light {
  background: var(--light);
}

.section h2 {
  font-size: 38px;
  text-align: center;
}

.section-sub {
  text-align: center;
  margin: 15px auto 50px;
  max-width: 600px;
  color: #475569;
}

/* =====================
   CARDS
===================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 12px;
}

/* =====================
   STEPS
===================== */
.steps-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.steps-modern span {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* =====================
   CTA
===================== */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 100px 0;
}

.cta-box {
  text-align: center;
  max-width: 700px;
}

.cta-box h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-box p {
  margin-bottom: 30px;
  font-size: 18px;
}

/* =====================
   CONTACT FORM
===================== */
.contact {
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
}

.contact-form textarea {
  min-height: 120px;
}

/* =====================
   FOOTER
===================== */
.footer {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  font-size: 14px;
  background: #fff;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  nav {
    display: none;
  }
}

.brand {
  text-decoration: none;
  color: inherit;
}

/* Team layout & kleuren */
.name-ruben {
  color: var(--primary); /* Logo-blauw */
}

.name-justin {
  color: var(--secondary); /* Logo-oranje / rood */
}

.profile-card h3 {
  margin-bottom: 6px;
}

.profile-card .role {
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 600;
  color: #64748b;
}

/* =====================
   TEAM FIX (FORCE DESKTOP LAYOUT)
===================== */

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* ALTIJD naast elkaar */
  gap: 40px;
}

/* Profielfoto */
.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--border);
}

/* Naamkleuren */
.name-ruben {
  color: var(--primary) !important; /* Logo blauw */
}

.name-justin {
  color: var(--secondary) !important; /* Logo oranje/rood */
}

/* Tekst netjes */
.profile-card p {
  margin-bottom: 14px;
  color: #475569;
}

/* Mobiel: onder elkaar */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   PRICING
===================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.price {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0 5px;
  color: var(--primary);
}

.price-sub {
  font-size: 14px;
  color: #64748b;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-list li {
  margin-bottom: 10px;
  color: #475569;
}

.btn.full {
  width: 100%;
}
