: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%;
}

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

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

body {
  margin: 0;
  min-width: 0;
  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: 0;
  padding-bottom: 60px;
  background: linear-gradient(278.54deg, #001dac 15.93%, #000f57 98.7%);
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  border-bottom: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 312px;
  height: 312px;
  right: 0;
  bottom: 60px;
  background: linear-gradient(271.06deg, rgba(28, 64, 242, 0.7) 3.8%, rgba(1, 17, 100, 0) 89.03%);
  opacity: 0.5;
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -80px;
  top: 120px;
  background: linear-gradient(271.06deg, rgba(28, 64, 242, 0.45) 3.8%, rgba(1, 17, 100, 0) 89.03%);
  opacity: 0.35;
}

/* 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: 44px;
  width: auto;
  max-width: min(200px, 42vw);
  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(36px, 9vw, 44px);
    max-width: min(168px, 46vw);
  }

  .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-order-btn {
    min-height: 48px;
    font-size: 14px;
  }

  .custom-plan-btn {
    min-height: 48px;
  }

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

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px max(24px, env(safe-area-inset-right, 0px)) 0 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);
}

.hero-content p {
  margin-bottom: 28px;
}

.hero-content .cta-btn {
  margin-bottom: 36px;
}

.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 20px 80px rgba(0, 148, 255, 0.05);
}

.feature-cards {
  position: relative;
  z-index: 2;
  margin-top: -24px;
  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,
.feature-cards .promo-item {
  padding: 25px 20px;
  border-radius: 10px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #0d1738;
  box-shadow: 0 20px 80px rgba(0, 148, 255, 0.05);
}

.feature-cards .promo-top {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-cards .promo-top svg,
.feature-cards .svg-inline--fa.fa-2xl {
  width: 2em;
  height: 2em;
  flex: 0 0 2em;
  color: #000000;
}

.feature-cards .promo-item h6,
.feature-cards .promo-item .promo-heading {
  margin: 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.55;
  max-width: none;
}

.feature-cards .promo-item p.mb-0 strong {
  color: #1a1f36;
  font-weight: 700;
}

.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: -8px;
  }

  .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;
  z-index: 1;
  padding: 80px 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: 1180px;
  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: 20px;
  align-items: stretch;
  text-align: left;
}

.plans-grid-item {
  min-width: 0;
}

.plans-section .pricing-column {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 24px 28px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 50px rgba(125, 125, 125, 0.1);
}

.plans-section .pricing-column h3 {
  margin: 0;
  padding-right: 72px;
  color: #1c2247;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.plans-section .pricing-badge {
  position: absolute;
  top: 24px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 6px;
  background: #ffe4e9;
  font-size: 11px;
  font-weight: 600;
}

.plans-section .gradient-txt {
  color: #ff3b5c;
}

.plans-section .popular-badge {
  position: absolute;
  top: 42px;
  right: -72px;
  width: 260px;
  padding: 8px 0;
  background: linear-gradient(287.85deg, #ff0766 0%, #ff7e5d 95.32%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
  transform: rotate(40deg);
  z-index: 2;
}

.plans-section .pricing-label {
  display: block;
  margin: 18px 0 0;
  color: #2b59c3;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}

.plans-section .monthly-price {
  margin: 10px 0 0;
  color: #3d4459;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
}

.plans-section .monthly-price span {
  color: #8c90a8;
  font-size: 13px;
  font-weight: 600;
}

.plans-section .pricing-discount {
  display: block;
  margin-top: 6px;
  color: #ff3b5c;
  font-size: 12px;
  font-weight: 700;
}

.plans-section .feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.plans-section .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #7e7e8f;
  font-size: 13px;
  line-height: 1.45;
}

.plans-section .feature-list li + li {
  margin-top: 12px;
}

.plans-section .feature-list li span:first-child {
  flex: 0 0 auto;
  line-height: 1;
}

.plans-section .feature-list svg {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
}

.plans-section .plan-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 28px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #3fc4ff 0%, #2446ff 100%);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 18px rgba(36, 70, 255, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.plans-section .plan-order-btn:hover {
  background: linear-gradient(90deg, #5fd0ff 0%, #3a5cff 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(36, 70, 255, 0.35);
}

@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .plans-section .popular-badge {
    right: -58px;
    width: 220px;
    font-size: 10px;
  }
}

.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: 120px;
  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-box {
    padding: 36px 16px 32px;
  }

  .custom-plan-content h3 {
    font-size: 22px;
  }

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

  .custom-plan-box__flower {
    width: 90px;
    opacity: 0.4;
  }

  .how-it-works__blue {
    padding: 44px 16px 72px;
  }

  .how-it-works__header h2 {
    margin-bottom: 28px;
    font-size: clamp(26px, 7vw, 32px);
  }

  .how-it-works__steps {
    max-width: none;
  }

  .how-step {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    padding-bottom: 24px;
  }

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

  .how-step__num {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .how-step__body h3 {
    font-size: 17px;
  }

  .how-step__body p {
    font-size: 14px;
  }

  .how-it-works__curve {
    height: 36px;
  }

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

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

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

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

  .how-device-tile {
    min-height: 88px;
    padding: 12px 8px 10px;
  }

  .how-device-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 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;
  position: relative;
  z-index: 1;
}

.application-showcase--streaming .application-showcase__container {
  max-width: 1200px;
}

.application-showcase__decor {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(220px, 28vw);
  height: auto;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

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

.application-showcase__title-wrap--streaming {
  max-width: 760px;
  margin-bottom: 2.75rem;
}

.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__title-wrap--streaming .application-showcase__title {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.3;
}

.application-showcase__sport {
  margin-top: 4rem;
  padding-top: 0;
  border-top: none;
}

.application-showcase__title-wrap--sport {
  max-width: 760px;
  margin-bottom: 2.75rem;
}

.application-showcase__title--sport {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.3;
}

.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--streaming .splide.mt-5 {
  margin-top: 2rem;
}

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

#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);
}

#movies-slider .splide__slide img {
  max-height: 280px;
  min-height: 170px;
  border-radius: 10px;
  box-shadow: none;
}

#sports-slider .splide__slide img {
  max-height: 280px;
  min-height: 170px;
  border-radius: 10px;
  box-shadow: none;
}

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

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

  .application-showcase__sport {
    margin-top: 3rem;
    padding-top: 0;
  }

  .application-showcase__title-wrap--sport {
    margin-bottom: 2rem;
  }

  .application-showcase__title-wrap--streaming {
    margin-bottom: 2rem;
  }

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

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

  .application-showcase__decor {
    width: min(140px, 36vw);
    opacity: 0.35;
  }
}

/* Statische logo-raster (tv-nexu app_lists), tussen film- en sport-slider */
.brand-strip {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  padding-top: 0;
}

.brand-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: 100%;
}

