/* ── RESET & VARS ── */
:root {
  --blue-primary: #00a8ff;
  --blue-bright: #4fc3f7;
  --blue-glow: #0077cc;
  --blue-deep: #001833;
  --bg-void: #00050d;
  --bg-dark: #000c1a;
  --bg-card: #000e1f;
  --border: rgba(0,168,255,0.15);
  --border-bright: rgba(79,195,247,0.4);
  --text-primary: #e8f4ff;
  --text-secondary: rgba(232,244,255,0.6);
  --text-dim: rgba(232,244,255,0.35);
  --glow-sm: 0 0 10px rgba(0,168,255,0.4);
  --glow-md: 0 0 20px rgba(0,168,255,0.5), 0 0 40px rgba(0,168,255,0.2);
  --glow-lg: 0 0 30px rgba(0,168,255,0.6), 0 0 60px rgba(0,168,255,0.3), 0 0 100px rgba(0,168,255,0.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #00050d;
  color: var(--text-primary);
  overflow-x: hidden;
}
/* noise overlay removed */

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,4,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 40px; height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,168,255,0.7));
}
.nav-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-transform: uppercase;
}
.nav-logo-text span { color: var(--blue-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-primary); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: baseline; gap: 6px; cursor: pointer; line-height: inherit; }
.nav-chevron { width: 10px; height: 6px; transition: transform 0.2s ease; display: inline-block; color: currentColor; }
.nav-chevron svg { display: block; width: 100%; height: 100%; }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  background: transparent;
  min-width: 200px;
  list-style: none;
  z-index: 1001;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu-inner {
  background: rgba(0,4,10,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,168,255,0.15);
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  position: relative;
}
.nav-dropdown-menu-inner::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: rgba(0,4,10,0.97);
  border-left: 1px solid rgba(0,168,255,0.15);
  border-top: 1px solid rgba(0,168,255,0.15);
  rotate: 45deg;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  border-left: 2px solid transparent;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  color: var(--blue-primary);
  background: rgba(0,168,255,0.05);
  padding-left: 26px;
  border-left-color: var(--blue-primary);
}

/* (legacy mobile nav label rules removed — replaced by new full-screen overlay block below) */
.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--blue-primary);
  color: #000;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: box-shadow 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--blue-bright); box-shadow: var(--glow-md); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 64px 220px; /* extended bottom padding so stats bar sits inside hero */
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,119,204,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 30% at 50% 50%, rgba(0,168,255,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
}
.hero-hex-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,168,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}
.hero-content { text-align: left; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-primary);
  padding: 8px 22px;
  border: 1px solid rgba(0,168,255,0.3);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: pulse 2s ease infinite;
}
.hero-logo-center {
  width: 150px; height: 150px;
  margin: 0 0 28px 0;
  display: block;
}
h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 0.3s both;
}
h1 .line-blue { display: block; color: var(--blue-primary); text-shadow: var(--glow-md); }
h1 .line-white { display: block; color: var(--text-primary); }
.hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 580px;
  margin: 24px 0 56px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.7s both;
}

/* ── VIDEO COLUMN ── */
.hero-video-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* ── VIDEO BOX ── */
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,168,255,0.4);
  box-shadow:
    0 0 0 1px rgba(79,195,247,0.15),
    0 0 24px rgba(0,168,255,0.5),
    0 0 60px rgba(0,168,255,0.25),
    0 0 110px rgba(0,168,255,0.1);
  animation: videoGlowPulse 4s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-video-wrap:nth-child(2) {
  animation-delay: 2s;
}
@keyframes videoGlowPulse {
  0%, 100% { border-color: rgba(0,168,255,0.4); box-shadow: 0 0 24px rgba(0,168,255,0.4), 0 0 60px rgba(0,168,255,0.15); }
  50% { border-color: rgba(79,195,247,0.65); box-shadow: 0 0 36px rgba(0,168,255,0.65), 0 0 80px rgba(0,168,255,0.25); }
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,168,255,0.07) 0%, transparent 45%, rgba(0,168,255,0.04) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--blue-primary);
  color: #000;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-bright); box-shadow: var(--glow-lg); transform: translateY(-2px); }
