/* ============================================
   PSA – Publieke Sector Accountants
   Design: Editorial authority — deep navy, sharp orange, Sora + Inter
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Sora:wght@600;700;800;900&display=swap');

:root {
  --psa-dark:    #0f1b2d;
  --psa-darker:  #080f1a;
  --psa-mid:     #1a2d45;
  --psa-navy:    #162336;
  --psa-orange:  #f07c00;
  --psa-orange-h:#d96e00;
  --psa-orange-l:#fff4e6;
  --psa-amber:   #f9b140;

  --psa-white:   #ffffff;
  --psa-off:     #f4f6f9;
  --psa-light:   #e8edf3;
  --psa-border:  #d8dfe8;
  --psa-grey:    #52647a;
  --psa-lgrey:   #8fa0b3;

  --psa-success: #1a7a42;
  --psa-error:   #b83232;
  --psa-info:    #1555a0;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm:    0 1px 3px rgba(10,20,40,.06), 0 1px 2px rgba(10,20,40,.04);
  --shadow-card:  0 0 0 1px rgba(10,20,40,.06), 0 4px 16px rgba(10,20,40,.07), 0 16px 36px rgba(10,20,40,.05);
  --shadow-hover: 0 0 0 1px rgba(10,20,40,.08), 0 8px 24px rgba(10,20,40,.12), 0 28px 56px rgba(10,20,40,.1);
  --shadow-orange:0 4px 12px rgba(240,124,0,.3), 0 2px 4px rgba(240,124,0,.2);
  --shadow-float: 0 0 0 1px rgba(10,20,40,.06), 0 12px 32px rgba(10,20,40,.14), 0 40px 80px rgba(10,20,40,.12);

  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font:         'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(.4,0,.2,1);
  --ease-in:     cubic-bezier(.4,0,1,1);
}

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

body {
  font-family: var(--font);
  background: var(--psa-off);
  color: var(--psa-dark);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--psa-dark);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--psa-dark);
}
h3 { font-size: 1.1rem; font-weight: 700; color: var(--psa-dark); line-height: 1.3; }
h4 { font-size: .95rem; font-weight: 600; color: var(--psa-dark); }
p  { color: var(--psa-grey); line-height: 1.75; }
a  { color: var(--psa-orange); text-decoration: none; transition: color .18s var(--ease-out); }
a:hover { color: var(--psa-orange-h); text-decoration: underline; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 96px 0; }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--psa-darker);
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-items { display: flex; gap: 20px; align-items: center; }
.topbar a { color: rgba(255,255,255,.45); transition: color .18s; }
.topbar a:hover { color: var(--psa-orange); text-decoration: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: rgba(15,27,45,.97);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}

.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.navbar-brand {
  display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
  transition: opacity .18s var(--ease-out);
}
.navbar-brand:hover { text-decoration: none; opacity: .82; }

.brand-logo-wrap { display: flex; align-items: center; }

.brand-logo-icon { display: none; }
.brand-text { display: none; }

.brand-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.6);
  padding: 8px 14px;
  font-size: .875rem; font-weight: 500;
  transition: color .18s var(--ease-out), background .18s var(--ease-out);
  text-decoration: none; white-space: nowrap; display: block;
  border-radius: var(--radius-sm);
}
.nav-links a:hover { color: var(--psa-white); text-decoration: none; background: rgba(255,255,255,.08); }
.nav-links a:focus-visible { outline: 2px solid var(--psa-orange); outline-offset: 2px; }
.nav-links a.active { color: var(--psa-white); background: rgba(255,255,255,.06); }
.nav-divider { width: 1px; height: 18px; background: rgba(255,255,255,.15); margin: 0 8px; }

.nav-badge {
  font-size: .62rem; background: var(--psa-orange); color: #fff;
  padding: 2px 6px; border-radius: 20px; font-weight: 700;
  margin-left: 4px; vertical-align: middle;
}

.nav-cta {
  background: var(--psa-orange) !important;
  color: #fff !important;
  border-radius: 40px !important;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  font-size: .875rem !important;
  margin-left: 8px;
  box-shadow: var(--shadow-orange);
  transition: transform .22s var(--ease-spring), box-shadow .22s var(--ease-out), background .18s var(--ease-out) !important;
  border-bottom: none !important;
}
.nav-cta:hover {
  background: var(--psa-orange-h) !important;
  box-shadow: 0 6px 24px rgba(240,124,0,.5) !important;
  transform: translateY(-2px) scale(1.04) !important;
  color: #fff !important;
}
.nav-cta:active { transform: translateY(0) scale(.97) !important; }
.nav-cta:focus-visible { outline: 2px solid #fff !important; outline-offset: 2px !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--psa-white); border-radius: 2px; transition: .25s; }

/* ============================================
   HERO  — bold split layout
   ============================================ */
