/* ============================
   HulpICT.nl — Main Stylesheet
   Designed for seniors: large text, high contrast, clear navigation
   ============================ */

:root {
  --navy: #0D1235;
  --navy2: #1E1B4B;
  --blue: #1D4ED8;
  --blue-mid: #2563EB;
  --blue-light: #DBEAFE;
  --purple: #7C3AED;
  --purple-light: #EDE9FE;
  --sky: #BAE6FD;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray: #64748B;
  --gray-light: #F1F5F9;
  --border: #E2E8F0;
  --green: #10B981;
  --green-light: #DCFCE7;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --gold: #F59E0B;
  --teal: #0D9488;

  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Lora', serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(13,18,53,0.08);
  --shadow-md: 0 8px 40px rgba(13,18,53,0.12);
  --shadow-lg: 0 16px 64px rgba(13,18,53,0.16);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

/* TOPBAR */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 600;
  padding: .5rem 5%;
}
.topbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-inner span {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--wa);
  color: #fff;
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  transition: background .2s;
}
.topbar-btn:hover { background: var(--wa-dark); }

/* NAV */
#nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  border-bottom: 2px solid var(--border);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.hex-s, .hex-m {
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.hex-s { width: 12px; height: 14px; margin-bottom: 4px; }
.hex-m { width: 15px; height: 18px; }
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.nav-name span { color: var(--blue); }
.nav-tagline {
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding: .55rem .85rem;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-light);
  color: var(--blue);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--wa);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: #fff;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 1rem 5% 1.5rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu.open { display: block; }
.mobile-menu ul {
  display: grid;
  gap: .4rem;
  margin-bottom: 1rem;
}
.mobile-menu a {
  display: block;
  padding: 1rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background .2s, border-color .2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}
.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--wa);
  color: #fff;
  padding: 1.1rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, var(--navy) 0%, #1E1B4B 50%, #1e3a6e 100%);
  padding: 6rem 5%;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(96,165,250,0.1) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(96,165,250,0.15);
  border: 1.5px solid rgba(96,165,250,0.35);
  color: #BAE6FD;
  border-radius: 999px;
  padding: .45rem 1.1rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  50% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-serif);
  color: #93C5FD;
}
.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-lead strong { color: #fff; }
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  max-width: 980px;
  margin: 0 auto;
}
.hero-chips .chip-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .72rem;
  min-height: 52px;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.hero-chips .chip-item:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
}
.hero-chips .chip-item span {
  display: inline-block;
  white-space: nowrap;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--wa);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29,78,216,.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
  font-weight: 700;
  border-radius: 999px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 2px solid rgba(255,255,255,.25);
  font-weight: 700;
  border-radius: 999px;
  transition: background .2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,.16); }
