@charset "UTF-8";
.footer-privacy {
  font-size: 0.75rem;
  color: #6b7280;
  max-width: 600px;
  line-height: 1.4;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: #f7f8fa;
  color: #1f2937;
  scroll-margin-top: 80px;
}

a {
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
  border-bottom: 1px solid rgba(31, 41, 55, 0.8);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-block: 0.9rem;
}

.hero-photo {
  display: flex;
  justify-content: center;
}
.hero-photo img {
  width: 100%;
  max-width: 340px;
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 960px) {
  .hero-photo {
    margin-top: 1.5rem;
  }
}
.site-logo {
  max-height: 64px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.logo-container {
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand .brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #eb5a07, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.6);
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.brand .brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #FFFFFF;
}
.brand .brand-tagline {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.8rem;
  color: #6b7280;
}

.main-nav {
  position: relative;
}
.main-nav .nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}
.main-nav .nav-toggle span {
  width: 1.4rem;
  height: 2px;
  background: #FFFFFF;
  border-radius: 999px;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}
.main-nav .main-nav .nav-list li a,
.main-nav .main-nav .nav-dropdown-toggle {
  color: white;
}
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .nav-list li a,
.main-nav .nav-list .nav-dropdown-toggle {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  background: none;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.18s ease-out, border-color 0.18s ease-out;
  color: white;
}
.main-nav .nav-list .nav-dropdown-toggle {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "DM Sans", system-ui, sans-serif;
  color: white;
}
.main-nav .nav-list li a:hover,
.main-nav .nav-list .nav-dropdown-toggle:hover {
  border-color: rgba(148, 163, 184, 0.5);
}
.main-nav .nav-list .nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at 0 0, rgba(79, 70, 229, 0.3), rgba(15, 23, 42, 0.9));
  color: #FFFFFF;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out, color 0.25s ease-out;
}
.main-nav .nav-list .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8);
}
.main-nav .nav-dropdown {
  position: relative;
}
.main-nav .nav-dropdown .nav-dropdown-toggle {
  border: none;
}
.main-nav .nav-dropdown .nav-dropdown-menu {
  position: absolute;
  top: 2.2rem;
  left: 0;
  min-width: 220px;
  padding: 0.9rem;
  list-style: none;
  margin: 0;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(31, 41, 55, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}
.main-nav .nav-dropdown .nav-dropdown-menu li a {
  display: block;
  padding: 0.4rem 0.2rem;
  border-radius: 0.5rem;
  color: #FFFFFF;
  transition: background-color 0.18s ease-out, color 0.18s ease-out;
}
.main-nav .nav-dropdown .nav-dropdown-menu li a:hover {
  background: rgba(55, 65, 81, 0.7);
}
.main-nav .nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  padding-block: 4.5rem;
}
.hero .hero-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.25rem;
  align-items: center;
}
.hero .hero-content {
  max-width: 100%;
}
.hero .hero-content h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.125rem;
}
.hero .hero-content p {
  font-size: 0.98rem;
  color: #6b7280;
  max-width: 100%;
  margin-bottom: 1.5rem;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.125rem;
}
.hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #f7f8fa;
  text-align: center;
}
.hero .hero-meta span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(15, 23, 42, 0.9);
}
.hero .hero-highlight-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.65rem;
}
.hero .hero-highlight-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.hero .hero-highlight-card p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.125rem;
}
.hero .hero-highlight-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.88rem;
}
.hero .hero-highlight-card ul li::before {
  content: "•";
  color: #eb5a07;
  margin-right: 0.4rem;
}

section {
  max-width: 100vw;
}

.section {
  padding-block: 4.5rem;
}
.section .section-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.5rem;
}
.section .section-header {
  margin-bottom: 2.25rem;
}
.section .section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.section .section-header p {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 32rem;
}

.textcolor {
  color: #6b7280;
}

.section-alt {
  background: #ffffff;
}