.hero {
  background: var(--psa-darker);
  color: var(--psa-white);
  padding: 0;
  position: relative; overflow: hidden;
  min-height: 600px;
  display: flex; align-items: stretch;
}

/* Left color band */
.hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 42%;
  background: var(--psa-navy);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

/* Grain + glow layer */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 55% 80% at 25% 50%, rgba(240,124,0,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(26,45,69,.8) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Orange accent line */
.hero-accent-line {
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3;
  background: linear-gradient(90deg, var(--psa-orange) 0%, var(--psa-amber) 60%, transparent 100%);
}

.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center;
  padding-top: 88px; padding-bottom: 96px;
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 64px; padding-bottom: 72px; }
  .hero-visual { display: none; }
  .hero::after { display: none; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,124,0,.15);
  border: 1px solid rgba(240,124,0,.4);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--psa-amber);
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--psa-white);
  margin-bottom: 24px;
}

/* Highlight word in orange */
.hero h1 em {
  font-style: normal;
  color: var(--psa-orange);
}

.hero .hero-sub {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  display: flex; flex-direction: column; gap: 12px;
  padding-left: 48px;
}
.hero-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: background .2s var(--ease-out), transform .22s var(--ease-spring), border-color .2s;
  cursor: default;
}
.hero-stat-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(240,124,0,.4);
  transform: translateX(5px);
}
.hero-stat-card .stat-num {
  font-size: 1.02rem; font-weight: 700; color: var(--psa-white);
  font-family: var(--font-display);
}
.hero-stat-card .stat-label { font-size: .76rem; color: rgba(255,255,255,.5); margin-top: 3px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .22s var(--ease-spring), box-shadow .2s var(--ease-out), background .18s var(--ease-out), color .18s var(--ease-out), border-color .18s;
  text-decoration: none; line-height: 1; font-family: var(--font);
  white-space: nowrap; letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(1px) scale(.97); }
.btn:focus-visible { outline: 2px solid var(--psa-orange); outline-offset: 3px; }

.btn-primary {
  background: var(--psa-orange); color: #fff; border-color: var(--psa-orange);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--psa-orange-h); border-color: var(--psa-orange-h);
  box-shadow: 0 6px 24px rgba(240,124,0,.5);
  color: #fff;
}

.btn-white { background: #fff; color: var(--psa-dark); border-color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.btn-white:hover { background: #f0f4f8; color: var(--psa-dark); }

.btn-outline-white {
  background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); color: #fff; }

.btn-outline {
  background: transparent; color: var(--psa-orange); border-color: var(--psa-orange);
}
.btn-outline:hover { background: var(--psa-orange-l); }

.btn-dark { background: var(--psa-dark); color: #fff; border-color: var(--psa-dark); }
.btn-dark:hover { background: var(--psa-darker); }

.btn-ghost {
  background: transparent; color: var(--psa-grey); border-color: var(--psa-border);
}
.btn-ghost:hover { background: var(--psa-light); color: var(--psa-dark); }

.btn-danger { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.btn-danger:hover { background: #fecaca; color: #7f1d1d; }

.btn-lg { padding: 14px 30px; font-size: .975rem; }
.btn-sm { padding: 6px 14px; font-size: .8rem; }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--psa-dark);
  padding: 0;
  position: relative; overflow: hidden;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--psa-orange);
  transition: width .4s var(--ease-out);
}
.stat-item:hover::before { width: 60%; }
.stat-item .num {
  font-size: 2.4rem; font-weight: 900; color: var(--psa-orange);
  line-height: 1; font-family: var(--font-display);
  letter-spacing: -0.04em;
}
.stat-item .lbl { font-size: .76rem; color: rgba(255,255,255,.45); margin-top: 7px; line-height: 1.4; }
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
}

/* ============================================
   CLIENTS
   ============================================ */
