/*************************************************
  RESET & BASISSTIJLEN
*************************************************/

/* Basis reset voor margin, padding en box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Verbeter basis tekstweergave & typografie */
html {
  font-family: system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: #fafbfc;
  color: #1a1a1a;
}

/*************************************************
  TYPOGRAFIE & LINKS
*************************************************/

a {
  color: #1976d2;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #1565c0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue", Sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 5rem;
  line-height: 5rem;
  margin-bottom: 24px;
}

p {
  margin-bottom: 1.2em;
}

/*************************************************
  AFBEELDINGEN & MEDIA
*************************************************/

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*************************************************
  BUTTONS & FORMULIEREN
*************************************************/

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

button {
  cursor: pointer;
  border: none;
  background: #1976d2;
  color: #fff;
  padding: 0.6em 1.4em;
  border-radius: 4px;
  transition: background 0.15s;
}
button:hover, button:focus {
  background: #1e293b;
}

/*************************************************
  ACCESSIBILITY
*************************************************/

:focus {
  outline: 2px solid #1976d2;
  outline-offset: 2px;
}

/*************************************************
  LAYOUT: FLEXBOX VOOR STICKY FOOTER
*************************************************/

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

/*************************************************
  SECTION & CONTAINER 
*************************************************/

.section {
  padding: 64px 0;
  scroll-margin-top: 96px;
}

.container {
  max-width: 1272px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  box-sizing: border-box;
}

/*************************************************
  HEADER 
*************************************************/
.main-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(30,41,59,0.07);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  max-width: 1272px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-container .cta-button {
  margin: 0;
}

.header-logo {
  height: 54px;
  max-width: 230px;
  object-fit: contain;
  display: block;
}

@media (max-width: 650px) {
  .header-container {
    flex-direction: row;
    padding: 0 1rem;
  }
  .header-logo {
    height: 40px;
    max-width: 150px;
  }
}

@media (max-width: 350px) {
  .header-container .cta-button {
    padding: 1rem;
  }
}

/*************************************************
  FOOTER 
*************************************************/
.main-footer {
  background: #B5A0CF;
  padding: 3.2rem 0 1.5rem 0;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(30,41,59,0.12);
}

.footer-container {
  max-width: 1272px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.3rem;
}

.footer-nav a {
  color: #201C40;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  transition: color 0.18s;
  padding: 0.3rem 0.7rem;
  border-radius: 0.6rem;
}

.footer-nav a:hover {
  color: #38bdf8;
  background: #334155;
}

