/* ============================================================
   5iX Network — Main Stylesheet
   Design: Dark technical, direct, no-nonsense
   ============================================================ */

/* ---- Variables ---- */
:root {
  --color-primary:      #cc0000;
  --color-primary-dark: #9a0000;
  --color-dark:         #0d1117;
  --color-surface:      #161b25;
  --color-surface-alt:  #1e2535;
  --color-light:        #f8fafc;
  --color-text:         #111827;
  --color-text-inv:     #e2e8f0;
  --color-text-muted:   #6b7280;
  --color-accent:       #e53e3e;
  --color-border:       #e5e7eb;
  --color-border-dark:  #2d3748;
  --nav-height:         64px;
  --topbar-height:      36px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

/* ---- Topbar ---- */
.topbar {
  height: var(--topbar-height);
  background: #080d14;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #94a3b8;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-left { display: flex; align-items: center; gap: 1.5rem; }
.lang-switch { display: flex; align-items: center; gap: 0.5rem; }
.lang-switch a { color: #94a3b8; font-weight: 400; transition: color 0.2s; }
.lang-switch a.active { color: #fff; font-weight: 600; }
.lang-switch span { color: #3d4f6b; }
.lang-switch a:hover { color: #fff; }
.topbar-badges { display: flex; align-items: center; gap: 1rem; }
.topbar-badge {
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.3);
  color: #93c5fd;
  padding: 0.1rem 0.6rem;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 500;
}
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-right a { color: #94a3b8; display: flex; align-items: center; gap: 0.35rem; transition: color 0.2s; }
.topbar-right a:hover { color: #e2e8f0; }
.topbar-right svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---- Main Navigation ---- */
.main-nav {
  height: var(--nav-height);
  background: var(--color-dark);
  border-bottom: 1px solid var(--color-border-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.main-nav.scrolled {
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links > li > a svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 540px;
  background: #111827;
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-dropdown-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border-dark);
}
.nav-dropdown-col-title {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  color: #94a3b8;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-dropdown a svg { width: 15px; height: 15px; color: var(--color-primary); flex-shrink: 0; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}
.nav-phone:hover { color: #fff; }
.nav-phone svg { width: 15px; height: 15px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #94a3b8;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(204,0,0,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--color-text-inv);
  border: 1px solid var(--color-border-dark);
}
.btn-secondary:hover { border-color: #4b5563; background: rgba(255,255,255,0.04); }
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover { background: #0891b2; transform: translateY(-1px); }
.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline-primary:hover { background: var(--color-primary); color: #fff; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; }
/* btn-outline: for use on dark backgrounds */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
/* btn-outline-light: for use on light/white backgrounds */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ---- Section Utilities ---- */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: var(--color-dark); color: var(--color-text-inv); }
.section-surface { background: var(--color-surface); color: var(--color-text-inv); }
.section-light { background: var(--color-light); }
.section-white { background: #fff; }
.section-cta { background: var(--color-primary); color: #fff; padding: 4rem 0; }
.section-label-light { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; }
.section-header-light h2 { color: #fff; }
.section-header-light p { color: #94a3b8; }
.grid-align-center { align-items: center; }
.content-block { display: flex; flex-direction: column; gap: 1rem; }
.content-block h2 { color: #111827; }
.section-dark .content-block h2 { color: #fff; }

/* ---- Feature List (icon + text rows) ---- */
.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(204,0,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-text { display: flex; flex-direction: column; gap: 0.2rem; }
.feature-text strong { font-size: 0.9rem; color: #111827; font-weight: 600; }
.section-dark .feature-text strong { color: #f1f5f9; }
.feature-text span { font-size: 0.82rem; color: #6b7280; line-height: 1.5; }
.section-dark .feature-text span { color: #64748b; }

/* ---- How Grid (numbered steps on dark bg) ---- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.how-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 1.75rem;
}
.how-card-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.how-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.how-card p { color: #64748b; font-size: 0.875rem; line-height: 1.6; }
@media (max-width: 767px) { .how-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- CTA Banner ---- */
.cta-banner { background: linear-gradient(135deg, #0d1117 0%, #1a0000 100%); padding: 4rem 0; border-top: 1px solid rgba(204,0,0,0.2); }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner-text h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-banner-text p { color: #94a3b8; font-size: 1rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---- CTA Block (centered) ---- */
.cta-block { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-block h2 { color: #fff; margin-bottom: 1rem; }
.cta-block p { color: #94a3b8; margin-bottom: 2rem; }
.section-cta .cta-block h2 { color: #fff; }
.section-cta .cta-block p { color: rgba(255,255,255,0.8); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- Page Hero Actions ---- */
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 600px;
}
.section-header.center p { margin: 0 auto; }
.section-dark .section-header p { color: #64748b; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.75);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.88), rgba(204,0,0,0.28));
  z-index: 1;
}
.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.25);
  color: var(--color-accent);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.hero-label svg { width: 13px; height: 13px; }
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 800px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 620px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  color: var(--color-text-inv);
  font-size: 0.85rem;
}
.hero-stat strong { color: #fff; font-weight: 700; }
.hero-stat svg { width: 14px; height: 14px; color: var(--color-accent); }

/* Service hero (smaller) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero .hero-inner { padding: 5rem 1.5rem 4rem; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.page-hero .hero-subtitle { margin-bottom: 1.75rem; color: #e2e8f0; }
.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(204,0,0,0.18);
  border: 1px solid rgba(204,0,0,0.4);
  color: #f87171;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.page-hero-lead {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 640px;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2-tight { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4, .grid-2-tight { grid-template-columns: 1fr; }
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(204,0,0,0.15), 0 8px 30px rgba(204,0,0,0.08);
  transform: translateY(-2px);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(204,0,0,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.service-card-icon svg { width: 24px; height: 24px; }
.service-card h3 { color: #fff; font-size: 1rem; }
.service-card p { color: #64748b; font-size: 0.875rem; line-height: 1.6; flex: 1; }
.service-card-link {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
  margin-top: auto;
}
.service-card:hover .service-card-link { gap: 0.6rem; }
.service-card-link svg { width: 13px; height: 13px; }

/* ---- Tech Badges ---- */
.tech-category { margin-bottom: 1.75rem; }
.tech-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4b5563;
  margin-bottom: 0.75rem;
}
.tech-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tech-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-dark);
  color: #94a3b8;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.tech-badge:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* Light variant */
.section-light .tech-badge, .section-white .tech-badge {
  background: rgba(204,0,0,0.06);
  border-color: rgba(204,0,0,0.15);
  color: var(--color-primary-dark);
}
.section-light .tech-badge:hover, .section-white .tech-badge:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.section-light .tech-category-label, .section-white .tech-category-label {
  color: var(--color-text-muted);
}

/* ---- Feature List ---- */
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
}
.feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.feature-item span { color: var(--color-text-inv); }
.section-light .feature-item span,
.section-white .feature-item span { color: var(--color-text); }

/* ---- Process Steps ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(to right, var(--color-border-dark), var(--color-primary), var(--color-border-dark));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 56px;
  height: 56px;
  background: var(--color-surface);
  border: 2px solid var(--color-border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 0 auto 1.25rem;
  transition: border-color 0.3s, background 0.3s;
}
.process-step:hover .process-number {
  border-color: var(--color-accent);
  background: rgba(204,0,0,0.08);
}
.process-step h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1rem; }
.process-step p { color: #64748b; font-size: 0.85rem; line-height: 1.6; }

@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 550px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---- Patrick Section ---- */
.patrick-section { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: center; }
.patrick-photo {
  position: relative;
}
.patrick-photo img {
  width: 100%;
  border-radius: 12px;
  filter: grayscale(20%) contrast(1.05);
}
.patrick-photo::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  z-index: -1;
}
.patrick-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #94a3b8;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
  line-height: 1.75;
}
.patrick-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.patrick-note { color: #4b5563; font-size: 0.82rem; margin-top: 0.75rem; font-style: italic; }

@media (max-width: 767px) {
  .patrick-section { grid-template-columns: 1fr; }
  .patrick-photo { max-width: 240px; }
}

/* ---- Values Grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.value-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(204,0,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.05rem; color: #111827; margin: 0; }
.value-card p { color: #4b5563; font-size: 0.875rem; line-height: 1.65; margin: 0; }
@media (max-width: 767px) {
  .values-grid { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Facts Grid ---- */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.fact-card {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
}
.fact-number {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  white-space: nowrap;
}
.fact-label {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Company Details ---- */
.company-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  border-top: 1px solid var(--color-border-dark);
  padding-top: 1.5rem;
}
.company-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.company-detail-label {
  color: #64748b;
}
.company-detail-value {
  color: #e2e8f0;
  font-weight: 500;
}

/* ---- Partners ---- */
.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 10px;
  transition: opacity 0.2s;
  min-width: 140px;
  opacity: 0.85;
}
.partner-item:hover { opacity: 1; }
.partner-item img { height: 40px; width: auto; }
.partner-item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  min-width: 160px;
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- Clients ---- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.client-placeholder {
  height: 72px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 8px;
}
.client-name-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.client-name-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(204,0,0,0.08);
}
.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .clients-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Kennisbank Card ---- */
.article-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.article-card-body { padding: 1.5rem; }
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}
.article-card-cat {
  background: rgba(204,0,0,0.08);
  color: var(--color-primary);
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
}
.article-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--color-text); }
.article-card p { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; }
.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.article-card:hover .article-card-link { gap: 0.6rem; }
.article-card-link svg { width: 13px; height: 13px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(204,0,0,0.1) 100%);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: #64748b; margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; color: var(--color-primary); }
.faq-item.open .faq-icon { background: var(--color-primary); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.925rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ---- Contact Form ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { }
.contact-info h2 { color: #fff; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(204,0,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--color-accent); }
.contact-detail-text { }
.contact-detail-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #4b5563; margin-bottom: 0.25rem; }
.contact-detail-value { color: var(--color-text-inv); font-size: 0.925rem; }
.contact-detail-value a { color: var(--color-text-inv); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--color-accent); }

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 2rem;
}
.contact-form h3 { color: #fff; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--color-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 7px;
  padding: 0.7rem 1rem;
  color: var(--color-text-inv);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: #374151; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- Contact Page Extended ---- */
.contact-details h2 { color: var(--color-text); margin-bottom: 1.75rem; }
.contact-detail-block {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-detail-block:last-child { border-bottom: none; }
.contact-detail-body { flex: 1; }
.contact-detail-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.2rem; }
.contact-detail-locked { color: var(--color-text-muted); font-style: italic; font-size: 0.9rem; }
.section-light .contact-detail-label { color: var(--color-text-muted); }
.section-light .contact-detail-value { color: var(--color-text); }
.section-light .contact-detail-value a { color: var(--color-primary); }
.section-light .contact-detail-value a:hover { color: var(--color-primary-dark); }
.contact-form-wrapper h2 { color: var(--color-text); margin-bottom: 1.75rem; }
.contact-form-wrapper .contact-form { background: #fff; border: 1px solid var(--color-border); }
.contact-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--color-text-muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 7px;
  padding: 0.7rem 1rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.required { color: #ef4444; }
.form-submit { margin-top: 1.5rem; }
.form-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.75rem; text-align: center; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Consultancy Block ---- */
.consultancy-block { display: flex; gap: 2rem; align-items: center; max-width: 780px; margin: 0 auto; }
.consultancy-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}
.consultancy-content h2 { color: var(--color-text-inv); margin-bottom: 0.75rem; }
.consultancy-content p { color: #94a3b8; margin-bottom: 1.25rem; line-height: 1.7; }

/* ---- Hours Section ---- */
.hours-section > h2 { color: var(--color-text); margin-bottom: 2rem; text-align: center; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; max-width: 780px; margin: 0 auto; }
.hours-table { display: flex; flex-direction: column; }
.hours-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: var(--color-text); }
.hours-time { color: var(--color-text-muted); }
.hours-row-closed .hours-day, .hours-row-closed .hours-time { color: #9ca3af; }
.hours-note-card { background: var(--color-dark); border: 1px solid var(--color-border-dark); border-radius: 12px; padding: 1.5rem; }
.hours-note-icon { width: 48px; height: 48px; background: rgba(204,0,0,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--color-accent); }
.hours-note-card h3 { color: var(--color-text-inv); font-size: 1rem; margin-bottom: 0.5rem; }
.hours-note-card p { color: #94a3b8; font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }

@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row, .form-row-2 { grid-template-columns: 1fr; }
  .consultancy-block { flex-direction: column; text-align: center; }
  .hours-grid { grid-template-columns: 1fr; }
}

/* ---- Datacenter Card ---- */
.dc-card {
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(13,17,23,0.8);
  border: 1px solid var(--color-border-dark);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  backdrop-filter: blur(12px);
  max-width: 400px;
}
.dc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.2);
  color: var(--color-accent);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.dc-badge::before { content: ''; width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%; animation: pulse-dot 2s infinite; }
.dc-card h3 { color: #fff; font-size: 1.25rem; }
.dc-features { display: flex; flex-direction: column; gap: 0.5rem; }
.dc-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: #94a3b8; }
.dc-feature svg { width: 14px; height: 14px; color: var(--color-accent); flex-shrink: 0; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ---- Footer ---- */
.footer {
  background: #070b11;
  padding: 4rem 0 0;
  border-top: 1px solid var(--color-border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-tagline { color: #4b5563; font-size: 0.85rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-badges { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.78rem;
  font-weight: 500;
}
.footer-badge-item svg { width: 14px; height: 14px; color: var(--color-primary); }
.footer-col h4 {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: #4b5563;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #94a3b8; }
.footer-contact-item { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 0.6rem; }
.footer-contact-item span:first-child { color: #4b5563; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-contact-item a { color: #64748b; font-size: 0.85rem; transition: color 0.2s; }
.footer-contact-item a:hover { color: #94a3b8; }
.footer-bottom {
  border-top: 1px solid #111827;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-left { color: #2d3748; font-size: 0.8rem; }
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-bottom-right a {
  color: #2d3748;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-bottom-right a:hover { color: #4b5563; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- USP Blocks ---- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.usp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  padding: 1.5rem;
}
.usp-icon { color: var(--color-accent); margin-bottom: 0.75rem; }
.usp-icon svg { width: 28px; height: 28px; }
.usp-card h4 { color: #fff; margin-bottom: 0.5rem; font-size: 0.95rem; }
.usp-card p { color: #64748b; font-size: 0.85rem; line-height: 1.6; }

@media (max-width: 767px) {
  .usp-grid { grid-template-columns: 1fr; }
}

/* ---- How We Work (service detail) ---- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  padding: 1.75rem;
}
.how-item h3 { color: var(--color-accent); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.75rem; }
.how-item p { color: #64748b; font-size: 0.875rem; line-height: 1.65; }

@media (max-width: 767px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ---- Merkbelofte (homepage) ---- */
.promise-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.promise-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.promise-card-body {
  padding: 1.75rem 2rem 2rem;
}
.promise-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--color-text); }
.promise-card p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: #64748b; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 540px;
  background: #111827;
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 1.5rem;
  z-index: 999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
}
.cookie-banner.visible { display: block; animation: slideUp 0.3s ease; }
.cookie-banner p { color: #94a3b8; font-size: 0.85rem; margin-bottom: 1.25rem; line-height: 1.6; }
.cookie-banner a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-accept { background: var(--color-primary); color: #fff; padding: 0.55rem 1.25rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; border: none; cursor: pointer; transition: background 0.2s; }
.cookie-accept:hover { background: var(--color-primary-dark); }
.cookie-reject { background: transparent; color: #64748b; padding: 0.55rem 1.25rem; border-radius: 6px; font-size: 0.85rem; border: 1px solid var(--color-border-dark); cursor: pointer; transition: all 0.2s; }
.cookie-reject:hover { color: #94a3b8; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Mobile Nav ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #070b11;
  z-index: 500;
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border-dark);
}
.mobile-menu-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: #94a3b8;
}
.mobile-menu-body { padding: 1.5rem; flex: 1; }
.mobile-nav-section { margin-bottom: 2rem; }
.mobile-nav-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #374151;
  margin-bottom: 0.75rem;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  color: #94a3b8;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #fff; }
.mobile-nav-link svg { width: 16px; height: 16px; color: var(--color-primary); }
.mobile-menu-footer { padding: 1.5rem; border-top: 1px solid var(--color-border-dark); }
.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.mobile-contact-link svg { width: 16px; height: 16px; }

/* ---- Misc utilities ---- */
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-2 { gap: 1rem; }
.align-center { align-items: center; }
.separator { border: none; border-top: 1px solid var(--color-border-dark); margin: 3rem 0; }

/* ---- Responsive ---- */
@media (max-width: 1023px) {
  .topbar-badges { display: none; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .patrick-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  :root { --nav-height: 56px; }
  .section { padding: 3rem 0; }
  .hero-inner { padding: 4rem 1.5rem 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 0.5rem; }
  .topbar-right { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .usp-grid { grid-template-columns: 1fr; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   MISSING COMPONENT STYLES — added 2026-03-30
   ============================================================ */

/* ---- Feature Cards (hosting, voip, ondersteuning) ---- */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.features-grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: var(--color-accent); transform: translateY(-2px); }
.feature-card h3 { color: #fff; font-size: 0.95rem; margin: 0; }
.feature-card p { color: #64748b; font-size: 0.85rem; line-height: 1.6; margin: 0; }
.feature-card-light {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card-light:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.feature-card-light h3 { color: #111827; font-size: 0.95rem; margin: 0; }
.feature-card-light p { color: #6b7280; font-size: 0.85rem; line-height: 1.6; margin: 0; }
@media (max-width: 767px) {
  .features-grid, .features-grid-3 { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .features-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Split Section (2-col text + visual) ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-content { display: flex; flex-direction: column; gap: 1rem; }
.split-content h2 { color: #fff; }
.section-light .split-content h2,
.section-white .split-content h2 { color: #111827; }
.split-visual { display: flex; justify-content: center; }
@media (max-width: 767px) {
  .split-section { grid-template-columns: 1fr; }
  .split-reverse { direction: ltr; }
}

/* ---- Visual Card (datacenter stats) ---- */
.visual-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  padding: 2rem;
  min-width: 240px;
  max-width: 320px;
  width: 100%;
}
.visual-card-icon {
  width: 48px; height: 48px;
  background: rgba(204,0,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.visual-card-icon svg { width: 24px; height: 24px; }
.visual-card-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.visual-card-items { display: flex; flex-direction: column; gap: 0.5rem; }
.visual-card-item { font-size: 0.875rem; color: #94a3b8; }

/* ---- Section Badge ---- */
.section-badge {
  display: inline-block;
  background: rgba(204,0,0,0.1);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

/* ---- Comparison Grid (remote vs on-site) ---- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.comparison-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.75rem;
}
.comparison-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}
.comparison-icon {
  width: 44px; height: 44px;
  background: rgba(204,0,0,0.08);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.comparison-icon svg { width: 22px; height: 22px; }
.comparison-header h3 { font-size: 1rem; color: #111827; margin: 0; }
.comparison-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.comparison-list li { font-size: 0.875rem; color: #374151; }
@media (max-width: 767px) { .comparison-grid { grid-template-columns: 1fr; } }

/* ---- Section Header Variants ---- */
.section-header-dark h2 { color: #111827; }
.section-header-dark p { color: #6b7280; }
.section-header-center { text-align: center; }
.section-header-center p { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---- Page Header (legal pages) ---- */
.page-header {
  padding: 4rem 0 3rem;
  background: var(--color-dark);
}
.page-header-light {
  padding: 4rem 0 3rem;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}
.page-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #111827; margin-bottom: 0.5rem; }
.page-header-light h1 { color: #111827; }
.page-header p { color: #6b7280; font-size: 1rem; }

/* ---- Prose Content (legal pages) ---- */
.prose-content { max-width: 800px; }
.prose-content h2 { font-size: 1.25rem; font-weight: 700; color: #111827; margin: 2.5rem 0 0.75rem; }
.prose-content h3 { font-size: 1rem; font-weight: 600; color: #111827; margin: 1.75rem 0 0.5rem; }
.prose-content p { color: #374151; line-height: 1.8; margin-bottom: 1rem; }
.prose-content ul { margin: 0.75rem 0 1.25rem 1.5rem; }
.prose-content ul li { color: #374151; line-height: 1.7; margin-bottom: 0.4rem; }
.prose-address { font-style: normal; color: #374151; line-height: 1.8; }

/* ---- Tech Grid (light variant) ---- */
.tech-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.tech-category-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; margin-bottom: 0.75rem; }
.tech-badge-light {
  display: inline-flex; align-items: center;
  background: #f1f5f9;
  color: #374151;
  border: 1px solid #e2e8f0;
  font-size: 0.8rem; font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
}

/* ---- How Card Variants ---- */
.how-card-featured { border-color: var(--color-primary); }
.how-card-highlight { color: var(--color-primary); font-weight: 600; font-size: 0.85rem; margin-top: 0.75rem; }
.how-card-list { list-style: none; padding: 0; margin: 0.75rem 0 0; display: flex; flex-direction: column; gap: 0.4rem; }
.how-card-list li { font-size: 0.85rem; color: #94a3b8; }

/* ---- Article Cards (kennisbank index) ---- */
.article-card-title { font-size: 1rem; font-weight: 600; color: #111827; line-height: 1.4; margin-bottom: 0.4rem; }
.article-card-teaser { font-size: 0.85rem; color: #6b7280; line-height: 1.6; }

/* ---- Contact Detail ---- */
.contact-detail-content { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-detail-link { color: var(--color-primary); font-weight: 500; text-decoration: none; }
.contact-detail-link:hover { text-decoration: underline; }

/* ---- Hours Note ---- */
.hours-note { font-size: 0.8rem; color: #94a3b8; font-style: italic; margin-top: 0.5rem; }

/* ---- Hero Badge / Title ---- */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(204,0,0,0.12);
  border: 1px solid rgba(204,0,0,0.3);
  color: #f87171;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1.25rem; }

/* ---- Level Card (CIS kennisbank) ---- */
.level-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  padding: 1.5rem;
}
.level-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.level-card p { color: #64748b; font-size: 0.875rem; line-height: 1.6; }

/* ---- Info Text Large ---- */
.info-text-large { font-size: 1.15rem; color: #374151; line-height: 1.8; }

/* ---- Patrick Content ---- */
.patrick-content { display: flex; flex-direction: column; justify-content: center; }

/* ---- Nav Active ---- */
a.nav-active, .nav-links a.nav-active { color: var(--color-primary); }

/* ---- USP Items ---- */
.usps-row { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; margin: 1.5rem 0; }
.usp-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.usp-label { font-weight: 600; color: #111827; }
.section-dark .usp-label { color: #f1f5f9; }
.usp-divider { color: #d1d5db; }

/* ---- Example Cards ---- */
.example-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-dark);
  border-radius: 10px;
  padding: 1.5rem;
}
.example-num { font-size: 1.5rem; font-weight: 800; color: var(--color-primary); opacity: 0.4; margin-bottom: 0.5rem; }


/* ---- Form Feedback Messages ---- */
.form-feedback {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: none;
}
.form-feedback:not(:empty) { display: block; }
.form-feedback-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  color: #065f46;
}
.form-feedback-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  color: #991b1b;
}