.clients-strip {
  background: var(--psa-white);
  border-top: 1px solid var(--psa-border);
  border-bottom: 1px solid var(--psa-border);
  padding: 28px 0;
}
.clients-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--psa-lgrey);
  margin-bottom: 16px; text-align: center;
}
.clients-logos { display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }
.client-pill {
  background: var(--psa-off); border: 1px solid var(--psa-border);
  border-radius: 40px; padding: 5px 16px;
  font-size: .75rem; font-weight: 600; color: var(--psa-grey);
  transition: border-color .18s var(--ease-out), color .18s var(--ease-out), background .18s var(--ease-out), transform .18s var(--ease-spring);
  cursor: default;
}
.client-pill:hover { border-color: var(--psa-orange); color: var(--psa-orange); background: var(--psa-orange-l); transform: translateY(-1px); }

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--psa-orange);
  margin-bottom: 10px; display: block;
}
.section-sub { max-width: 580px; font-size: .97rem; }

/* ============================================
   AUDIT CARDS
   ============================================ */
.audit-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 44px;
}
.audit-card {
  background: var(--psa-white);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--psa-border);
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease-out), border-color .2s;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.audit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
  border-color: rgba(240,124,0,.25);
}
.audit-card:focus-within { box-shadow: var(--shadow-hover); }

/* Colored top band */
.audit-card-inner {
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 14px; flex: 1;
}
.audit-card::before {
  content: ''; display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--psa-orange) 0%, var(--psa-amber) 100%);
}

.card-icon {
  font-size: 2.4rem; line-height: 1;
  display: inline-block;
  transition: transform .3s var(--ease-spring);
}
.audit-card:hover .card-icon { transform: scale(1.1) rotate(-5deg); }

.card-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 40px;
  background: var(--psa-orange-l); color: var(--psa-orange-h);
  border: 1px solid rgba(240,124,0,.2);
}
.audit-card h3 { font-size: 1.25rem; }
.audit-card p { font-size: .88rem; flex: 1; }
.audit-card ul {
  font-size: .82rem; color: var(--psa-grey); list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 5px;
  border-top: 1px solid var(--psa-light); padding-top: 12px; margin-top: 4px;
}
.audit-card ul li { display: flex; align-items: baseline; gap: 7px; }
.audit-card ul li::before { content: '→'; color: var(--psa-orange); font-weight: 700; flex-shrink: 0; font-size: .8rem; }

/* ============================================
   STEPS / HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 40px;
  counter-reset: step;
}
.step-card {
  background: var(--psa-white); border-radius: var(--radius-lg);
  padding: 32px 24px 28px; box-shadow: var(--shadow-card); border: 1px solid var(--psa-border);
  position: relative;
  transition: transform .3s var(--ease-spring), box-shadow .3s var(--ease-out), border-color .2s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(240,124,0,.2); }
.step-card::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 24px;
  background: var(--psa-orange); color: #fff;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 900;
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(240,124,0,.45);
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step-card h3 { margin-bottom: 8px; }
.step-card p { font-size: .86rem; }

/* ============================================
   SECURITY GRID
   ============================================ */
.security-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 36px;
}
.security-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--psa-white); border-radius: var(--radius-md);
  padding: 24px 20px; box-shadow: var(--shadow-card); border: 1px solid var(--psa-border);
  transition: transform .24s var(--ease-spring), box-shadow .24s var(--ease-out), border-color .2s;
}
.security-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(240,124,0,.2); }
.security-item .sec-icon {
  font-size: 1.5rem; flex-shrink: 0; margin-top: 2px;
  width: 44px; height: 44px;
  background: var(--psa-orange-l);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: transform .22s var(--ease-spring);
}
.security-item:hover .sec-icon { transform: scale(1.1); }
.security-item h4 { margin-bottom: 4px; font-size: .92rem; }
.security-item p { font-size: .81rem; }

/* ============================================
   VALUES STRIP
   ============================================ */
.values-strip {
  background: var(--psa-darker);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.values-strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 120% at 50% 120%, rgba(240,124,0,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 0% 50%, rgba(26,45,69,.6) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

.value-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  transition: background .2s var(--ease-out), transform .26s var(--ease-spring), border-color .2s;
}
.value-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,124,0,.3);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 2rem; margin-bottom: 14px; display: inline-block;
  transition: transform .26s var(--ease-spring);
}
.value-item:hover .value-icon { transform: scale(1.15) rotate(-4deg); }
.value-item h4 { color: #fff; font-size: .9rem; margin-bottom: 6px; font-weight: 700; }
.value-item p { color: rgba(255,255,255,.45); font-size: .79rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--psa-orange);
  padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 140% at 50% 140%, rgba(255,255,255,.2) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(0,0,0,.1) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; position: relative; }
