/* =========================================================
   RESET & BASIS
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #efefef;
  color: #111827;
}

/* Desktop blokkeren */
@media (min-width: 768px) {
  body {
    display: none;
  }
}

main {
  width: 100%;
}

/* =========================================================
   CONTAINER
========================================================= */
.container {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 16px 28px;
  background: #efefef;
}

/* =========================================================
   LOGO
========================================================= */
.logo {
  text-align: center;
  margin-bottom: 12px;
}

.logo img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: inline-block;
}

/* =========================================================
   TITELS
========================================================= */
.page-title {
  font-size: 54px;
  line-height: 1.15;
  font-weight: bold;
  text-align: center;
  margin: 14px 0 10px;
  color: #3a3a3a;
}

.subtitle {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #444;
  margin-bottom: 26px;
}

.subtitle strong {
  font-weight: 800;
}

.subtitle.small {
  font-size: 14px;
  margin-bottom: 14px;
  display: none;
}

.step-title {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 18px;
  color: #111827;
  text-align: left;
}

/* =========================================================
   FORMULIER
========================================================= */
form {
  width: 100%;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.question {
  display: block;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 12px;
}

/* =========================================================
   INPUTS
========================================================= */
select,
input,
textarea {
  width: 100%;
  height: 70px;
  font-size: 22px;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid #c4c4c4;
  background: #ffffff;
  color: #111827;
  outline: none;
  margin-bottom: 16px;
}

select {
  height: 76px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px #4f46e5;
}

textarea {
  min-height: 240px;
  resize: vertical;
}

/* =========================================================
   OPTIONS (RADIO / CHECKBOX CARDS)
========================================================= */
.option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #c4c4c4;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.option input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #9ca3af;
  background: #ffffff;
  margin: 0;
  position: relative;
}

.option input:checked {
  border-color: #4f46e5;
  background: #4f46e5;
}

.option input:checked::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: #ffffff;
  border-radius: 999px;
}

.option:has(input:checked) {
  background: #eef2ff;
  border-color: #4f46e5;
}

/* =========================================================
   BUTTONS
========================================================= */
.primary-btn {
  width: 100%;
  background: #4f46e5;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
}

.primary-btn:hover {
  background: #4338ca;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.nav-buttons.column {
  flex-direction: column;
}

.prev {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #4b5563;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
}

/* =========================================================
   SECTIES ALGEMEEN
========================================================= */
section {
  padding: 28px 16px;
  background: #efefef;
}

section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #4aa3df;
  text-align: center;
  margin-bottom: 22px;
}

section h3 {
  font-size: 24px;
  font-weight: bold;
  color: #4aa3df;
  margin-top: 18px;
  margin-bottom: 6px;
}

section p {
  font-size: 20px;
  line-height: 1.55;
  color: #4b5563;
}

/* =========================================================
   ZO GEMAKKELIJK WERKT HET – MET WEBP ICONEN
========================================================= */
#how-it-works .how-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.how-icon {
  flex: 0 0 44px;
}

.how-icon img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.how-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #4aa3df;
  margin: 0 0 4px;
}

.how-content p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  color: #4b5563;
}

/* =========================================================
   FAQ
========================================================= */
#faq h3 {
  margin-top: 20px;
}
/* =========================================================
   FAQ – Gouden ster voor vragen
========================================================= */
#faq .faq-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

#faq .faq-icon {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

#faq .faq-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #4aa3df;
}

#faq .faq-content p {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
  color: #4b5563;
}
/* =========================================================
   TESTIMONIAL IMAGE (GESPECIALISEERDE ADVOCATEN)
========================================================= */
.testimonial-image {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.testimonial-image img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
}
/* =========================================================
   TESTIMONIAL
========================================================= */
#specialists {
  background: #efefef;
}

.testimonial {
  font-size: 15px;
  line-height: 1.6;
  background: #f9fafb;
  padding: 16px;
  border-radius: 12px;
  color: #374151;
  text-align: center;
}

/* =========================================================
   OPENINGSTIJDEN
========================================================= */
#opening-hours {
  text-align: center;
}

#opening-hours strong {
  font-weight: 800;
}

#opening-hours a {
  color: #2563eb;
  text-decoration: underline;
}
/* =========================================================
   PRIVACY
========================================================= */
.privacy {
  margin: 8px 0 14px;
  font-size: 14px;
  color: #4b5563;
  text-align: center;
  gap: 6px;
}

/* =========================================================
   FOOTER
========================================================= */
.copyright {
  margin-top: 20px;
  font-size: 13px;
  color: #6b7280;
}