/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto Mono', monospace;
  background: #fff;
  color: #0a2432;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  display: flex;
  height: 100vh;
  min-height: 600px;
  position: relative;
}

/* Left white panel */
.hero-left {
  width: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 4rem;
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0a2432;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.hero-logo span { color: #0a2432; font-weight: 300; }

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
  min-width: 0;
}
.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.35rem, 4.25vw, 3.85rem);
  line-height: 1.08;
  color: #0a2432;
  margin-bottom: 2.5rem;
  letter-spacing: 0;
  max-width: 11ch;
  hyphens: auto;
  overflow-wrap: break-word;
}
.hero-h1 em {
  font-style: normal;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-pill-dark {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  background: #0a2432;
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-pill-dark:hover { opacity: 0.85; }
.btn-pill-blue {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  background: #c5d9f0;
  color: #0a2432;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-pill-blue:hover { background: #b0cce8; }
.btn-pill-outline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  background: transparent;
  color: #0a2432;
  border: 1.5px solid #0a2432;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-pill-outline:hover { background: #0a2432; color: #fff; }
.btn-pill-outline-white {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-pill-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-scroll-arrow {
  font-size: 1.4rem;
  color: #0a2432;
  opacity: 0.5;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-scroll-arrow:hover { opacity: 1; }

/* Right image panel */
.hero-right {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Nav overlay on the photo */
.hero-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(197,217,240,0.92);
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-nav-links {
  display: flex;
  gap: 2.5rem;
}
.hero-nav-links a {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a2432;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-nav-links a:hover { opacity: 0.6; }
.hero-nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.hero-datetime {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a2432;
  opacity: 0.6;
}
.hero-icons { display: flex; gap: 0.75rem; }
.hero-icon {
  width: 36px; height: 36px;
  background: #0a2432;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-icon:hover { opacity: 0.8; }
.hero-icon svg { width: 15px; height: 15px; }

/* Slide counter */
.hero-counter {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

/* ── SERVICES SECTION ── */
.services {
  display: flex;
}
.services-left {
  width: 50%;
  background: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
.services-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: auto;
}
.services-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0a2432;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.services-arrow-down {
  font-size: 1.3rem;
  color: #0a2432;
  opacity: 0.4;
  text-decoration: none;
}
.services-content {
  padding-top: 0;
}
.services-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #0a2432;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.services-content h2 em { font-style: normal; font-weight: 300; }
.services-text {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.9;
  color: #3d5a6b;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.services-right {
  width: 50%;
  background: #f0f4f7;
  display: flex;
  flex-direction: column;
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 3rem;
  border-bottom: 1px solid #dde4ea;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: #0a2432;
  position: relative;
}
.service-row:first-child { border-top: none; }
.service-row:hover { background: #e5ecf2; }
.service-row-inner { display: flex; align-items: center; gap: 1.5rem; }
.service-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid #0a2432;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-circle svg { width: 22px; height: 22px; }
.service-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #0a2432;
}
.service-price-tag {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  color: #1a5276;
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.service-row--highlight {
  background: #f0f7ff !important;
  border-left: 3px solid #1a5276;
}
.service-row--highlight .service-name { font-weight: 600; }
.service-circle--blue {
  border-color: #1a5276 !important;
  background: #eaf3f9;
}
.service-chevron {
  opacity: 0.35;
  transition: opacity 0.2s, transform 0.2s;
}
.service-row:hover .service-chevron { opacity: 1; transform: translateX(4px); }
.service-chevron svg { width: 28px; height: 22px; }

.answer-strip,
.answer-grid {
  padding: 4.5rem 2rem;
  background: #fff;
}
.answer-grid { background: #f0f4f7; }
.answer-strip-inner,
.answer-grid-inner {
  max-width: 980px;
  margin: 0 auto;
}
.answer-label {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6f8796;
  margin-bottom: 1rem;
}
.answer-strip h2,
.answer-grid h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.12;
  color: #0a2432;
  margin-bottom: 1.2rem;
}
.answer-strip p {
  max-width: 780px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8rem;
  line-height: 1.9;
  color: #3d5a6b;
}
.answer-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.answer-card {
  background: #fff;
  border: 1px solid #dde4ea;
  border-radius: 6px;
  padding: 1.4rem;
}
.answer-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  color: #0a2432;
  margin-bottom: 0.8rem;
}
.answer-card p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  line-height: 1.8;
  color: #3d5a6b;
}
.answer-note {
  margin-top: 1.4rem;
  max-width: 390px;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.06);
  border-left: 2px solid #c5d9f0;
}
.answer-note strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 0.45rem;
}
.answer-note span {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
}

.quick-contact {
  padding: 4.5rem clamp(2rem, 6vw, 6rem);
  background: #f8fafc;
}
.quick-contact-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 560px);
  gap: 3rem;
  align-items: start;
}
.quick-contact-copy {
  max-width: 380px;
}
.quick-contact-copy h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  font-weight: 700;
  color: #0a2432;
  margin-bottom: 1rem;
}
.quick-contact-copy p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.9;
  color: #3d5a6b;
}
.quick-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  background: #fff;
  border: 1px solid #dde4ea;
  border-radius: 6px;
  padding: 1.5rem;
}
.quick-contact-form .f-group { margin-bottom: 0; }
.quick-contact-full { grid-column: 1 / -1; }
.honeypot-field {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -100vw !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.honeypot-field * {
  display: none !important;
  visibility: hidden !important;
}
.quick-contact-status {
  min-height: 1.2rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  color: #3d5a6b;
}
.quick-contact-status.is-error { color: #9f2f2f; }
.quick-contact-card {
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  border: 1px solid #dde4ea;
  border-radius: 6px;
  background: #f8fafc;
}
.quick-contact-card .form-title {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.quick-contact-card .form-sub {
  margin-bottom: 1rem;
}
.quick-contact-form--compact {
  padding: 0;
  border: none;
  background: transparent;
}
.progressive-start-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.optional-step-note {
  padding: 1rem 1.15rem;
  background: #f8fafc;
  border: 1px solid #dde4ea;
  border-radius: 4px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  line-height: 1.75;
  color: #5a7a8a;
}

.detail-product-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0 1.5rem;
}

.detail-product-option {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 132px;
  padding: 1rem;
  border: 1px solid #dde4ea;
  border-radius: 6px;
  background: #fff;
  color: #0a2432;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.detail-product-option:hover {
  border-color: #0a2432;
  box-shadow: 0 12px 28px rgba(10,36,50,0.08);
  transform: translateY(-1px);
}

.detail-product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.detail-product-price {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  color: #2f6f91;
}

.detail-product-copy {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem;
  line-height: 1.55;
  color: #6c8292;
}

/* ── VOIP SPLIT (blue bg left, photo right) ── */
.voip-split {
  display: flex;
  min-height: 85vh;
}
.voip-left {
  width: 50%;
  background: #c5d9f0;
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.voip-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,36,50,0.5);
  margin-bottom: 1.5rem;
}
.voip-left h1,
.voip-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #0a2432;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.voip-left h1 em,
.voip-left h2 em { font-style: italic; font-weight: 300; }
.voip-left p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(10,36,50,0.65);
  margin-bottom: 2rem;
  max-width: 400px;
}
.voip-feats {
  list-style: none;
  margin-bottom: 2.5rem;
}
.voip-feats li {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  color: rgba(10,36,50,0.7);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(10,36,50,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.voip-feats li:last-child { border-bottom: none; }
.voip-feats li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #0a2432;
  opacity: 0.4;
  flex-shrink: 0;
}
.voip-right {
  width: 50%;
  overflow: hidden;
}
.voip-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── MOBIELE TELEFONIE ── */
.mobile-split {
  display: flex;
  min-height: 85vh;
}
.mobile-left {
  width: 50%;
  background: #0a2432;
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mobile-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,36,50,0.5);
  margin-bottom: 1.5rem;
}
.mobile-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.mobile-left h2 em { font-style: italic; font-weight: 300; }
.mobile-left p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  max-width: 400px;
}
.mobile-feats {
  list-style: none;
  margin-bottom: 2.5rem;
}
.mobile-feats li {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.mobile-feats li:last-child { border-bottom: none; }
.mobile-feats li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.35;
  flex-shrink: 0;
}
.mobile-right {
  width: 50%;
  background: #f0f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 4rem;
}
.mobile-card {
  background: #fff;
  border: 1px solid #dde4ea;
  border-radius: 4px;
  padding: 2.5rem 2.5rem;
  width: 100%;
  max-width: 380px;
}
.mobile-card-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8fa8c0;
  margin-bottom: 1.25rem;
  display: block;
}
.mobile-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0a2432;
  margin-bottom: 0.75rem;
}
.mobile-card-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a2432;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.mobile-card-price sub { font-size: 0.75rem; font-weight: 300; color: #8fa8c0; }
.mobile-card-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  color: #8fa8c0;
  margin-bottom: 1.75rem;
}
.mobile-card-feats { list-style: none; margin-bottom: 1.75rem; }
.mobile-card-feats li {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  color: #3d5a6b;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0eee8;
  display: flex; gap: 8px; align-items: flex-start;
}
.mobile-card-feats li:last-child { border-bottom: none; }
.mobile-card-feats li::before { content: '–'; color: #b0c8d4; flex-shrink: 0; }
.mobile-card-note {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem;
  color: #8fa8c0;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ── INTERNET PLANS ── */
.internet {
  background: #fff;
  padding: 4rem 4rem;
}
.internet-header {
  margin-bottom: 3.5rem;
}
.internet-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fa8c0;
  margin-bottom: 1rem;
  display: block;
}
.internet-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0a2432;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.internet-header h2 em { font-style: normal; font-weight: 300; }
.internet-header p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: #5a7a8a;
  line-height: 1.8;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dde4ea;
  border-radius: 4px;
  overflow: hidden;
}
.plan {
  padding: 2rem 1.75rem;
  border-right: 1px solid #dde4ea;
  background: #fff;
  transition: background 0.2s;
}
.plan:last-child { border-right: none; }
.plan:hover { background: #fafbfc; }
.plan.featured { background: #0a2432; }
.plan.featured:hover { background: #0d2d40; }
.plan-badge {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a8d4f0;
  margin-bottom: 1rem;
  display: block;
}
.plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0a2432;
  margin-bottom: 0.75rem;
}
.plan.featured .plan-name { color: #fff; }
.plan-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a2432;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price sub { font-size: 0.75rem; font-weight: 300; color: #8fa8c0; }
.plan.featured .plan-price { color: #fff; }
.plan.featured .plan-price sub { color: rgba(255,255,255,0.45); }
.plan-activation {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  color: #8fa8c0;
  margin-bottom: 1.5rem;
}
.plan.featured .plan-activation { color: rgba(255,255,255,0.35); }
.plan-feats { list-style: none; margin-bottom: 1.5rem; }
.plan-feats li {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  color: #3d5a6b;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0eee8;
  display: flex; gap: 8px; align-items: flex-start;
}
.plan-feats li:last-child { border-bottom: none; }
.plan-feats li::before { content: '–'; color: #b0c8d4; flex-shrink: 0; }
.plan.featured .plan-feats li { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.06); }
.plan.featured .plan-feats li::before { color: rgba(168,212,240,0.6); }
.plan-cta {
  display: block; text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  padding: 0.7rem;
  border: 1.5px solid #dde4ea;
  border-radius: 100px;
  color: #0a2432; text-decoration: none;
  transition: all 0.2s;
}
.plan-cta:hover { border-color: #0a2432; background: #0a2432; color: #fff; }
.plan.featured .plan-cta { border-color: rgba(255,255,255,0.25); color: #fff; }
.plan.featured .plan-cta:hover { background: rgba(255,255,255,0.1); }
.plans-note {
  margin-top: 1.5rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  color: #8fa8c0;
  line-height: 1.8;
}

/* ── QUOTE / SFEER SECTIE ── */
.quote-split {
  display: flex;
  min-height: 75vh;
}
.quote-left {
  width: 50%;
  background: #c5d9f0;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-caption {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10,36,50,0.45);
  margin-bottom: 2rem;
}
.quote-mark {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: rgba(10,36,50,0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quote-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: #0a2432;
  line-height: 1.45;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.quote-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem;
  color: rgba(10,36,50,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}
.quote-right {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.quote-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── WHY SECTION ── */
.why {
  display: flex;
  background: #fff;
}
.why-left {
  width: 50%;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8fa8c0;
  margin-bottom: 1.5rem;
  display: block;
}
.why-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0a2432;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.why-left h2 em { font-style: normal; font-weight: 300; }
.why-left p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.9;
  color: #3d5a6b;
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.why-right {
  width: 50%;
  background: #f8f7f3;
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8e4dc;
}
.why-item:first-child { border-top: 1px solid #e8e4dc; }
.why-num {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.58rem;
  color: #8fa8c0;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a2432;
  margin-bottom: 0.4rem;
}
.why-text {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem;
  color: #5a7a8a;
  line-height: 1.75;
}

/* ── FAQ ── */
.faq-section {
  background: #f8f7f3;
  padding: 4rem 4rem;
}
.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: 2.5rem;
}
.faq-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #0a2432;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.faq-header h2 em { font-style: normal; font-weight: 300; }
.faq-header p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: #5a7a8a;
  line-height: 1.8;
}
.faq-header p a { color: #0a2432; }

.faq-item { border-bottom: 1px solid #dde4ea; }
.faq-item:first-child { border-top: 1px solid #dde4ea; }
.faq-q {
  width: 100%; background: none; border: none;
  cursor: pointer; text-align: left;
  padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  color: #0a2432; transition: color 0.2s;
}
.faq-q:hover { color: #1a5276; }
.faq-icon { font-size: 1.1rem; color: #8fa8c0; flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: #0a2432; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-text {
  padding: 0 0 1.25rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem; color: #5a7a8a; line-height: 1.85;
}
.faq-a-text a { color: #0a2432; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── AANVRAAG SECTION ── */
.aanvraag-section {
  display: flex;
  align-items: stretch;
  transition: min-height 0.3s ease;
}
.aanvraag-left {
  width: 50%;
  background: #0a2432;
  padding: 3.5rem 4rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  color: #fff;
}
.aanvraag-left h1,
.aanvraag-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.aanvraag-left h1 em,
.aanvraag-left h2 em { font-style: italic; font-weight: 300; }
.aanvraag-left > p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem; line-height: 1.85;
  color: rgba(255,255,255,0.55); max-width: 320px;
}
.aanvraag-right {
  width: 50%;
  background: #fff;
  padding: 3.5rem 4rem;
  overflow-y: auto;
}
.prod-cards-wrap {
  padding: 3.5rem 4rem;
}
/* Prijsbox */
.prijsbox {
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}
.prijsbox-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.prijs-row {
  display: flex; justify-content: space-between;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem; color: rgba(255,255,255,0.6);
  padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prijs-totaal-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-top: 0.75rem;
}
#prijs-totaal,
#sim-totaal-groot { text-align: right; }
/* Stapbalk */
.stap-bar {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.stap {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: #8fa8c0;
  padding: 0.3rem 0.6rem; border-radius: 2px;
}
.stap.active {
  color: #0a2432; background: #edf2f7;
  font-weight: 700;
}
.stap-sep { color: #c5d4de; font-size: 0.7rem; }
/* Productkaarten */
.prod-cards { display: flex; gap: 1rem; margin: 0 0 1.75rem; flex-direction: column; }
.prod-card {
  width: 100%; cursor: pointer;
  border: 1.5px solid #dde4ea; border-radius: 4px;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  display: block;
  user-select: none;
}
.prod-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.prod-card-inner {
  padding: 1.75rem 1.25rem;
}
.prod-card.selected {
  border-color: #0a2432; background: #f0f4f7;
  box-shadow: 0 0 0 2px rgba(10,36,50,0.12);
}
.prod-card-inner {
  padding: 1.5rem 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
}
.prod-card-check {
  font-size: 1.3rem; color: #c5d4de;
  transition: color 0.15s; flex-shrink: 0;
}
.prod-card.selected .prod-card-check { color: #0a2432; }
.prod-card-content { flex: 1; }
.prod-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 600; color: #0a2432;
  margin-bottom: 0.2rem;
}
.prod-card-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: #0a2432;
}
.prod-card-price span { font-size: 0.65rem; font-weight: 300; color: #8fa8c0; }
.prod-card-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem; color: #8fa8c0; margin-top: 0.2rem;
}
/* Stap inhoud */
.stap-inhoud { animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform:none; } }
.stap-nav { display: flex; gap: 1rem; margin-top: 1.5rem; }
.stap-nav .f-submit {
  width: auto;
  flex: 1;
  margin-top: 0;
}
.f-back {
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500;
  padding: 0.8rem 1.5rem; border-radius: 100px;
  background: transparent; color: #0a2432;
  border: 1.5px solid #dde4ea; cursor: pointer;
  transition: border-color 0.2s;
}
.f-back:hover { border-color: #0a2432; }
.f-skip {
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500;
  padding: 0.8rem 1.5rem; border-radius: 100px;
  background: #f0f4f7; color: #0a2432;
  border: 1.5px solid #dde4ea; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.f-skip:hover {
  background: #e5ecf2;
  border-color: #b0c8d4;
}
/* f-row2 */
.f-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
/* SIM knoppen */
.sim-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid #dde4ea; background: #fff;
  font-size: 1.1rem; cursor: pointer; color: #0a2432;
  transition: background 0.15s;
}
.sim-btn:hover { background: #f0f4f7; }
/* SIM gebruiker blok */
.sim-user-blok {
  background: #f8fafc; border: 1px solid #dde4ea;
  border-radius: 4px; padding: 1.25rem; margin-bottom: 1rem;
}
.sim-user-titel {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #8fa8c0; margin-bottom: 1rem;
}
/* Pakket grid */
.pakket-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; margin-top: 0.5rem;
}
.pakket-card {
  cursor: pointer; border: 1.5px solid #dde4ea;
  border-radius: 4px; display: block; transition: border-color 0.2s;
}
.pakket-card input { display: none; }
.pakket-card:has(input:checked) { border-color: #0a2432; background: #f0f4f7; }
.pakket-card--wide { grid-column: span 3; }
.pakket-inner { padding: 1rem; }
.pakket-naam { font-family:'Poppins',sans-serif; font-size:0.82rem; font-weight:600; color:#0a2432; margin-bottom:0.3rem; }
.pakket-specs { font-family:'Roboto Mono',monospace; font-size:0.6rem; color:#5a7a8a; line-height:1.6; margin-bottom:0.5rem; }
.pakket-prijs { font-family:'Poppins',sans-serif; font-size:1rem; font-weight:700; color:#0a2432; }
.pakket-prijs span { font-size:0.65rem; font-weight:300; color:#8fa8c0; }
.f-add-btn {
  font-family:'Roboto Mono',monospace; font-size:0.68rem;
  color:#0a2432; background:transparent; border:1px dashed #b0c8d4;
  border-radius:3px; padding:0.5rem 1rem; cursor:pointer;
  margin-top:0.25rem; transition: background 0.15s;
}
.f-add-btn:hover { background:#f0f4f7; }
.detail-sectie-titel {
  font-family:'Poppins',sans-serif; font-size:0.9rem; font-weight:600;
  color:#0a2432; margin-bottom:1rem; padding-bottom:0.5rem;
  border-bottom:1px solid #edf2f7;
}
/* Samenvatting */
.samenvatting-box {
  background:#f8fafc; border:1px solid #dde4ea;
  border-radius:4px; padding:1.5rem; font-family:'Roboto Mono',monospace;
  font-size:0.72rem; color:#3d5a6b; line-height:1.9;
}
.samenvatting-box h4 {
  font-family:'Poppins',sans-serif; font-size:0.85rem; font-weight:600;
  color:#0a2432; margin:1rem 0 0.4rem; border-top:1px solid #dde4ea; padding-top:0.75rem;
}
.samenvatting-box h4:first-child { margin-top:0; border-top:none; padding-top:0; }
.samenvatting-totaal {
  margin-top:1rem; padding-top:0.75rem; border-top:2px solid #0a2432;
  font-family:'Poppins',sans-serif; font-size:1.1rem; font-weight:700;
  color:#0a2432; display:flex; justify-content:space-between; gap:1rem;
}
.samenvatting-totaal span:last-child { text-align:right; }

.prod-card-slider {
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid #edf2f7;
  background: #f8fafc;
}
.slider-ctrl {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 0.4rem;
}
.slider-num {
  font-family: 'Poppins', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: #0a2432;
  min-width: 2rem; text-align: center;
}
.prod-card.selected .prod-card-slider { display: block !important; }

/* ── PARTNER SPLIT ── */
.partner-split {
  display: flex;
  min-height: 100vh;
}
.partner-left {
  width: 50%;
  background: #f0f4f7;
  padding: 4rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.partner-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #8fa8c0;
  margin-bottom: 1.5rem; display: block;
}
.partner-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700; color: #0a2432;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.partner-left h2 em { font-style: italic; font-weight: 300; }
.partner-left > p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem; line-height: 1.9;
  color: #5a7a8a;
  margin-bottom: 2rem; max-width: 380px;
}
.partner-voordelen { list-style: none; margin-bottom: 2.5rem; }
.partner-voordelen li {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem; color: #3d5a6b;
  padding: 0.55rem 0;
  border-bottom: 1px solid #dde4ea;
  display: flex; gap: 10px; align-items: flex-start;
}
.partner-voordelen li:last-child { border-bottom: none; }
.partner-voordelen li::before {
  content: '✓';
  color: #0a2432; font-weight: 700; flex-shrink: 0;
}
.partner-right {
  width: 50%;
  background: #fff;
  padding: 3.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}

/* ── CONTACT SPLIT ── */
.contact-split {
  display: flex;
  min-height: 85vh;
}
.contact-left {
  width: 50%;
  background: #0a2432;
  padding: 3.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.contact-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem; display: block;
}
.contact-left h1,
.contact-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.contact-left h1 em,
.contact-left h2 em { font-style: italic; font-weight: 300; }
.contact-left > p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem; line-height: 1.9;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem; max-width: 360px;
}
.contact-channels { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2.5rem; }
.channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none; color: #fff;
  transition: background 0.2s; border-radius: 3px;
}
.channel:hover { background: rgba(255,255,255,0.1); }
.channel-icon {
  width: 36px; height: 36px; border-radius: 3px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.channel-main { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 500; }
.channel-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em; margin-top: 1px;
}
.contact-addr {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

/* FORM */
.contact-right {
  width: 50%;
  background: #fff;
  padding: 3.5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: #0a2432; margin-bottom: 0.4rem;
}
.form-sub {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem; color: #8fa8c0;
  letter-spacing: 0.06em; margin-bottom: 2rem;
}
.f-group { margin-bottom: 1.15rem; }
.f-label {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: #8fa8c0; margin-bottom: 0.45rem;
}
.f-input {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1px solid #dde4ea; border-radius: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 300; color: #0a2432;
  background: #fafbfc; transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.f-input:focus { outline: none; border-color: #0a2432; background: #fff; }
.f-radios { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.f-radio {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; color: #3d5a6b; cursor: pointer;
}
.f-radio input { cursor: pointer; accent-color: #0a2432; }
.f-cond {
  background: #fafbfc; border: 1px solid #dde4ea;
  border-left: 2px solid #a8c8e0;
  padding: 1.15rem; margin-top: 0.65rem; border-radius: 3px;
}
.f-checkbox-row { display: flex; gap: 10px; margin-top: 0.75rem; }
.f-checkbox-row input { margin-top: 2px; cursor: pointer; accent-color: #0a2432; }
.f-checkbox-row label {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.68rem; color: #5a7a8a; line-height: 1.6; cursor: pointer;
}
.hidden { display: none; }
.f-submit {
  width: 100%; margin-top: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  padding: 0.9rem;
  border: none; border-radius: 100px;
  background: #0a2432; color: #fff;
  cursor: pointer; transition: opacity 0.2s;
}
.f-submit:hover { opacity: 0.85; }
.success-msg { display: none; text-align: center; padding: 3rem 1rem; }
.success-msg .s-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.success-msg h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700; color: #0a2432; margin-bottom: 0.5rem; }
.success-msg p { font-family: 'Roboto Mono', monospace; font-size: 0.72rem; color: #5a7a8a; }

/* Thank-you page */
.thanks-page {
  background: #fff;
}
.thanks-hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  border-bottom: 1px solid #dde4ea;
}
.thanks-copy {
  padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 7vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.thanks-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 700;
  color: #0a2432;
  margin: 0.85rem 0 1.25rem;
  letter-spacing: 0;
  max-width: 10ch;
}
.thanks-copy p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.9;
  color: #5a7a8a;
  max-width: 520px;
}
.thanks-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.thanks-photo {
  min-height: 420px;
  overflow: hidden;
}
.thanks-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.thanks-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #dde4ea;
}
.thanks-next > div {
  padding: 2rem 2.5rem;
  border-right: 1px solid #dde4ea;
}
.thanks-next > div:last-child { border-right: none; }
.thanks-next span {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: #8fa8c0;
  margin-bottom: 0.85rem;
}
.thanks-next h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #0a2432;
  margin-bottom: 0.45rem;
}
.thanks-next p {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  line-height: 1.75;
  color: #5a7a8a;
}

/* ── FOOTER ── */
footer {
  background: #0a2432;
  color: #fff;
}
.footer-top {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-big {
  width: 50%;
  padding: 4rem 4rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; justify-content: space-between;
}
.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.footer-tagline em { font-style: italic; font-weight: 300; color: #a8d4f0; }
.footer-cols {
  width: 50%;
  padding: 4rem 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-col h4 {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.footer-col a, .footer-col p, .footer-col span {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
  text-decoration: none; margin-bottom: 0.6rem;
  transition: color 0.2s; line-height: 1.6;
}
.footer-col a:hover { color: #fff; }
.footer-col-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: #fff; display: block;
  margin-bottom: 0.85rem;
}
.footer-bottom {
  padding: 1.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p, .footer-bottom a {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25); text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { flex-direction: column; height: auto; min-height: 100vh; }
  .hero-left { width: 100%; padding: 2.5rem 2rem; }
  .hero-right { width: 100%; height: 55vw; }
  .hero-nav { position: relative; }
  .services { flex-direction: column; }
  .services-left, .services-right { width: 100%; }
  .services-left { padding: 3rem 2rem; }
  .answer-strip,
  .answer-grid { padding: 3.5rem 1.5rem; }
  .answer-cards { grid-template-columns: 1fr; }
  .voip-split { flex-direction: column; }
  .voip-left, .voip-right { width: 100%; }
  .voip-right { height: 55vw; }
  .mobile-split { flex-direction: column; min-height: auto; }
  .mobile-left,
  .mobile-right { width: 100%; padding: 3rem 2rem; }
  .mobile-right { align-items: stretch; }
  .mobile-card { max-width: none; }
  .quick-contact { padding: 3.5rem 1.5rem; }
  .quick-contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .quick-contact-copy,
  .quick-contact-form { max-width: none; justify-self: stretch; }
  .thanks-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .thanks-photo {
    min-height: 300px;
    order: -1;
  }
  .thanks-next {
    grid-template-columns: 1fr;
  }
  .thanks-next > div {
    border-right: none;
    border-bottom: 1px solid #dde4ea;
  }
  .thanks-next > div:last-child { border-bottom: none; }
  .internet { padding: 4rem 2rem; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .quote-split { flex-direction: column; }
  .quote-left, .quote-right { width: 100%; }
  .quote-right { height: 55vw; }
  .why { flex-direction: column; }
  .why-left, .why-right { width: 100%; padding: 3rem 2rem; }
  .faq-section { padding: 4rem 2rem; }
  /* faq responsive */
  .aanvraag-section { flex-direction: column; }
  .aanvraag-left { display: none; }
  .aanvraag-right { width: 100%; padding: 2rem; }
  .f-row2 { grid-template-columns: 1fr; }
  .pakket-grid { grid-template-columns: 1fr 1fr; }
  .pakket-card--wide { grid-column: span 2; }
  .prod-cards { flex-direction: column; }
  .contact-split { flex-direction: column; }
  .contact-left, .contact-right { width: 100%; padding: 3rem 2rem; }
  .footer-top { flex-direction: column; }
  .footer-big { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 4rem 2rem; }
  .footer-cols { width: 100%; padding: 3rem 2rem; grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; gap: 0.75rem; }
}
@media (max-width: 580px) {
  .hero-nav-links { display: none; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.25rem; max-width: 10ch; }
  .quick-contact-form { grid-template-columns: 1fr; }
  .thanks-copy { padding: 2.5rem 1.4rem; }
  .thanks-actions .btn-pill-dark,
  .thanks-actions .btn-pill-outline { width: 100%; text-align: center; }
  .thanks-next > div { padding: 1.6rem 1.4rem; }
  .stap-nav { flex-direction: column; }
  .stap-nav .f-submit,
  .stap-nav .f-back,
  .stap-nav .f-skip { width: 100%; }
  .detail-product-picker { grid-template-columns: 1fr; }
}

/* ── TOP NAV (inner pages) ── */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(197,217,240,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(10,36,50,0.08);
}
.top-nav-center {
  display: flex;
  gap: 2.5rem;
}
.top-nav-center a {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a2432;
  text-decoration: none;
  transition: opacity 0.2s;
}
.top-nav-center a:hover { opacity: 0.6; }
.top-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  border: 1px solid rgba(10,36,50,0.14);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.7);
  border-color: rgba(10,36,50,0.3);
}
.mobile-menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: #0a2432;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.top-nav.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.top-nav.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}
.top-nav.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.top-nav--home {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 30px rgba(10,36,50,0.08);
}
.top-nav--home.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 900px) {
  .top-nav {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }
  .top-nav-left {
    min-width: 0;
  }
  .top-nav-left .hero-logo {
    font-size: 1.1rem;
    white-space: nowrap;
  }
  .top-nav-right {
    margin-left: auto;
    gap: 0.45rem;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .top-nav-center {
    order: 3;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid rgba(10,36,50,0);
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
  }
  .top-nav.is-menu-open .top-nav-center {
    max-height: 18rem;
    opacity: 1;
    pointer-events: auto;
    padding: 0.65rem 0 0.25rem;
    border-color: rgba(10,36,50,0.12);
  }
  .top-nav-center a {
    padding: 0.75rem 0;
    font-size: 0.72rem;
  }
}