.brand-strip__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 14px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(14, 27, 72, 0.08);
}

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

@media (max-width: 1100px) {
  .brand-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .brand-strip {
    margin-top: 1.5rem;
  }

  .brand-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-strip__cell {
    min-height: 62px;
    padding: 10px 8px;
    border-radius: 8px;
  }

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

@media (max-width: 480px) {
  .brand-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-strip__cell {
    min-height: 56px;
  }

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

/* Competitie-logo's (tv-nexu app_lists onder sport-slider) */
.league-strip {
  margin-top: 2rem;
}

.league-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  max-width: 100%;
}

.league-strip__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 14px 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(14, 27, 72, 0.08);
}

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

@media (max-width: 1100px) {
  .league-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .league-strip {
    margin-top: 1.5rem;
  }

  .league-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .league-strip__cell {
    min-height: 62px;
    padding: 10px 8px;
    border-radius: 8px;
  }

  .league-strip__cell img {
    max-height: 32px;
  }
}

@media (max-width: 480px) {
  .league-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .league-strip__cell {
    min-height: 56px;
  }

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

.custom-plan-box {
  position: relative;
  margin-top: 24px;
  padding: 48px 24px 44px;
  border-radius: 10px;
  background: linear-gradient(101.48deg, #102062 -0.49%, #060b43 97.87%);
  overflow: hidden;
  text-align: center;
}

.custom-plan-box__flower {
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 120px;
  max-width: 28%;
  height: auto;
  opacity: 0.55;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.custom-plan-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.custom-plan-content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  font-weight: 700;
}

.custom-plan-content p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.55;
}

.custom-plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 32px;
  border-radius: 8px;
  background: linear-gradient(287.85deg, #ff0766 0%, #ff7e5d 95.32%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(255, 7, 102, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-plan-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.custom-plan-btn:hover {
  background: rgba(255, 7, 102, 0.83);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 7, 102, 0.45);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #0a2ea8;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.hero-visual {
  position: absolute;
  right: max(12px, env(safe-area-inset-right, 0px));
  top: 120px;
  width: min(42vw, 420px);
  pointer-events: none;
  z-index: 1;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
}

.reviews-section {
  background: #f5f7fb;
  padding: 72px max(16px, env(safe-area-inset-right, 0px)) 80px max(16px, env(safe-area-inset-left, 0px));
}

