/* Features Page – Pricing-table style layout */

.page-features {
  background: #f5f7fa;
}

/* Hero */
.features-hero {
  padding-block: clamp(3rem, 6vw, 5rem) 1.5rem;
  text-align: left;
}

.features-hero .eyebrow {
  color: #0077b6;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0077b6;
}

.features-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.features-hero .text-lg {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.6;
}

.features-hero strong,
.features-matrix strong {
  font-weight: 700;
  color: #0f172a;
}

/* Jump Navigation – Pills */
.features-jump {
  padding-block: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5f7fa;
}

.features-jump__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-jump__list a {
  display: inline-block;
  color: #334155;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.features-jump__list a:hover {
  border-color: #0077b6;
  color: #0077b6;
  background: #f0f7ff;
}

.features-jump__list a.is-active {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
}

/* Feature Matrix – continuous list style */
.features-matrix {
  margin-bottom: 3rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.features-matrix__row {
  display: grid;
  grid-template-columns: 0.9fr 1fr auto;
  background: #ffffff;
  min-height: 64px;
  align-items: center;
  border-bottom: 1px solid #edf2f7;
}

.features-matrix__row:nth-child(odd) {
  background: #f9fafb;
}

.features-matrix__row--head {
  background: transparent;
  grid-template-columns: 1fr;
  border-bottom: none;
}

.features-matrix__row--head .features-matrix__cell--desc,
.features-matrix__row--head .features-matrix__cell--check {
  display: none;
}

.features-matrix__row--head .features-matrix__cell--category {
  padding: 2rem 1.5rem 0.75rem;
  background: transparent;
}

.features-matrix__cell {
  padding: 0.85rem 1.5rem;
  color: #273348;
  font-size: 14px;
  line-height: 1.5;
  display: block;
}


.features-matrix__cell--category {
  font-weight: 600;
  color: #1e2a40;
}
.features-matrix__cell--desc {
  color: #4a5568;
  font-weight: 300;
}

.features-matrix__cell--desc strong {
  font-weight: 600;
}

.features-matrix__cell--check {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
}

.features-matrix__cell--check i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  font-size: 0.75rem;
  border: 1px solid #bbf7d0;
}

.features-matrix__head-title {
  font-size: 1.25rem;
  font-weight: 730;
  letter-spacing: -0.02em;
  color: #1b2640;
  line-height: 1.5;
}

.features-matrix__head-subtitle {
  font-size: 0.95rem;
  color: #6f7f95;
  margin-top: 0.25rem;
  font-weight: 400;
  max-width: 700px;
  line-height: 1.5;
}


/* Payment badges */
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 0.375rem;
  background: #f1f5f9;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  line-height: 1;
}

.payment-badge i {
  font-size: 0.9rem;
  color: #64748b;
}

/* Mollie link badge */
.mollie-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  margin-top: 0.35rem;
}

.mollie-badge:hover {
  border-color: #c5d0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  text-decoration: none;
  color: #1a1a1a;
}

.mollie-badge__logo {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 0.9rem;
  color: #000000;
}

.mollie-badge__logo svg {
  height: 18px;
  width: auto;
  display: block;
}

.mollie-badge i {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* Feature tag / label */
.features-matrix__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0077b6;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  vertical-align: middle;
  margin-left: 0.375rem;
}

.features-matrix__tag--ki {
  color: #0ea5e9;
  background: #f0f9ff;
  border-color: #bae6fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 0.375rem;
}

.features-matrix__tag--ki i {
  font-size: 0.7rem;
  line-height: 1;
}

/* Mobile */
@media (max-width: 767px) {
  .features-matrix__row {
    grid-template-columns: 1fr auto;
    gap: 0;
    min-height: auto;
  }

  .features-matrix__cell {
    padding: 0.75rem 0.75rem;
  }

  .features-matrix__cell--category {
    grid-column: 1;
  }

  .features-matrix__cell--desc {
    grid-column: 1;
    border-left: none;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.25rem;
  }

  .features-matrix__cell--check {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    border-left: 1px solid #eef2f7;
    width: 40px;
  }

  .features-matrix__row--head .features-matrix__cell--desc {
    border-top: none;
  }

  .features-matrix__row--head .features-matrix__cell--category {
    padding: 1.5rem 0.75rem 0.5rem;
  }
}

/* CTA */
.features-cta {
  background: #0077b6;
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
  margin-top: 2rem;
  border-radius: 18px;
}

.features-cta h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.features-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.features-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.features-cta__buttons .btn-brand {
  background: #fff;
  color: #0077b6;
  border-color: #fff;
  font-weight: 600;
}

.features-cta__buttons .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.features-cta__buttons .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Hide WhatsApp teaser on this page */
.page-features .whatsapp-chat-teaser {
  display: none !important;
}