.footer-bottom {
  color: #201C40;
  font-size: 0.96rem;
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

/*************************************************
  HERO BANNER
*************************************************/
.hero {
  position: relative; /* voor correcte hero-wave positie */
  width: 100%;
  min-height: 600px;
  background: #EF7B2C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -8vw;
  width: 100%;
  height: 8vw;
  line-height: 0;
  z-index: 1;
}

.hero-content {
  text-align: left;
  display: flex;
  gap: 32px;
}

.hero-text {
  flex: 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  flex: 1 40%;
}

.hero-image img {
  max-height: 475px;
  min-height: 100%;
  border-radius: 2rem;
}

.hero-content h1 {
  font-size: 7rem;
  line-height: 7rem;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 span.hero-claim {
  color: #201C40;
  font-size: 4rem;
  line-height: 4rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
}

@media (max-width: 900px) {
  .hero-image {
    display: none;  
  }
}

/*************************************************
  PROMO
*************************************************/
.promo {
  background: #B5A0CF;
  padding-top: 128px;
  padding-bottom: 64px;
}

.promo-card {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  min-height: 700px;
}

.promo-text {
  flex: 1 1 50%;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #201C40;
}

.promo-text p {
  font-size: 1.15rem;
  line-height: 1.5;
  max-width: 460px;
}

.promo-text p span {
  display: block;
  margin-top: 24px;
  font-weight: 600;
}

.promo-image {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  border-radius: 2rem;
  overflow: hidden;
  max-height: 700px;
  min-height: 100%;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(30, 41, 59, 0.10);
}

@media (max-width: 900px) {
  .promo-card {
    flex-direction: column;
  }
  .promo-text {
	 padding: 2.5rem 0;
  }
  .promo-image {
    display: none;
  }
}

/*************************************************
  CAROUSEL
*************************************************/
.carousel-section {
  width: 100%;
  background: #f7fafc;
  padding: 3rem 0 4rem 0;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
}

.carousel {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 500px;
  transition: transform 0.5s cubic-bezier(0.65,0,0.35,1);
}

.carousel-heading {
  color: #EF7B2C;
}

.carousel-slide {
  min-width: 1000px;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2rem;
  margin-right: 32px;
}

.carousel-slide:last-child {
  margin-right: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.carousel-controls {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  position: absolute;
  left: 0;
  margin-top: 12px;
}

.carousel-arrow {
  background: #1e293b;
  color: #fff;
  border: none;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.carousel-arrow:disabled {
  background: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 1100px) {
  .carousel, .carousel-slide {
    width: 100%;
    min-width: 100%;
    height: 260px;
  }
}

@media (max-width: 650px) {
  .carousel-heading {
    text-align: center;
  }
}

/*************************************************
  ABOUT
*************************************************/
.about-action {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  background: #B5A0CF;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(30,41,59,0.07);
  padding: 2.5rem 2rem;
  min-height: 500px;
  align-content: center;
}

.about-text {
  flex: 1 1 48%;
  min-width: 270px;
  display: flex;
  flex-direction: column;
}

.about-text h2 {
  color: #201C40;
}

.about-text p {
  color: #201C40;
  font-size: 1.08rem;
  line-height: 1.5;
  margin-bottom: auto;
  max-width: 475px;
}

.about-usps {
  flex: 1 1 38%;
  min-width: 220px;
  background: rgba(255,255,255,0.41);
  border-radius: 1.4rem;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 2px 16px rgba(56,189,248,0.11);
  display: flex;
  min-height: 300px;
  align-items: center;
  align-self: center;
}

.about-usps ul {
  list-style: none;
  padding: 0;
  margin: auto;
}

.about-usps li {
  font-size: 1.13rem;
  margin-bottom: 1.3rem;
  color: #6d28d9;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.about-usps li:last-child {
  margin-bottom: 0;
}

.check {
  color: #22c55e;
  background: #e5f9ed;
  border-radius: 999px;
  font-size: 1.28rem;
  margin-right: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-width: 28px;
}

@media (max-width: 850px) {
  .about-action {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem 1rem;
  }
  .about-text, .about-usps {
    min-width: 0;
    width: 100%;
  }
  .about-usps {
    padding: 1.6rem 1.1rem;
    margin-top: 1.2rem;
  }
}

/*************************************************
  STEPS
*************************************************/
.steps-heading {
  color: #EF7B2C;
  text-align: center;
  margin-bottom: 64px;
}

.steps-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 900px;
}

.step {
  flex: 1 1 0;
  background: #f7fafc;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(30,41,59,0.07);
  padding: 2.4rem 1.4rem 2.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 180px;
}

.step-emoji {
  margin-bottom: 1.3rem;
  height: 75px;
}

.step-text {
  color: #334155;
  font-size: 1.13rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .steps-row {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 99%;
  }
  .step {
    min-width: 0;
	max-width: 280px;
	margin: auto;
  }
}

/*************************************************
  CONTACT
*************************************************/
.contact-container {
  max-width: 750px;
  text-align: center;
}

.contact-heading {
  color: #201C40;
}

.contact-heading span {
  display: block;
  color: #EF7B2C;
  font-size: 1.3em;
  line-height: 1.3em;
}

.contact-subtitle {
  color: #64748b;
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
  font-weight: 500;
}

.contact-form-card {
  background: #ede9fe;
  border-radius: 1.7rem;
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.07);
  padding: 2.3rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.2rem;
  transition: background 0.3s, box-shadow 0.3s;
}

#gratis-sessie-form {
  width: 100%;
}

.form-group {
  width: 100%;
  margin-bottom: 1.7rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #7c3aed;
  margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-size: 1.08rem;
  border: 1.5px solid #d1d5db;
  border-radius: 1.1rem;
  background: #fff;
  color: #312e81;
  outline: none;
  transition: border 0.2s;
}

.form-group input:focus {
  border-color: #a78bfa;
}

.cta-button {
  display: inline-block;
  background: #201C40;
  color: #fff;
  padding: 1rem 2.3rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 3px 18px rgba(139, 92, 246, 0.13);
  margin-top: 24px;
  transition: .2s;
  font-weight: 600;
  border: 2px solid #201c40;
}

.cta-button:hover:not(:disabled) {
  background: #201c4008;
  color: #201c40;
  text-decoration: none;
}

.cta-button:disabled {
  background: #d0d0d0;
  border: 2px solid #d0d0d0;
  color: #919191;
  cursor: not-allowed;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(110deg, #dcfce7 90%, #bbf7d0 100%);
  border-radius: 1.7rem;
  padding: 2.5rem 2rem;
  animation: pop-in 0.35s;
  width: 100%;
  height: 100%;
}

.form-success .big-check {
  font-size: 3.5rem;
  color: #22c55e;
  margin-bottom: 1.2rem;
}

.form-success p {
  color: #166534;
  font-size: 1.14rem;
  font-weight: 600;
}

@keyframes pop-in {
  0% { transform: scale(0.93); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Extra styling voor validation en spinner */
.form-group input.invalid {
  border-color: #ef4444 !important;
  background: #fef2f2;
}
.form-group input.valid {
  border-color: #22c55e !important;
  background: #f0fdf4;
}
.form-spinner {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  border: 2.5px solid #fff;
  border-top: 2.5px solid #7c3aed;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-left: 8px;
}
@keyframes spin {
  to { transform: rotate(360deg);}
}

/* Voorwaarden en pop-up */
.voorwaarden-label {
  font-size: 1rem;
  display: block;
  margin-bottom: 1.7rem;
  color: #6b7280;
}

.voorwaarden-label a {
  color: #7c3aed;
  cursor: pointer;
  font-weight: 500;
}

.voorwaarden-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30, 41, 59, 0.44);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  pointer-events: auto;
}

.voorwaarden-popup {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 48px rgba(30,41,59,0.19);
  max-width: 600px;
  width: 92vw;
  padding: 2rem 1.3rem 1.2rem 1.3rem;
  position: relative;
  text-align: left;
  animation: voorwaarden-pop-in 0.27s;
  overflow-y: auto;
  max-height: 90vh;
}

@keyframes voorwaarden-pop-in {
  from { transform: scale(0.97); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.voorwaarden-popup h2 {
  margin-bottom: 1rem;
  font-size: 1.37rem;
  color: #7c3aed;
  font-weight: 700;
}

.voorwaarden-popup ul {
  margin-bottom: 1.5rem;
  padding-left: 1.3rem;
  font-size: 1rem;
  color: #334155;
}

.voorwaarden-popup li {
  margin-bottom: 0.85em;
  line-height: 1.5;
}

.voorwaarden-btn {
  display: inline-block;
  margin-top: 0.6rem;
  background: #ede9fe;
  color: #7c3aed;
  padding: 0.7em 2em;
  border: none;
  border-radius: 999px;
  font-size: 1.03rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}

.voorwaarden-btn:hover,
.voorwaarden-btn:focus {
  background: #7c3aed;
  color: #fff;
}

.voorwaarden-update {
  text-align: right;
  font-size: 0.93rem;
  color: #64748b;
  margin-top: 1.1rem;
  font-style: italic;
  opacity: 0.72;
}

@media (max-width: 400px) {
	.contact-heading {
	  font-size: 4rem;
	  line-height: 4rem;
	}
}

/*************************************************
  VEELGESTELDE VRAGEN
*************************************************/
.faq-container {
  max-width: 750px;
}

.faq-heading {
  text-align: center;
  color: #201C40;
  margin-bottom: 64px;
}

.faq-list {
  width: 100%;
}

.faq-list button:hover,
.faq-list button:focus {
  background: #EDE9FE;
}

.faq-item {
  background: #FFF;
  border-radius: 1.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(30,41,59,0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.13rem;
  font-weight: 700;
  color: #7c3aed;
  padding: 1.25rem 2.5rem 1.25rem 1.3rem;
  cursor: pointer;
  position: relative;
  transition: background 0.17s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  font-size: 1.3rem;
  color: #7c3aed;
  transition: transform 0.28s;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
  color: #22c55e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafaff;
  color: #475569;
  font-size: 1.08rem;
  padding: 0 1.3rem;
  transition: max-height 0.37s cubic-bezier(0.6,0.4,0.3,1), padding 0.25s;
  border-top: 1px solid #e0e7ff;
}

.faq-item.active .faq-answer {
  padding: 1.1rem 1.3rem 1.6rem 1.3rem;
  max-height: 300px
}

@media (max-width: 424px) {
  .faq-heading {
    font-size: 2.3rem;
    line-height: 2.3rem;		
  }
}