/* ============================================================
   HRO FiberTech B.V. — Premium Dark Theme
   Huisstijl: zwart / metallic zilver / blauw / oranje
   ============================================================ */

:root {
  --bg: #05070E;
  --bg-2: #0A0F1C;
  --bg-3: #0E1526;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(255, 255, 255, 0.09);
  --blue: #1E6FE0;
  --blue-bright: #3B8BFF;
  --blue-glow: rgba(59, 139, 255, 0.45);
  --orange: #FF6B1A;
  --orange-bright: #FF8C42;
  --orange-glow: rgba(255, 107, 26, 0.45);
  --silver: #E8ECF4;
  --silver-dim: #9AA6BD;
  --text: #C4CDDE;
  --metal: linear-gradient(180deg, #FFFFFF 0%, #D9DFE9 38%, #8A94A8 50%, #E6EAF2 62%, #FFFFFF 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 107, 26, 0.07), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(30, 111, 224, 0.09), transparent 60%),
    radial-gradient(700px 500px at 60% 110%, rgba(30, 111, 224, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
main, section, header, footer { position: relative; z-index: 1; }

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

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--silver); }
h1 { font-size: clamp(2.5rem, 5.6vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -0.015em; }
h3 { font-size: 1.28rem; }
p  { color: var(--silver-dim); }

/* Metallic koptekst-effect (zoals het logo) */
.metal-text {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}
.accent-blue { color: var(--blue-bright); }
.accent-orange {
  background: linear-gradient(90deg, var(--orange-bright), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: 110px 0; }
.section-head { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-bright);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}
.kicker::before, .kicker::after {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
}
.kicker::after { background: linear-gradient(90deg, var(--orange), transparent); }
.section-head p { margin-top: 16px; font-size: 1.07rem; }

/* ---------- Knoppen ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  font-family: var(--font);
  overflow: hidden;
}
.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange) 55%, #E85304);
  color: #fff;
  box-shadow: 0 10px 34px var(--orange-glow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: shine 3.5s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { left: -80%; } 100% { left: 130%; } }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 44px var(--orange-glow); }

.btn-secondary {
  background: rgba(59, 139, 255, 0.08);
  color: var(--silver);
  border: 1.5px solid rgba(59, 139, 255, 0.5);
  box-shadow: 0 0 24px rgba(59, 139, 255, 0.12) inset;
}
.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--blue-bright);
  box-shadow: 0 0 30px rgba(59, 139, 255, 0.25) inset, 0 10px 30px rgba(30, 111, 224, 0.25);
}

/* ---------- Navigatie ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(5, 7, 14, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--panel-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo — nagebouwd in stijl van het HRO-beeldmerk */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-word {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-hro {
  display: flex; align-items: center;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-style: italic;
}
.logo-hro .hr {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-hro .o-ring {
  width: 1.5em; height: 1.5em;
  margin-left: 0.06em;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255, 107, 26, 0.5));
  animation: ringspin 14s linear infinite;
}
@keyframes ringspin { to { transform: rotate(360deg); } }
.logo-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.logo-sub .ft {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-sub .bv { color: var(--orange-bright); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav-links a:not(.btn):hover { color: var(--silver); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
  box-shadow: 0 0 10px var(--orange-glow);
  transition: width 0.35s ease;
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--silver); }
.nav-links .btn { padding: 11px 24px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  position: relative; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px; border-radius: 3px;
  background: var(--silver); margin: 5.5px auto; transition: 0.35s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  overflow: hidden;
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 107, 26, 0.09);
  border: 1px solid rgba(255, 140, 66, 0.4);
  color: var(--orange-bright);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 9px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.15);
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 var(--orange-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--orange-glow); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 26, 0); }
}
.hero h1 { margin-bottom: 24px; }
.hero p.lead {
  font-size: 1.16rem;
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--text);
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-usps { display: flex; gap: 30px; margin-top: 52px; flex-wrap: wrap; }
.hero-usps li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.94rem; font-weight: 600; color: var(--text);
}
.hero-usps svg { color: var(--orange-bright); flex-shrink: 0; filter: drop-shadow(0 0 6px var(--orange-glow)); }

