/* ============================================================
   Neural Systems — Premium B2B Cybersecurity Design
   Version: 2.0 — develop branch
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --bg-base:        #0a0d14;
  --bg-surface:     #0f1420;
  --bg-card:        #131926;
  --bg-card-hover:  #161e2e;
  --border:         rgba(255,255,255,0.07);
  --border-hover:   rgba(255,255,255,0.14);

  --text-primary:   #f0f4ff;
  --text-secondary: #94a3b8;
  --text-muted:     #5a6a82;

  --accent-blue:    #3b82f6;
  --accent-blue-dim:#1d4ed8;
  --accent-green:   #10b981;
  --accent-red:     #ef4444;
  --accent-amber:   #f59e0b;

  --font-sans:      'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      16px;

  --shadow-card:    0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-elevated:0 8px 32px rgba(0,0,0,0.5);

  --nav-height:     64px;
  --container-max:  1160px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-blue);
  color: #fff;
}
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(59,130,246,0.4); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover { border-color: var(--accent-blue); color: var(--accent-blue); background: rgba(59,130,246,0.06); }
.btn-emergency {
  background: rgba(239,68,68,0.12);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.3);
  font-size: 0.82rem;
  padding: 8px 14px;
}
.btn-emergency:hover { background: rgba(239,68,68,0.2); border-color: rgba(239,68,68,0.5); }

/* ---- NAVIGATION ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10,13,20,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 32px;
  z-index: 1000;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--accent-blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.nav-logo-text .tagline { font-size: 0.65rem; font-family: var(--font-mono); color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: rgba(255,255,255,0.06); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-cta { background: var(--accent-blue); color: #fff; padding: 8px 18px; border-radius: var(--radius-md); font-size: 0.875rem; font-weight: 600; }
.nav-cta:hover { background: #2563eb; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59,130,246,0.12) 0%, transparent 70%),
    var(--bg-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-blue);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.cert-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- TRUST SECTION ---- */
.trust-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 44px;
}
.trust-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.trust-header p { color: var(--text-secondary); }

.auth-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.auth-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-card); }
.auth-card-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.auth-card-body h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.auth-card-body p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ---- SERVICES SECTION ---- */
.services-section {
  padding: 96px 0;
  background: var(--bg-base);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { border-color: var(--accent-blue); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(59,130,246,0.12); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(59,130,246,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 0.875rem; font-weight: 600; color: var(--accent-blue); }
.service-link:hover { text-decoration: underline; }

/* ---- STATS SECTION ---- */
.stats-section {
  padding: 64px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; }

/* ---- FOR WHOM SECTION ---- */
.forwhom-section {
  padding: 96px 0;
  background: var(--bg-base);
}
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.forwhom-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}
.forwhom-card:hover { border-color: var(--border-hover); }
.forwhom-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.forwhom-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ---- HOW WE WORK ---- */
.howwework-section {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-step {
  padding: 32px 28px;
  position: relative;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }
.step-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(59,130,246,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ---- NIS2 TEASER ---- */
.nis2-teaser {
  padding: 96px 0;
  background: var(--bg-base);
}
.nis2-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.nis2-teaser-content .section-label { margin-bottom: 12px; }
.nis2-teaser-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.nis2-teaser-content > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.nis2-checklist {
  list-style: none;
  margin-bottom: 32px;
}
.nis2-checklist li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.nis2-checklist li::before {
  content: '?';
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-amber);
  font-size: 0.8rem;
}
.nis2-teaser-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.nis2-teaser-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.nis2-teaser-card > p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }
.nis2-domains {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.nis2-domain-item {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-align: center;
}

/* ---- FUNDING SECTION ---- */
.funding-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.funding-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.funding-eu-badge {
  width: 40px; height: 40px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-blue);
  flex-shrink: 0;
}
.funding-card-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.funding-card-body p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.funding-amount {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 4px;
}
.funding-deadline {
  display: block;
  font-size: 0.78rem;
  color: var(--accent-amber);
  font-weight: 600;
}

/* ---- CERTS SECTION ---- */
.certs-section {
  padding: 96px 0;
  background: var(--bg-base);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.cert-card:hover { border-color: var(--accent-blue); transform: translateY(-2px); }
.cert-name {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 8px;
}
.cert-full { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 96px 24px;
  text-align: center;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 16px;
  margin-bottom: 16px;
  max-width: 260px;
}
.footer-auth-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--text-secondary); transition: color 0.15s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-legal {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 0.78rem; color: var(--text-muted); transition: color 0.15s; }
.footer-legal-links a:hover { color: var(--text-secondary); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-height) + 72px) 24px 72px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59,130,246,0.1) 0%, transparent 65%),
    var(--bg-base);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .hero-badge { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.page-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTENT SECTIONS (inner pages) ---- */
.content-section {
  padding: 80px 0;
  background: var(--bg-base);
}
.content-section.alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.content-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.content-section p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-section p:last-child { margin-bottom: 0; }

/* ---- SCOPE GRID ---- */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.scope-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.2s;
}
.scope-item:hover { border-color: var(--border-hover); }
.scope-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.scope-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ---- DELIVERABLES LIST ---- */
.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.deliverable-icon {
  width: 32px; height: 32px;
  background: rgba(59,130,246,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  font-weight: 700;
}
.deliverable-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.deliverable-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ---- TWO-COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col-text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; margin-bottom: 16px; }
.two-col-text p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }

/* ---- REGULATION CARDS ---- */
.regulation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.regulation-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: border-color 0.2s;
}
.regulation-card:hover { border-color: var(--accent-blue); }
.regulation-name {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 8px;
}
.regulation-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ---- NIS2 ASSESSMENT PAGE ---- */
.assessment-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.assessment-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
}
.assessment-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.assessment-question {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.assessment-question:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.assessment-question label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
}
.radio-option:hover { border-color: var(--accent-blue); background: rgba(59,130,246,0.05); }
.radio-option input[type="radio"] { accent-color: var(--accent-blue); }
.radio-option span { font-size: 0.875rem; color: var(--text-secondary); }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  transition: border-color 0.15s;
  outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent-blue); }
.form-field select option { background: var(--bg-card); }

/* Score display */
.score-display {
  text-align: center;
  padding: 48px 32px;
}
.score-circle {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 6px solid var(--accent-blue);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.score-value { font-size: 2.4rem; font-weight: 800; font-family: var(--font-mono); color: var(--accent-blue); }
.score-label { font-size: 0.75rem; color: var(--text-muted); }

/* ---- ABOUT PAGE ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; margin-bottom: 16px; }
.about-intro-text p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.about-value-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.about-value-item p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
.contact-info p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(59,130,246,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}
.contact-detail-text h5 { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-detail-text p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- PENALTIES TABLE ---- */
.penalties-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.penalties-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.penalties-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}
.penalties-table td:first-child { font-weight: 600; color: var(--text-primary); }
.penalties-table tr:last-child td { border-bottom: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .nis2-teaser-inner { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-actions .btn-emergency { display: none; }
  .hero { padding: calc(var(--nav-height) + 40px) 20px 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .nis2-domains { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}
