/* ═══════════════════════════════════════════
   OFFEND & DEFEND — GLOBAL STYLES
   offendanddefend.com
   ═══════════════════════════════════════════ */

/* ═══ VARIABLES & RESET ═══ */
:root {
  --neon-red: #ff003c;
  --neon-red-dim: rgba(255, 0, 60, 0.6);
  --neon-cyan: #00f0ff;
  --neon-cyan-dim: rgba(0, 240, 255, 0.6);
  --neon-purple: #b400ff;
  --neon-yellow: #ffe600;
  --dark: #05050a;
  --dark-card: #0a0a14;
  --dark-mid: #0e0e1a;
  --dark-alt: #12121f;
  --gray: #3a3a5c;
  --gray-light: #4a4a6c;
  --text: #c8c8e0;
  --text-dim: #6a6a8a;
  --white: #eef0ff;
}

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

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--neon-red); color: white; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ═══ NOISE OVERLAY ═══ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ═══ SCROLL REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ GLITCH ANIMATION ═══ */
@keyframes glitch-skew {
  0%, 30%, 100% { transform: skew(0deg); }
  10% { transform: skew(-2deg); }
  20% { transform: skew(0.8deg); }
}
@keyframes glitch-1 {
  0%, 20%, 100% { clip-path: inset(0 0 100% 0); }
  5% { clip-path: inset(15% 0 55% 0); }
  10% { clip-path: inset(60% 0 10% 0); }
  15% { clip-path: inset(35% 0 40% 0); }
}
@keyframes glitch-2 {
  0%, 22%, 100% { clip-path: inset(100% 0 0 0); }
  7% { clip-path: inset(45% 0 25% 0); }
  12% { clip-path: inset(70% 0 5% 0); }
  18% { clip-path: inset(10% 0 75% 0); }
}
.glitch { position: relative; animation: glitch-skew 6s infinite; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.glitch::before { color: var(--neon-cyan); animation: glitch-1 4s infinite linear; text-shadow: -2px 0 var(--neon-cyan); }
.glitch::after { color: var(--neon-red); animation: glitch-2 4s infinite linear reverse; text-shadow: 2px 0 var(--neon-red); }

/* ═══ NAVIGATION ═══ */
nav {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 0, 60, 0.12);
  padding: 0.9rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo .off { color: var(--neon-red); }
.logo .and { color: var(--text-dim); font-weight: 400; font-size: 0.75rem; margin: 0 0.35rem; }
.logo .def { color: var(--neon-cyan); }

.nav-links { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--neon-red);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--neon-red); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--neon-red); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1.2rem !important;
  border: 1px solid var(--neon-red) !important;
  color: var(--neon-red) !important;
  font-family: 'Orbitron', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.6rem !important;
  letter-spacing: 2px !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--neon-red) !important;
  color: white !important;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.3) !important;
}
.nav-cta::after { display: none !important; }

/* ═══ NAV DROPDOWN ═══ */
.has-dropdown { position: relative; }
.has-dropdown > a::after { display: none !important; }

/* Invisible hover bridge so mouse can travel from link to dropdown */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1rem;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -1rem;
  background: var(--dark-card);
  border: 1px solid rgba(255, 0, 60, 0.15);
  min-width: 240px;
  padding: 0.5rem 0;
  list-style: none;
  z-index: 1001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { margin: 0; }
.dropdown a {
  display: block !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.65rem !important;
  letter-spacing: 1.5px !important;
  color: var(--text-dim) !important;
  transition: all 0.2s !important;
  white-space: nowrap;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover {
  color: var(--neon-red) !important;
  background: rgba(255, 0, 60, 0.05) !important;
  padding-left: 2rem !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--neon-red);
  transition: all 0.3s;
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══ BUTTONS ═══ */
.btn-neon {
  display: inline-block;
  padding: 0.95rem 2.8rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s;
}
.btn-red {
  background: var(--neon-red);
  color: white;
  box-shadow: 0 0 25px rgba(255, 0, 60, 0.25), inset 0 0 25px rgba(255, 0, 60, 0.08);
}
.btn-red:hover {
  box-shadow: 0 0 50px rgba(255, 0, 60, 0.45), inset 0 0 35px rgba(255, 0, 60, 0.15);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 240, 255, 0.4);
}
.btn-outline:hover {
  background: rgba(0, 240, 255, 0.06);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
  transform: translateY(-3px);
}

