:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --panel: #ffffff;
  --ink: #17211f;
  --muted: #52615d;
  --line: #dce4df;
  --accent: #0d7a5f;
  --accent-dark: #075241;
  --warm: #f2b84b;
}

html {
  scroll-padding-top: 25px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 247, 244, 0.94);
  backdrop-filter: blur(10px);
}

.brand {
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}

.site-header p {
  margin: 0;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

nav a {
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

nav a.is-active {
  background: #d8e8e1;
  color: var(--accent-dark);
}

@media (hover: hover) {
  nav a:hover {
    background: #e7efeb;
  }
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(38px, 7vw, 86px) 0 42px;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.hero p {
  max-width: 720px;
  font-size: 1.08rem;
}

.hero img,
.feature-card img,
.contact img {
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(21, 38, 31, 0.12);
}

.hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  gap: 22px;
  padding: 24px 0 58px;
}

.feature-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card.is-clickable {
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.feature-card.is-clickable:hover,
.feature-card.is-clickable:focus-visible {
  border-color: #b9d6cb;
  box-shadow: 0 12px 26px rgba(21, 38, 31, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.feature-card img {
  width: 100%;
  height: 240px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-card.logo-card img {
  object-fit: contain;
  padding: 22px;
  background: #fff;
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.feature-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.feature-card.full-card-link {
  padding: 0;
}

.feature-card.full-card-link > a {
  display: grid;
  grid-template-columns: inherit;
  gap: inherit;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 22px;
  color: inherit;
  text-decoration: none;
}

.feature-card.full-card-link:hover,
.feature-card.full-card-link:focus-within {
  border-color: #b9d6cb;
  box-shadow: 0 12px 26px rgba(21, 38, 31, 0.1);
  transform: translateY(-1px);
}

.feature-card.full-card-link > a:focus-visible {
  outline: 3px solid #b9d6cb;
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
}

.section-heading {
  max-width: 820px;
  padding: 50px 0 18px;
}

.section-heading h2,
.contact h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
}

.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact .feature-card {
  grid-template-columns: 160px minmax(0, 1fr);
}

.compact .feature-card img {
  height: 160px;
}

.contact {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 18px 0 64px;
  padding: 26px;
  border-radius: 8px;
  background: #eaf2ee;
}

.contact img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.contact p {
  color: var(--muted);
}

.site-footer {
  padding: 28px 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}

.page-shell {
  max-width: 980px;
}

.static-page {
  margin: clamp(28px, 6vw, 72px) 0;
  padding: clamp(18px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.static-page h1 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.06;
}

.page-body {
  font-size: 1.04rem;
}

.page-body :is(h2, h3, h4) {
  margin: 34px 0 12px;
  line-height: 1.18;
}

.page-body p,
.page-body ul,
.page-body ol {
  margin: 0 0 18px;
}

.page-body img {
  width: min(100%, 760px);
  height: auto;
  margin: 24px auto;
  border-radius: 8px;
}

.page-body figure {
  margin: 28px 0;
}

.page-body figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.page-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.static-page table {
  width: 100%;
  margin: 24px 0 30px;
  border-collapse: collapse;
  table-layout: fixed;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.table-scroll table {
  min-width: 860px;
}

.router-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 18px 0 30px;
}

.router-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.router-card-highlight {
  border-color: #b9d8cd;
  background: #f5fbf8;
}

.router-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.router-card-type {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.router-card dl {
  margin: 0;
  flex: 1;
}

.router-card dl > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.router-card dl > div + div {
  margin-top: 10px;
}

.router-card dt {
  color: var(--muted);
  font-weight: 800;
}

.router-card dd {
  margin: 0;
  line-height: 1.45;
}

.router-card-link {
  margin: auto 0 0;
  padding-top: 16px;
}

.router-card-link a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #e9f1ed;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.router-card-link a:hover {
  background: #d9e8e1;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.solution-card-featured {
  border-color: #b9d8cd;
  background: #f5fbf8;
}

.solution-card h3 {
  margin-top: 0;
}

.solution-card h3 a {
  color: var(--green);
}

.solution-card p {
  margin: 0 0 14px;
  line-height: 1.55;
}

.solution-card p:last-child {
  margin-bottom: 0;
}

.static-page th,
.static-page td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.static-page th {
  color: var(--ink);
  font-weight: 800;
}

.static-page th:first-child,
.static-page td:first-child {
  width: 24%;
  font-weight: 700;
}

.static-page th:nth-child(2),
.static-page td:nth-child(2) {
  width: 32%;
}

.static-page th:nth-child(3),
.static-page td:nth-child(3) {
  width: 44%;
}

.static-page .bundle-table th:first-child,
.static-page .bundle-table td:first-child {
  width: 25%;
}

.static-page .bundle-table th:nth-child(2),
.static-page .bundle-table td:nth-child(2) {
  width: 18%;
}

.static-page .bundle-table th:nth-child(3),
.static-page .bundle-table td:nth-child(3) {
  width: 24%;
}

.static-page .bundle-table th:nth-child(4),
.static-page .bundle-table td:nth-child(4),
.static-page .bundle-table th:nth-child(5),
.static-page .bundle-table td:nth-child(5) {
  width: 16.5%;
}

.static-page .trustpilot-table {
  font-size: 0.92rem;
}

.static-page .trustpilot-table th,
.static-page .trustpilot-table td {
  padding: 8px 10px;
}

.static-page .trustpilot-table th:first-child,
.static-page .trustpilot-table td:first-child {
  width: 22%;
}

.static-page .trustpilot-table th:nth-child(2),
.static-page .trustpilot-table td:nth-child(2) {
  width: 20%;
}

.static-page .trustpilot-table th:nth-child(3),
.static-page .trustpilot-table td:nth-child(3) {
  width: 32%;
}

.static-page .trustpilot-table th:nth-child(4),
.static-page .trustpilot-table td:nth-child(4) {
  width: 26%;
}

.page-body th,
.page-body td {
  padding: 10px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.16rem;
}

.article-meta {
  margin: -8px 0 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.article-meta span {
  color: var(--ink);
  font-weight: 700;
}

.page-hero-image {
  width: min(100%, 420px);
  margin: 28px auto;
  border-radius: 8px;
}

.page-hero-image.wide-hero-image {
  width: calc(100% + clamp(36px, 8vw, 88px));
  max-width: none;
  margin-inline: calc(clamp(18px, 4vw, 44px) * -1);
  object-fit: cover;
}

.page-hero-image.contain-hero-image {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.page-hero-image.logo-hero {
  padding: 28px;
  background: #fff;
  object-fit: contain;
}

.page-hero-image.compact-logo {
  width: min(100%, 230px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.page-hero-image.medium-photo {
  width: min(100%, 420px);
}

.page-hero-image.small-photo {
  width: min(100%, 320px);
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.hero-photo-grid .page-hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  margin: 0;
  object-fit: contain;
}

.data-sim-photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  align-items: stretch;
}

.data-sim-photo-grid .page-hero-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.camper-wifi-photos {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0;
}

.camper-wifi-photos .page-hero-image {
  aspect-ratio: auto;
}

.toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 26px 0 20px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
}

.toc a,
.related-links a {
  padding: 8px 10px;
  border-radius: 6px;
  background: #e7efeb;
  font-weight: 700;
  text-decoration: none;
}

.page-section {
  margin: 0;
  padding: clamp(14px, 3vw, 28px) 0 clamp(28px, 5vw, 52px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 32px;
}

.page-section:last-of-type {
  border-bottom: 1px solid var(--line);
}

.page-section > h2 {
  margin-top: 0;
  scroll-margin-top: 0;
}

.media-block + .page-section {
  margin-top: 0;
}

.static-page :is(h1, h2, h3),
.hero,
.section-heading,
.contact {
  scroll-margin-top: 16px;
}

.info-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-grid section,
.product-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.tiekom-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.tiekom-plan-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.tiekom-plan-card-featured {
  border-color: #b9d8cd;
  background: #f4fbf8;
}

.tiekom-plan-card h3 {
  margin-top: 0;
}

.tiekom-plan-card .check-list {
  margin-bottom: 18px;
  flex: 1;
}

.plan-label {
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e9f1ed;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.plan-price {
  margin: auto 0 4px;
  color: var(--green);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.15;
}

.plan-price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.plan-regular {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-callout {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 25px;
}

.inline-callout h2 {
  margin-top: 0;
}

.speedtest-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 22px;
}

.speedtest-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.speedtest-card strong {
  display: block;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1.15;
}

.speedtest-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.speedtest-details {
  margin-top: 18px;
}

.speedtest-details summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 800;
}

.static-page .speedtest-table {
  min-width: 720px;
  table-layout: auto;
}

.static-page .speedtest-table th:first-child,
.static-page .speedtest-table td:first-child {
  width: auto;
}

.static-page .speedtest-table th,
.static-page .speedtest-table td {
  white-space: nowrap;
}

.official-sticker {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(140px, 0.7fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 16px;
  margin: 28px 0 34px;
  text-align: center;
}

.official-sticker img {
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(21, 38, 31, 0.1);
}

.official-sticker .sticker-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.official-sticker .sticker-official {
  width: min(100%, 190px);
  padding: 12px;
}

.official-sticker figcaption {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-list {
  padding-left: 22px;
}

.check-list li {
  margin-bottom: 8px;
}

.media-block {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 44px);
  align-items: start;
  margin: clamp(36px, 6vw, 58px) 0;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.media-block img,
.product-grid img {
  width: 100%;
  border-radius: 8px;
}

.media-block img {
  align-self: center;
  max-height: 340px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.media-block h2 {
  margin-top: 0;
}

.bundle-section {
  display: block;
}

.bundle-section > img {
  width: min(100%, 520px);
  margin: 0 auto 28px;
}

.sim-photo-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  margin: 0 auto 28px;
  max-width: 980px;
}

.sim-photo-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}

.sim-photo-strip .sim-card-image {
  object-fit: contain;
  padding: 12px;
}

.bundle-section > div {
  max-width: 900px;
  margin: 0 auto;
}

.zoom-figure {
  margin: 28px 0 0;
  max-width: 360px;
}

.zoom-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
}

.zoom-gallery .zoom-figure {
  flex: 1 1 260px;
  max-width: 360px;
  margin: 0;
}

.zoom-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.zoom-thumb {
  display: inline-block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 31, 28, 0.08);
}

.zoom-thumb img {
  width: 100%;
  height: 186px;
  object-fit: contain;
  background: #fff;
}

.clean-photo-gallery .zoom-thumb {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.clean-photo-gallery .zoom-thumb img {
  background: transparent;
  object-fit: cover;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(18, 31, 28, 0.82);
}

.image-lightbox:target {
  display: flex;
}

.image-lightbox img {
  width: min(100%, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.clean-photo-lightbox img {
  background: transparent;
  box-shadow: none;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.faq details,
.keuzehulp-data-sim details {
  margin: 12px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.faq summary,
.keuzehulp-data-sim summary {
  cursor: pointer;
  font-weight: 800;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.related-links h2 {
  flex-basis: 100%;
}

.page-body input[type="text"] {
  width: min(100%, 520px);
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.page-body button {
  min-height: 42px;
  margin: 8px 8px 8px 0;
  padding: 9px 13px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.page-body button:hover {
  background: var(--accent-dark);
}

.password-rules section::before {
  content: "x ";
  color: #9b2c2c;
  font-weight: 800;
}

.password-rules section[data-ok="true"]::before {
  content: "ok ";
  color: var(--accent-dark);
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 64px;
  }

  .page-section,
  .static-page :is(h1, h2, h3),
  .hero,
  .section-heading,
  .contact {
    scroll-margin-top: 64px;
  }

  .info-grid,
  .solution-grid,
  .speedtest-summary,
  .tiekom-plan-grid,
  .product-grid,
  .official-sticker,
  .media-block {
    grid-template-columns: 1fr;
  }

  .official-sticker .sticker-official {
    max-width: 220px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .feature-card,
  .compact,
  .compact .feature-card,
  .contact,
  .hero-photo-grid,
  .sim-photo-strip {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: min(360px, calc(100vw - 76px));
    max-height: none;
  }
}

@media (max-width: 520px) {
  main {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    padding: 16px 12px;
  }

  .feature-card,
  .contact,
  .static-page {
    padding: 16px;
  }

  .feature-card img {
    height: calc(100vw - 54px);
  }

  .static-page h1 {
    font-size: clamp(1.8rem, 11vw, 2.6rem);
  }

  .lead {
    font-size: 1.04rem;
  }

  .toc {
    padding: 10px;
  }

  .toc a,
  .related-links a {
    flex: 1 1 auto;
    text-align: center;
  }

  .static-page table {
    display: block;
    overflow-x: auto;
    table-layout: auto;
    white-space: nowrap;
  }

  .static-page th,
  .static-page td {
    min-width: 120px;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .page-hero-image.wide-hero-image {
    width: calc(100% + 32px);
    margin-inline: -16px;
  }
}
