/* MTL Theme - Mobiele Traplift - Charcoal #18181B + Turquoise #14B8A6 */
:root {
  --mtl-brand: #18181B;
  --mtl-cta: #14B8A6;
  --mtl-bg: #FAFAFA;
  --mtl-white: #FFFFFF;
  --mtl-text: #18181B;
  --mtl-text-light: #F4F4F5;
  --mtl-cta-dark: #0F9A8B;
  --mtl-font: Verdana, Geneva, Tahoma, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: var(--mtl-font);
  background: var(--mtl-bg);
  color: var(--mtl-text);
  font-weight: 400;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--mtl-brand); text-decoration: none; }
a:hover { opacity: 0.8; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.5;
  color: inherit;
}

/* ===== HEADER ===== */
.mtl-hdr {
  background: var(--mtl-brand);
  position: relative;
  padding: 0 24px;
}

.mtl-hdr__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.mtl-hdr__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.mtl-hdr__logo img {
  height: 38px;
  width: auto;
}

.mtl-hdr__nav { display: flex; align-items: center; gap: 32px; }
.mtl-hdr__nav ul { list-style: none; display: flex; gap: 28px; }
.mtl-hdr__nav ul li a {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.9rem;
  color: #FFFFFF;
}
.mtl-hdr__nav ul li a:hover { color: rgba(255,255,255,0.7); }

.mtl-hdr__cta {
  background: var(--mtl-cta);
  color: #18181B;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.mtl-hdr__cta:hover { background: var(--mtl-cta-dark); color: #18181B; }

/* Hamburger CSS-only */
.mtl-hdr__toggle { display: none; }
.mtl-hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.mtl-hdr__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}

/* ===== HERO ===== */
.mtl-hero {
  background: var(--mtl-brand);
  padding: 72px 24px 140px;
  position: relative;
  overflow: visible;
}

.mtl-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
}

.mtl-hero__left {}

.mtl-hero__eyecatch {
  display: none;
}

.mtl-hero h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  margin-bottom: 16px;
}

.mtl-hero__sub {
  color: #A1A1AA;
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.6;
  color: #A1A1AA;
}

.mtl-hero__bullets {
  list-style: none;
  margin-bottom: 0;
}

.mtl-hero__bullets li {
  color: #FFFFFF;
  font-size: 0.95rem;
  padding: 5px 0 5px 28px;
  position: relative;
  color: #FFFFFF;
}

.mtl-hero__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--mtl-cta);
  border-radius: 50%;
}

.mtl-hero__bullets li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--mtl-brand);
  border-bottom: 2px solid var(--mtl-brand);
}

/* Right side - circular image */
.mtl-hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mtl-hero__img-circle {
  width: 360px;
  height: 360px;
  max-width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.mtl-hero__img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Form card - tilted, overlapping next section */
.mtl-hero__form-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: -60px;
  position: relative;
  z-index: 10;
}

.mtl-form-card {
  background: var(--mtl-white);
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 40px 44px;
  width: 100%;
  max-width: 780px;
}

.mtl-form-card__inner {
}

.mtl-form-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mtl-brand);
  margin-bottom: 20px;
  text-align: center;
}

.mtl-form-card h2 span {
  color: var(--mtl-brand);
}

.mtl-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.mtl-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mtl-form__field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mtl-brand);
  letter-spacing: 0.05em;
}

.mtl-form__field input {
  border: 2px solid #E4E4E7;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: var(--mtl-font);
  color: var(--mtl-brand);
  background: #FAFAFA;
  font-weight: 400;
}

.mtl-form__field input:focus {
  outline: none;
  border-color: var(--mtl-cta);
}

.mtl-form__field--full {
  grid-column: 1 / -1;
}

.mtl-form__honey { display: none !important; visibility: hidden !important; }

.mtl-form__submit {
  width: 100%;
  background: var(--mtl-cta);
  color: var(--mtl-brand);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 14px 24px;
  cursor: pointer;
  font-family: var(--mtl-font);
  margin-top: 6px;
}

.mtl-form__submit:hover { background: var(--mtl-cta-dark); }

/* ===== TYPES SECTION ===== */
.mtl-types {
  background: var(--mtl-white);
  padding: 120px 24px 72px;
}

