/* ============================================
   BRICKELL TECHNOLOGIES - CYBERPUNK THEME
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

:root {
  /* Core Colors */
  --neon-cyan: #00f0ff;
  --neon-magenta: #ff00ff;
  --neon-green: #39ff14;
  --neon-orange: #ff6b00;
  --neon-red: #ff073a;
  
  /* Background Layers */
  --bg-deepest: #0a0a0f;
  --bg-deep: #0d0d14;
  --bg-medium: #12121a;
  --bg-surface: #1a1a24;
  --bg-elevated: #22222e;
  
  /* Text */
  --text-primary: #e8e8f0;
  --text-secondary: #a0a0b8;
  --text-muted: #606078;
  
  /* Gradients */
  --gradient-cyber: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  --gradient-surface: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  
  /* Effects */
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3);
  --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
  --glow-green: 0 0 20px rgba(57, 255, 20, 0.5), 0 0 40px rgba(57, 255, 20, 0.3);
  
  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-width: 1400px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--bg-deepest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Scanline Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* Grid Background */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--neon-magenta);
  text-shadow: var(--glow-magenta);
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.4));
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-cyber);
  box-shadow: var(--glow-cyan);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--neon-cyan);
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.mono {
  font-family: 'Share Tech Mono', monospace;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-medium);
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 45px;
  height: 45px;
  position: relative;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.logo-text span {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyber);
  transition: var(--transition-medium);
}

.nav-links a:hover {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a.active {
  color: var(--neon-cyan);
}

.nav-links a.active::before {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 4px;
  padding: 1rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
}

.nav-dropdown-content a:hover {
  background: rgba(0, 240, 255, 0.1);
}

.nav-dropdown-content a::before {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--neon-cyan);
  transition: var(--transition-medium);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
}

.btn-primary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-cyber);
  transition: var(--transition-medium);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--bg-deepest);
  text-shadow: none;
  box-shadow: var(--glow-cyan);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  background: var(--gradient-cyber);
  color: var(--bg-deepest);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn-secondary:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 240, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyber-shield {
  width: 400px;
  height: 400px;
  position: relative;
}

.shield-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: var(--gradient-cyber);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: rotate-slow 20s linear infinite;
  opacity: 0.8;
}

.shield-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(0, 240, 255, 0.3);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}

.shield-ring:nth-child(1) {
  width: 250px;
  height: 250px;
  animation-delay: 0s;
}

.shield-ring:nth-child(2) {
  width: 320px;
  height: 320px;
  animation-delay: 0.5s;
}

.shield-ring:nth-child(3) {
  width: 390px;
  height: 390px;
  animation-delay: 1s;
}

@keyframes pulse-ring {
  0%, 100% { 
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes rotate-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
  animation: float 4s ease-in-out infinite;
}

.node:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.node:nth-child(2) { top: 30%; right: 15%; animation-delay: 0.5s; background: var(--neon-magenta); box-shadow: var(--glow-magenta); }
.node:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 1s; }
.node:nth-child(4) { bottom: 30%; right: 20%; animation-delay: 1.5s; background: var(--neon-green); box-shadow: var(--glow-green); }
.node:nth-child(5) { top: 50%; left: 5%; animation-delay: 2s; background: var(--neon-magenta); box-shadow: var(--glow-magenta); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background: var(--gradient-surface);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(0, 240, 255, 0.1);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-cyber);
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  position: relative;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--neon-cyan);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
}

.service-card .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

/* ============================================
   CERTIFICATIONS
   ============================================ */

.certifications {
  background: var(--bg-deep);
  text-align: center;
}

.cert-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  transition: var(--transition-medium);
  min-width: 140px;
}

.cert-item:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.cert-badge {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cyber);
  border-radius: 50%;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-deepest);
  text-align: center;
  padding: 0.5rem;
}

.cert-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-us {
  background: var(--bg-medium);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-card {
  padding: 2rem;
  background: var(--bg-surface);
  border-left: 3px solid var(--neon-cyan);
  transition: var(--transition-medium);
}

.why-card:hover {
  background: var(--bg-elevated);
  border-left-color: var(--neon-magenta);
  transform: translateX(5px);
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  text-align: center;
  background: 
    radial-gradient(ellipse at center, rgba(0, 240, 255, 0.15) 0%, transparent 60%),
    var(--bg-deep);
  position: relative;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta h2::after {
  display: none;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background: var(--bg-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--bg-deep);
  border-left: 3px solid var(--neon-cyan);
  transition: var(--transition-medium);
}

.contact-method:hover {
  border-left-color: var(--neon-magenta);
  background: var(--bg-medium);
}

.contact-method svg {
  width: 24px;
  height: 24px;
  stroke: var(--neon-cyan);
}

.contact-method span {
  font-family: 'Share Tech Mono', monospace;
  color: var(--text-primary);
}

.contact-form {
  background: var(--bg-deep);
  padding: 2.5rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  transition: var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-deepest);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--neon-cyan);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   PAGE HEADERS (for sub-pages)
   ============================================ */

.page-header {
  padding: 10rem 0 5rem;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    var(--bg-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-cyber);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--neon-cyan);
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */

.service-detail {
  padding: 5rem 0;
}

.service-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.service-intro h2 {
  margin-bottom: 1.5rem;
}

.service-intro p {
  margin-bottom: 1rem;
}

.service-sidebar {
  background: var(--bg-surface);
  padding: 2rem;
  border: 1px solid rgba(0, 240, 255, 0.1);
  height: fit-content;
}

.service-sidebar h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-list li::before {
  content: '>';
  color: var(--neon-cyan);
  font-family: 'Share Tech Mono', monospace;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border-left: 3px solid var(--neon-cyan);
  transition: var(--transition-medium);
}

.feature-item:hover {
  background: var(--bg-elevated);
  border-left-color: var(--neon-magenta);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 8px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--neon-cyan);
}

.feature-content h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.95rem;
}

/* Process Section */
.process {
  background: var(--bg-medium);
  padding: 5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 240, 255, 0.1);
  text-align: center;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-cyber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: var(--bg-deepest);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.process-step h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  margin: 1rem 0 0.75rem;
}

.process-step p {
  font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 2.5rem;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand p {
    display: none !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .service-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--bg-surface);
    padding: 2rem;
    gap: 0;
    transform: translateX(-100%);
    transition: var(--transition-medium);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links li {
    width: 100%;
  }
  
  .nav-links a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  }
  
  .nav-dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }

  .footer-brand p {
    display: none !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fade-in-up 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Glitch effect for special text */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 0.3s infinite;
  color: var(--neon-cyan);
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 0.3s infinite;
  color: var(--neon-magenta);
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  20% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 3px); }
  40% { clip-path: inset(40% 0 40% 0); transform: translate(3px, -3px); }
  60% { clip-path: inset(60% 0 20% 0); transform: translate(-3px, 3px); }
  80% { clip-path: inset(80% 0 0 0); transform: translate(3px, -3px); }
}

@keyframes glitch-2 {
  0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
  20% { clip-path: inset(60% 0 20% 0); transform: translate(3px, -3px); }
  40% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 3px); }
  60% { clip-path: inset(80% 0 0 0); transform: translate(3px, -3px); }
  80% { clip-path: inset(40% 0 40% 0); transform: translate(-3px, 3px); }
}