/* Hero visual — glazen paneel met glasvezel-animatie */
.fiber-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.fiber-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(59, 139, 255, 0.6), transparent 30%, transparent 70%, rgba(255, 107, 26, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.fiber-lines path.glow { stroke-dasharray: 14 240; animation: dash 3s linear infinite; filter: drop-shadow(0 0 6px currentColor); }
.fiber-lines path.glow.d2 { animation-delay: 1s; }
.fiber-lines path.glow.d3 { animation-delay: 2s; }
@keyframes dash { to { stroke-dashoffset: -254; } }

.fiber-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.fiber-stat {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.fiber-stat:hover { transform: translateY(-4px); border-color: rgba(255, 140, 66, 0.5); }
.fiber-stat strong {
  display: block; font-size: 1.4rem; font-weight: 800;
  background: var(--metal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fiber-stat small { color: var(--silver-dim); font-size: 0.78rem; }

.hero-tagline {
  margin-top: 26px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.hero-tagline .b { color: var(--blue-bright); }
.hero-tagline .o { color: var(--orange-bright); }
.hero-tagline .w { color: var(--silver); }

/* Scroll-indicator */
.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
}
.scroll-hint::after {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--orange);
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ---------- Kaarten ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 26px; }
.card {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.card::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.14), transparent 70%);
  top: -80px; right: -80px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 139, 255, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(30, 111, 224, 0.12);
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }

.card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(59, 139, 255, 0.16), rgba(59, 139, 255, 0.05));
  border: 1px solid rgba(59, 139, 255, 0.35);
  color: var(--blue-bright);
  margin-bottom: 24px;
  transition: all 0.45s ease;
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  border-color: var(--orange-bright);
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 10px 30px var(--orange-glow);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.97rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  color: var(--orange-bright);
  font-weight: 700; font-size: 0.93rem;
}
.card .card-link svg { transition: transform 0.3s ease; }
.card:hover .card-link svg { transform: translateX(6px); }

/* ---------- Statistieken ---------- */
.stats-band {
  position: relative;
  background: linear-gradient(150deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(400px 200px at 15% 0%, rgba(30, 111, 224, 0.18), transparent 70%),
    radial-gradient(400px 200px at 85% 100%, rgba(255, 107, 26, 0.15), transparent 70%);
  pointer-events: none;
}
.stat { text-align: center; position: relative; z-index: 1; }
.stat .num {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  background: var(--metal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.stat .num .suffix { color: var(--orange-bright); -webkit-text-fill-color: var(--orange-bright); }
.stat .label { color: var(--silver-dim); margin-top: 12px; font-weight: 600; font-size: 0.95rem; }

/* ---------- Stappen ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.step {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 140, 66, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 34px rgba(255, 107, 26, 0.1);
}
.step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 8px 24px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.4);
  margin-bottom: 22px;
}
.step h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step p { font-size: 0.95rem; }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: linear-gradient(150deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 80px 56px;
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent 0%, var(--blue) 12%, transparent 25%, transparent 50%, var(--orange) 62%, transparent 75%);
  animation: rotate-border 7s linear infinite;
  z-index: 0;
}
.cta::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(150deg, #0B1120, #080D18);
  z-index: 0;
}
@keyframes rotate-border { to { transform: rotate(360deg); } }
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 18px; }
.cta p { max-width: 560px; margin: 0 auto 36px; font-size: 1.08rem; }

/* ---------- Pagina header ---------- */
.page-hero {
  position: relative;
  padding: 190px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 80% 0%, rgba(255, 107, 26, 0.12), transparent 65%),
    radial-gradient(700px 400px at 10% 100%, rgba(30, 111, 224, 0.14), transparent 65%),
    linear-gradient(160deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--panel-border);
}
.page-hero h1 { position: relative; z-index: 1; }
.page-hero p { font-size: 1.12rem; max-width: 620px; margin-top: 18px; position: relative; z-index: 1; }
.breadcrumb {
  position: relative; z-index: 1;
  display: flex; gap: 10px;
  color: var(--silver-dim);
  font-size: 0.9rem; font-weight: 600;
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--orange-bright); }

/* ---------- Split / Over ons ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-text h2 { margin-bottom: 22px; }
.split-text p { margin-bottom: 16px; }
.check-list { margin-top: 28px; display: grid; gap: 15px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 13px;
  font-weight: 600; color: var(--text);
}
.check-list svg { color: var(--orange-bright); flex-shrink: 0; margin-top: 4px; filter: drop-shadow(0 0 6px var(--orange-glow)); }

.img-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--bg-3), var(--bg-2));
  border: 2px dashed rgba(59, 139, 255, 0.35);
  min-height: 400px;
  display: grid; place-items: center;
  text-align: center;
  padding: 32px;
  transition: border-color 0.3s ease;
  overflow: hidden;
}
.img-placeholder:hover { border-color: var(--orange-bright); }
.img-placeholder svg { margin: 0 auto 16px; color: var(--blue-bright); }
.img-placeholder strong { display: block; color: var(--silver); margin-bottom: 6px; }
.img-placeholder small { font-size: 0.85rem; color: var(--silver-dim); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 26px; }

/* Brand-paneel (logo groot, Over Ons) */
.brand-panel {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--panel-border);
  min-height: 400px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.brand-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(360px 240px at 82% 12%, rgba(255, 107, 26, 0.18), transparent 70%),
    radial-gradient(380px 260px at 12% 90%, rgba(30, 111, 224, 0.2), transparent 70%);
  pointer-events: none;
}
.brand-panel::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(150deg, rgba(59, 139, 255, 0.6), transparent 32%, transparent 68%, rgba(255, 107, 26, 0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.brand-panel > div { position: relative; z-index: 1; }
.brand-panel .logo-hro {
  justify-content: center;
  font-size: clamp(3.4rem, 7vw, 5rem);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
}
.brand-panel .logo-sub {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  margin-top: 10px;
  letter-spacing: 0.05em;
}
.brand-panel .brand-line {
  width: 190px; height: 3px;
  margin: 26px auto 22px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-bright) 30%, var(--orange) 70%, transparent);
  box-shadow: 0 0 18px rgba(255, 107, 26, 0.35);
}
.brand-panel .brand-tagline {
  font-weight: 800;
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.brand-panel .brand-tagline .b { color: var(--blue-bright); }
.brand-panel .brand-tagline .o { color: var(--orange-bright); }
.brand-panel .brand-tagline .w { color: var(--silver); }
.brand-panel .brand-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.brand-panel .brand-chips span {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--panel-border);
}