.mtl-types__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mtl-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--mtl-brand);
  margin-bottom: 12px;
  line-height: 1.2;
}

.mtl-section-subtitle {
  color: #52525B;
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 600px;
}

.mtl-types__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mtl-type-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #E4E4E7;
  background: var(--mtl-bg);
}

.mtl-type-card__img {
  overflow: hidden;
}

.mtl-type-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mtl-type-card__body {
  padding: 28px 32px;
}

.mtl-type-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--mtl-brand);
  margin-bottom: 6px;
}

.mtl-type-card__tag {
  display: inline-block;
  background: var(--mtl-cta);
  color: var(--mtl-brand);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mtl-type-card__desc {
  color: #52525B;
  font-size: 0.92rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.mtl-type-card__specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mtl-type-card__specs li {
  background: #F4F4F5;
  color: var(--mtl-brand);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--mtl-brand);
}

/* ===== WERKWIJZE ===== */
.mtl-werkwijze {
  background: var(--mtl-brand);
  padding: 72px 24px;
}

.mtl-werkwijze__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mtl-werkwijze .mtl-section-title { color: #FFFFFF; }
.mtl-werkwijze .mtl-section-subtitle { color: #A1A1AA; }

.mtl-werkwijze__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
  margin-top: 48px;
}

.mtl-werkwijze__line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 0;
}

.mtl-werkwijze__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.mtl-werkwijze__num {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.mtl-werkwijze__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.mtl-werkwijze__step-desc {
  font-size: 0.85rem;
  color: #A1A1AA;
  line-height: 1.55;
  color: #A1A1AA;
}

/* ===== CONTENT ===== */
.mtl-content {
  background: var(--mtl-bg);
  padding: 72px 24px;
}

.mtl-content__inner {
  max-width: 860px;
  margin: 0 auto;
}

.mtl-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mtl-brand);
  margin: 32px 0 14px;
}

.mtl-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mtl-brand);
  margin: 24px 0 10px;
}

.mtl-content p {
  color: #3F3F46;
  font-size: 0.97rem;
  margin-bottom: 14px;
  line-height: 1.7;
}

.mtl-content ul, .mtl-content ol {
  margin: 12px 0 16px 20px;
  color: #3F3F46;
}

.mtl-content li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3F3F46;
}

/* ===== TARIEVEN ===== */
.mtl-tarieven {
  background: var(--mtl-white);
  padding: 72px 24px;
}

.mtl-tarieven__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mtl-tarieven__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mtl-tarief-card {
  border: 2px solid #E4E4E7;
  border-radius: 10px;
  padding: 32px 28px;
  background: var(--mtl-bg);
  text-align: center;
}

.mtl-tarief-card--featured {
  border-color: var(--mtl-brand);
  background: var(--mtl-brand);
}

.mtl-tarief-card__label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mtl-brand);
  margin-bottom: 12px;
}

.mtl-tarief-card--featured .mtl-tarief-card__label {
  color: #fff;
}

.mtl-tarief-card__price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--mtl-brand);
  margin-bottom: 4px;
  line-height: 1;
}

.mtl-tarief-card--featured .mtl-tarief-card__price {
  color: #FFFFFF;
}

.mtl-tarief-card__unit {
  font-size: 0.85rem;
  color: #71717A;
  margin-bottom: 20px;
}

.mtl-tarief-card--featured .mtl-tarief-card__unit {
  color: #A1A1AA;
}

.mtl-tarief-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mtl-brand);
  margin-bottom: 14px;
  color: var(--mtl-brand);
}

.mtl-tarief-card--featured .mtl-tarief-card__name {
  color: #FFFFFF;
}

.mtl-tarief-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.mtl-tarief-card__features li {
  font-size: 0.88rem;
  color: #52525B;
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.5;
  color: #52525B;
}

.mtl-tarief-card--featured .mtl-tarief-card__features li {
  color: #A1A1AA;
}

.mtl-tarief-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--mtl-cta);
  border-radius: 50%;
}

.mtl-tarief-btn {
  display: block;
  background: var(--mtl-cta);
  color: var(--mtl-brand);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 5px;
  text-align: center;
}

