/* ==========================================
     GLOBAL VARIABLES & RESETS
     ========================================== */
:root {
  --lime: #84ff00;
  --lime-soft: #b6ff5c;
  --purple: #7b2cff;
  --bg-dark: #050508;
  --glass-dark: rgba(0,0,0,0.55);
  --glass-soft: rgba(10,10,10,0.65);
  --border-soft: rgba(255,255,255,0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: white;
  background:
    radial-gradient(circle at top left, rgba(132,255,0,0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(123,44,255,0.45), transparent 55%),
    linear-gradient(135deg, #0b0b10, #050508 60%, #090013);
  min-height: 100vh;
}

a {
  color: inherit;
}

/* ==========================================
     INTRO LAAG & LOGO TRANSFORMATIE EFFECT
     ========================================== */
#toggle-view {
  display: none;
}

.intro-image-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505;
  z-index: 9999; /* Valt over de site, maar onder het transformerende logo */
  cursor: pointer;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.click-overlay {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(57, 255, 20, 0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Verberg de introductielaag na de klik */
#toggle-view:checked ~ .intro-image-wrapper {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-logo {
  position: relative;
}

/* STARTSTAND: Het logo is groot over het scherm geblazen */
.intro-logo-effect {
  z-index: 10000;
  position: relative;
  transform-origin: left center;
  transform: translate(calc(50vw - 50% - 20px), calc(50vh - 50% - 20px)) scale(8);
  filter: drop-shadow(0 0 4px rgba(57, 255, 20, 0.2));
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s;
}

/* NA KLIK: Het logo vliegt strak terug naar de 40px navbar structuur */
#toggle-view:checked ~ .nav-wrapper .intro-logo-effect {
  transform: translate(0, 0) scale(1);
  filter: none;
}

/* ==========================================
     UNIVERSAL NAVBAR
     ========================================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.65));
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: 0 !important;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-title-main {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}

.nav-title-sub {
  font-size: 11px;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nav-links a {
  color: var(--lime-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  background: var(--purple);
  color: white;
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 12px rgba(123,44,255,0.7);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #e0e0e0;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #39ff14;
  border-radius: 50%;
  box-shadow: 0 0 8px #39ff14;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(57, 255, 20, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

.nav-login-btn {
  background: #39ff14;
  color: #0a0a0a;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.8);
}

.nav-login-btn:hover {
  background: #fff;
  color: #0a0a0a;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
  transform: translateY(-1px);
}

.nav-login-btn:active {
  transform: translateY(1px);
}

/* ==========================================
     HERO SECTIE
     ========================================== */
header.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 40px 20px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: 1px;
}

.hero-highlight {
  background: linear-gradient(90deg, var(--lime), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-tagline {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lime-soft);
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: #e0e0e0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.hero-badge:hover {
  background: rgba(57, 255, 20, 0.03);
  border-color: rgba(57, 255, 20, 0.2);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: #39ff14;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(57, 255, 20, 0.5);
}

.hero-cta-row {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  background: var(--lime);
  color: black;
  box-shadow: 0 0 18px rgba(132,255,0,0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-primary:hover {
  background: #c4ff6b;
  box-shadow: 0 0 22px rgba(132,255,0,0.9);
  transform: translateY(-2px);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-primary .btn-arrow {
  transition: transform 0.3s ease;
  font-weight: bold;
}

.btn-secondary {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  background: rgba(0,0,0,0.7);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.btn-secondary:hover {
  border-color: var(--purple);
  box-shadow: 0 0 16px rgba(123,44,255,0.8);
  color: var(--lime-soft);
  transform: translateY(-2px);
}

.btn-primary:active, .btn-secondary:active {
  transform: translateY(1px);
}

.hero-meta {
  font-size: 13px;
  line-height: 1.6;
  color: #a0a0a0;
  border-left: 2px solid rgba(57, 255, 20, 0.3);
  padding-left: 15px;
  margin-top: 20px;
  max-width: 420px;
}

.hero-meta strong {
  color: var(--lime-soft);
}

/* HERO RIGHT (SERVER PANEL) */
.hero-right {
  padding: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(132,255,0,0.18), transparent 60%),
              radial-gradient(circle at bottom right, rgba(123,44,255,0.35), transparent 60%),
              rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 30px rgba(0,0,0,0.9);
}

.hero-right-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
}

.hero-right-title {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
}

.hero-right-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-right-status .status-text {
  font-size: 12px;
  font-weight: 600;
  color: #39ff14;
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #39ff14;
  border-radius: 50%;
  box-shadow: 0 0 8px #39ff14;
  animation: statusPulse 2.5s infinite ease-in-out;
  display: inline-block;
}

@keyframes statusPulse {
  0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.5); }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 10px 4px rgba(57, 255, 20, 0.2); }
  100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

.hero-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-service-card {
  background: #0d0d0d;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease;
}

.hero-service-card:hover {
  background: rgba(255, 255, 255, 0.01);
}

.hero-service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

.hero-service-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #999;
  margin: 0;
}

.hero-service-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 8px;
  column-gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 15px;
}