.btn-xl { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-lg { padding: .85rem 1.5rem; font-size: 1rem; }
.btn-md { padding: .7rem 1.2rem; font-size: .95rem; }

/* PAGE TILES */
.page-tiles {
  padding: 5rem 5%;
  background: var(--off-white);
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.tile {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tile-wide { grid-column: span 2; }
.tile-icon { margin-bottom: 1rem; }
.tile h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.tile p {
  font-size: .95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.tile-arrow {
  font-size: .9rem;
  font-weight: 700;
  margin-top: auto;
}
.tile-blue {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #1D4ED8;
}
.tile-blue .tile-arrow { color: #1D4ED8; }
.tile-purple {
  background: #F5F3FF;
  border-color: #DDD6FE;
  color: #5B21B6;
}
.tile-purple .tile-arrow { color: #5B21B6; }
.tile-teal {
  background: #F0FDFA;
  border-color: #99F6E4;
  color: #0F766E;
}
.tile-teal .tile-arrow { color: #0F766E; }
.tile-gold {
  background: #FFFBEB;
  border-color: #FDE68A;
  color: #92400E;
}
.tile-gold .tile-arrow { color: #92400E; }
.tile-green {
  background: #F0FDF4;
  border-color: #BBF7D0;
  color: #166534;
}
.tile-green .tile-arrow { color: #166534; }

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  padding: 1.4rem 5%;
}
.trust-items {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 600;
}

/* SECTION LAYOUT */
.section-header { margin-bottom: 2.5rem; }
.section-header.centered { text-align: center; }
.label-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 999px;
  padding: .3rem .85rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: .5rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 560px;
}
.section-header.centered .section-lead { margin: 0 auto; }

/* HOW PREVIEW */
.how-preview {
  padding: 5rem 5%;
  background: #fff;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  flex-wrap: wrap;
}
.step-card {
  flex: 1;
  min-width: 180px;
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.step-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.step-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
}
.step-arrow {
  color: var(--blue);
  align-self: center;
  flex-shrink: 0;
  padding-top: 1rem;
}

/* REVIEWS PREVIEW */
.reviews-preview {
  padding: 5rem 5%;
  background: var(--off-white);
}
.rating-display {
  display: flex;
  align-items: center;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: .8rem;
}
.stars-row { color: #F59E0B; }
.rating-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
}
.rating-count {
  font-size: .9rem;
  color: var(--gray);
}
.reviews-grid-small {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.review-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.review-stars {
  color: #F59E0B;
  margin-bottom: .7rem;
}
.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .88rem;
  flex-shrink: 0;
}
.review-author span {
  font-size: .9rem;
  font-weight: 700;
}

/* CTA SECTION */
.cta-section {
  padding: 5rem 5%;
  background: var(--navy);
}
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-box h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.cta-note {
  margin-top: 1rem !important;
  font-size: .85rem !important;
  color: rgba(255,255,255,.4) !important;
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(150deg, var(--navy) 0%, #1E1B4B 100%);
  padding: 4.5rem 5% 3.5rem;
  text-align: center;
}
.page-hero .label-badge {
  background: rgba(96,165,250,.15);
  color: #BAE6FD;
  margin-bottom: .8rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .8rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

/* BREADCRUMB */
.breadcrumb {
  padding: .9rem 5%;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.breadcrumb nav {
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb ol {
  display: flex;
  gap: .4rem;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-size: .88rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.breadcrumb li:not(:last-child)::after { content: '›'; }
.breadcrumb a {
  color: var(--blue);
  font-weight: 600;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current] {
  font-weight: 700;
  color: var(--navy);
}

/* SERVICE CARDS */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.svc-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(124,58,237,.1);
  transform: translateY(-4px);
}
.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.svc-card p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.tag {
  background: var(--gray-light);
  color: var(--gray);
  border-radius: 999px;
  padding: .22rem .65rem;
  font-size: .78rem;
  font-weight: 700;
}

/* POLICY CARDS */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.policy-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.policy-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .6rem;
}
.policy-card p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: .8rem;
}
.policy-list {
  list-style: none;
  display: grid;
  gap: .5rem;
}
.policy-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.6;
}
.policy-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 1.5px solid #93C5FD;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D4ED8' stroke-width='2.5'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: .8rem;
}
.faq-item {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}
.faq-q:hover { background: var(--off-white); }
.faq-q:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-ans-inner {
  padding: 0 1.4rem 1.4rem;
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* REVIEWS (full page) */
.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}
.review-card-full {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: box-shadow .2s, transform .2s;
}
.review-card-full:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.rc-top {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
}
.rc-name {
  font-size: .95rem;
  font-weight: 800;
}
.rc-date {
  font-size: .78rem;
  color: var(--gray);
  margin-top: 2px;
}
.rc-title {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.rc-body {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}
.verified {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .8rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
}

/* WIFI PAGE */
.wifi-hero-stat { text-align: center; }
.wifi-hero-stat strong {
  font-size: 3rem;
  font-weight: 900;
  color: #BAE6FD;
  display: block;
}
.wifi-hero-stat span {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.problem-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.problem-card p {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-box {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-wa-big {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--wa);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
  margin-bottom: 1rem;
}
.contact-wa-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37,211,102,.4);
}
.contact-wa-big svg { flex-shrink: 0; }
.contact-info-box {
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.contact-info-box h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.contact-info-box p {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: .8rem;
}
.step-list {
  list-style: none;
  display: grid;
  gap: .7rem;
}
.step-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.6;
}
.step-num-sm {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* CENTERED */
.centered { text-align: center; }

/* GENERAL SECTIONS */
section.padded { padding: 5rem 5%; }
section.padded-sm { padding: 3rem 5%; }
section.bg-off { background: var(--off-white); }
section.bg-navy { background: var(--navy); }

/* FOOTER */
.site-footer {
  background: #020810;
  color: rgba(255,255,255,.38);
  padding: 3.5rem 5% 1.5rem;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-col .footer-logo {
  display: flex;
  gap: 3px;
  margin-bottom: .8rem;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-brand-col strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .4rem;
}

.footer-brand-col p {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  margin-bottom: .4rem;
}.footer-kvk {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}
.footer-nav-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: .8rem;
}
.footer-nav-col ul {
  display: grid;
  gap: .35rem;
}
.footer-nav-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-nav-col a:hover { color: #fff; }
.footer-contact-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: .8rem;
}
.footer-contact-col p {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--wa);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  transition: background .2s;
}
.footer-wa-btn:hover { background: var(--wa-dark); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.2rem auto 0;
  font-size: .8rem;
  text-align: center;
}

/* WA FLOAT (mobile) */
.wa-float {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 500;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.44);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-wide { grid-column: span 2; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  .nav-inner {
    height: 78px;
    gap: .75rem;
  }

  .nav-brand { margin-right: auto; }

  .hero-chips { gap: .7rem; }

  .hero-chips .chip-item {
    padding: .7rem .95rem;
    font-size: .9rem;
  }
}

@media (max-width: 768px) {
  html { font-size: 17px; }

  .topbar {
    padding: .45rem 4%;
  }

  .topbar-inner {
    gap: .6rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-inner span { font-size: .8rem; }

  .hero {
    min-height: auto;
    padding: 5rem 5% 4rem;
  }

  .hero h1 { font-size: 2.2rem; }

  .hero-btns { flex-direction: column; }

  .btn-primary.btn-xl,
  .btn-outline-light.btn-xl {
    width: 100%;
    justify-content: center;
  }

  .hero-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    max-width: 100%;
  }

  .hero-chips .chip-item {
    min-height: 56px;
    width: 100%;
    justify-content: flex-start;
    border-radius: 18px;
    padding: .85rem .95rem;
  }

  .hero-chips .chip-item span {
    white-space: normal;
    line-height: 1.25;
  }

  .tiles-grid { grid-template-columns: 1fr; }
  .tile-wide { grid-column: span 1; }
  .steps-row { flex-direction: column; }
  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
  }
  .reviews-grid-small,
  .svc-grid,
  .problem-cards,
  .policy-grid { grid-template-columns: 1fr; }
  .trust-items {
    flex-direction: column;
    gap: .7rem;
  }
  .wa-float { display: flex; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav-inner {
    padding: 0 4%;
    height: 72px;
  }

  .nav-logo-img {
    width: 42px;
    height: 42px;
    padding: 5px;
  }

  .nav-name { font-size: 1.02rem; }
  .nav-tagline { font-size: .64rem; }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    padding: .85rem 4% 1.2rem;
  }

  .chip-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .tile-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .step-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  html { font-size: 16px; }

  .container { padding: 0 4%; }

  section.padded { padding: 3.5rem 4%; }

  .hero h1 { font-size: 2rem; }

  .reviews-full-grid { grid-template-columns: 1fr; }

  .nav-inner { height: 68px; }

  .nav-logo-img {
    width: 38px;
    height: 38px;
    padding: 4px;
    border-radius: 10px;
  }

  .nav-name { font-size: .95rem; }
  .nav-tagline { display: none; }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-chips { grid-template-columns: 1fr; }

  .hero-chips .chip-item {
    min-height: 54px;
    padding: .85rem .95rem;
  }

  .chip-icon {
    width: 1rem;
    height: 1rem;
  }
}

/* FOCUS STYLES (accessibility) */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* SVG icon system */
.btn-icon,
.menu-icon,
.tile-svg,
.step-svg,
.card-svg,
.section-title-icon,
.title-inline-icon,
.note-icon,
.chip-icon,
.inline-arrow-icon,
.step-arrow-svg,
.star-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.btn-icon { width: 1.05rem; height: 1.05rem; }
.menu-icon { width: 1.1rem; height: 1.1rem; }
.tile-svg { width: 2rem; height: 2rem; }
.step-svg { width: 2rem; height: 2rem; }
.card-svg { width: 1.65rem; height: 1.65rem; }
.section-title-icon { width: 1.45rem; height: 1.45rem; }
.title-inline-icon { width: 1.2rem; height: 1.2rem; }
.note-icon { width: 1rem; height: 1rem; }
.inline-arrow-icon { width: 1rem; height: 1rem; }
.step-arrow-svg { width: 1.5rem; height: 1.5rem; }
.star-icon { width: 1rem; height: 1rem; }
.star-empty { opacity: .25; }

.icon-heading {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.section-title-heading { justify-content: center; }
.title-inline-heading { line-height: 1.3; }

.note-with-icon {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

.chip-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: #BAE6FD;
  flex-shrink: 0;
  opacity: .98;
}

.stars-icons {
  display: inline-flex;
  gap: .12rem;
  color: #F59E0B;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(13,18,53,.08);
  padding: 6px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.mobile-menu a span { flex: 1; }

.mobile-wa-btn,
.nav-cta,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-light,
.footer-wa-btn,
.contact-wa-big,
.topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.tile-icon,
.step-icon-wrap,
.svc-card-icon,
.problem-card-icon,
.safety-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: rgba(255,255,255,.45);
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto .9rem;
  border-radius: 18px;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--blue);
}

.svc-card-icon,
.problem-card-icon {
  color: var(--blue);
}

.tile-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.problem-card p[style*="font-weight:700"] {
  display: flex;
  align-items: center;
  gap: .45rem;
}