.mtl-tarief-btn:hover { background: var(--mtl-cta-dark); color: var(--mtl-brand); }

/* ===== FAQ ===== */
.mtl-faq {
  background: var(--mtl-bg);
  padding: 72px 24px;
}

.mtl-faq__inner {
  max-width: 860px;
  margin: 0 auto;
}

.mtl-faq__list {
  margin-top: 40px;
}

.mtl-faq__item {
  border-bottom: 1px solid #E4E4E7;
}

.mtl-faq__q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mtl-brand);
  padding: 18px 32px 18px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  color: var(--mtl-brand);
}

.mtl-faq__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--mtl-cta);
  line-height: 1;
}

details[open] > .mtl-faq__q::after { content: '-'; }

.mtl-faq__a {
  color: #52525B;
  font-size: 0.93rem;
  padding: 0 0 18px;
  line-height: 1.7;
  color: #52525B;
}

/* ===== CTA SECTION ===== */
.mtl-cta {
  background: var(--mtl-cta);
  padding: 72px 24px;
  text-align: center;
}

.mtl-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.mtl-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--mtl-brand);
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--mtl-brand);
}

.mtl-cta p {
  color: var(--mtl-brand);
  font-size: 1rem;
  margin-bottom: 28px;
  opacity: 0.8;
  color: var(--mtl-brand);
}

.mtl-cta__btn {
  display: inline-block;
  background: var(--mtl-brand);
  color: var(--mtl-white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 6px;
}

.mtl-cta__btn:hover { background: #2D2D31; color: #FFFFFF; }

/* ===== FOOTER ===== */
.mtl-ftr {
  background: #0F0F10;
  padding: 56px 24px 28px;
}

.mtl-ftr__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mtl-ftr__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.mtl-ftr__col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.mtl-ftr p, .mtl-ftr address {
  color: #A1A1AA;
  font-size: 0.88rem;
  line-height: 1.65;
  font-style: normal;
  color: #A1A1AA;
}

.mtl-ftr__nav ul {
  list-style: none;
}

.mtl-ftr__nav ul li {
  margin-bottom: 8px;
}

.mtl-ftr__nav ul li a {
  color: #A1A1AA;
  font-size: 0.88rem;
  color: #A1A1AA;
}

.mtl-ftr__nav ul li a:hover { color: #fff; }

.mtl-ftr__bottom {
  border-top: 1px solid #27272A;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mtl-ftr__copy {
  color: #a1a1aa; /* contrast fix: was #52525B (2.47:1 on #0f0f10), now #a1a1aa (7.48:1) */
  font-size: 0.8rem;
}

.mtl-ftr__logo-txt {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .mtl-hero__inner {
    grid-template-columns: 1fr;
  }

  .mtl-hero__right {
    order: -1;
  }

  .mtl-hero__img-circle {
    width: 240px;
    height: 240px;
  }

  .mtl-hero__form-wrap {
    margin-bottom: -40px;
  }

  .mtl-werkwijze__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .mtl-werkwijze__line { display: none; }

  .mtl-types__cards .mtl-type-card {
    grid-template-columns: 1fr;
  }

  .mtl-type-card__img {
    height: 200px;
  }

  .mtl-tarieven__grid {
    grid-template-columns: 1fr;
  }

  .mtl-ftr__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .mtl-hdr__nav ul { display: none; }
  .mtl-hdr__toggle:checked ~ .mtl-hdr__nav ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--mtl-brand);
    padding: 16px 24px;
    border-top: 1px solid #27272A;
    z-index: 999;
  }
  .mtl-hdr__burger { display: flex; }
  .mtl-hdr__nav { position: static; }

  .mtl-form-card { padding: 28px 20px; }
  .mtl-form__grid { grid-template-columns: 1fr; }
  .mtl-form-card__inner { transform: rotate(1deg); }

  .mtl-hero { padding: 48px 16px 110px; }
  .mtl-types { padding: 100px 16px 48px; }

  .mtl-werkwijze__timeline {
    grid-template-columns: 1fr;
  }

  .mtl-ftr__bottom {
    flex-direction: column;
    text-align: center;
  }
}