.reviews-wrap {
  max-width: 1140px;
  margin: 0 auto;
}

.reviews-section__header {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.reviews-section__title {
  margin: 0 0 14px;
  color: #0e1a43;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.reviews-section__lead {
  margin: 0 auto;
  max-width: 560px;
  color: #51608f;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
}

.reviews-section__slider-panel {
  position: relative;
}

.reviews-feedback-swiper {
  overflow: hidden;
  padding: 12px 6px 4px;
  margin: 0 -6px;
}

.reviews-feedback-swiper .swiper-wrapper {
  align-items: stretch;
}

.reviews-feedback-swiper .swiper-slide {
  display: flex;
  height: auto;
  box-sizing: border-box;
}

.reviews-feedback-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 372px;
  max-height: 372px;
  box-sizing: border-box;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(14, 26, 67, 0.07);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(14, 27, 72, 0.06);
  text-align: left;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
  .reviews-feedback-item:hover {
    box-shadow: 0 14px 34px rgba(14, 27, 72, 0.1);
    transform: translateY(-2px);
  }
}

.reviews-feedback-item__shot {
  width: 100%;
  height: 148px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(14, 26, 67, 0.05);
  display: block;
  margin-bottom: 16px;
}

.reviews-feedback-item__quote {
  flex: 1 1 auto;
  margin: 0 0 16px;
  color: #445068;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.reviews-feedback-item__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(14, 26, 67, 0.08);
  flex-shrink: 0;
}

.reviews-feedback-item__meta strong {
  color: #0e1a43;
  font-size: 15px;
  font-weight: 700;
}

.reviews-feedback-item__meta span {
  color: #7a869e;
  font-size: 13px;
}

.reviews-section__pagination {
  position: relative;
  margin-top: 22px;
  text-align: center;
}

.reviews-section__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background: #c5cde0;
  opacity: 1;
  transition: width 0.25s ease, background 0.25s ease;
}

.reviews-section__pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #2446ff;
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 44px 12px 52px;
  }

  .reviews-section__header {
    margin-bottom: 2.25rem;
  }

  .reviews-feedback-item {
    padding: 18px;
    min-height: 340px;
    max-height: 340px;
  }

  .reviews-feedback-item__shot {
    height: 130px;
  }

  .reviews-feedback-item__quote {
    font-size: 13px;
    -webkit-line-clamp: 5;
  }

  .reviews-section__pagination {
    margin-top: 18px;
  }
}

.how-it-works {
  background: #f5f7fb;
}

.how-it-works__blue {
  position: relative;
  background: linear-gradient(165deg, #0328b9 0%, #0633c5 52%, #0a3fd4 100%);
  color: #fff;
  padding: 64px max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
  overflow: hidden;
}

.how-it-works__blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(63, 196, 255, 0.14) 0%, transparent 38%);
  pointer-events: none;
}

.how-it-works__inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.how-it-works__header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.how-it-works__header h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.how-it-works__steps {
  max-width: 560px;
  margin: 0 auto;
}

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

.how-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 54px;
  bottom: 2px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.18) 100%);
}

.how-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.how-step__body h3 {
  margin: 6px 0 8px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.how-step__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.6;
  max-width: none;
}

.how-it-works__curve {
  position: relative;
  z-index: 1;
  height: 48px;
  margin-top: 8px;
  background: #f5f7fb;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.08);
}

.how-it-works__bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 max(16px, env(safe-area-inset-right, 0px)) 64px max(16px, env(safe-area-inset-left, 0px));
}

.how-it-works-cta {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: -56px auto 0;
  padding: 32px 28px 28px;
  background: #ffffff;
  border: 1px solid rgba(14, 26, 67, 0.07);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(14, 27, 72, 0.1);
  text-align: center;
}

.how-it-works-cta p {
  margin: 0 0 20px;
  color: #0e1a43;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.45;
  max-width: none;
}

.how-it-works-cta__btn {
  width: min(280px, 100%);
  min-height: 48px;
  font-size: 13px;
}

.how-it-works-devices {
  max-width: 760px;
  margin: 32px auto 0;
}

.how-it-works-devices__title {
  margin: 0 0 20px;
  text-align: center;
  color: #0e1a43;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.how-device-tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.how-device-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  min-height: 92px;
  padding: 14px 10px 12px;
  background: #ffffff;
  border: 1px solid rgba(14, 26, 67, 0.07);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(14, 27, 72, 0.06);
  color: #334155;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) {
  .how-device-tile:hover {
    box-shadow: 0 10px 24px rgba(14, 27, 72, 0.1);
    transform: translateY(-2px);
  }
}
