:root {
  --blue-dark: #001f9d;
  --blue-main: #0328b9;
  --blue-soft: #1d4ee8;
  --accent: #f5b700;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

#pricing-plans {
  scroll-margin-top: 20px;
}

#klantreviews {
  scroll-margin-top: 20px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #efefef;
}

/* Voorkomt horizontaal scrollen door te brede media op kleine schermen */
img,
video {
  max-width: 100%;
  height: auto;
}

.hero {
  min-height: 620px;
  background:
    linear-gradient(118deg, rgba(4, 27, 144, 0.92) 0%, rgba(6, 51, 197, 0.88) 48%, rgba(8, 48, 191, 0.82) 100%),
    linear-gradient(180deg, #041b90 0%, #0633c5 42%, #5a6fd0 72%, #e4e6ef 100%);
  position: relative;
  /* Alleen horizontaal afkappen (decoratieve cirkels); verticaal niet, anders verdwijnt content onderaan de hero. */
  overflow-x: hidden;
  overflow-y: visible;
  border-bottom: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.2;
  pointer-events: none;
}

.hero::before {
  width: 360px;
  height: 360px;
  right: -80px;
  top: -110px;
  background: linear-gradient(180deg, #2e66ff, #3564ff);
  opacity: 0.18;
}

.hero::after {
  width: 170px;
  height: 170px;
  right: 58px;
  top: 88px;
  background: linear-gradient(180deg, #6fa8ff, #4f7dff);
  opacity: 0.16;
}

/* Contactbalk boven hero (witte strip op blauwe achtergrond) */
.contact-strip-wrap {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: max(12px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) 0
    max(16px, env(safe-area-inset-left, 0px));
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding: 14px 20px 14px 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(4, 20, 90, 0.18);
}

.contact-strip-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.contact-strip-logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: min(220px, 44vw);
  object-fit: contain;
}

.contact-strip-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
}

.contact-strip-actions--icons {
  gap: 6px 10px;
}

.contact-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0e1a43;
  text-decoration: none;
  font-size: clamp(13px, 2.1vw, 15px);
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.contact-strip-link--icon-only {
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 10px;
  border-radius: 12px;
  gap: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.contact-strip-link--icon-only:hover {
  background: rgba(3, 40, 185, 0.06);
}

.contact-strip-link:hover {
  color: #0328b9;
}

.contact-strip-link:focus-visible {
  outline: 2px solid #0328b9;
  outline-offset: 3px;
  border-radius: 6px;
}

.contact-strip-icon {
  display: flex;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #0e1a43;
}

.contact-strip-link--icon-only .contact-strip-icon {
  width: 24px;
  height: 24px;
}

.contact-strip-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-strip-link--icon-only .contact-strip-icon svg {
  width: 24px;
  height: 24px;
}

.contact-strip-link--wa:hover .contact-strip-icon {
  color: #128c7e;
}

.contact-strip-link--mail:hover .contact-strip-icon {
  color: #0328b9;
}

.contact-strip-link--tg:hover .contact-strip-icon {
  color: #229ed9;
}

@media (max-width: 520px) {
  .contact-strip {
    padding: 12px 14px;
  }

  .contact-strip-actions:not(.contact-strip-actions--icons) {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }

  .contact-strip-actions--icons {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: auto;
    gap: 4px;
  }

  .contact-strip-link:not(.contact-strip-link--icon-only) {
    white-space: normal;
  }
}

/* Mobiel / smalle tablet: contact-iconen links, JokerTV-logo rechts */
@media (max-width: 768px) {
  .contact-strip {
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }

  .contact-strip-actions.contact-strip-actions--icons {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: max(4px, 1.2vw);
  }

  .contact-strip-brand {
    order: 2;
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .contact-strip-logo {
    height: clamp(40px, 9vw, 50px);
    max-width: min(184px, 48vw);
  }

  .contact-strip-link--icon-only {
    min-width: 46px;
    min-height: 46px;
  }
}

/* Touch: iets grotere tikdoelen (WCAG-richtlijn ca. 44px) */
@media (hover: none) and (pointer: coarse) {
  .cta-btn {
    min-height: 48px;
    font-size: 13px;
  }

  .plan-btn {
    min-height: 44px;
    font-size: 12px;
  }

  .contact-btn {
    min-height: 48px;
  }

  .faq-item summary {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px max(24px, env(safe-area-inset-right, 0px)) 48px max(24px, env(safe-area-inset-left, 0px));
}

.trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trustpilot small {
  opacity: 0.92;
  font-size: 12px;
}

.trustpilot-block {
  margin-bottom: 9px;
}

.trustpilot-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.trustpilot-sub {
  margin-top: 4px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #e8edff;
  font-weight: 500;
}

.trustpilot-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.rate-box {
  width: 15px;
  height: 15px;
  border-radius: 2px;
  background: #00b67a;
  display: inline-block;
}

.trustpilot-rating small {
  margin-left: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
}

.star {
  color: #23e082;
  font-size: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #0a2f9f 0%, #1262ff 100%);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(138, 179, 255, 0.35);
}

.icon-activation {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(7, 20, 66, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.icon-activation svg {
  width: 14px;
  height: 14px;
}

.text-activation {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
}

h1 {
  margin: 0;
  font-size: clamp(26px, 5.8vw + 0.6rem, 56px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.35px;
  max-width: 760px;
  text-wrap: balance;
}

h1 span {
  color: var(--accent);
}

.country {
  font-size: 0.64em;
  font-weight: 700;
  letter-spacing: 1px;
  vertical-align: baseline;
}

p {
  max-width: 760px;
  margin: 14px 0 20px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(252px, 100%);
  min-height: 44px;
  padding: 10px 16px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #3fc4ff 0%, #2446ff 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

/* Bootstrap-achtige helpers (template gebruikt deze class-namen) */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-0 {
  margin-bottom: 0;
}

.ms-3 {
  margin-left: 12px;
}

.bg-white {
  background: #ffffff;
}

.rounded {
  border-radius: 12px;
}

.primary-shadow {
  box-shadow: 0 14px 32px rgba(15, 28, 78, 0.14), 0 4px 10px rgba(15, 28, 78, 0.06);
}

.feature-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.card {
  background: #fff;
  color: #0d1738;
  border-radius: 4px;
  padding: 11px 12px 10px;
  box-shadow: 0 7px 16px rgba(10, 24, 83, 0.2);
  min-height: 106px;
}

.feature-cards .card.promo-item {
  padding: 18px 18px 20px;
  border-radius: 12px;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.feature-cards .promo-top {
  flex-shrink: 0;
  /* gap i.p.v. alleen ms-3: .promo-heading heeft margin:0 en overschrijft ms-3 */
  gap: 14px;
}

.feature-cards .promo-top svg {
  width: 1.75em;
  height: 1.75em;
  flex-shrink: 0;
  color: #000000;
}

.feature-cards .promo-item h6,
.feature-cards .promo-item .promo-heading {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.28;
  color: #1a1f36;
  letter-spacing: -0.02em;
}

.feature-cards .promo-item p.mb-0 {
  margin: 0;
  color: #6c757d;
  font-size: 13px;
  line-height: 1.52;
  max-width: none;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.22;
}

.card p {
  margin: 0;
  color: #5a6080;
  font-size: 10.2px;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 30px;
  }

  .cta-btn {
    width: min(100%, 260px);
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }

  .feature-cards .promo-item h6,
  .feature-cards .promo-item .promo-heading {
    font-size: 13px;
  }

  .feature-cards .promo-item p.mb-0 {
    font-size: 12px;
  }
}

.plans-section {
  background: #f3f3f5;
  position: relative;
  padding: 42px max(12px, env(safe-area-inset-right, 0px)) 34px max(12px, env(safe-area-inset-left, 0px));
  overflow: hidden;
}

.plans-section::before,
.plans-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid #ef7fa4;
  border-radius: 50%;
  opacity: 0.38;
}

.plans-section::before {
  left: -140px;
  bottom: 32px;
}

.plans-section::after {
  right: -170px;
  top: -70px;
}

.plans-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.plans-wrap h2 {
  margin: 0;
  color: #0e1a43;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.plans-promo {
  margin: 14px auto 16px;
  width: 420px;
  max-width: 100%;
  height: 50px;
  border-radius: 4px;
  background: linear-gradient(120deg, #03185e, #0a2ea8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  box-shadow: 0 8px 16px rgba(14, 27, 72, 0.2);
}

.plans-promo p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  text-align: left;
}

.plan-card {
  background: #fff;
  border-radius: 4px;
  padding: 14px 12px 12px;
  box-shadow: 0 6px 15px rgba(31, 43, 89, 0.15);
  min-height: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plan-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.plan-name {
  margin: 0;
  color: #1c2247;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.plan-badge {
  align-self: flex-start;
  font-size: 8px;
  font-weight: 600;
  color: #c18b00;
  border: 1px solid #f0d48a;
  border-radius: 10px;
  padding: 2px 6px;
}

.plan-sub {
  margin: 6px 0 8px;
  color: #8c90a8;
  font-size: 9.5px;
}

.pricing-label {
  margin: 10px 0 8px;
  color: #2f4bff;
  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 500;
}

.plan-price {
  margin: 0 0 10px;
  color: #18234f;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
}

.plan-price small {
  font-size: 10px;
  color: #6f7592;
  font-weight: 600;
}

.plan-list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 7px;
  color: #4f5877;
  font-size: 10px;
  line-height: 1.36;
}

.plan-list-svg li {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-list-svg li::before {
  display: none;
}

.plan-list-svg .me-2 {
  display: inline-flex;
  flex: 0 0 14px;
  margin-top: 1px;
}

.plan-list-svg .me-2 svg {
  width: 14px;
  height: 14px;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='0.5' y='0.5' width='15' height='15' rx='3' fill='%233f7cff'/%3E%3Cpath d='M4 8.2 6.6 10.8 12 5.4' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.plan-list li.icon-screen::before {
  width: 15px;
  height: 11px;
  top: 3px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14'%3E%3Crect x='1.2' y='1.2' width='17.6' height='10' rx='1.6' fill='none' stroke='%232f4bff' stroke-width='1.8'/%3E%3Cpath d='M7.4 12.4h5.2' stroke='%232f4bff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E\");
}

.plan-list li.icon-adult::before {
  width: 15px;
  height: 15px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Crect x='1' y='1' width='16' height='12' rx='2' fill='none' stroke='%232f4bff' stroke-width='1.7'/%3E%3Cpath d='M4 5.5h10M4 8h10' stroke='%232f4bff' stroke-width='1.5'/%3E%3Ccircle cx='14.1' cy='13.8' r='3.2' fill='none' stroke='%23ff3366' stroke-width='1.6'/%3E%3Cpath d='M12.7 12.4l2.8 2.8M15.5 12.4l-2.8 2.8' stroke='%23ff3366' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E\");
}

.plan-list li.icon-tv::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='1.5' y='3.2' width='13' height='8.8' rx='1.8' fill='none' stroke='%232f4bff' stroke-width='1.8'/%3E%3Cpath d='M5.4 14h5.2' stroke='%232f4bff' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E\");
}

.plan-list li.icon-channels::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='1.3' y='1.3' width='13.4' height='13.4' rx='2' fill='none' stroke='%232f4bff' stroke-width='1.7'/%3E%3Cpath d='M4.2 5.2h7.6M4.2 8h7.6M4.2 10.8h7.6' stroke='%232f4bff' stroke-width='1.4'/%3E%3C/svg%3E\");
}

.plan-list li.icon-apps::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1.7 10 5.2h3.7l-2.4 2.2.8 3.6L8 9.5 3.9 11l.8-3.6L2.3 5.2H6z' fill='%232f4bff'/%3E%3C/svg%3E\");
}

.plan-list li.icon-sport::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='6.4' fill='none' stroke='%232f4bff' stroke-width='1.8'/%3E%3Cpath d='M8 4.4 9.6 5.6 9 7.6H7l-.6-2L8 4.4zm-2.3 4h4.6l-.7 2H6.4l-.7-2z' fill='%232f4bff'/%3E%3C/svg%3E\");
}

.plan-list li.icon-hd::before {
  width: 16px;
  height: 12px;
  top: 2px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 14'%3E%3Crect x='1' y='1' width='20' height='12' rx='2' fill='%232f4bff'/%3E%3Ctext x='4' y='10' font-size='7' font-family='Arial, sans-serif' font-weight='700' fill='white'%3EHD%3C/text%3E%3C/svg%3E\");
}

.plan-list li.icon-catchup::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.1 7.8a4.9 4.9 0 1 0 1.7-3.6' fill='none' stroke='%232f4bff' stroke-width='1.8'/%3E%3Cpath d='M2 3.6v3.3h3.3' fill='none' stroke='%232f4bff' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E\");
}

.plan-list li.icon-flag::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 2v12' stroke='%232f4bff' stroke-width='1.8'/%3E%3Cpath d='M4.2 3.1h8l-1.8 2 1.8 2h-8z' fill='none' stroke='%232f4bff' stroke-width='1.6'/%3E%3C/svg%3E\");
}

.plan-list li.icon-lightning::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M9 1.2 3.9 8h3l-.8 6.5 5.8-7.2H8.8z' fill='%232f4bff'/%3E%3C/svg%3E\");
}

.plan-list li.icon-gears::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M6.4 2.2h3.2l.3 1.2 1 .5 1.2-.7 1.8 1.8-.7 1.2.5 1 .2.3 1.2.3v3l-1.2.3-.5 1 .7 1.2-1.8 1.8-1.2-.7-1 .5-.3 1.2H6.4l-.3-1.2-1-.5-1.2.7-1.8-1.8.7-1.2-.5-1L1 10.5v-3l1.2-.3.5-1-.7-1.2 1.8-1.8 1.2.7 1-.5z' fill='%232f4bff'/%3E%3Ccircle cx='8' cy='8' r='2.2' fill='white'/%3E%3C/svg%3E\");
}

.plan-list li.icon-refresh::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.7 6.8a5.7 5.7 0 0 0-9.9-2' fill='none' stroke='%232f4bff' stroke-width='1.7'/%3E%3Cpath d='M3.5 2.7v3.5H7' fill='none' stroke='%232f4bff' stroke-width='1.7' stroke-linecap='round'/%3E%3Cpath d='M2.3 9.2a5.7 5.7 0 0 0 9.9 2' fill='none' stroke='%232f4bff' stroke-width='1.7'/%3E%3Cpath d='M12.5 13.3V9.8H9' fill='none' stroke='%232f4bff' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E\");
}