.cta-section p  {
  color: rgba(255,255,255,.88); margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  position: relative; font-size: 1rem;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 760px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-img {
  background: var(--psa-darker);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255,255,255,.07);
}
.intro-img-line {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s var(--ease-out);
}
.intro-img-line:hover { background: rgba(255,255,255,.04); }
.intro-img-line:last-child { border-bottom: none; }
.intro-img-icon {
  font-size: 1.3rem; flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(240,124,0,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.intro-img-text strong { display: block; font-size: .88rem; color: var(--psa-white); font-weight: 600; }
.intro-img-text span { font-size: .75rem; color: rgba(255,255,255,.4); }
.intro-stripe { background: linear-gradient(90deg, var(--psa-orange), var(--psa-amber)); height: 5px; }

/* ============================================
   PAGE HEADER (upload pages)
   ============================================ */
.page-header {
  background: var(--psa-darker);
  padding: 52px 0 60px;
  color: var(--psa-white);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 100% 50%, rgba(240,124,0,.12) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--psa-orange) 0%, var(--psa-amber) 60%, transparent 100%);
}
.page-header h1 { color: var(--psa-white); margin-bottom: 10px; position: relative; }
.page-header p  { color: rgba(255,255,255,.65); font-size: .98rem; max-width: 620px; position: relative; }

.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: rgba(255,255,255,.4);
  margin-bottom: 14px; list-style: none; position: relative;
}
.breadcrumb li + li::before { content: '/'; margin-right: 6px; color: rgba(255,255,255,.2); }
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .18s; }
.breadcrumb a:hover { color: var(--psa-orange); text-decoration: none; }

.audit-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 40px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--psa-orange); color: #fff;
  margin-bottom: 14px; position: relative;
  box-shadow: 0 2px 10px rgba(240,124,0,.4);
}

/* ============================================
   UPLOAD LAYOUT
   ============================================ */
.upload-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 28px; align-items: start;
  padding: 44px 0 72px;
}
@media (max-width: 900px) { .upload-layout { grid-template-columns: 1fr; } }

/* ============================================
   UPLOAD CARD / FORM
   ============================================ */
.upload-card {
  background: var(--psa-white); border-radius: var(--radius-xl);
  padding: 36px 32px; box-shadow: var(--shadow-card); border: 1px solid var(--psa-border);
}
.upload-card h2 { margin-bottom: 4px; font-size: 1.2rem; }
.upload-card > p { font-size: .88rem; margin-bottom: 24px; }

.form-section-title {
  font-size: .86rem; font-weight: 700; color: var(--psa-dark);
  padding-bottom: 8px; border-bottom: 1px solid var(--psa-border);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--psa-dark); margin-bottom: 6px;
}
.form-group label .req { color: var(--psa-error); }

.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--psa-border);
  border-radius: var(--radius-sm);
  font-size: .88rem; font-family: var(--font);
  color: var(--psa-dark); background: var(--psa-off);
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s;
  outline: none;
}
.form-control:hover:not(:focus) { border-color: #b0bfcf; }
.form-control:focus {
  border-color: var(--psa-orange);
  box-shadow: 0 0 0 4px rgba(240,124,0,.1);
  background: var(--psa-white);
}
.form-control::placeholder { color: #b0bfcf; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 78px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================
   DROPZONE
   ============================================ */
.dropzone {
  border: 2px dashed var(--psa-border); border-radius: var(--radius-lg);
  padding: 40px 20px; text-align: center; cursor: pointer;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out), transform .22s var(--ease-spring);
  position: relative; background: var(--psa-off);
}
.dropzone:hover { border-color: var(--psa-orange); background: var(--psa-orange-l); transform: scale(1.006); }
.dropzone.drag-over { border-color: var(--psa-orange); background: var(--psa-orange-l); transform: scale(1.012); }
.dz-icon { font-size: 2.2rem; margin-bottom: 10px; }
.dropzone h4 { font-size: .92rem; margin-bottom: 4px; }
.dropzone p  { font-size: .8rem; margin-bottom: 12px; }
.dropzone small { color: var(--psa-lgrey); font-size: .75rem; }
.dropzone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

/* File list */
.file-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.file-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--psa-white); border: 1px solid var(--psa-border);
  border-radius: var(--radius-sm); padding: 9px 12px; font-size: .83rem;
  transition: border-color .18s, box-shadow .18s;
}
.file-item:hover { border-color: #b0bfcf; box-shadow: var(--shadow-sm); }
.file-item .file-icon { font-size: .95rem; flex-shrink: 0; }
.file-item .file-name { flex: 1; color: var(--psa-dark); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item .file-size { color: var(--psa-lgrey); font-size: .75rem; flex-shrink: 0; }
.file-item .file-remove {
  background: none; border: none; cursor: pointer; color: var(--psa-lgrey);
  font-size: .9rem; padding: 0 2px;
  transition: color .15s var(--ease-out), transform .15s var(--ease-spring);
}
.file-item .file-remove:hover { color: var(--psa-error); transform: scale(1.2); }

/* Progress bar */
.progress-wrap { margin-top: 14px; display: none; }
.progress-wrap.visible { display: block; }
.progress-label { display: flex; justify-content: space-between; font-size: .78rem; color: var(--psa-grey); margin-bottom: 6px; }
.progress-bar { height: 6px; background: var(--psa-border); border-radius: 3px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--psa-orange), var(--psa-amber));
  width: 0%;
  transition: width .35s var(--ease-out);
  border-radius: 3px;
}