/* ---------- Certificaat (Over Ons) ---------- */
.cert-wrap {
  perspective: 1200px;
  max-width: 520px;
  margin: 0 auto;
}
.certificate {
  position: relative;
  background: linear-gradient(160deg, #FAF8F3, #F0EDE5 55%, #F7F4EC);
  border-radius: 18px;
  padding: 44px 38px 38px;
  color: #12294F;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65), 0 0 60px rgba(201, 162, 75, 0.12);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: certfloat 7s ease-in-out infinite;
}
@keyframes certfloat {
  0%, 100% { transform: translateY(0) rotateZ(-0.3deg); }
  50% { transform: translateY(-12px) rotateZ(0.3deg); }
}
.certificate:hover { animation-play-state: paused; transform: translateY(-8px) scale(1.015); }
.certificate::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid #C9A24B;
  border-radius: 12px;
  pointer-events: none;
}
.certificate::after {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-18deg);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}
.cert-corner {
  position: absolute;
  width: 130px; height: 130px;
  background: linear-gradient(135deg, #12294F, #1E4E8C);
  top: -65px; left: -65px;
  transform: rotate(45deg);
  box-shadow: 0 6px 20px rgba(18, 41, 79, 0.35);
}
.cert-corner.tr { left: auto; right: -65px; transform: rotate(-45deg); }
.cert-head { text-align: center; position: relative; }
.cert-brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: #12294F;
  letter-spacing: 0.02em;
}
.cert-brand .gold { color: #C9A24B; }
.cert-tags {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5A6B85;
  margin-top: 4px;
}
.cert-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #12294F;
  margin-top: 18px;
}
.cert-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #C9A24B;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 6px;
}
.cert-sub::before, .cert-sub::after {
  content: '';
  width: 34px; height: 1.5px;
  background: linear-gradient(90deg, transparent, #C9A24B);
}
.cert-sub::after { background: linear-gradient(90deg, #C9A24B, transparent); }
.cert-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  text-align: center;
  color: #12294F;
  margin-top: 20px;
}
.cert-role {
  text-align: center;
  color: #C9A24B;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}
.cert-body {
  margin-top: 18px;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #33415C;
}
.cert-body strong { color: #12294F; }
.cert-quote {
  margin-top: 16px;
  text-align: center;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #12294F;
}
.cert-quote small {
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.76rem;
  margin-top: 3px;
}
.cert-quote small .lb { color: #1E6FE0; }
.cert-quote small .lo { color: #E8890C; }
.cert-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}
.cert-meta { font-size: 0.72rem; color: #5A6B85; line-height: 1.5; }
.cert-meta strong { display: block; color: #12294F; font-size: 0.78rem; }
.cert-sign { text-align: center; }
.cert-sign .script {
  font-family: 'Segoe Script', 'Brush Script MT', cursive;
  font-size: 1.3rem;
  color: #12294F;
  border-bottom: 1.5px solid #C9A24B;
  padding: 0 14px 4px;
  display: inline-block;
}
.cert-sign strong { display: block; font-size: 0.8rem; color: #12294F; margin-top: 6px; }
.cert-sign small { color: #C9A24B; font-weight: 700; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; }
.cert-seal {
  width: 86px; height: 86px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid; place-items: center;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #E8CE8C, #C9A24B 60%, #A8842F);
  box-shadow: 0 8px 22px rgba(168, 132, 47, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.5);
  border: 3px double rgba(255, 255, 255, 0.55);
  color: #12294F;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 8px;
  animation: sealglow 3.5s ease-in-out infinite;
}
@keyframes sealglow {
  0%, 100% { box-shadow: 0 8px 22px rgba(168, 132, 47, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.5); }
  50% { box-shadow: 0 8px 34px rgba(201, 162, 75, 0.75), inset 0 2px 4px rgba(255, 255, 255, 0.5); }
}

/* Pijlers (certificaat-waarden) */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.pillar {
  text-align: center;
  padding: 22px 14px;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--panel-border);
  transition: transform var(--transition), border-color var(--transition);
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(255, 140, 66, 0.45); }
.pillar .p-ico {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(59, 139, 255, 0.16), rgba(59, 139, 255, 0.05));
  border: 1px solid rgba(59, 139, 255, 0.35);
  color: var(--blue-bright);
  transition: all 0.4s ease;
}
.pillar:hover .p-ico {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  border-color: var(--orange-bright);
  color: #fff;
  box-shadow: 0 8px 22px var(--orange-glow);
  transform: scale(1.1);
}
.pillar strong { display: block; color: var(--silver); font-size: 0.88rem; font-weight: 800; line-height: 1.35; }

@media (max-width: 720px) {
  .certificate { padding: 36px 22px 28px; }
  .cert-foot { flex-direction: column; align-items: center; gap: 20px; }
  .cert-meta { text-align: center; }
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-info-card {
  position: relative;
  background: linear-gradient(155deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px 200px at 100% 0%, rgba(255, 107, 26, 0.14), transparent 70%),
    radial-gradient(320px 220px at 0% 100%, rgba(30, 111, 224, 0.16), transparent 70%);
  pointer-events: none;
}
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.contact-info-card > p { margin-bottom: 32px; }
.contact-rows { display: grid; gap: 24px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(59, 139, 255, 0.12);
  border: 1px solid rgba(59, 139, 255, 0.35);
  display: grid; place-items: center;
  color: var(--blue-bright);
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.contact-row:hover .ico {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  border-color: var(--orange-bright);
  color: #fff;
  box-shadow: 0 8px 22px var(--orange-glow);
}
.contact-row strong { display: block; font-size: 0.95rem; color: var(--silver); margin-bottom: 2px; }
.contact-row span, .contact-row a.val { color: var(--silver-dim); font-size: 0.93rem; }
.contact-row a.val:hover { color: var(--orange-bright); }

.legal-block { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--panel-border); }
.legal-block h4 { color: var(--orange-bright); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 12px; }
.legal-block p { font-size: 0.93rem; margin-bottom: 6px; }

.contact-form {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 46px 42px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.contact-form h3 { margin-bottom: 28px; font-size: 1.45rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.88rem;
  margin-bottom: 8px; color: var(--silver);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 15px 17px;
  border: 1.5px solid var(--panel-border);
  border-radius: 13px;
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(154, 166, 189, 0.55); }
.form-group select option { background: var(--bg-2); color: var(--silver); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(59, 139, 255, 0.14), 0 0 20px rgba(59, 139, 255, 0.1);
}
.form-group textarea { resize: vertical; min-height: 135px; }
.form-note { font-size: 0.82rem; margin-top: 16px; }
.form-success {
  display: none;
  background: rgba(46, 204, 113, 0.1);
  border: 1.5px solid rgba(46, 204, 113, 0.5);
  color: #5EE39A;
  border-radius: 13px;
  padding: 16px 18px;
  font-weight: 600;
  margin-top: 18px;
}
.form-success.show { display: block; animation: fadeUp 0.5s ease; }

/* ---------- Video ---------- */
.video-frame {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--panel-border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  aspect-ratio: 16 / 9;
}
.video-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--blue-bright), transparent 35%, transparent 65%, var(--orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
.video-frame video, .video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
/* Video-showcase: drie portret-video's */
.video-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
}
.video-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--bg-3);
  border: 1px solid var(--panel-border);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-tile::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(160deg, rgba(59, 139, 255, 0.7), transparent 32%, transparent 68%, rgba(255, 107, 26, 0.7));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.video-tile:hover { transform: translateY(-10px); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), 0 0 44px rgba(255, 107, 26, 0.14); }
.video-tile:hover::before { opacity: 1; }
.video-tile video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-tile:hover video { transform: scale(1.05); }
.video-tile .vt-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 26px 22px 20px;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 14, 0.88));
}
.video-tile .vt-overlay strong {
  display: block;
  color: var(--silver);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.video-tile .vt-overlay small { color: var(--silver-dim); font-size: 0.82rem; }
.video-tile .vt-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(5, 7, 14, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--silver);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.video-tile .vt-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange-glow);
  animation: pulse 2s infinite;
}
@media (max-width: 860px) {
  .video-showcase { grid-template-columns: 1fr; max-width: 380px; }
}

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.review {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.review::before {
  content: '“';
  position: absolute;
  top: 14px; right: 26px;
  font-size: 5.5rem;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-bright), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.35;
  pointer-events: none;
}
.review:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 140, 66, 0.45);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.5), 0 0 36px rgba(255, 107, 26, 0.1);
}
.review .stars { display: flex; gap: 4px; margin-bottom: 18px; }
.review .stars svg { color: var(--orange-bright); filter: drop-shadow(0 0 6px var(--orange-glow)); }
.review blockquote { color: var(--text); font-size: 0.99rem; margin-bottom: 24px; }
.review .who { display: flex; align-items: center; gap: 14px; }
.review .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 6px 18px rgba(30, 111, 224, 0.35);
  flex-shrink: 0;
}
.review .avatar.or { background: linear-gradient(135deg, var(--orange-bright), var(--orange)); box-shadow: 0 6px 18px var(--orange-glow); }
.review .who strong { display: block; color: var(--silver); font-size: 0.97rem; line-height: 1.3; }
.review .who small { color: var(--silver-dim); font-size: 0.83rem; }

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 140, 66, 0.35);
  font-weight: 700;
  color: var(--silver);
}
.rating-summary .score {
  font-size: 1.3rem;
  background: var(--metal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.rating-summary svg { color: var(--orange-bright); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.faq-item.open {
  border-color: rgba(59, 139, 255, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(30, 111, 224, 0.1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--silver);
  text-align: left;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--orange-bright); }
.faq-q .chev {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(59, 139, 255, 0.12);
  border: 1px solid rgba(59, 139, 255, 0.35);
  color: var(--blue-bright);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  border-color: var(--orange-bright);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a p { padding: 0 26px 24px; font-size: 0.97rem; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, transparent, rgba(10, 15, 28, 0.9));
  border-top: 1px solid var(--panel-border);
  padding: 76px 0 0;
  margin-top: 100px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.25fr; gap: 48px; padding-bottom: 56px; }
.footer h4 { color: var(--silver); font-size: 1rem; margin-bottom: 22px; }
.footer p { font-size: 0.94rem; }
.footer .logo { margin-bottom: 20px; }
.footer ul { display: grid; gap: 13px; }
.footer ul a { font-size: 0.94rem; color: var(--silver-dim); transition: color 0.25s ease, padding-left 0.25s ease; }
.footer ul a:hover { color: var(--orange-bright); padding-left: 6px; }
.footer-legal { font-size: 0.9rem; display: grid; gap: 9px; color: var(--silver-dim); }
.footer-legal span { color: var(--orange-bright); font-weight: 700; }
.footer-legal a { color: var(--silver-dim); }
.footer-legal a:hover { color: var(--blue-bright); }
.footer-bottom {
  border-top: 1px solid var(--panel-border);
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(154, 166, 189, 0.6);
}
.footer-bottom a:hover { color: var(--orange-bright); }
.footer-bottom .credit {
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue-bright), var(--orange-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.3s ease;
}
.footer-bottom .credit:hover { filter: brightness(1.35) drop-shadow(0 0 8px rgba(255, 107, 26, 0.4)); }

/* ---------- Animaties ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-inner > * { animation: fadeUp 1s ease both; }
.hero-visual { animation-delay: 0.3s; }

.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 30px var(--orange-glow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 900;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

/* ---------- Responsief ---------- */
@media (max-width: 960px) {
  .hero-inner, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 80px 0; }
  .scroll-hint { display: none; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 14, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a:not(.btn) { font-size: 1.3rem; }
  .stats-band { padding: 50px 28px; }
  .cta { padding: 60px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