.btn-secondary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 36px;
  background: rgba(0,168,255,0.15);
  color: var(--blue-bright);
  border: 1px solid rgba(0,168,255,0.55);
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.2s;
  display: inline-block;
  box-shadow: 0 0 10px rgba(0,168,255,0.12), inset 0 0 12px rgba(0,168,255,0.07);
}
.btn-secondary:hover { border-color: var(--blue-bright); background: rgba(0,168,255,0.28); box-shadow: 0 0 18px rgba(0,168,255,0.35), 0 0 40px rgba(0,168,255,0.15); transform: translateY(-2px); }
.btn-4k {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: linear-gradient(135deg, #c8a96e 0%, #f0d080 45%, #c8a96e 100%);
  color: #1a0e00;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.2s;
  display: inline-block;
  box-shadow: 0 0 12px rgba(200,169,110,0.25);
}
.btn-4k:hover { background: linear-gradient(135deg, #dbbf7f 0%, #fce89a 45%, #dbbf7f 100%); box-shadow: 0 0 24px rgba(240,208,128,0.45), 0 0 50px rgba(200,169,110,0.2); transform: translateY(-2px); }

/* ── STATS BAR — LUXURY GLASS PANEL ── */
.stats-bar {
  position: relative;
  /* Pull up into the hero so the bar sits on a single uniform background, not over the section seam */
  margin-top: -140px;
  z-index: 3;
  /* Layered gradient gives the bar its own depth so the section seam behind it is masked */
  background:
    linear-gradient(180deg,
      rgba(0, 30, 65, 0.55) 0%,
      rgba(0, 18, 42, 0.65) 50%,
      rgba(0, 12, 30, 0.75) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-top: 1px solid rgba(0, 168, 255, 0.18);
  border-bottom: 1px solid rgba(0, 168, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 40px 48px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  overflow: hidden;
}
/* Top edge sheen — premium glass cue */
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 168, 255, 0.4) 25%,
    rgba(79, 195, 247, 0.6) 50%,
    rgba(0, 168, 255, 0.4) 75%,
    transparent 100%);
  pointer-events: none;
  z-index: 2;
}
/* Soft inner glow for depth */
.stats-bar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center,
    rgba(0, 168, 255, 0.08) 0%,
    rgba(0, 168, 255, 0.03) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.stat-item {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 260px;
  padding: 0 24px;
}
/* Elegant fading vertical divider between stats */
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 168, 255, 0.18) 30%,
    rgba(0, 168, 255, 0.25) 50%,
    rgba(0, 168, 255, 0.18) 70%,
    transparent 100%);
}
.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(180deg,
    #ffffff 0%,
    #b8e4ff 35%,
    var(--blue-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 168, 255, 0.45));
  display: block;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.stat-value-infinity {
  font-size: 52px;
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232, 244, 255, 0.55);
  margin-top: 12px;
  white-space: nowrap;
}

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.1;
}
.section-title span { color: var(--blue-primary); }
.section-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* ── FEATURES ── */
.features { padding: 100px 48px; background: linear-gradient(180deg, #00050d 0%, #000c1a 60%, #000e1f 100%); position: relative; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.feature-card {
  padding: 36px 32px;
  background: rgba(0,20,45,0.55);
  position: relative;
  transition: background 0.2s;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--blue-primary);
  transition: height 0.3s ease;
  box-shadow: var(--glow-sm);
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover { background: rgba(0,168,255,0.04); }
.feature-icon { font-size: 22px; margin-bottom: 16px; display: block; color: var(--blue-primary); }
.feature-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.feature-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── PORTFOLIO ── */
.portfolio {
  padding: 100px 48px;
  background:
    linear-gradient(180deg,
      #000e1f 0%,
      #000813 42%,
      #000c1a 100%);
  position: relative;
  overflow: hidden;
}
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 1280px;
  margin: 0 auto 48px;
}
.port-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: #000c1e;
  border: 1px solid rgba(0,168,255,0.08);
  transition: border-color 0.35s, box-shadow 0.35s;
}
.port-card:hover {
  border-color: rgba(0,168,255,0.55);
  box-shadow: 0 0 0 1px rgba(79,195,247,0.15), 0 0 20px rgba(0,168,255,0.35), 0 0 50px rgba(0,168,255,0.12);
  z-index: 2;
}
.port-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
  filter: brightness(0.85) saturate(0.9);
}
.port-card:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
/* scanline removed */
.port-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border-top: 2px solid rgba(0,168,255,0);
  border-left: 2px solid rgba(0,168,255,0);
  transition: border-color 0.3s ease, width 0.3s ease, height 0.3s ease;
  z-index: 3; pointer-events: none;
}
.port-card:hover::after { border-color: rgba(0,168,255,0.8); width: 40px; height: 40px; }
.port-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,4,12,0.96) 0%, rgba(0,4,12,0.65) 35%, rgba(0,4,12,0.1) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px 16px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}
.port-card:hover .port-overlay { opacity: 1; transform: translateY(0); }
.port-cat {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.port-cat::before { content: ''; display: inline-block; width: 14px; height: 1px; background: var(--blue-primary); flex-shrink: 0; }
.port-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.3;
  text-transform: uppercase;
}
.port-expand {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  border: 1px solid rgba(0,168,255,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  z-index: 3;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  background: rgba(0,168,255,0.12);
}
.port-expand svg { width: 12px; height: 12px; stroke: var(--blue-primary); fill: none; stroke-width: 2; }
.port-card:hover .port-expand { opacity: 1; transform: scale(1); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(12px);
}
.lightbox.active { display: flex; animation: lbFadeIn 0.25s ease; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-inner {
  position: relative;
  max-width: 1200px; width: 100%; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
  animation: lbScale 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes lbScale { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-img-wrap {
  position: relative; width: 100%;
  border: 1px solid rgba(0,168,255,0.4);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,168,255,0.3), 0 0 100px rgba(0,168,255,0.1);
}
.lightbox-img-wrap img { width: 100%; height: auto; max-height: 75vh; object-fit: contain; display: block; background: #000; }
.lightbox-meta { margin-top: 16px; text-align: center; }
.lightbox-cat {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--blue-primary); margin-bottom: 4px;
}
.lightbox-title { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: 0.06em; color: var(--text-primary); text-transform: uppercase; }
.lightbox-close {
  position: absolute; top: -44px; right: 0;
  width: 36px; height: 36px;
  background: rgba(0,168,255,0.12);
  border: 1px solid rgba(0,168,255,0.4);
  color: var(--blue-primary); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.2s, box-shadow 0.2s; line-height: 1;
}
.lightbox-close:hover { background: rgba(0,168,255,0.25); box-shadow: var(--glow-sm); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: rgba(0,4,12,0.8); border: 1px solid rgba(0,168,255,0.35);
  color: var(--blue-primary); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  transition: background 0.2s, border-color 0.2s; z-index: 4;
}
.lb-nav:hover { background: rgba(0,168,255,0.15); border-color: rgba(0,168,255,0.7); }
.lb-prev { left: -56px; }
.lb-next { right: -56px; }

/* ── SERVICES ── */
.services { padding: 100px 48px; background: linear-gradient(180deg, #000c1a 0%, #000e1f 50%, #00060f 100%); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  max-width: 1260px; margin: 0 auto;
}
.service-card {
  padding: 40px 36px 38px;
  background: linear-gradient(145deg, rgba(0,20,48,0.75) 0%, rgba(0,10,28,0.85) 100%);
  position: relative;
  border: 1px solid rgba(0,168,255,0.12);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,168,255,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,168,255,0.3), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(0,168,255,0.45);
  background: linear-gradient(145deg, rgba(0,30,65,0.85) 0%, rgba(0,15,38,0.9) 100%);
  transform: translateY(-6px);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    0 0 0 1px rgba(0,168,255,0.1),
    0 0 24px rgba(0,168,255,0.18),
    0 0 60px rgba(0,168,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-icon {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(0,168,255,0.08);
  border: 1px solid rgba(0,168,255,0.2);
  border-radius: 8px;
  color: var(--blue-primary);
  box-shadow: 0 0 16px rgba(0,168,255,0.1), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.service-icon svg {
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(0,168,255,0.7)) drop-shadow(0 0 14px rgba(0,168,255,0.3));
}
.service-card:hover .service-icon {
  background: rgba(0,168,255,0.14);
  border-color: rgba(0,168,255,0.45);
  box-shadow: 0 0 20px rgba(0,168,255,0.25), 0 0 40px rgba(0,168,255,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.service-name {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 17px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.service-card:hover .service-name { color: #fff; }
.service-desc {
  font-size: 13.5px;
  color: rgba(232,244,255,0.5);
  line-height: 1.7;
  font-weight: 400;
}

/* ── SERVICE CARD TIERS ── */
.service-card.service-priority {
  border-color: rgba(0,168,255,0.28);
  background: linear-gradient(145deg, rgba(0,25,58,0.82) 0%, rgba(0,14,36,0.9) 100%);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 0 16px rgba(0,168,255,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}
.service-card.service-priority .service-icon {
  background: rgba(0,168,255,0.12);
  border-color: rgba(0,168,255,0.35);
  box-shadow: 0 0 20px rgba(0,168,255,0.2), 0 0 40px rgba(0,168,255,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.service-card.service-priority .service-name { color: #d8efff; }
.service-card.service-priority .service-desc { color: rgba(232,244,255,0.62); }
.service-card.service-priority:hover {
  border-color: rgba(0,168,255,0.6);
  box-shadow:
    0 10px 40px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,168,255,0.15),
    0 0 32px rgba(0,168,255,0.25),
    0 0 80px rgba(0,168,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.service-card.service-hero {
  border-color: rgba(0,168,255,0.45);
  background: linear-gradient(145deg, rgba(0,30,68,0.88) 0%, rgba(0,16,42,0.95) 100%);
  box-shadow: 0 4px 28px rgba(0,0,0,0.5), 0 0 24px rgba(0,168,255,0.14), 0 0 60px rgba(0,168,255,0.05), inset 0 1px 0 rgba(79,195,247,0.08);
  padding: 44px 36px 42px;
}
.service-card.service-hero::after { opacity: 0.6; }
.service-card.service-hero .service-icon {
  width: 58px; height: 58px;
  background: rgba(0,168,255,0.15);
  border-color: rgba(0,168,255,0.5);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(0,168,255,0.3), 0 0 50px rgba(0,168,255,0.12), inset 0 1px 0 rgba(255,255,255,0.07);
}
.service-card.service-hero .service-icon svg {
  filter: drop-shadow(0 0 8px rgba(0,168,255,0.9)) drop-shadow(0 0 18px rgba(0,168,255,0.5));
}
.service-card.service-hero .service-name {
  font-size: 18px;
  color: #e8f6ff;
  letter-spacing: 0.12em;
}
.service-card.service-hero .service-desc { color: rgba(232,244,255,0.7); font-size: 14px; }
.service-card.service-hero:hover {
  border-color: rgba(79,195,247,0.75);
  transform: translateY(-8px);
  box-shadow:
    0 14px 48px rgba(0,0,0,0.6),
    0 0 0 1px rgba(79,195,247,0.2),
    0 0 40px rgba(0,168,255,0.35),
    0 0 100px rgba(0,168,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.service-card.service-hero:hover .service-icon {
  box-shadow: 0 0 28px rgba(0,168,255,0.5), 0 0 60px rgba(0,168,255,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
/* Cinematic Trailers — gold accent treatment */
.service-card.service-hero.service-gold {
  border-color: rgba(200,169,110,0.35);
  background: linear-gradient(145deg, rgba(28,20,8,0.88) 0%, rgba(14,10,2,0.95) 100%);
  box-shadow: 0 4px 28px rgba(0,0,0,0.5), 0 0 24px rgba(200,169,110,0.1), 0 0 60px rgba(200,169,110,0.04), inset 0 1px 0 rgba(240,208,128,0.07);
}
.service-card.service-hero.service-gold::after {
  background: linear-gradient(90deg, transparent, rgba(200,169,110,0.35), transparent);
  opacity: 0.7;
}
.service-card.service-hero.service-gold .service-icon {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.45);
  color: #f0d080;
  box-shadow: 0 0 24px rgba(200,169,110,0.25), 0 0 50px rgba(200,169,110,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.service-card.service-hero.service-gold .service-icon svg {
  filter: drop-shadow(0 0 8px rgba(240,208,128,0.9)) drop-shadow(0 0 18px rgba(200,169,110,0.5));
}
.service-card.service-hero.service-gold .service-name {
  color: #f0d898;
  text-shadow: 0 0 20px rgba(200,169,110,0.3);
}
.service-card.service-hero.service-gold:hover {
  border-color: rgba(240,208,128,0.65);
  box-shadow:
    0 14px 48px rgba(0,0,0,0.6),
    0 0 0 1px rgba(240,208,128,0.15),
    0 0 36px rgba(200,169,110,0.3),
    0 0 90px rgba(200,169,110,0.12),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
.service-card.service-hero.service-gold:hover .service-icon {
  box-shadow: 0 0 28px rgba(240,208,128,0.5), 0 0 60px rgba(200,169,110,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: rgba(240,208,128,0.7);
}

/* ── PRICING ── */
.pricing {
  padding: 100px 48px;
  background: linear-gradient(180deg, #00060f 0%, #00050d 50%, #000c1a 100%);
  position: relative; overflow: hidden;
}
.pricing::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,168,255,0.2) 50%, transparent 100%);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.price-card {
  padding: 40px 32px; background: rgba(0,18,40,0.6);
  border: 1px solid rgba(0,168,255,0.12); position: relative; transition: all 0.3s;
  display: flex; flex-direction: column;
}
/* Push button area to the bottom of every card */
.price-features { flex: 1; }
.price-btn-group { margin-top: auto; }
/* Single-CTA cards (e.g. "Contact Us") — push that button to bottom too */
.price-card > .btn-primary:last-child,
.price-card > .btn-secondary:last-child { margin-top: auto; }
.price-card.featured { border-color: rgba(0,168,255,0.5); background: rgba(0,168,255,0.05); }
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: 'Rajdhani', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; color: #000; background: var(--blue-primary);
  padding: 4px 16px; white-space: nowrap; box-shadow: var(--glow-sm);
}
.price-card:hover { transform: translateY(-4px); border-color: rgba(0,168,255,0.4); }
.price-name {
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 8px;
}
.price-amount {
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 36px;
  color: var(--blue-primary); text-shadow: var(--glow-sm); margin: 16px 0;
}
.price-amount small { font-size: 14px; font-weight: 400; color: var(--text-dim); }
.price-desc { font-size: 12px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--text-secondary); padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 8px;
}
.price-features li::before { content: '◆'; color: var(--blue-primary); font-size: 8px; flex-shrink: 0; }
.price-btn-group { display: flex; flex-direction: column; gap: 8px; }

/* ── PROCESS ── */
.process { padding: 100px 48px; background: linear-gradient(180deg, #000c1a 0%, #000e1f 50%, #00050d 100%); position: relative; }
.process-steps {
  display: flex; gap: 0; max-width: 1000px; margin: 0 auto; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
  opacity: 0.4;
}
.process-step { flex: 1; text-align: center; padding: 0 24px; position: relative; }
.step-num {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 20px;
  color: var(--blue-primary);
  border: 1px solid rgba(0,168,255,0.4);
  background: #000c1a;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  text-shadow: var(--glow-sm);
  box-shadow: var(--glow-sm), inset 0 0 20px rgba(0,168,255,0.1);
}
.step-title {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 12px;
}
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px 48px; background: linear-gradient(180deg, #00050d 0%, #000c1a 50%, #00050d 100%); text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,100,180,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-title {
  font-family: 'Orbitron', sans-serif; font-weight: 900;
  font-size: clamp(28px, 4vw, 52px); text-transform: uppercase; line-height: 1.1;
  position: relative; margin-bottom: 20px;
}
.cta-banner-sub { font-family: 'Rajdhani', sans-serif; font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; position: relative; }

/* ── FAQ ── */
.faq {
  padding: 100px 48px;
  background:
    linear-gradient(180deg,
      #000c1a 0%,
      #000813 58%,
      #00050d 100%);
  position: relative;
  overflow: hidden;
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text-primary);
  font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: 0.05em; text-align: left; padding: 24px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue-primary); }
.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1px solid rgba(0,168,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--blue-primary);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ── CONTACT ── */
/* ── CONTACT SECTION ── */
.contact {
  padding: 120px 48px;
  background: linear-gradient(180deg, #00050d 0%, #000c1a 50%, #000e1f 100%);
  position: relative;
}
.contact-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.35fr;
  gap: 96px; align-items: start;
}

/* ── LEFT COLUMN ── */
.contact-info-title {
  font-family: 'Orbitron', sans-serif; font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase; margin-bottom: 20px; line-height: 1.15;
}
.contact-info-title span { color: var(--blue-primary); text-shadow: var(--glow-sm); }
.contact-info-desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.8;
  margin-bottom: 48px; max-width: 400px;
}
.contact-meta-item {
  padding: 22px 0; border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 5px;
}
.contact-meta-item:first-of-type { border-top: 1px solid var(--border); }
.contact-meta-label {
  font-family: 'Rajdhani', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue-primary);
  display: flex; align-items: center; gap: 8px;
}
.contact-meta-label::before {
  content: ''; display: inline-block; width: 12px; height: 1px;
  background: var(--blue-primary); flex-shrink: 0;
}
.contact-meta-value { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; padding-left: 20px; }

/* ── FORM CARD ── */
.contact-form-card {
  background: linear-gradient(180deg, rgba(0,14,32,0.96) 0%, rgba(0,9,22,0.985) 100%);
  border: 1px solid rgba(0,168,255,0.16);
  border-radius: 12px;
  padding: 48px 44px 44px;
  position: relative;
  box-shadow:
    0 28px 80px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(0,168,255,0.035);
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79,195,247,0.34) 50%, transparent 100%);
  pointer-events: none;
}
.contact-form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(79,195,247,0.32), transparent 72px) top left / 96px 1px no-repeat,
    linear-gradient(180deg, rgba(79,195,247,0.22), transparent 72px) top left / 1px 96px no-repeat,
    linear-gradient(270deg, rgba(79,195,247,0.28), transparent 72px) top right / 96px 1px no-repeat,
    linear-gradient(180deg, rgba(79,195,247,0.18), transparent 72px) top right / 1px 96px no-repeat;
  pointer-events: none;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; position: relative; z-index: 1; }

/* ── FORM HEADER (inside card) ── */
.form-card-header {
  margin-bottom: 8px;
}
.form-card-title {
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-primary);
  margin-bottom: 6px;
}
.form-card-sub {
  font-family: 'Rajdhani', sans-serif; font-size: 13px;
  color: var(--text-dim); letter-spacing: 0.05em;
}

/* ── ROWS & GROUPS ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

/* ── LABELS ── */
.form-label {
  font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(232,244,255,0.45);
  transition: color 0.2s;
}
.form-group:focus-within .form-label { color: var(--blue-primary); }

/* ── INPUTS ── */
.form-input, .form-select, .form-textarea {
  background: rgba(0,12,30,0.7);
  border: 1px solid rgba(0,168,255,0.14);
  color: var(--text-primary);
  padding: 14px 18px;
  font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 500;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  width: 100%;
  border-radius: 2px;
}
.form-input:hover, .form-select:hover, .form-textarea:hover {
  border-color: rgba(0,168,255,0.28);
  background: rgba(0,15,36,0.8);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(0,168,255,0.6);
  background: rgba(0,18,42,0.85);
  box-shadow:
    0 0 0 3px rgba(0,168,255,0.1),
    0 0 16px rgba(0,168,255,0.12),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(232,244,255,0.2); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #000c1a; color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 150px; line-height: 1.6; }

/* ── SELECT WRAPPER (chevron) ── */
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '';
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  border-right: 2px solid rgba(0,168,255,0.5);
  border-bottom: 2px solid rgba(0,168,255,0.5);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  transition: border-color 0.2s;
}
.form-select-wrap:focus-within::after { border-color: var(--blue-primary); }

/* ── FILE UPLOAD ── */
.form-file-label {
  font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(232,244,255,0.45);
  display: block; margin-bottom: 8px;
}
.form-file-wrap {
  position: relative;
  background: rgba(0,12,30,0.7);
  border: 1px dashed rgba(0,168,255,0.2);
  border-radius: 2px;
  padding: 18px 20px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  cursor: pointer;
  display: flex; align-items: center; gap: 14px;
}
.form-file-wrap:hover, .form-file-wrap:focus-within {
  border-color: rgba(0,168,255,0.5);
  background: rgba(0,15,36,0.8);
  box-shadow: 0 0 0 3px rgba(0,168,255,0.08), 0 0 16px rgba(0,168,255,0.08);
}
.form-file-wrap input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.form-file-icon { color: var(--blue-primary); font-size: 17px; flex-shrink: 0; opacity: 0.7; }
.form-file-text {
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 500;
  color: rgba(232,244,255,0.35);
}
.form-file-text span { color: var(--blue-primary); opacity: 0.85; }
.form-file-hint {
  font-size: 11px; color: rgba(232,244,255,0.25); margin-top: 7px;
  font-family: 'Rajdhani', sans-serif; letter-spacing: 0.08em;
}

/* ── SUBMIT BUTTON ── */
.btn-submit {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 20px 36px;
  background: var(--blue-primary);
  color: #000;
  border: none; cursor: pointer;
  text-decoration: none;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.25s;
  display: block; width: 100%; text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}
.btn-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.25s;
}
.btn-submit:hover {
  background: var(--blue-bright);
  box-shadow: var(--glow-lg);
  transform: translateY(-2px);
}
.btn-submit:hover::before { opacity: 1; }
.btn-submit:active { transform: translateY(0); }

/* ── FORM ENQUIRE LINE ── */
.form-enquire {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,168,255,0.08);
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,244,255,0.28);
}
.form-enquire span {
  color: rgba(0,168,255,0.55);
}

/* ── SUCCESS STATE ── */
.form-success {
  display: none;
  text-align: center;
  padding: 64px 40px;
  border: 1px solid rgba(0,168,255,0.25);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0,15,38,0.9) 0%, rgba(0,8,24,0.95) 100%);
  position: relative; overflow: hidden;
}
.form-success::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,168,255,0.6), rgba(79,195,247,0.8), rgba(0,168,255,0.6), transparent);
}
.form-success-icon {
  font-size: 36px; color: var(--blue-primary); margin-bottom: 20px;
  display: block; text-shadow: var(--glow-md);
}
.form-success-title {
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-primary); margin-bottom: 14px;
}
.form-success-msg {
  font-family: 'Rajdhani', sans-serif; font-size: 16px;
  color: var(--text-secondary); line-height: 1.7; max-width: 380px; margin: 0 auto;
}

/* ── FOOTER ── */
footer { background: linear-gradient(180deg, #000e1f 0%, #00050d 100%); border-top: 1px solid rgba(0,168,255,0.12); padding: 60px 48px 40px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(0,168,255,0.6)); }
.footer-logo-text { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-logo-text span { color: var(--blue-primary); }
.footer-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.6; max-width: 260px; }
.footer-col-title {
  font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--blue-primary); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-dim); font-family: 'Rajdhani', sans-serif; letter-spacing: 0.08em; }
.footer-hex { font-family: 'Orbitron', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: rgba(0,168,255,0.3); text-transform: uppercase; }

/* ── ANIMATIONS ── */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 180px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-badge { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-logo-center { margin: 0 auto 24px; }
  .hero-sub { text-align: center; }
  .hero-video-wrap { max-width: 560px; margin: 0 auto; }
  .hero-video-column { max-width: 560px; margin: 0 auto; }
  .stats-bar { gap: 24px 0; padding: 28px 16px; margin-top: -120px; }
  .stats-bar .stat-item { min-width: 45%; max-width: 50%; padding: 0 12px; }
  .stats-bar .stat-item:nth-child(3)::before { display: none; }
  .stats-bar .stat-value { font-size: 28px; }
  .stats-bar .stat-label { font-size: 10px; letter-spacing: 0.22em; white-space: nowrap; }
  .features, .services, .pricing, .process, .cta-banner, .contact, .faq { padding: 60px 24px; }
  .portfolio { padding: 60px 16px; }
  .portfolio-gallery { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .contact { padding: 60px 24px; }
  .contact-form-card { padding: 32px 24px 28px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lb-prev { left: -8px; }
  .lb-next { right: -8px; }
  .port-title { font-size: 10px; }
}
@media (max-width: 1100px) {
  .portfolio-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  nav { padding: 0 16px; height: 64px; }
  .nav-logo img { width: 34px; height: 34px; }
  .nav-logo-text { font-size: 13px; letter-spacing: 0.1em; }
  .hero { padding: 84px 18px 140px; }
  .features, .services, .pricing, .process, .cta-banner, .contact, .faq { padding: 56px 18px; }
  .portfolio { padding: 56px 12px; }
  .contact-form-card { padding: 28px 18px 24px; }
  .footer-inner { padding: 0 18px; }
}
@media (max-width: 480px) {
  nav { padding: 0 14px; }
  .portfolio-gallery { grid-template-columns: 1fr; }
  .stats-bar .stat-item { min-width: 100%; max-width: 100%; }
  .stats-bar .stat-item::before { display: none !important; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-mobile-inner { padding: 88px 16px 36px; }
  .nav-mobile ul li a { font-size: 16px; padding: 12px 12px; }
  .nav-mobile-sub a { font-size: 13px !important; padding: 10px 12px !important; }
}
@media (max-width: 360px) {
  nav { padding: 0 12px; }
  .nav-logo-text { font-size: 12px; }
  .hero { padding: 80px 14px 120px; }
  .features, .services, .pricing, .process, .cta-banner, .contact, .faq { padding: 48px 14px; }
  .portfolio { padding: 48px 8px; }
  .contact-form-card { padding: 24px 14px 20px; }
}

/* ── SECTION FADE IN (CSS-only, no JS dependency) ── */
.features, .portfolio, .services, .pricing, .process, .cta-banner, .faq, .contact {
  animation: sectionFadeIn 0.6s ease both;
}
@keyframes sectionFadeIn {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* ── PERFORMANCE OPTIMISATIONS ── */
.port-card img {
  will-change: transform;
  content-visibility: auto;
}
.hero-video-wrap video {
  will-change: auto;
}
/* Reduce paint on scroll for fixed nav */
nav {
  will-change: auto;
  transform: translateZ(0);
}

/* ── SMOOTH SECTION DIVIDERS ── */
.features::before,
.portfolio::before,
.services::before,
.pricing::before,
.process::before,
.cta-banner::before,
.faq::before,
.contact::before {
  /* hairline top glow inherited below */
}

.features::before,
.portfolio::before,
.services::before,
.process::before,
.faq::before,
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,168,255,0.18) 50%, transparent 100%);
  pointer-events: none;
}

/* Seam fixes for sections where a decorative top glow created a visible stripe. */
.services::before,
.contact::before {
  display: none;
}

.portfolio::after,
.faq::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(0,12,26,0) 0%, #000c1a 100%);
  pointer-events: none;
  z-index: 0;
}

.faq::after {
  background: linear-gradient(180deg, rgba(0,5,13,0) 0%, #00050d 100%);
}

/* ── SUBTLE AMBIENT GLOW PER SECTION ── */
.features::after,
.services::after,
.contact::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,90,160,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.features > *, .portfolio > *, .services > *, .faq > *, .contact > * { position: relative; z-index: 1; }

/* ── FEATURE/SERVICE CARD BG — clean, no harsh contrast ── */
.feature-card { background: rgba(0,20,45,0.55); }
.feature-card:hover { background: rgba(0,30,60,0.7); }
.service-card { background: rgba(0,18,40,0.5); }
.service-card:hover { background: rgba(0,28,58,0.65); }
.price-card { background: rgba(0,18,40,0.6); border-color: rgba(0,168,255,0.12); }
.price-card.featured { background: rgba(0,40,80,0.35); border-color: rgba(0,168,255,0.4); }
/* .stats-bar background defined once above */


/* ── SECTION HEADERS — CSS-only entrance, no JS dependency ── */
.section-header {
  animation: headerReveal 0.7s ease both;
}
@keyframes headerReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── REVIEWS ── */
.reviews {
  padding: 100px 0 100px;
  background: linear-gradient(180deg, #000e1f 0%, #00050d 50%, #000c1a 100%);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; max-width: 900px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,168,255,0.18) 50%, transparent 100%);
  pointer-events: none;
}
.reviews .section-header {
  padding: 0 48px;
  margin-bottom: 56px;
}
.reviews-track-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes scrollReviews {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0;
  width: 340px;
  background: rgba(0,18,40,0.7);
  border: 1px solid rgba(0,168,255,0.14);
  padding: 28px 28px 24px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 56px;
  line-height: 1;
  color: rgba(0,168,255,0.12);
  font-family: Georgia, serif;
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(0,168,255,0.4);
  box-shadow: 0 0 20px rgba(0,168,255,0.1);
}
.review-stars {
  color: var(--blue-primary);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 0 0 8px rgba(0,168,255,0.5);
}
.review-text {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.review-author {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-primary);
}
@media (max-width: 960px) {
  .reviews { padding: 60px 0; }
  .reviews .section-header { padding: 0 24px; }
  .review-card { width: 290px; padding: 22px; }
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.nav-active { color: var(--blue-primary); }

/* ───────────────────────────────────────────────
   MOBILE NAV / HAMBURGER  (rewritten — full-screen centered overlay)
   ─────────────────────────────────────────────── */

/* Hamburger button — clean, classic 3-line icon */
.nav-burger {
  display: none;                      /* shown on mobile via media query */
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(0,168,255,0.06);
  border: 1px solid rgba(0,168,255,0.3);
  cursor: pointer;
  flex-shrink: 0;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  z-index: 1100;                      /* always above the overlay so it can be tapped to close */
  -webkit-tap-highlight-color: transparent;
}
.nav-burger:hover,
.nav-burger:focus-visible {
  border-color: rgba(0,168,255,0.7);
  background: rgba(0,168,255,0.12);
  box-shadow: 0 0 14px rgba(0,168,255,0.35);
  outline: none;
}
.nav-burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.65,0,0.35,1),
              opacity 0.2s ease,
              top 0.32s cubic-bezier(0.65,0,0.35,1);
  margin-left: -11px;                 /* centers the 22px-wide bar */
}
.nav-burger span:nth-child(1) { top: calc(50% - 7px); }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { top: calc(50% + 5px); }

/* Open state — morphs into a clean X */
.nav-burger.open { background: rgba(0,168,255,0.18); border-color: rgba(0,168,255,0.7); }
.nav-burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0); }
.nav-burger.open span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* ── FULL-SCREEN TRANSLUCENT OVERLAY ── */
.nav-mobile {
  display: none;                      /* shown on mobile via media query */
  position: fixed;
  inset: 0;                           /* covers the whole viewport */
  /* IMPORTANT: the bare `nav { … }` rule above sets height/padding/flex — neutralise them */
  height: auto !important;
  padding: 0 !important;
  background: rgba(0, 6, 15, 0.82) !important;
  border: none !important;
  z-index: 1050;                      /* below the burger button (1100), above page content */
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s ease, visibility 0s linear 0s;
}

/* Subtle radial glow + grid texture inside the overlay */
.nav-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,168,255,0.12) 0%, transparent 65%),
    linear-gradient(rgba(0,168,255,0.04) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(0,168,255,0.04) 1px, transparent 1px) 0 0 / 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Inner wrapper — vertically centers the menu */
