@import url("https://assets.mlcdn.com/fonts.css?version=1776073");

body {
  background: var(--sand);
}

/* Page layout (matches budget calculator) */
.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.page-head {
  text-align: center;
  margin-bottom: 40px;
}

.page-eyebrow {
  font-size: 11px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.page-head h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--green);
  line-height: .95;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.page-head p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Tool nav bar (stap-indicator, matches budget calculator) */
.tool-nav-bar {
  padding: 10px 18px;
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  background: var(--white);
}

.tnb-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 6px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  transition: all .15s;
  gap: 3px;
  border: 1.5px solid rgba(44,74,62,0.08);
  background: rgba(246, 240, 223, 0.55);
}

.tnb-link:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--sand-dark);
}

.tnb-link.active {
  background: var(--white);
  color: var(--green);
  border-color: var(--green);
  font-weight: 800;
}

.tnb-step {
  font-size: 8px;
  color: var(--muted);
}

/* Completed step — groen bolletje rechtsboven */
.tnb-link.done {
  position: relative;
  color: var(--green);
}
.tnb-link.done::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}
.tnb-link.done .tnb-step {
  color: var(--muted);
}

.mob-next-step {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px 0 14px;
  margin-bottom: 4px;
}
.mob-next-step .btn {
  width: 100%;
  justify-content: center;
  font-size: 15px;
}

/* Card (matches budget calculator) */
.card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--sand-dark);
  overflow: hidden;
}

.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 20px;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-head {
  background: var(--green);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: .02em;
  margin: 0;
}

.card-head-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(240,165,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-body {
  padding: 20px;
}

/* Two-column layout for visum-vaccinaties page */
.vv-layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.vv-benefits-card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg, 20px);
  padding: 24px;
}

.vv-benefits-head {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.vv-benefits-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vv-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(44,74,62,.07);
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.vv-benefits-list li:last-child { border-bottom: none; }

.vv-b-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(44,74,62,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.vv-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  background: rgba(240,165,0,.07);
  border-left: 3px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 10px 12px;
}

.vv-tip svg { flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .page {
    padding: 0 16px 60px;
  }

  .mob-next-step {
    display: flex;
  }

  .page-head {
    margin-top: 20px;
    margin-bottom: 24px;
  }

  .page-head h1 {
    font-size: clamp(36px, 5vw, 60px);
  }

  .page-head p {
    font-size: 15px;
  }

  /* Stack two-column layout vertically */
  .vv-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Card fills width, less radius on mobile */
  .card {
    border-radius: 14px;
  }

  .card-body {
    padding: 16px;
  }

  /* Benefits card */
  .vv-benefits-card {
    border-radius: 14px;
    padding: 18px 16px;
  }

  .vv-benefits-list li {
    font-size: 14px;
  }
}

.ml-form-page {
  padding: clamp(28px, 6vw, 72px) 0 clamp(36px, 7vw, 88px);
}

.ml-form-intro {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;}

.ml-form-intro .eyebrow {
  color: var(--amber);
}

.ml-form-intro__eyebrow {
  margin-bottom: 12px;
}

.ml-form-intro .display {
  font-size: clamp(38px, 7vw, 64px);
  margin-bottom: 14px;
  line-height: 1.05;
}

.ml-form-align-center {
    display: flex;
    justify-content: center;
}

.ml-form-intro p {
  margin: 0;
  color: rgba(20, 27, 23, 0.75);
}

.ml-form-usp {
  margin-top: 12px !important;
  color: rgba(20, 27, 23, 0.86) !important;
  font-weight: 700;
}

.ml-form-shell {
  max-width: 420px;
  margin: 0 auto;
  background: #ffffff;
}

.ml-form-microcopy {
  margin: 8px 0 18px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(20, 27, 23, 0.62);
}

.ml-form-benefits {
  list-style: none;
  max-width: 420px;
  margin: 18px auto 0;
  padding: 0;
}

.ml-form-benefits li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 0;
  color: rgba(20, 27, 23, 0.84);
  line-height: 1.45;
}

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}

@keyframes ml-form-embedSubmitLoad {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Success message */
.ml-form-success-msg {
  text-align: center;
  font-weight: 700;
  color: var(--green);
  padding: 20px 0;
  font-size: 15px;
}

/* ── On-brand overrides for the MailerLite embed ── */
#mlb2-40252588 .ml-form-fieldRow input {
  background-color: var(--white) !important;
  color: var(--text) !important;
  border-color: var(--sand-dark) !important;
  border-radius: var(--radius) !important;
  border-style: solid !important;
  border-width: 1.5px !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 12px 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#mlb2-40252588 .ml-form-fieldRow input::placeholder {
  color: #83958d !important;
}

#mlb2-40252588 .ml-form-embedSubmit button.primary {
  background-color: var(--amber) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  cursor: pointer;
  font-family: 'Nunito', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  padding: 13px 20px !important;
  letter-spacing: 0.01em !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

#mlb2-40252588 .ml-form-embedSubmit button.primary:hover {
  background-color: #d49200 !important;
}

#mlb2-40252588 .ml-form-embedSubmit {
  margin: 10px 0 0;
}

#mlb2-40252588 .ml-block-field {
  text-align: left !important;
}

#mlb2-40252588 form {
  margin: 0;
  width: 100%;
}

#mlb2-40252588 .ml-form-fieldRow {
  margin: 0 0 10px;
  width: 100%;
}

#mlb2-40252588 .ml-form-fieldRow.ml-last-item {
  margin: 0;
}

#mlb2-40252588 .ml-form-embedSubmit button.loading {
  display: none;
}

.ml-error input,
.ml-error textarea,
.ml-error select {
  border-color: #ff0000 !important;
}

.ml-error .label-description,
.ml-error .label-description p,
.ml-error .label-description p a,
.ml-error label:first-child {
  color: #ff0000 !important;
}

@media only screen and (max-width: 640px) {
  .ml-form-page {
    padding-top: 20px;
  }

  .ml-form-shell {
    border-radius: 12px;
  }
}