/* Success overlay */
.success-overlay { display: none; flex-direction: column; align-items: center; text-align: center; padding: 60px 24px; gap: 16px; }
.success-overlay.visible { display: flex; }
.success-icon { font-size: 3.2rem; }
.success-overlay h3 { font-size: 1.3rem; }

/* ============================================
   DOCUMENT CHECKLIST (NOREA norms)
   ============================================ */
.doc-checklist-wrap {
  background: var(--psa-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--psa-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 26px;
}
.doc-checklist-header {
  background: var(--psa-dark);
  color: #fff;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .9rem;
}
.doc-checklist-header .norm-count {
  margin-left: auto;
  background: var(--psa-orange);
  padding: 3px 10px; border-radius: 40px;
  font-size: .7rem; font-weight: 700;
  box-shadow: 0 2px 6px rgba(240,124,0,.3);
}

.norm-group { border-bottom: 1px solid var(--psa-border); }
.norm-group:last-child { border-bottom: none; }

.norm-group-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: var(--psa-off);
  cursor: pointer;
  font-size: .85rem; font-weight: 600; color: var(--psa-dark);
  user-select: none;
  transition: background .15s var(--ease-out);
}
.norm-group-header:hover { background: var(--psa-orange-l); }
.norm-group-header.open { background: var(--psa-orange-l); }

.norm-code {
  background: var(--psa-dark); color: #fff;
  font-size: .67rem; font-weight: 800; padding: 2px 7px;
  border-radius: 4px; flex-shrink: 0; font-family: monospace; letter-spacing: .02em;
}
.norm-code.orange { background: var(--psa-orange); }

.norm-group-header .chevron {
  margin-left: auto; font-size: .78rem; color: var(--psa-orange);
  transition: transform .22s var(--ease-spring);
}
.norm-group-header.open .chevron { transform: rotate(90deg); }

.norm-docs { padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease-out); }
.norm-docs.open { max-height: 900px; }