.plan-list li.icon-euro::before {
  width: 14px;
  height: 14px;
  top: 1px;
  background-image: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11.8 4A4.8 4.8 0 0 0 8 2.4c-2.1 0-3.9 1.3-4.5 3.2H2v1.5h1.1v1H2V9h1c.6 2.1 2.5 3.6 4.7 3.6 1.5 0 2.8-.6 3.8-1.7' fill='none' stroke='%232f4bff' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E\");
}

.plan-btn {
  margin-top: auto;
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  box-sizing: border-box;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  background: linear-gradient(90deg, #2b9eff, #1e43ff);
}

.plan-btn.dark {
  background: linear-gradient(90deg, #2b9eff, #1e43ff);
}

.ribbon {
  position: absolute;
  right: -34px;
  top: 18px;
  transform: rotate(45deg);
  background: #ff2f72;
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 4px 36px;
}

.popular-badge {
  position: absolute;
  right: -44px;
  top: 18px;
  transform: rotate(45deg);
  background: linear-gradient(90deg, #ff516b, #ff2678);
  color: #fff;
  font-size: 8px;
  letter-spacing: 0.25px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 40px;
  z-index: 2;
}

@media (max-width: 620px) {
  .plans-wrap h2 {
    font-size: 30px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }
}

/* Klantreviews: na “opties op maat”, vóór “Hoe werkt het?” — rustige overgang vanaf custom-plan */
.reviews-section--nexu {
  position: relative;
  z-index: 2;
  padding: 48px max(12px, env(safe-area-inset-right, 0px)) 56px max(12px, env(safe-area-inset-left, 0px));
  /* Zelfde basis als .custom-plan-section (#f3f3f5) voor een rustige, doorlopende sectie */
  background: #f3f3f5;
  color: #1a1a1a;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.reviews-section__deco {
  position: absolute;
  right: max(-8%, -72px);
  bottom: -42%;
  width: min(58vw, 520px);
  max-width: none;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.reviews-section__deco img {
  display: block;
  width: 100%;
  height: auto;
}

.reviews-wrap--nexu {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.reviews-header--nexu {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 720px;
}

.reviews-header--nexu h2 {
  margin: 0 0 16px;
  color: #0e1a43;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.45px;
  line-height: 1.18;
  text-wrap: balance;
}

.reviews-intro--nexu {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

/* Swiper reviews — zelfde structuur als hm2-feedback-item / swiper-slide */
.reviews-swiper.hm2-feedback-slider {
  position: relative;
  margin: 0 auto;
  max-width: 420px;
  padding: 4px 2px 8px;
  overflow: hidden;
}

.reviews-swiper .swiper-slide {
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.hm2-feedback-item {
  box-sizing: border-box;
  padding: 22px 20px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(15, 23, 42, 0.07);
  text-align: left;
  font-family: "Poppins", sans-serif;
}

.hm2-feedback-item .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.hm2-feedback-item .align-item-center,
.hm2-feedback-item .align-items-center {
  display: flex;
  justify-content: center;
}

.hm2-feedback-item .flex-shrink-0 {
  flex-shrink: 0;
}

.hm2-feedback-item .m-3 {
  margin: 1rem;
}

.hm2-feedback-item .mb-30 {
  margin-bottom: 30px;
}

.hm2-feedback-item .mt-4 {
  margin-top: 1rem;
}

.hm2-feedback-item .ms-3 {
  margin-left: 1rem;
}

.hm2-feedback-item .mb-1 {
  margin-bottom: 0.25rem;
}

.hm2-feedback-item .d-flex {
  display: flex;
}

.hm2-feedback-item .align-items-center {
  align-items: center;
}

.hm2-feedback-item.bg-white {
  background: #fff;
}

.hm2-feedback-item.position-relative {
  position: relative;
}

.hm2-feedback-item .position-absolute {
  position: absolute;
}

.hm2-feedback-item .text-center {
  text-align: center;
}

.hm2-feedback-item .rounded-circle {
  border-radius: 50%;
}

.hm2-feedback-item .text-white {
  color: #fff;
}

.hm2-feedback-item .quote-text {
  margin: 0;
  color: #6a6f7a;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

.hm2-feedback-item .clients-info h6 {
  margin: 0 0 0.25rem;
  font-size: 15px;
  font-weight: 700;
  color: #0c1024;
}

.hm2-feedback-item .clients-info span {
  font-size: 14px;
  color: #8b909c;
}

.hm2-feedback-item .quote-icon {
  right: 14px;
  bottom: 14px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0328b9;
  box-shadow: 0 8px 22px rgba(3, 40, 185, 0.38);
}

.hm2-feedback-item .quote-icon svg {
  display: block;
}

@media (max-width: 620px) {
  .reviews-section--nexu {
    padding: 36px max(12px, env(safe-area-inset-right, 0px)) 44px max(12px, env(safe-area-inset-left, 0px));
  }

  .hm2-feedback-item {
    padding: 18px 16px 36px;
  }

  .hm2-feedback-item .quote-icon {
    width: 46px;
    height: 46px;
    right: 12px;
    bottom: 12px;
  }
}

.custom-plan-section {
  background: #f3f3f5;
  padding: 14px max(12px, env(safe-area-inset-right, 0px)) 26px max(12px, env(safe-area-inset-left, 0px));
}

.custom-plan-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.custom-plan-card {
  min-height: 198px;
  border-radius: 8px;
  background: linear-gradient(120deg, #04166d 0%, #04115c 50%, #020c4e 100%);
  text-align: center;
  padding: 36px 24px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 9px 20px rgba(11, 20, 69, 0.2);
}

.leaf-shape {
  position: absolute;
  left: -8px;
  bottom: -24px;
  width: 120px;
  height: 170px;
  opacity: 0.16;
  background: radial-gradient(ellipse at 30% 65%, #4ce0da 0%, #3ac0d4 45%, transparent 60%);
  transform: rotate(-8deg);
}

.custom-plan-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.custom-plan-card p {
  margin: 0 auto;
  max-width: 760px;
  color: #e8edff;
  font-size: clamp(14px, 1.5vw, 22px);
  line-height: 1.5;
}

.custom-plan-contact-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

.custom-plan-contact-row .contact-btn {
  margin-top: 0;
}

.contact-btn {
  margin-top: 24px;
  width: min(272px, 100%);
  max-width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  background: linear-gradient(90deg, #1da851 0%, #25d366 100%);
}

.how-it-works-section {
  position: relative;
  overflow: hidden;
}

.how-it-works__blue {
  background: linear-gradient(165deg, #003d99 0%, #0047ab 45%, #0a5fc9 100%);
  padding: 52px max(12px, env(safe-area-inset-right, 0px)) 72px max(12px, env(safe-area-inset-left, 0px));
}

.how-it-works-wrap {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.how-it-works-wrap--top h2 {
  margin: 0 0 32px;
  color: #ffffff;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  text-align: left;
}

.how-it-works-steps {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 18px;
  position: relative;
  padding: 0 0 30px;
}

.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 46px;
  bottom: 2px;
  width: 2px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
  border-radius: 2px;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #ffffff;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  margin: 4px 0 8px;
  color: #ffffff;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.2;
  font-weight: 700;
}

.step-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.5;
  max-width: 560px;
}

.how-it-works__wave {
  line-height: 0;
  margin-top: -56px;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.how-it-works__wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 8vw, 56px);
}

.how-it-works__light {
  background: #f5f6f8;
  padding: 0 16px 64px;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

.how-it-works-wrap--bottom {
  padding-top: 8px;
}

.how-it-works-cta {
  margin: -52px auto 0;
  width: min(720px, 100%);
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(8, 30, 80, 0.18);
  position: relative;
  z-index: 3;
}

.how-it-works-cta p {
  margin: 0 auto 20px;
  color: #1c2740;
  font-size: clamp(17px, 2vw, 26px);
  line-height: 1.35;
  font-weight: 600;
  max-width: 640px;
}

.how-it-works-cta-iptv {
  color: #e8940a;
  font-weight: 800;
}

.how-it-works-cta-btn {
  width: min(280px, 100%);
  min-height: 48px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #1a8cff 0%, #2563eb 100%);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.how-it-works-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.4);
}

.how-it-works-devices {
  margin-top: 48px;
  text-align: center;
}

.how-it-works-devices__title {
  margin: 0 0 28px;
  color: #0f172a;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.how-it-works-devices__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 16px;
}

.how-device-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 96px;
  padding: 14px 12px 12px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  color: #334155;
}

.how-device-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0047ab;
}

.how-device-tile__label {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.faq-section {
  background: #efefef;
  padding: 52px max(12px, env(safe-area-inset-right, 0px)) 56px max(12px, env(safe-area-inset-left, 0px));
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.faq-wrap h2 {
  margin: 0 0 24px;
  text-align: center;
  color: #061346;
  font-size: clamp(29px, 3.6vw, 52px);
  line-height: 1.18;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(18, 30, 69, 0.12);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #0a163f;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 600;
  line-height: 1.4;
  padding: 16px 42px 16px 16px;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-symbol {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}

.faq-symbol::before,
.faq-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 20px;
  background: #2560ff;
  transform: translate(-50%, -50%);
}

.faq-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-symbol::after {
  display: none;
}

.faq-item p {
  margin: 0;
  color: #3e4a66;
  font-size: clamp(12px, 0.96vw, 14px);
  line-height: 1.56;
  padding: 0 16px 18px;
  max-width: none;
}

.footer-es {
  background: #06176b;
  color: #ffffff;
}

.footer-es-main {
  padding-top: 54px;
  padding-right: max(12px, env(safe-area-inset-right, 0px));
  padding-bottom: calc(42px + env(safe-area-inset-bottom, 0px));
  padding-left: max(12px, env(safe-area-inset-left, 0px));
}

.footer-es-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.footer-es-logo {
  width: 136px;
  height: auto;
  border-radius: 0;
  display: inline-block;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-es-brand p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
}

.footer-es-links h4,
.footer-es-payments h4 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.footer-es-links a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-es-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  align-items: stretch;
}

.footer-es-pay-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 0;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.footer-es-pay-item img {
  display: block;
  max-height: 30px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-es-pay-item--dual {
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
}

.footer-es-pay-item--dual img {
  max-height: 26px;
}

.footer-es-pay-item--wide {
  max-width: none;
}

.footer-es-pay-logo--paysafecard {
  max-height: 24px;
  width: auto;
  max-width: 100%;
}

.footer-es-pay-more {
  margin: 14px 0 0;
}

.footer-es-pay-more a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-es-pay-more a:hover {
  color: #ffffff;
}

.footer-es-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px max(12px, env(safe-area-inset-right, 0px)) max(16px, env(safe-area-inset-bottom, 0px))
    max(12px, env(safe-area-inset-left, 0px));
}

.footer-es-bottom-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-es-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
}

.footer-es-bottom-links {
  display: flex;
  gap: 14px;
}

.footer-es-bottom-links a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 620px) {
  .custom-plan-card {
    padding: 28px 16px;
    min-height: auto;
  }

  .custom-plan-card h3 {
    font-size: 30px;
  }

  .custom-plan-card p {
    font-size: 16px;
  }

  .how-it-works__blue {
    padding: 36px 12px 56px;
  }

  .how-it-works-wrap--top h2 {
    margin-bottom: 22px;
    font-size: 30px;
  }

  .how-step {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    padding-bottom: 22px;
  }

  .how-step:not(:last-child)::after {
    left: 19px;
    top: 42px;
  }

  .step-number {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .step-content h3 {
    font-size: 19px;
  }

  .step-content p {
    font-size: 14px;
  }

  .how-it-works__wave {
    margin-top: -44px;
  }

  .how-it-works-cta {
    margin-top: -40px;
    padding: 26px 18px 22px;
    border-radius: 14px;
  }

  .how-it-works-cta p {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .how-it-works-devices {
    margin-top: 36px;
  }

  .how-it-works-devices__title {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .how-device-tile {
    min-width: 84px;
    padding: 12px 10px 10px;
  }

  .faq-section {
    padding: 38px 12px 44px;
  }

  .faq-wrap h2 {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-es-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* Betaalmethoden: grootste (paysafecard) bovenaan, daarna één kolom */
  .footer-es-pay-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .footer-es-pay-item {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-es-pay-item--wide {
    order: -1;
    max-width: none;
  }

  .footer-es-main {
    padding: 36px 12px 28px;
  }

  .footer-es-links h4,
  .footer-es-payments h4 {
    font-size: 20px;
  }

  .footer-es-brand p,
  .footer-es-links a {
    font-size: 14px;
  }

  .footer-es-bottom-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Sliderblok: één rustige band (films + sport), minder visuele herhaling */
.application-showcase {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 40px max(12px, env(safe-area-inset-right, 0px)) 48px max(12px, env(safe-area-inset-left, 0px));
  background: #f5f7fb;
}

.application-showcase--combined {
  padding-bottom: 44px;
}

.application-showcase__container {
  max-width: 1040px;
  margin: 0 auto;
}

.application-showcase__title-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.application-showcase__title {
  margin: 0;
  color: #0e1a43;
  font-size: clamp(19px, 2.6vw, 26px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.application-showcase__sport {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(14, 26, 67, 0.08);
}

.application-showcase__subtitle {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #1c2d66;
  line-height: 1.35;
}

.application-showcase .splide.mt-5 {
  margin-top: 1.35rem;
}

.application-showcase__sport .splide.mt-5 {
  margin-top: 1rem;
}

#movies-slider.splide,
#sports-slider.splide {
  margin-top: 0;
}

#movies-slider .splide__slide,
#sports-slider .splide__slide {
  display: flex;
}

#movies-slider .splide__slide img,
#sports-slider .splide__slide img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  min-height: 140px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  box-shadow: 0 3px 10px rgba(14, 27, 72, 0.1);
}

@media (max-width: 768px) {
  .application-showcase {
    padding: 32px 12px 40px;
  }

  .application-showcase--combined {
    padding-bottom: 36px;
  }

  .application-showcase__sport {
    margin-top: 1.5rem;
    padding-top: 1.35rem;
  }

  .application-showcase .splide.mt-5 {
    margin-top: 1rem;
  }

  #movies-slider .splide__slide img,
  #sports-slider .splide__slide img {
    max-height: 190px;
    min-height: 120px;
  }
}

/* Statische logo-raster (tv-nexu app_lists), tussen film- en sport-slider */
.brand-strip {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 26, 67, 0.08);
}

.brand-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
  max-width: 100%;
}

.brand-strip__grid--leagues {
  margin-top: 12px;
}

.brand-strip__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 8px 6px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(14, 27, 72, 0.08);
}

.brand-strip__cell img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-strip__grid {
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 8px;
  }

  .brand-strip__cell {
    min-height: 46px;
    padding: 6px 4px;
  }

  .brand-strip__cell img {
    max-height: 28px;
  }
}