.section-highlight {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.18), rgba(15, 23, 42, 0.95));
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
}
.bullet-list li::before {
  content: "▹";
  color: #eb5a07;
  margin-right: 0.4rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.cards .card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out, color 0.25s ease-out;
}
.cards .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8);
}
.cards .card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.cards .card p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.9rem;
}
.cards .card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
}
.cards .card ul li::before {
  content: "–";
  color: #eb5a07;
  margin-right: 0.3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.pricing-grid .pricing-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out, color 0.25s ease-out;
}
.pricing-grid .pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8);
}
.pricing-grid .pricing-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.pricing-grid .pricing-card .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #eb5a07;
  margin-bottom: 0.75rem;
}
.pricing-grid .pricing-card p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.9rem;
}
.pricing-grid .pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
}

.timeline {
  display: grid;
  gap: 1.35rem;
}
.timeline .timeline-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: flex-start;
}
.timeline .timeline-step .step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #eb5a07;
  background: rgba(15, 23, 42, 0.9);
}
.timeline .timeline-step .step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.timeline .timeline-step .step-content p {
  font-size: 0.9rem;
  color: #6b7280;
}

.call-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 1.875rem;
  align-items: center;
}

.call-form,
.contact-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
}
.call-form textarea,
.contact-form textarea {
  font-family: "Poppins", system-ui, sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.125rem;
  margin-bottom: 1.125rem;
}
.form-row:last-of-type {
  margin-bottom: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}
.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 0.5rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: #FFFFFF;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  color: #1f2937;
  outline: none;
  transition: border-color 0.18s ease-out, box-shadow 0.18s ease-out, background-color 0.18s ease-out;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #eb5a07;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.6);
  background: rgba(210, 224, 255, 0.98);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 1.875rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.125rem 0 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.contact-list strong {
  color: #6b7280;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out, color 0.25s ease-out;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8);
}
.btn.btn-primary {
  background: linear-gradient(135deg, #eb5a07, #eb5a07);
  color: #f9fafb;
  border-color: rgba(79, 70, 229, 0.9);
}
.btn.btn-outline {
  background: transparent;
  color: #1f2937;
  border-color: rgba(148, 163, 184, 0.7);
}
.btn.btn-outline:hover {
  background: rgba(31, 41, 55, 0.9);
  color: #FFFFFF;
}

.site-footer {
  padding-block: 1.5rem;
  background: #020617;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
}
.site-footer .footer-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsiveness */
@media (max-width: 960px) {
  .hero .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .hero .hero-photo img {
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .hero .hero-content {
    text-align: left;
  }
  .cards,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .call-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 720px) {
  .main-nav .nav-toggle {
    display: flex;
  }
  .main-nav .nav-list {
    position: absolute;
    right: 0;
    top: 3rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.125rem;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(31, 41, 55, 0.9);
    transform: translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  }
  .main-nav.open .nav-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .cards,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .hero-photo {
    order: -1; /* foto bovenaan */
    margin-bottom: 1.5rem;
  }
  .hero .hero-photo img {
    max-width: 180px;
    width: 100%;
    margin: 0 auto;
  }
  .hero .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero .hero-meta {
    justify-content: center;
  }
  .hero .hero-highlight-card {
    margin-top: 1.5rem;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .site-logo {
    max-height: 36px;
  }
  .site-header .header-inner {
    padding-inline: 0.75rem;
  }
  .site-header .container {
    max-width: 100vw;
    width: 100%;
  }
  .main-nav {
    margin-left: auto;
  }
  .nav-toggle {
    transform: scale(0.9);
  }
  .site-header .header-inner {
    min-height: 64px;
  }
}
@media (max-width: 720px) {
  .hero {
    overflow-x: hidden;
  }
  .hero-inner {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .hero-content,
  .hero-meta,
  .hero-actions,
  .hero-highlight-card {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
/* Fix: witruimte rechts vanaf 720px */
@media (max-width: 720px) {
  html, body {
    overflow-x: hidden;
  }
  .hero {
    overflow-x: hidden;
    width: 100%;
  }
  .hero-inner {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0 0.75rem; /* voorkomt dat container + grid samen >100vw worden */
  }
  .hero-content,
  .hero-meta,
  .hero-actions,
  .hero-highlight-card {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}/*# sourceMappingURL=main.css.map */
