/* ============================================================
   BOLD TECH DESIGN SYSTEM - NEON BLUE/CYAN + NAVY BLACK
   ============================================================ */

/* ============================================================
   ROOT & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* BOLD TECH Color Palette */
  --primary-black:    #0a0e1a;
  --dark-navy:        #0f1419;
  --navy-dark:        #131a24;
  --navy-med:         #1a2332;
  --navy-light:       #232d3b;

  /* NEON ACCENTS */
  --neon-cyan:        #00f0ff;
  --neon-blue:        #0080ff;
  --electric-cyan:    #00e5ff;
  --cyan-soft:        rgba(0, 240, 255, 0.15);
  --cyan-glow:        rgba(0, 240, 255, 0.5);
  --blue-glow:        rgba(0, 128, 255, 0.4);

  /* Neutral */
  --text-primary:     #ffffff;
  --text-secondary:   #b4c0d4;
  --text-tertiary:    #7a8a9e;
  --border-color:     rgba(0, 240, 255, 0.12);
  --border-hover:     rgba(0, 240, 255, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Space Grotesk', system-ui, sans-serif;
  background: var(--primary-black);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   BUTTONS - BOLD TECH STYLE
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
  color: var(--primary-black);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 20px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--cyan-glow), inset 0 0 20px rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

.btn-primary:hover::before { left: 100%; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--neon-cyan);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--neon-cyan);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--neon-cyan);
  z-index: -1;
  transition: left 0.3s;
}

.btn-outline:hover {
  color: var(--primary-black);
  border-color: var(--electric-cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--cyan-glow);
}

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

.btn-ghost {
  display: inline-block;
  background: rgba(0, 240, 255, 0.08);
  color: var(--neon-cyan);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  position: relative;
}

.btn-ghost:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--cyan-glow);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--primary-black);
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 25px var(--cyan-glow);
  font-family: 'Space Grotesk', sans-serif;
}

.btn-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px var(--cyan-glow);
}

.btn-large { padding: 20px 56px; font-size: 16px; }

.btn-block { width: 100%; text-align: center; }

/* ============================================================
   NAVBAR - BOLD TECH HEADER
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  height: 80px;
  transition: all 0.3s;
}

.navbar:hover {
  background: rgba(10, 14, 26, 0.95);
  border-color: var(--border-hover);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO BADGE - 3X SCALE */
.nav-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 2px solid var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 30px var(--cyan-glow), inset 0 0 20px rgba(0, 240, 255, 0.05);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-logo-badge:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 0 50px var(--cyan-glow), inset 0 0 30px rgba(0, 240, 255, 0.1);
  border-color: var(--electric-cyan);
}

.nav-logo-badge img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--neon-cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--cyan-glow);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--cyan-glow);
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%) !important;
  color: var(--primary-black) !important;
  padding: 12px 28px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: all 0.3s !important;
  box-shadow: 0 0 20px var(--cyan-glow) !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
}

.nav-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 0 40px var(--cyan-glow) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 0 10px var(--cyan-glow);
}

/* ============================================================
   HERO SECTION - SPLIT SCREEN
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-navy);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 128, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--neon-cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 6px;
  width: fit-content;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 0 15px var(--cyan-glow);
  transition: all 0.3s;
}

.hero-badge:hover {
  background: rgba(0, 240, 255, 0.12);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px var(--cyan-glow);
}

.hero-content h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.hero-content h1 .neon-accent {
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px var(--cyan-glow);
  animation: glitch 3s ease-in-out infinite;
}

@keyframes glitch {
  0%, 100% { text-shadow: 0 0 30px var(--cyan-glow); }
  50% { text-shadow: 0 0 50px var(--cyan-glow), 0 0 100px var(--blue-glow); }
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 500px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.hero-image {
  position: relative;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: 0 0 40px var(--cyan-glow), inset 0 0 60px rgba(0, 240, 255, 0.05);
  transition: all 0.3s ease;
}

.hero-image:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 60px var(--cyan-glow), inset 0 0 80px rgba(0, 240, 255, 0.08);
  transform: scale(1.02);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--neon-cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  box-shadow: 0 0 15px var(--cyan-glow);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-med) 0%, var(--primary-black) 100%);
  border: 1px solid var(--border-color);
  border-left: none;
  border-right: none;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  animation: drift 20s linear infinite;
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border-color);
  transition: all 0.3s;
  cursor: pointer;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: rgba(0, 240, 255, 0.05);
  border-color: var(--neon-cyan);
}

.stat-number {
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
  color: var(--neon-cyan);
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 20px var(--cyan-glow);
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.philosophy {
  padding: 120px 0;
  background: var(--dark-navy);
  border-bottom: 1px solid var(--border-color);
}

.philosophy-inner { max-width: 920px; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 10px var(--cyan-glow);
}

section h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 32px;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.philosophy-text {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 900px;
  line-height: 1.9;
  font-weight: 400;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--primary-black);
  border-bottom: 1px solid var(--border-color);
}

.services h2 { color: var(--text-primary); }

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 80px;
}

.service-row:first-of-type { margin-top: 80px; }

.service-card {
  background: rgba(19, 26, 36, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  backdrop-filter: blur(8px);
}

.service-card:hover {
  border-color: var(--neon-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--cyan-glow), inset 0 0 40px rgba(0, 240, 255, 0.03);
  background: rgba(19, 26, 36, 0.8);
}

.service-row--reverse .service-card {
  direction: rtl;
}

.service-row--reverse .service-card > * {
  direction: ltr;
}

.service-img-wrap {
  height: 400px;
  overflow: hidden;
  position: relative;
  border-right: 1px solid var(--border-color);
}

.service-row--reverse .service-img-wrap {
  border-right: none;
  border-left: 1px solid var(--border-color);
}

.service-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.15) 0%, transparent 100%);
  pointer-events: none;
}

.service-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.1);
}

.service-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 6px;
  margin-bottom: 24px;
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 0 10px var(--cyan-glow);
}

.service-body h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-family: 'Space Grotesk', sans-serif;
}

.service-body ul {
  list-style: none;
  margin: 0 0 12px 0;
}

.service-body ul li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
  transition: all 0.3s;
}

.service-body ul li:hover {
  color: var(--neon-cyan);
  padding-left: 32px;
}

.service-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--neon-cyan);
  font-weight: 700;
  transition: all 0.3s;
  opacity: 0;
}

.service-body ul li:hover::before {
  opacity: 1;
  left: -8px;
}

.service-price {
  margin-top: 24px;
  font-weight: 700;
  font-size: 14px;
  color: var(--neon-cyan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 10px var(--cyan-glow);
}

/* ============================================================
   ADVANTAGES SECTION
   ============================================================ */