/* ═══ SECTIONS COMMON ═══ */
section {
  position: relative;
  z-index: 1;
  padding: 7rem 4rem;
}

/* Constrain content width inside sections */
.container { max-width: 1200px; margin: 0 auto; }

/* Subpage content sections — constrain children */
.content-section,
.content-section.alt {
  padding-left: max(4rem, calc((100vw - 1200px) / 2 + 2rem));
  padding-right: max(4rem, calc((100vw - 1200px) / 2 + 2rem));
}
.section-line {
  width: 50px; height: 3px;
  background: var(--neon-red);
  margin-bottom: 1rem;
  box-shadow: 0 0 12px rgba(255, 0, 60, 0.35);
}
.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-red);
  margin-bottom: 0.5rem;
}
section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ═══ PAGE HERO (for subpages) ═══ */
.page-hero {
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(255, 0, 60, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 120%, rgba(180, 0, 255, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 50%, var(--dark) 100%);
  border-bottom: 1px solid rgba(255, 0, 60, 0.1);
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 60, 0.3), rgba(0, 240, 255, 0.2), transparent);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: -50% -10% 0 -10%;
  background-image:
    linear-gradient(rgba(255, 0, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 60, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-drift 30s linear infinite;
  mask-image: radial-gradient(ellipse at 50% 70%, black 20%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 70%, black 20%, transparent 60%);
  pointer-events: none;
}
@keyframes grid-drift {
  0% { transform: perspective(600px) rotateX(30deg) translateY(0); }
  100% { transform: perspective(600px) rotateX(30deg) translateY(50px); }
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-red);
  border: 1px solid rgba(255, 0, 60, 0.25);
  padding: 0.45rem 1.4rem;
  margin-bottom: 1.5rem;
}
.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.page-hero h1 .accent { color: var(--neon-red); }
.page-hero .lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 600px;
}
.page-hero .lead strong { color: var(--neon-cyan); font-weight: 500; }

/* Breadcrumb */
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--neon-cyan); }
.breadcrumb .sep { margin: 0 0.5rem; color: var(--gray); }

/* ═══ CONTENT BLOCKS ═══ */
.content-section { background: var(--dark); }
.content-section.alt { background: var(--dark-mid); }

/* ═══ SERVICE CARDS (homepage) ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--dark-card);
  padding: 2.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.45s ease;
  border: 1px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-red), var(--neon-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 0, 60, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-card:hover { border-color: rgba(255, 0, 60, 0.15); }

.service-icon {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 0, 60, 0.12);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a:hover { color: var(--neon-cyan); }
.service-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
  position: relative;
  z-index: 1;
}
.service-tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--neon-cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.15);
  padding: 0.2rem 0.6rem;
}
.service-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--neon-red);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}
.service-link:hover { color: var(--neon-cyan); }
.service-link::after { content: ' →'; }

/* ═══ WHY GRID ═══ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.why-item {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gray);
  transition: border-color 0.3s;
}
.why-item:hover { border-color: var(--neon-red); }
.why-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.why-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ═══ PROCESS TRACK ═══ */
.process-track {
  display: flex;
  gap: 0;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 18px; left: 6px; right: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-red), var(--neon-purple), var(--neon-yellow), var(--neon-cyan));
  opacity: 0.25;
}
.phase { flex: 1; padding: 0 2rem; position: relative; }
.phase-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.phase:hover .phase-dot { transform: scale(1.4); }
.phase:nth-child(1) .phase-dot { background: var(--neon-red); box-shadow: 0 0 18px rgba(255, 0, 60, 0.5); }
.phase:nth-child(2) .phase-dot { background: var(--neon-purple); box-shadow: 0 0 18px rgba(180, 0, 255, 0.5); }
.phase:nth-child(3) .phase-dot { background: var(--neon-yellow); box-shadow: 0 0 18px rgba(255, 230, 0, 0.5); }
.phase:nth-child(4) .phase-dot { background: var(--neon-cyan); box-shadow: 0 0 18px rgba(0, 240, 255, 0.5); }
.phase-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}
.phase h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}
.phase p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ═══ STATS BAR ═══ */
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid rgba(255, 0, 60, 0.08);
  border-bottom: 1px solid rgba(255, 0, 60, 0.08);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.stat { text-align: center; position: relative; }
