/* ==========================================
   CIPHERFORGE — CYBERSECURITY LANDING PAGE
   ========================================== */

:root {
  --bg: #050810;
  --bg2: #080d1a;
  --surface: #0d1425;
  --surface2: #111c32;
  --border: rgba(0, 212, 255, 0.12);
  --border2: rgba(0, 255, 136, 0.1);

  --green: #00ff88;
  --cyan: #00d4ff;
  --orange: #ff6b35;
  --purple: #a855f7;
  --yellow: #ffd60a;
  --red: #ff3b5c;

  --text: #e8edf5;
  --text-dim: #8899bb;
  --text-mute: #4a5a7a;

  --font-mono: 'Share Tech Mono', monospace;
  --font-display: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NOISE TEXTURE */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* GRID BACKGROUND */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ======================== NAV ======================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(5, 8, 16, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.logo-icon { font-size: 22px; color: var(--cyan); }
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: rgba(0,212,255,0.1) !important; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(5,8,16,0.98);
  border-top: 1px solid var(--border);
  padding: 16px 32px 24px;
}
.mobile-menu a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--cyan); }
.mobile-menu.open { display: flex; }

/* ======================== HERO ======================== */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
}
.hero-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,212,255,0.015) 50%, transparent 100%);
  animation: scan 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan {
  0%, 100% { transform: translateY(-20%); opacity: 0; }
  50% { transform: translateY(20%); opacity: 1; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--green); }
  50% { box-shadow: 0 0 12px var(--green), 0 0 24px rgba(0,255,136,0.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-accent { color: var(--cyan); }

.hero-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--bg);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 32px rgba(0,212,255,0.3); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}
.btn-ghost:hover { color: var(--text); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}
.stat-unit { color: var(--cyan); font-family: var(--font-display); font-size: 22px; }
.stat-label { font-size: 12px; color: var(--text-mute); margin-top: 4px; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 72px);
  gap: 8px;
  justify-items: center;
}
.hex {
  width: 72px; height: 80px;
  background: var(--surface);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid transparent;
  transition: all 0.3s;
  animation: hexFloat 6s ease-in-out infinite;
  position: relative;
}
.hex:hover { background: var(--surface2); transform: scale(1.05); }
.h1 { animation-delay: 0s; }
.h2 { animation-delay: 1s; }
.h3 { animation-delay: 2s; }
.h4 { animation-delay: 3s; }
.h5 { animation-delay: 4s; }
.h6 { animation-delay: 5s; }
@keyframes hexFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* TERMINAL */
.terminal-window {
  width: 100%;
  max-width: 400px;
  background: #0a0f1e;
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.05);
}
.term-bar {
  background: #111928;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(0,212,255,0.1);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff3b5c; }
.dot.yellow { background: #ffd60a; }
.dot.green { background: #00ff88; }
.term-title { font-family: var(--font-mono); font-size: 12px; color: var(--text-mute); margin-left: 8px; }
.term-body {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green);
  line-height: 1.8;
  min-height: 160px;
}
.term-body .dim { color: var(--text-mute); }
.term-body .cyan { color: var(--cyan); }
.term-body .orange { color: var(--orange); }
.term-body .cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--green);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ======================== SECTIONS ======================== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.dark-section { background: var(--bg2); }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
}
.accent { color: var(--cyan); }

/* ======================== SERVICES ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.service-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.service-card:hover::before { background: linear-gradient(90deg, var(--cyan), var(--green)); }

.service-card.featured {
  border-color: rgba(0,212,255,0.3);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0,212,255,0.04) 100%);
}
.service-card.featured::before { background: linear-gradient(90deg, var(--cyan), var(--green)); }

.featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 1px;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-dim);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 11px;
}
.service-link {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: gap 0.2s;
}
.service-link:hover { text-decoration: underline; }

/* ======================== PROCESS ======================== */
.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--surface);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--cyan);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.step-content { max-width: 200px; }
.step-content h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.process-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.2));
  margin-top: 28px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px; height: 8px;
  background: var(--cyan);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

/* ======================== FORENSIC ======================== */
.forensic-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.forensic-text .tag { margin-bottom: 16px; }
.forensic-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.forensic-text > p {
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.7;
}
.forensic-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.f-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.f-check {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}
.f-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.f-item span {
  font-size: 13px;
  color: var(--text-dim);
}

/* EVIDENCE CARD */
.forensic-visual { display: flex; justify-content: center; }
.evidence-card {
  background: var(--surface);
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 360px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 60px rgba(0,212,255,0.05);
}
.ev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.ev-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 1px;
}
.ev-id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
}
.ev-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.ev-row span:first-child { color: var(--text-mute); }
.ev-row span:last-child { color: var(--text); font-family: var(--font-mono); font-size: 12px; }
.ev-green { color: var(--green) !important; }
.ev-hash { color: var(--cyan) !important; }
.ev-seal {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}
.seal-circle {
  width: 72px; height: 72px;
  border: 2px solid rgba(0,255,136,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--green);
  letter-spacing: 0.5px;
  line-height: 1.3;
  box-shadow: 0 0 20px rgba(0,255,136,0.1);
}

/* ======================== CERTS ======================== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.3s;
}
.cert-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-2px);
}
.cert-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cert-name {
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.4;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.trust-icon { font-size: 28px; margin-bottom: 12px; }
.trust-item p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ======================== CONTACT ======================== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-text .tag { margin-bottom: 16px; }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-text > p {
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 16px; align-items: center; }
.info-icon { font-size: 22px; }
.info-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.info-item span { font-size: 14px; color: var(--text-dim); }

/* FORM */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-mute);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,212,255,0.4);
}
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 64px; height: 64px;
  background: rgba(0,255,136,0.1);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--green);
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-success p { color: var(--text-dim); }

/* ======================== FOOTER ======================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-mute); line-height: 1.6; max-width: 240px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li, .footer-col ul a {
  font-size: 13px;
  color: var(--text-mute);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col ul a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mute);
  font-family: var(--font-mono);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-sub, .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .process-timeline { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; margin-top: 0; background: linear-gradient(180deg, var(--cyan), rgba(0,212,255,0.2)); }
  .process-connector::after { right: -4px; top: auto; bottom: -4px; clip-path: polygon(50% 100%, 0 0, 100% 0); }
  .forensic-split, .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 100px 20px 60px; }
  .container { padding: 0 20px; }
}