.nav-mobile-inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  min-height: 100dvh;                 /* dynamic viewport — handles mobile browser chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 48px;            /* room for fixed nav up top */
  gap: 0;
}

/* Dedicated close button inside the overlay (top-right) */
.nav-mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,168,255,0.06);
  border: 1px solid rgba(0,168,255,0.3);
  color: var(--blue-primary);
  cursor: pointer;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-close:hover,
.nav-mobile-close:focus-visible {
  border-color: rgba(0,168,255,0.7);
  background: rgba(0,168,255,0.15);
  box-shadow: 0 0 14px rgba(0,168,255,0.35);
  outline: none;
}
.nav-mobile-close:active { transform: scale(0.95); }
.nav-mobile-close svg { width: 18px; height: 18px; display: block; }

/* Menu list — centered on screen */
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}

/* Each link */
.nav-mobile ul li {
  list-style: none;
  width: 100%;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-mobile.open ul li { opacity: 1; transform: translateY(0); }

/* Stagger reveal */
.nav-mobile.open ul li:nth-child(1)  { transition-delay: 0.06s; }
.nav-mobile.open ul li:nth-child(2)  { transition-delay: 0.09s; }
.nav-mobile.open ul li:nth-child(3)  { transition-delay: 0.12s; }
.nav-mobile.open ul li:nth-child(4)  { transition-delay: 0.15s; }
.nav-mobile.open ul li:nth-child(5)  { transition-delay: 0.18s; }
.nav-mobile.open ul li:nth-child(6)  { transition-delay: 0.21s; }
.nav-mobile.open ul li:nth-child(7)  { transition-delay: 0.24s; }
.nav-mobile.open ul li:nth-child(8)  { transition-delay: 0.27s; }
.nav-mobile.open ul li:nth-child(9)  { transition-delay: 0.30s; }
.nav-mobile.open ul li:nth-child(10) { transition-delay: 0.33s; }
.nav-mobile.open ul li:nth-child(11) { transition-delay: 0.36s; }
.nav-mobile.open ul li:nth-child(12) { transition-delay: 0.39s; }
.nav-mobile.open ul li:nth-child(13) { transition-delay: 0.42s; }

.nav-mobile ul li a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  border-left: none;
  border-top: 1px solid rgba(0,168,255,0.06);
  border-bottom: 1px solid rgba(0,168,255,0.06);
  transition: color 0.2s, background 0.2s, letter-spacing 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile ul li a:hover,
.nav-mobile ul li a:active,
.nav-mobile ul li a.nav-active {
  color: var(--blue-primary);
  background: rgba(0,168,255,0.06);
  letter-spacing: 0.22em;
  text-shadow: 0 0 18px rgba(0,168,255,0.6);
}

/* "SERVICES" sub-section header inside the overlay */
.nav-mobile-section-label {
  padding: 18px 16px 8px !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.4em !important;
  text-transform: uppercase !important;
  color: var(--blue-primary) !important;
  opacity: 0.85 !important;
  text-align: center !important;
  position: relative;
}
.nav-mobile-section-label::before,
.nav-mobile-section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(0,168,255,0.5);
  vertical-align: middle;
  margin: 0 12px;
}

