@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@400;500;600;700&family=JetBrains+Mono:wght@300;400&display=swap');

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
  --slate:      #0C0F1A;
  --slate-mid:  #131726;
  --slate-lt:   #1C2235;
  --slate-card: #161B2C;
  --cyan:       #00D4C8;
  --cyan-dim:   #009E95;
  --cyan-glow:  rgba(0,212,200,0.15);
  --cyan-trace: rgba(0,212,200,0.06);
  --red:        #E8334A;
  --red-dim:    rgba(232,51,74,0.15);
  --white:      #F0F4FF;
  --text:       #C8D0E8;
  --muted:      #5A6480;
  --border:     rgba(0,212,200,0.18);
  --border-dim: rgba(255,255,255,0.06);
  --font-disp:  'Cormorant Garamond', serif;
  --font-body:  'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--slate);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── LANG SWITCHER ────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  align-items: center;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-bottom: 2px solid transparent;
  padding: 0.28rem 0.6rem;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.lang-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  border-bottom-color: transparent;
}
.lang-active {
  color: var(--cyan) !important;
  border-color: rgba(0,212,200,0.35) !important;
  border-bottom-color: var(--cyan) !important;
}

/* ── NAV LOGO TEXT LINK ────────────────────────────────────── */
.nav-logo { display: flex; align-items: center; }
.nav-logo-link {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  border: 1px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.nav-logo-mark::before {
  content: '◈';
  color: var(--cyan);
  font-size: 1rem;
}
.nav-logo-text {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo-text span { color: var(--cyan); }

/* ── SCAN LINE TEXTURE ────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
}

/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  height: 70px;
  background: rgba(12,15,26,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dim);
}
nav::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.3;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}
.nav-cta {
  color: var(--slate) !important;
  background: var(--cyan);
  border-bottom: none !important;
  padding: 0.5rem 1.3rem;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #00F0E0 !important; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--slate);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 40%, rgba(0,212,200,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(232,51,74,0.04) 0%, transparent 60%),
    linear-gradient(160deg, #0C0F1A 0%, #131726 60%, #0A0D18 100%);
}
/* Grid cyber */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,200,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-grid::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,200,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,200,0.02) 1px, transparent 1px);
  background-size: 12px 12px;
}
/* Animated scan line */
.hero-scan {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scan 6s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes scan {
  0%   { top: 0%; opacity: 0.5; }
  50%  { top: 100%; opacity: 0.2; }
  100% { top: 0%; opacity: 0.5; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 3rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 0.35rem 0.8rem;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.hero-tag::before {
  content: '//';
  opacity: 0.5;
}
.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--cyan);
}
.hero-title strong {
  font-weight: 300;
  position: relative;
}
.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--cyan);
  color: var(--slate);
}
.btn-primary:hover { background: #00F0E0; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* Hero terminal card */
.hero-terminal {
  background: var(--slate-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-terminal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.terminal-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-dim);
  background: rgba(0,0,0,0.2);
}
.terminal-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.terminal-dot:nth-child(1) { background: var(--red); }
.terminal-dot:nth-child(2) { background: #F0A500; }
.terminal-dot:nth-child(3) { background: #2DB55D; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05em;
}
.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 2;
}
.t-prompt { color: var(--cyan); }
.t-cmd    { color: var(--white); }
.t-output { color: var(--muted); margin-left: 1rem; display: block; }
.t-ok     { color: #2DB55D; }
.t-warn   { color: #F0A500; }
.t-alert  { color: var(--red); }
.t-cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--cyan);
  vertical-align: middle;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ── SECTION BASE ─────────────────────────────────────────── */
section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.section-label::before { content: '// '; opacity: 0.5; }
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--cyan); }
.section-intro {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ── THREAT INTRO (dark section) ─────────────────────────── */
.threat-intro {
  background: var(--slate-mid);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 5rem 0;
}
.threat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.threat-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.threat-text p.lead {
  font-size: 1.05rem;
  color: rgba(240,244,255,0.85);
  font-weight: 400;
}
.threat-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border-dim);
}
.threat-stat {
  background: var(--slate-card);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.threat-stat::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--cyan);
  transition: height var(--transition);
}
.threat-stat:hover { background: var(--slate-lt); }
.threat-stat:hover::before { height: 100%; }
.stat-num {
  font-family: var(--font-disp);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num span { color: var(--cyan); font-size: 1.8rem; }
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services { background: var(--slate); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-dim);
  margin-top: 3.5rem;
}
.service-card {
  background: var(--slate-card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { background: var(--slate-lt); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--border);
  margin-bottom: 1.75rem;
  letter-spacing: 0.1em;
}
.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan-dim);
  border: 1px solid rgba(0,212,200,0.2);
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.05em;
}

/* ── APPROACH – ATTACK SURFACE ────────────────────────────── */
.approach {
  background: var(--slate-mid);
  border-top: 1px solid var(--border-dim);
}
.approach-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  margin-bottom: 4rem;
}
.approach-phases {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-dim);
}
.phase {
  background: var(--slate-card);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}