.hero-service-meta .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  font-weight: bold;
}

.hero-service-meta .value {
  font-size: 12px;
  color: #ccc;
  text-align: right;
  font-family: monospace;
}

.hero-service-meta .value.speed { color: #39ff14; font-weight: bold; }
.hero-service-meta .value.secure { color: #00e5ff; font-weight: bold; }

.hero-right-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
  padding: 16px 20px;
  border-radius: 0 0 8px 8px;
  gap: 15px;
}

.footer-endpoint-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.endpoint-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  font-weight: bold;
}

.endpoint-url {
  font-family: monospace;
  font-size: 12px;
  color: #39ff14;
}

.btn-hero-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-hero-footer:hover {
  background: rgba(57, 255, 20, 0.1);
  border-color: #39ff14;
  color: #39ff14;
  transform: translateY(-1px);
}

/* ==========================================
     CORE CONTENT SECTIONS
     ========================================== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 30px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lime-soft);
  opacity: 0.9;
  margin-bottom: 6px;
}

.section-title {
  font-size: 26px;
  margin: 0 0 8px 0;
}

.section-subtitle {
  font-size: 14px;
  opacity: 0.8;
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================
     DIENSTEN INTERACTIEVE CARDS
     ========================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: var(--glass-dark);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(132,255,0,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.card:hover::before { opacity: 1; }

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(0,0,0,0.9);
  border-color: rgba(132,255,0,0.4);
}

.card h2 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.card p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 10px;
  line-height: 1.6;
}

.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.status-badge.online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.2);
  color: #39ff14;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.status-badge.online .dot {
  width: 6px;
  height: 6px;
  background: #39ff14;
  border-radius: 50%;
  box-shadow: 0 0 6px #39ff14;
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 6px;
  margin: 20px 0;
}

.card-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-stats .label {
  font-size: 10px;
  text-transform: uppercase;
  color: #555;
  font-weight: bold;
}

.card-stats .value {
  font-size: 13px;
  color: #fff;
  font-family: monospace;
}

.card-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-actions a {
  font-size: 12px;
  text-decoration: none;
}

.btn-ghost {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.7);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--lime-soft);
  box-shadow: 0 0 14px rgba(123,44,255,0.8);
}

.btn-outline-lime {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--lime-soft);
  background: transparent;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
  color: var(--lime-soft);
}

.btn-outline-lime:hover {
  background: rgba(132,255,0,0.12);
  box-shadow: 0 0 14px rgba(132,255,0,0.7);
}

/* DRIVE CARD SPECIFICS */
.drive-card {
  background: var(--glass-soft);
}

.drive-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.icon-box {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, var(--lime), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 12px rgba(132,255,0,0.7);
}

.badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.18);
}