/* Services sub-items — slightly smaller / dimmer than top-level links */
.nav-mobile-sub a {
  padding: 11px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  color: rgba(232,244,255,0.7) !important;
  border-top: none !important;
  border-bottom: none !important;
}
.nav-mobile-sub a:hover,
.nav-mobile-sub a:active {
  color: var(--blue-primary) !important;
  background: rgba(0,168,255,0.05) !important;
}

/* Mobile CTA */
.nav-mobile-cta {
  margin: 28px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 38px;
  background: var(--blue-primary);
  color: #000;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 0 24px rgba(0,168,255,0.4);
  opacity: 0;
  transform: translateY(14px);
}
.nav-mobile.open .nav-mobile-cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s, background 0.2s, box-shadow 0.2s;
}
.nav-mobile-cta:hover,
.nav-mobile-cta:active {
  background: var(--blue-bright);
  box-shadow: 0 0 36px rgba(0,168,255,0.7);
  transform: translateY(-2px);
}

/* Lock body scroll while menu open */
body.nav-locked { overflow: hidden; }

/* Show/hide at mobile breakpoint */
@media (max-width: 960px) {
  .nav-burger { display: block; }
  .nav-mobile { display: block !important; }
  /* Hide the desktop CTA on mobile — the overlay has its own CTA */
  nav > .nav-cta { display: none; }
}

/* Reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .nav-mobile,
  .nav-mobile ul li,
  .nav-mobile-cta,
  .nav-burger span { transition: opacity 0.15s linear !important; }
  .nav-mobile ul li,
  .nav-mobile.open ul li,
  .nav-mobile-cta { transform: none !important; transition-delay: 0s !important; }
}

/* Continuous "void" background for the problematic index-page joins.
   The sections share one solid canvas, with a tiny overlap to cover browser rounding. */
body {
  background: #000914;
}

.portfolio,
.services,
.faq,
.contact {
  background: #000914 !important;
  background-image: none !important;
  isolation: isolate;
}

.services,
.contact {
  margin-top: -1px;
}

.portfolio {
  padding-bottom: 120px;
}

.services {
  padding-top: 120px;
}

.faq {
  padding-bottom: 120px;
}

.contact {
  padding-top: 120px;
}

.portfolio::before,
.portfolio::after,
.services::before,
.services::after,
.faq::before,
.faq::after,
.contact::before,
.contact::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 960px) {
  .portfolio,
  .faq {
    padding-bottom: 80px;
  }

  .services,
  .contact {
    padding-top: 80px;
  }
}

/* Premium neon form frame: shadow-only glow avoids visible gradient banding. */
.contact-form-card {
  background: #000a16;
  border: 1px solid rgba(0,168,255,0.26);
  overflow: visible;
  isolation: isolate;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.045),
    inset 0 0 0 1px rgba(79,195,247,0.055),
    inset 0 0 34px rgba(0,168,255,0.025);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  height: auto;
  border: 1px solid rgba(0,168,255,0.34);
  border-radius: 14px;
  background: none;
  box-shadow:
    0 0 10px rgba(0,168,255,0.28),
    0 0 24px rgba(0,168,255,0.18),
    0 0 54px rgba(0,110,210,0.12);
  pointer-events: none;
  z-index: 0;
}

.contact-form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(126,218,255,0.055);
  border-radius: inherit;
  background: none;
  box-shadow:
    inset 0 0 22px rgba(0,168,255,0.045),
    inset 0 0 0 1px rgba(255,255,255,0.018);
  pointer-events: none;
  z-index: 0;
}