.doc-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 20px 9px 38px;
  border-top: 1px solid rgba(0,0,0,.04);
  font-size: .83rem; color: var(--psa-grey);
  transition: background .12s;
}
.doc-item:hover { background: rgba(240,124,0,.03); }
.doc-item .doc-icon { font-size: .85rem; flex-shrink: 0; margin-top: 1px; color: var(--psa-orange); }
.doc-item .doc-text { flex: 1; }
.doc-item .doc-tag {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; padding: 2px 7px; border-radius: 40px;
  flex-shrink: 0; margin-top: 2px;
}
.doc-tag.verplicht  { background: #fde8e8; color: #991b1b; }
.doc-tag.aanbevolen { background: #fef3c7; color: #92400e; }
.doc-tag.pentest    { background: #e0e7ff; color: #3730a3; }

/* ============================================
   ALERTS
   ============================================ */
.alert {
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .85rem; display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 16px; line-height: 1.55;
}
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-warn { background: #fffbeb; border: 1px solid #fde68a; color: #78350f; }
.alert-ok   { background: #f0fdf4; border: 1px solid #bbf7d0; color: #14532d; }
.alert-err  { background: #fef2f2; border: 1px solid #fecaca; color: #7f1d1d; }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-card {
  background: var(--psa-white); border-radius: var(--radius-xl);
  padding: 24px; box-shadow: var(--shadow-card); border: 1px solid var(--psa-border);
  border-top: 4px solid var(--psa-orange);
  margin-bottom: 20px;
  transition: box-shadow .2s var(--ease-out), transform .22s var(--ease-spring);
}
.sidebar-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.sidebar-card h3 { font-size: .9rem; margin-bottom: 13px; display: flex; align-items: center; gap: 8px; }
.sidebar-card p  { font-size: .84rem; }

.simple-checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.simple-checklist li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .83rem; color: var(--psa-grey);
}
.simple-checklist li::before {
  content: '→'; color: var(--psa-orange); font-weight: 700;
  flex-shrink: 0; line-height: 1.65;
}

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.contact-list li { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--psa-grey); }
.contact-list li .icon { font-size: .9rem; width: 16px; text-align: center; flex-shrink: 0; }

.dates-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dates-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .82rem; color: var(--psa-grey); }
.dates-list .date-badge {
  background: var(--psa-orange); color: #fff;
  font-size: .68rem; font-weight: 700; padding: 2px 8px; border-radius: 40px;
  white-space: nowrap; flex-shrink: 0; margin-top: 2px;
  box-shadow: 0 2px 6px rgba(240,124,0,.3);
}

.module-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 480px) { .module-grid { grid-template-columns: 1fr; } }
.module-check { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--psa-grey); }
.module-check input[type=checkbox] { accent-color: var(--psa-orange); width: 14px; height: 14px; cursor: pointer; flex-shrink: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--psa-darker); color: rgba(255,255,255,.45); padding: 72px 0 28px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--psa-orange) 30%, var(--psa-amber) 60%, transparent 100%);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px; margin-bottom: 48px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
  color: rgba(255,255,255,.8); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col p { font-size: .84rem; line-height: 1.75; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.4); font-size: .84rem; text-decoration: none;
  transition: color .18s var(--ease-out), padding-left .18s var(--ease-out);
  display: inline-block;
}
.footer-links a:hover { color: var(--psa-orange); text-decoration: none; padding-left: 4px; }

.footer-brand-row { margin-bottom: 18px; }
.footer-logo-wrap { display: none; }
.footer-logo-letters { display: none; }
.footer-logo-stripe { display: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .75rem;
}

/* ============================================
   RESPONSIVE NAV
   ============================================ */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--psa-darker);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 12px 16px; gap: 2px; z-index: 300;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
  }
  .nav-links.open a { border-radius: var(--radius-sm); }
  .hamburger { display: flex; }
  .navbar { position: relative; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }

/* Fade-in animation */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-spring);
}
.fade-in.visible { opacity: 1; transform: none; }

/* Staggered children */
.audit-cards .fade-in:nth-child(1) { transition-delay: .06s; }
.audit-cards .fade-in:nth-child(2) { transition-delay: .14s; }
.audit-cards .fade-in:nth-child(3) { transition-delay: .22s; }
.steps-grid .fade-in:nth-child(1) { transition-delay: .04s; }
.steps-grid .fade-in:nth-child(2) { transition-delay: .1s; }
.steps-grid .fade-in:nth-child(3) { transition-delay: .16s; }
.steps-grid .fade-in:nth-child(4) { transition-delay: .22s; }
.security-grid .fade-in:nth-child(1) { transition-delay: .04s; }
.security-grid .fade-in:nth-child(2) { transition-delay: .09s; }
.security-grid .fade-in:nth-child(3) { transition-delay: .14s; }
.security-grid .fade-in:nth-child(4) { transition-delay: .19s; }

/* Admin / data table badge colours */
.badge { display: inline-block; padding: 3px 9px; border-radius: 40px; font-size: .7rem; font-weight: 700; }
.badge-green  { background: #dcfce7; color: #166534; }
.badge-red    { background: #fee2e2; color: #991b1b; }
.badge-orange { background: var(--psa-orange-l); color: var(--psa-orange-h); }
.badge-blue   { background: #dbeafe; color: #1e40af; }
.badge-purple { background: #ede9fe; color: #5b21b6; }
.badge-grey   { background: #f1f5f9; color: var(--psa-grey); }

/* Login page footer */
.page-footer {
  text-align: center; padding: 20px;
  font-size: .8rem; color: var(--psa-lgrey);
}