.storage-usage {
  margin: 20px 0;
}

.storage-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
}

.storage-percentage {
  color: #39ff14;
  font-family: monospace;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #39ff14, #00e5ff);
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.file-types {
  display: flex;
  gap: 15px;
  margin: 15px 0 20px 0;
}

.file-types .dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
}

.type-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.docs-dot { background-color: var(--lime-soft); }
.media-dot { background-color: var(--purple); }
.other-dot { background-color: rgba(255,255,255,0.3); }

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.btn-drive {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: black;
  color: var(--lime);
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.btn-drive:hover {
  background: var(--purple);
  color: white;
  box-shadow: 0 0 16px rgba(123,44,255,0.9);
}

/* ==========================================
     LAYOUTS (TWO COLUMN & LISTS)
     ========================================== */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 24px;
  margin-top: 20px;
}

.text-block p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
  line-height: 1.6;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  font-size: 13px;
}

.bullet-list li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bullet-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(132,255,0,0.9);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.7);
  opacity: 0.85;
}

.highlight-box {
  border-radius: 18px;
  padding: 16px;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  opacity: 0.9;
}

.highlight-box strong { color: var(--lime-soft); }

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
}

.comparison-card {
  border-radius: 16px;
  padding: 14px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.1);
}

.comparison-title {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
}

.comparison-list li {
  margin-bottom: 4px;
}

/* ==========================================
     CONTACT STRUCTURE
     ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 24px;
  margin-top: 20px;
}

.contact-card {
  border-radius: 18px;
  padding: 16px;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
}

.contact-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-actions a {
  font-size: 12px;
  text-decoration: none;
}

.contact-note {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 10px;
}

/* ==========================================
     GLOBAL FOOTER
     ========================================== */
footer {
  margin-top: 30px;
  padding: 18px 20px 26px 20px;
  text-align: center;
  font-size: 12px;
  opacity: 0.75;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at top, rgba(123,44,255,0.25), transparent 60%);
}

footer span.brand {
  color: var(--lime-soft);
  font-weight: bold;
}

/* ==========================================
     COMPREHENSIVE RESPONSIVENESS MATRIX
     ========================================== */
@media (max-width: 900px) {
  .nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding-bottom: 6px;
  }

  nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 10px;
    text-align: center;
  }

  .nav-left {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .nav-title-main { font-size: 16px; }
  .nav-title-sub { font-size: 10px; }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 12px;
  }

  .nav-right {
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .nav-pill {
    font-size: 10px;
    padding: 3px 8px;
  }

  .nav-login-btn {
    width: 100%;
    padding: 10px;
    font-size: 13px;
  }

  header.hero {
    grid-template-columns: 1fr !important;
    padding: 40px 20px;
    margin-top: 140px; /* Voorkomt overlap met de gefixeerde mobiele navbar */
  }

  .hero-left h1 { font-size: 32px; }
  .hero-subtitle { font-size: 14px; }
  .hero-right { margin-top: 20px; }
  
  .hero-service-card {
    grid-template-columns: 1fr !important;
    text-align: left;
  }

  .hero-service-meta { text-align: left !important; }
  .two-column, .grid, .contact-grid { grid-template-columns: 1fr !important; }
  .card { padding: 16px; }
}

@media (max-width: 640px) {
  .hero-right-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-hero-footer {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .intro-logo-effect {
    /* Schuint op mobiel iets compacter om buiten het scherm vallen te voorkomen */
    transform: translate(calc(50vw - 50% - 15px), calc(50vh - 50% - 15px)) scale(5);
  }

  .nav-logo {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .nav-links a {
    font-size: 11px;
    padding: 5px 8px;
  }

  .nav-login-btn { font-size: 12px; }

  .hero-cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary, .btn-secondary, .btn-drive {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right { padding: 14px; }
  .card h2 { font-size: 16px; }
  .card p { font-size: 12px; }
  .hero-right-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}