.stat::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gray), transparent);
}
.stat:last-child::after { display: none; }
.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--neon-red);
  text-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.content-block {
  max-width: 800px;
  margin-bottom: 3rem;
}
.content-block h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.content-block p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.content-block p strong { color: var(--text); font-weight: 500; }
.content-block a { color: var(--neon-cyan); text-decoration: none; transition: color 0.3s; }
.content-block a:hover { color: var(--neon-red); }

/* Feature list inside content */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.feature-list li {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  padding: 1.5rem;
  position: relative;
  padding-left: 2.5rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
  transition: border-color 0.3s;
}
.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 1rem;
  color: var(--neon-red);
  font-weight: 600;
}
.feature-list li:hover { border-color: rgba(255, 0, 60, 0.3); }
.feature-list li strong { color: var(--white); font-weight: 500; }

/* Inline CTA */
.inline-cta {
  margin: 3rem 0;
  padding: 2.5rem;
  border: 1px solid var(--gray);
  background: var(--dark-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.inline-cta p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  max-width: 500px;
}
.inline-cta p strong { color: var(--neon-cyan); }

/* ═══ FAQ (reusable) ═══ */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--gray); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.faq-question:hover { color: var(--neon-red); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--neon-red);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 0 1.5rem 0; }
.faq-answer p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ═══ CONTACT SECTION (reusable) ═══ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
}
.contact-left p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.contact-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-meta .label { color: var(--text-dim); min-width: 55px; }
.contact-meta a { color: var(--neon-cyan); text-decoration: none; transition: color 0.3s; }
.contact-meta a:hover { color: var(--neon-red); }

form { display: flex; flex-direction: column; gap: 1.1rem; }
label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
input, textarea, select {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: all 0.3s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--neon-red);
  box-shadow: 0 0 18px rgba(255, 0, 60, 0.08);
}
input::placeholder, textarea::placeholder { color: var(--gray-light); }
textarea { resize: vertical; min-height: 110px; }
select option { background: var(--dark); color: var(--text); }
.submit-btn {
  background: var(--neon-red);
  border: none;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.15);
  align-self: flex-start;
}
.submit-btn:hover {
  box-shadow: 0 0 45px rgba(255, 0, 60, 0.4);
  transform: translateY(-3px);
}

/* ═══ PC BADGE ═══ */
.pc-badge {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: border-color 0.3s;
  text-decoration: none;
}
.pc-badge:hover { border-color: var(--neon-cyan); }
.pc-badge-icon {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pc-badge-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.5;
}
.pc-badge-text strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 0.2rem; }

/* ═══ FOOTER ═══ */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 0, 60, 0.08);
  background: var(--dark-card);
  padding: 3rem 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.footer-col a:hover { color: var(--neon-cyan); }
.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--neon-cyan); text-decoration: none; }
.footer-bottom a:hover { color: var(--neon-red); }

/* ═══ ABOUT PAGE SPECIFIC ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-sidebar {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  padding: 2.5rem;
  position: sticky;
  top: 6rem;
}
.about-sidebar h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cert-list { list-style: none; }
.cert-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-dim);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(58, 58, 92, 0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cert-list li::before {
  content: '◆';
  color: var(--neon-red);
  font-size: 0.5rem;
}
.cert-list li:last-child { border-bottom: none; }

/* ═══ RESPONSIVE ═══ */

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; max-width: 100vw; }