.process {
  padding: 120px 0;
  background: var(--dark-navy);
  border-bottom: 1px solid var(--border-color);
}

.process h2 { color: var(--text-primary); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.step {
  padding: 52px 44px;
  border-right: 1px solid var(--border-color);
  background: rgba(19, 26, 36, 0.4);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.step:last-child { border-right: none; }

.step:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
}

.step:hover::before { opacity: 1; }

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 10px var(--cyan-glow);
}

.step .support-icon {
  width: 56px; height: 56px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  margin-bottom: 28px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.step:hover .support-icon {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px var(--cyan-glow);
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  font-family: 'Space Grotesk', sans-serif;
}

.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--primary-black);
  border-bottom: 1px solid var(--border-color);
}

.testimonials h2 { color: var(--text-primary); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-card {
  background: rgba(19, 26, 36, 0.5);
  padding: 48px 40px;
  border-right: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(8px);
  cursor: pointer;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.testimonial-card:last-child { border-right: none; }

.testimonial-card:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--neon-cyan);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--cyan-glow), inset 0 0 30px rgba(0, 240, 255, 0.03);
}

.testimonial-stars {
  color: var(--neon-cyan);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  text-shadow: 0 0 10px var(--cyan-glow);
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 36px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-black);
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.author-location {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 120px 0;
  background: var(--dark-navy);
  border-bottom: 1px solid var(--border-color);
}

.faq h2 { color: var(--text-primary); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 80px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  padding: 44px 48px;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(19, 26, 36, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1), transparent);
  transition: left 0.3s;
  pointer-events: none;
}

.faq-item:hover::before { left: 0; }

.faq-item:nth-child(2n) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }

.faq-item:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--neon-cyan);
  transform: translateX(8px);
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s;
}

.faq-item:hover h4 {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--cyan-glow);
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--primary-black);
}

.contact h2 { color: var(--text-primary); }

.contact-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 72px;
  margin-top: -12px;
  max-width: 700px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.info-item {
  display: flex;
  gap: 24px;
  padding: 48px 40px;
  background: rgba(19, 26, 36, 0.5);
  border-right: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(8px);
  position: relative;
}

.info-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
  transition: width 0.3s ease;
}

.info-item:hover::before {
  width: 100%;
}

.info-item:last-child { border-right: none; }

.info-item:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--neon-cyan);
  transform: translateY(-4px);
}

.info-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.info-item:hover .info-icon {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px var(--cyan-glow);
}

.info-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Space Grotesk', sans-serif;
}

.info-item p { font-size: 16px; color: var(--text-primary); line-height: 1.6; }