.phase:hover { background: var(--slate-lt); }
.phase-arrow {
  position: absolute; right: -1px; top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 0; height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--slate-mid);
  display: none;
}
@media (min-width: 900px) { .phase-arrow { display: block; } }
.phase:last-child .phase-arrow { display: none; }
.phase-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.phase-icon { font-size: 1.4rem; margin-bottom: 0.75rem; }
.phase h4 {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.phase p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ── DIFFERENTIATORS ──────────────────────────────────────── */
.differentiators { background: var(--slate); }
.diff-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 3rem;
}
.diff-card {
  border: 1px solid var(--border-dim);
  padding: 2.25rem;
  position: relative;
  transition: border-color var(--transition);
}
.diff-card:hover { border-color: var(--border); }
.diff-card::before {
  content: '';
  position: absolute; top: -1px; left: 2rem; width: 2rem; height: 1px;
  background: var(--cyan);
}
.diff-card h3 {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.diff-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── SECTORS ──────────────────────────────────────────────── */
.sectors {
  background: var(--slate-mid);
  padding: 5rem 0;
  border-top: 1px solid var(--border-dim);
}
.sectors-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-dim);
  margin-top: 3rem;
}
.sector-item {
  background: var(--slate-card);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition);
}
.sector-item:hover { background: var(--slate-lt); }
.sector-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.sector-name {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ── TEAM ─────────────────────────────────────────────────── */
.team { background: var(--slate); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-dim);
  margin-top: 3rem;
}
.team-card {
  background: var(--slate-card);
  overflow: hidden;
  transition: background var(--transition);
}
.team-card:hover { background: var(--slate-lt); }
.team-photo {
  height: 220px;
  background: var(--slate-mid);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--slate-card));
}
.team-initials {
  width: 72px; height: 72px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cyan);
}
.team-info { padding: 1.75rem; }
.team-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
.team-name {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.team-bio { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* ── CERTIFICATIONS ───────────────────────────────────────── */
.certs {
  background: var(--slate-mid);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.certs-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.certs-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}
.certs-label::before { content: '// '; }
.certs-list {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.cert-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  letter-spacing: 0.08em;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #060810;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-dim);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}
.footer-brand span { color: var(--cyan); }
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--cyan); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-hero {
  min-height: 38vh;
  background: var(--slate);
  display: flex; align-items: flex-end;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,200,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.contact-section { background: var(--slate-mid); padding: 5rem 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem;
}
.contact-info-block { margin-bottom: 2rem; }
.contact-info-block dt {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--cyan);
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
}
.contact-info-block dd {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}
.contact-form {
  background: var(--slate-card);
  border: 1px solid var(--border-dim);
  padding: 2.5rem;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dim);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color var(--transition);
  border-radius: 0;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0,212,200,0.04);
}
select option { background: var(--slate-card); color: var(--text); }
textarea { resize: vertical; min-height: 130px; }
.form-consent {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-consent input { width: auto; margin-top: 3px; accent-color: var(--cyan); }
.form-consent a { color: var(--cyan); text-decoration: underline; }
.btn-submit {
  width: 100%;
  background: var(--cyan);
  color: var(--slate);
  padding: 0.9rem;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 1rem;
}
.btn-submit:hover { background: #00F0E0; }
.form-message {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  display: none;
  border-left: 2px solid;
  letter-spacing: 0.02em;
}
.form-message.success { background: rgba(45,181,93,0.08); color: #2DB55D; border-color: #2DB55D; }
.form-message.error   { background: var(--red-dim); color: var(--red); border-color: var(--red); }

/* ── SUCCESS PAGE ─────────────────────────────────────────── */
.success-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--slate);
  padding: 2rem;
}
.success-card {
  background: var(--slate-card);
  border: 1px solid var(--border);
  padding: 4rem;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.success-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
}
.success-icon { font-size: 2rem; color: var(--cyan); margin-bottom: 1.5rem; font-family: var(--font-mono); }
.success-card h2 { font-family: var(--font-disp); font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 1rem; }
.success-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.success-card .btn { margin-top: 2rem; }

/* ── LEGAL PAGE ───────────────────────────────────────────── */
.legal-section { padding: 5rem 0; background: var(--slate-mid); }
.legal-content {
  max-width: 760px;
  background: var(--slate-card);
  border: 1px solid var(--border-dim);
  padding: 3rem 3.5rem;
  position: relative;
}
.legal-content::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.legal-content h2 {
  font-family: var(--font-disp); font-size: 1.4rem; font-weight: 400;
  color: var(--white); margin: 2rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.87rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.8rem; }
.legal-content strong { color: rgba(240,244,255,0.8); }

/* ── COOKIE BANNER ────────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(12,15,26,0.98);
  border-top: 1px solid var(--border);
  padding: 1.25rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  backdrop-filter: blur(16px);
}
.cookie-text { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.cookie-text a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.cookie-accept { background: var(--cyan); color: var(--slate); }
.cookie-accept:hover { background: #00F0E0; }
.cookie-refuse { background: transparent; color: var(--muted); border: 1px solid rgba(255,255,255,0.12); }
.cookie-refuse:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; padding: 4rem 1.5rem 3rem; }
  .hero-terminal { display: none; }
  .container { padding: 0 1.5rem; }
  .threat-grid, .approach-header, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .approach-phases { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .sectors-list { grid-template-columns: repeat(2, 1fr); }
  .threat-stats { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  #cookie-banner { flex-direction: column; padding: 1.25rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .certs-inner { flex-direction: column; align-items: flex-start; }
  .principles-inner { grid-template-columns: repeat(2, 1fr); }
}