@media (max-width: 1024px) {
  .feature-list { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 85vw;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-card);
    flex-direction: column;
    padding: 4.5rem 1.8rem 2rem;
    gap: 0;
    border-left: 1px solid rgba(255, 0, 60, 0.15);
    transition: right 0.35s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }

  /* Mobile nav items */
  .nav-links > li {
    border-bottom: 1px solid rgba(58, 58, 92, 0.3);
  }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links > li > a {
    display: block !important;
    padding: 1rem 0 !important;
    font-size: 0.8rem !important;
    letter-spacing: 3px !important;
  }
  .nav-links > li > a::after { display: none !important; }

  /* Mobile CTA button */
  .nav-cta {
    margin-top: 0.5rem !important;
    padding: 0.9rem 1.5rem !important;
    text-align: center !important;
    font-size: 0.7rem !important;
    display: block !important;
    border: 1px solid var(--neon-red) !important;
  }

  /* Mobile dropdown — always visible, clean indent */
  .has-dropdown > a { padding-bottom: 0.6rem !important; }
  .dropdown {
    display: block !important;
    position: static !important;
    border: none !important;
    box-shadow: none !important;
    min-width: 0 !important;
    margin: 0 0 0.5rem 0 !important;
    padding: 0 0 0.5rem 0.5rem !important;
    background: transparent !important;
    border-left: 2px solid rgba(255, 0, 60, 0.2) !important;
  }
  .dropdown li { list-style: none; }
  .dropdown a {
    padding: 0.6rem 1rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 1.5px !important;
    display: block !important;
  }
  .dropdown a:hover {
    padding-left: 1.3rem !important;
    color: var(--neon-red) !important;
    background: transparent !important;
  }

  /* Mobile overlay when menu is open */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
  }
  .nav-overlay.active { display: block; }

  nav { padding: 0.9rem 1.2rem; }
  section { padding: 3rem 1.2rem; }
  .content-section, .content-section.alt { padding-left: 1.2rem; padding-right: 1.2rem; }
  .page-hero { padding: 7rem 1.2rem 2.5rem; }

  /* Hero text overflow fix */
  .hero h1, .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 3rem) !important;
    letter-spacing: 1px !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero h1 .line-sub, .page-hero h1 .line-sub {
    font-size: 0.55em !important;
    letter-spacing: 2px !important;
  }
  .hero-content { padding: 0 1.2rem !important; }
  .page-hero-content { max-width: 100%; }
  .hero-sub, .page-hero .lead {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .hero-tag, .page-hero .hero-tag {
    font-size: 0.55rem;
    letter-spacing: 2px;
    padding: 0.35rem 1rem;
  }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr !important; gap: 1px; }
  .service-card { padding: 2rem 1.5rem; }

  /* Process */
  .process-track { flex-direction: column; gap: 2rem; }
  .process-track::before { display: none; }
  .phase { padding: 0; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }

  /* Stats */
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 2rem 1.2rem; gap: 1.5rem; }
  .stat-number { font-size: 1.8rem; }
  .stat::after { display: none; }

  /* Contact */
  .contact-split { grid-template-columns: 1fr; gap: 2rem; }

  /* CTA */
  .cta-row { flex-direction: column; gap: 0.8rem; }
  .btn-neon { text-align: center; width: 100%; }
  .inline-cta { flex-direction: column; text-align: center; padding: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; font-size: 0.6rem; }

  /* Scroll indicator hide on mobile */
  .scroll-indicator { display: none; }

  /* Breadcrumb */
  .breadcrumb { font-size: 0.55rem; }
}

@media (max-width: 380px) {
  .hero h1, .page-hero h1 { font-size: 1.6rem !important; }
  .btn-neon { padding: 0.75rem 1.5rem; font-size: 0.6rem; }
  .logo { font-size: 0.85rem; }
  nav { padding: 0.8rem 1rem; }
  .stats-bar { grid-template-columns: 1fr; }
}