.info-item a {
  color: var(--neon-cyan);
  font-weight: 700;
  transition: all 0.3s;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.info-item a:hover {
  color: var(--electric-cyan);
  text-decoration-color: var(--electric-cyan);
  text-shadow: 0 0 10px var(--cyan-glow);
}

.contact-cta-wrap {
  text-align: center;
  margin-top: 64px;
}

/* ============================================================
   COOKIES & MODALS
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 14, 26, 0.95);
  color: var(--text-primary);
  z-index: 9999;
  padding: 28px 40px;
  border-top: 2px solid var(--neon-cyan);
  box-shadow: 0 -8px 40px var(--cyan-glow);
  backdrop-filter: blur(16px);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 14px;
  color: var(--text-secondary);
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 14, 26, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.modal-box {
  background: var(--dark-navy);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 56px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 0 80px var(--cyan-glow), inset 0 0 60px rgba(0, 240, 255, 0.03);
  position: relative;
}

.modal-box:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 100px var(--cyan-glow), inset 0 0 80px rgba(0, 240, 255, 0.05);
}

.modal-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -1px;
}

.cookie-option {
  margin-bottom: 24px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s;
}

.cookie-option label:hover {
  color: var(--neon-cyan);
}

.cookie-option label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--neon-cyan);
  transition: all 0.3s;
  border-radius: 3px;
}

.cookie-option label input:hover {
  box-shadow: 0 0 15px var(--cyan-glow);
}

.cookie-option p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
  padding-left: 32px;
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 4px;
}

.modal-close:hover {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  transform: rotate(90deg);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.modal-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.request-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.request-form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Space Grotesk', sans-serif;
}

.request-form input,
.request-form textarea {
  padding: 16px 18px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: rgba(19, 26, 36, 0.6);
  color: var(--text-primary);
  transition: all 0.3s;
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: var(--text-tertiary);
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  background: rgba(19, 26, 36, 0.8);
  box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 10px rgba(0, 240, 255, 0.05);
}

.request-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 32px;
  text-align: center;
}

.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
  color: var(--primary-black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: bold;
  box-shadow: 0 0 40px var(--cyan-glow);
}

.request-success h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 12px;
  font-family: 'Space Grotesk', sans-serif;
}

.request-success p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-navy);
  color: var(--text-secondary);
  padding-top: 80px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.footer-brand p:hover {
  color: var(--neon-cyan);
}

.footer-brand .disclaimer {
  font-size: 12px;
  color: var(--text-tertiary);
  font-style: italic;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.5px;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Space Grotesk', sans-serif;
  text-shadow: 0 0 10px var(--cyan-glow);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--neon-cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--cyan-glow);
}

.footer-links a:hover {
  color: var(--neon-cyan);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-pref-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-tertiary);
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
}

.cookie-pref-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 15px var(--cyan-glow);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    height: 400px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
  }

  .step:last-child {
    border-bottom: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
  }

  .testimonial-card:last-child {
    border-bottom: none;
  }

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

  .info-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
  }

  .info-item:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-img-wrap {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
    height: 300px;
  }

  .service-row--reverse .service-img-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    border-right: none !important;
  }

  .faq-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border-color);
  }

  .faq-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 28px;
  }

  .nav-container {
    padding: 0 28px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--dark-navy);
    border-bottom: 2px solid var(--neon-cyan);
    padding: 12px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 16px 32px;
    font-size: 13px;
  }

  .nav-links li a::after {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-container {
    padding: 0 28px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-image {
    height: 350px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .section-label {
    font-size: 10px;
  }

  section h2 {
    font-size: clamp(28px, 6vw, 48px);
  }

  .service-body {
    padding: 40px 32px;
  }

  .service-img-wrap {
    height: 280px;
  }

  .btn-large {
    width: 100%;
  }

  .modal-box {
    padding: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-sub {
    font-size: 16px;
  }

  .faq-item {
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-logo-badge {
    width: 56px;
    height: 56px;
  }

  .nav-logo-badge img {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
  }

  .hero-container {
    padding: 40px 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-image {
    height: 280px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 10px 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-label {
    font-size: 14px;
  }

  .philosophy {
    padding: 80px 0;
  }

  .philosophy-inner {
    max-width: 100%;
  }

  .philosophy-text {
    font-size: 16px;
  }

  .services {
    padding: 80px 0;
  }

  .service-row {
    margin-top: 60px;
  }

  .service-body {
    padding: 32px 24px;
  }

  .service-body h3 {
    font-size: 24px;
  }

  .process {
    padding: 80px 0;
  }

  .process-steps {
    border-radius: 6px;
  }

  .step {
    padding: 36px 24px;
  }

  .step h3 {
    font-size: 19px;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonial-card {
    padding: 36px 24px;
  }

  .faq {
    padding: 80px 0;
  }

  .faq-item {
    padding: 28px 20px;
  }

  .faq-item h4 {
    font-size: 16px;
  }

  .contact {
    padding: 80px 0;
  }

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

  .info-item {
    padding: 36px 24px;
    flex-direction: column;
    gap: 16px;
  }

  .contact-cta-wrap {
    margin-top: 40px;
  }

  .footer-grid {
    gap: 32px;
  }

  .cookie-banner {
    padding: 20px 24px;
  }

  .cookie-content {
    gap: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button {
    width: 100%;
  }
}
