*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --orange-primary: #FF6600;
  --orange-bright: #FF8833;
  --orange-dark: #CC5500;
  --orange-light: #FFE6CC;
  --orange-accent: #FFAA66;
  --bg: #FFF8F0;
  --dark: #1a1a1a;
  --muted: #666;
  --radius: 20px;
  --shadow: 0 8px 24px rgba(255, 102, 0, 0.15);
  --shadow-strong: 0 12px 40px rgba(255, 102, 0, 0.25);
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section,
.stripe {
  padding: 80px 0;
}

.section-alt {
  background: linear-gradient(135deg, #FFE6CC 0%, #FFD9B3 100%);
}

/* Header - compleet andere stijl */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--orange-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--orange-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo {
  height: 260px; /* 5x groter: 52px * 5 = 260px */
  max-width: none;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 21;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  display: flex;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.main-nav a {
  text-decoration: none;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.main-nav a:hover {
  background: white;
  color: var(--orange-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero - veel meer oranje, andere layout */

.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 0.85rem;
  color: var(--orange-light);
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 20px;
  color: white;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 20px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-bullets li {
  position: relative;
  padding-left: 28px;
  margin-top: 12px;
  font-size: 1.05rem;
}

.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-light);
  font-weight: bold;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  object-fit: cover;
  border: 6px solid white;
}

/* Buttons - veel meer oranje, andere stijl */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 3px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: white;
  color: var(--orange-primary);
  border-color: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* Price section - compleet andere stijl */

.stripe {
  background: white;
}

.stripe h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 20px;
  color: var(--orange-primary);
  font-weight: 900;
  text-align: center;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 50rem;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.8;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  background: linear-gradient(135deg, #fff 0%, var(--orange-light) 100%);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 3px solid var(--orange-accent);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-bright));
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--orange-primary);
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--orange-dark);
  font-weight: 800;
}

.card-sub {
  margin: 0 0 20px;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}

.price-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.price-card th,
.price-card td {
  padding: 12px 8px;
}

.price-card thead th {
  text-align: left;
  border-bottom: 3px solid var(--orange-primary);
  font-weight: 700;
  color: var(--orange-dark);
  font-size: 1.1rem;
}

.price-card tbody tr {
  border-bottom: 1px solid rgba(255, 102, 0, 0.1);
}

.price-card tbody tr:last-child {
  border-bottom: none;
}

.price-card tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.5);
}

.price-card tbody td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  color: var(--orange-primary);
  font-size: 1.2rem;
}

.note {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 40px;
  text-align: center;
  font-style: italic;
}

/* Steps - andere stijl */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step {
  background: white;
  border-radius: var(--radius);
  border: 3px solid var(--orange-accent);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-strong);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  color: white;
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.step h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  color: var(--orange-dark);
  font-weight: 800;
}

.step p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Over - andere stijl */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.about-list {
  margin: 20px 0 0;
  padding-left: 0;
  font-size: 1.1rem;
  color: var(--dark);
  list-style: none;
}

.about-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
}

.about-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--orange-primary);
  font-size: 1.2rem;
}

.about-highlight {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  border: 3px solid var(--orange-primary);
  box-shadow: var(--shadow);
  font-size: 1rem;
}

.about-highlight h3 {
  margin-top: 0;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 1.5rem;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 16px;
}

/* Contact - andere stijl */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 50px;
}

.contact-bullets {
  font-size: 1.1rem;
  color: var(--muted);
  padding-left: 0;
  list-style: none;
}

.contact-bullets li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
}

.contact-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-primary);
  font-weight: bold;
  font-size: 1.3rem;
}

.contact-form {
  background: white;
  border-radius: var(--radius);
  border: 3px solid var(--orange-primary);
  padding: 40px 30px;
  box-shadow: var(--shadow-strong);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--orange-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--orange-accent);
  font: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
  background: white;
}

/* Footer - andere stijl */

.site-footer {
  border-top: 4px solid var(--orange-primary);
  background: var(--orange-dark);
  color: white;
  padding: 40px 0;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-image {
    order: -1;
  }
  .brand-logo {
    height: 180px; /* Iets kleiner op mobiel, maar nog steeds groot */
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 20;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 4px;
    color: #374151;
    background: transparent;
  }
  
  .main-nav a:hover {
    background: #e5f2ff;
    color: var(--orange-primary);
  }
  .section,
  .stripe {
    padding: 50px 0;
  }
  .contact-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .brand-logo {
    height: 150px; /* Nog kleiner op kleine schermen */
  }
}
