/* ============================================================
   NITENDRA DIGITAL PRO — MAIN STYLESHEET
   Color System: Black + Neon Red
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --black:          #000000;
  --dark:           #080808;
  --dark-2:         #0D0D0D;
  --dark-3:         #111111;
  --neon:           #FF0033;
  --neon-dim:       #CC0029;
  --neon-bright:    #FF1A47;
  --neon-glow:      rgba(255, 0, 51, 0.5);
  --neon-subtle:    rgba(255, 0, 51, 0.08);
  --neon-border:    rgba(255, 0, 51, 0.25);
  --white:          #FFFFFF;
  --off-white:      #F0F0F0;
  --gray:           #888888;
  --gray-dark:      #444444;
  --gray-darker:    #222222;
  --border:         rgba(255,255,255,0.06);
  --border-red:     rgba(255, 0, 51, 0.2);
  --font-display:   'Plus Jakarta Sans', 'Syne', sans-serif;
  --font-body:      'Inter', 'DM Sans', sans-serif;
  --font-mono:      'Space Mono', monospace;
  --radius:         4px;
  --radius-lg:      8px;
  --radius-xl:      12px;
  --shadow-neon:    0 0 20px rgba(255,0,51,0.4), 0 0 60px rgba(255,0,51,0.15);
  --shadow-neon-sm: 0 0 10px rgba(255,0,51,0.3);
  --transition:     all 0.3s ease;
  --section-pad:    100px 0;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--neon); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--neon-bright); }

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

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

p { color: var(--gray); line-height: 1.7; }

::selection { background: var(--neon); color: var(--black); }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 2px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section-sm { padding: 60px 0; }
.text-neon { color: var(--neon); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.text-mono { font-family: var(--font-mono); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.fw-800 { font-weight: 800; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

/* Label / Badge */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--neon);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--neon); }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--neon);
  color: var(--black);
  box-shadow: var(--shadow-neon-sm);
}
.btn-primary:hover {
  background: var(--neon-bright);
  color: var(--black);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-red);
}
.btn-outline:hover {
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: var(--shadow-neon-sm);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--neon);
  border: none;
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--neon-bright); }
.btn-ghost::after { content: ' →'; }

.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ============================================================
   GEO-AWARE TOP BAR
   ============================================================ */
.geo-bar {
  background: var(--neon);
  color: var(--black);
  text-align: center;
  padding: 8px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 200;
}
.geo-bar a { color: var(--black); text-decoration: underline; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  transition: var(--transition);
  overflow: visible;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-red);
  box-shadow: 0 0 30px rgba(255,0,51,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo:hover { color: var(--white); }
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--neon);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-neon-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: var(--transition);
  border-radius: var(--radius);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--neon); text-shadow: var(--shadow-neon); }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1px solid var(--border-red);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-menu-close:hover { background: var(--neon); color: var(--black); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Particle canvas behind hero */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,0,51,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,0,51,0.1);
  border: 1px solid var(--border-red);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--neon-glow); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,0,51,0); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero-title .line-neon {
  color: var(--neon);
  text-shadow: 0 0 40px rgba(255,0,51,0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 20px;
}
.hero-stat-item {}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============================================================
   MARQUEE TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--dark);
}
.trust-bar-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gray-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}
.marquee-item:hover { color: var(--neon); }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.industry-card {
  background: var(--dark);
  padding: 32px 24px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon);
  transform: scaleX(0);
  transition: var(--transition);
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover { background: var(--dark-2); }

.industry-card.featured {
  background: rgba(255,0,51,0.05);
  border-right: 1px solid var(--border-red);
}
.industry-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--neon);
  letter-spacing: 0.15em;
  border: 1px solid var(--border-red);
  padding: 3px 8px;
  border-radius: 100px;
}

.industry-icon { font-size: 2rem; margin-bottom: 12px; }
.industry-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.industry-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--dark);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,0,51,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { background: var(--dark-2); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}
.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 13px;
  color: var(--gray);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--neon);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-item {
  background: var(--dark);
  padding: 40px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255,0,51,0.4);
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================================
   MULTI-STEP FORM
   ============================================================ */
.form-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,51,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.step-form-container {
  max-width: 720px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 60px rgba(255,0,51,0.08);
}

/* Progress Bar */
.form-progress-bar-wrap {
  background: var(--dark-3);
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.form-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.form-progress-labels span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form-progress-labels span.active { color: var(--neon); }
.form-progress-track {
  height: 2px;
  background: var(--gray-darker);
  border-radius: 1px;
  overflow: hidden;
}
.form-progress-fill {
  height: 100%;
  background: var(--neon);
  border-radius: 1px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px var(--neon-glow);
  width: 25%;
}

/* Form Steps */
.form-body { padding: 40px 32px; }

.form-step { display: none; }
.form-step.active {
  display: block;
  animation: slide-in 0.35s ease;
}

@keyframes slide-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-out-left {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-20px); }
}

.form-step-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.form-step-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
}

/* Service checkbox cards */
.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.service-option {
  position: relative;
}
.service-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.service-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  color: var(--gray);
}
.service-option input:checked + label {
  border-color: var(--neon);
  background: rgba(255,0,51,0.08);
  color: var(--white);
  box-shadow: var(--shadow-neon-sm);
}
.service-option label:hover {
  border-color: var(--border-red);
  color: var(--white);
}
.service-option-icon { font-size: 1.2rem; flex-shrink: 0; }

/* Form Fields */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(255,0,51,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-dark); }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark-3); color: var(--white); }
.form-textarea { min-height: 100px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Radio Pills */
.radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.radio-pill {
  position: relative;
}
.radio-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-pill label {
  display: block;
  padding: 10px 18px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.radio-pill input:checked + label {
  background: var(--neon);
  color: var(--black);
  border-color: var(--neon);
  font-weight: 700;
  box-shadow: var(--shadow-neon-sm);
}
.radio-pill label:hover { border-color: var(--border-red); color: var(--white); }

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

/* Privacy Checkbox */
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--neon);
  margin-top: 2px;
  cursor: pointer;
}
.checkbox-field label {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-field label a { color: var(--neon); }

/* Form Error */
.form-error {
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 4px;
  display: none;
}
.form-error.visible { display: block; }

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,0,51,0.1);
  border: 2px solid var(--neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  animation: success-pulse 1s ease;
}
@keyframes success-pulse {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.testimonial-card {
  background: var(--dark);
  padding: 36px 28px;
  transition: var(--transition);
}
.testimonial-card:hover { background: var(--dark-2); }

.testimonial-stars {
  color: var(--neon);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--neon);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-title {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.case-study-card {
  background: var(--dark);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.case-study-card:hover { background: var(--dark-2); }

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.case-study-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon);
  border: 1px solid var(--border-red);
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-study-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.case-study-desc { font-size: 14px; color: var(--gray); margin-bottom: 24px; }

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.case-metric {}
.case-metric-val {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon);
}
.case-metric-label { font-size: 11px; color: var(--gray); margin-top: 2px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-red);
  box-shadow: 0 0 40px rgba(255,0,51,0.06);
}
.pricing-card.featured {
  border-color: var(--neon);
  box-shadow: var(--shadow-neon);
  background: linear-gradient(135deg, var(--dark) 0%, rgba(255,0,51,0.06) 100%);
}
.pricing-card.featured::before {
  content: '★ MOST POPULAR — BEST ROI';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-currency { font-size: 1.5rem; color: var(--gray); font-weight: 600; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.pricing-period { font-size: 14px; color: var(--gray); }
.pricing-desc { font-size: 13px; color: var(--gray); margin-bottom: 28px; }

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--neon);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li strong { color: var(--white); }

.pricing-roi {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  padding: 8px 12px;
  background: rgba(255,0,51,0.06);
  border-radius: var(--radius);
  border-left: 2px solid var(--neon);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.faq-question:hover { color: var(--neon); }
.faq-question.active { color: var(--neon); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--neon);
  transition: var(--transition);
}
.faq-question.active .faq-icon { background: var(--neon); color: var(--black); transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 24px 0;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.faq-answer.open { display: block; animation: slide-in 0.3s ease; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,0,51,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-banner-sub {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 36px;
}
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--neon); }
.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gray-darker);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-links a:hover::before { background: var(--neon); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-dark);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { font-size: 12px; color: var(--gray-dark); }
.footer-legal a:hover { color: var(--neon); }

/* Trust badges in footer */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-dark);
  border: 1px solid var(--gray-darker);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  font-size: 1.6rem;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  color: white;
}

/* ============================================================
   SOCIAL PROOF TOAST
   ============================================================ */
.proof-toast {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 998;
  background: var(--dark-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.proof-toast.show { opacity: 1; transform: translateY(0); }
.proof-toast-icon { font-size: 1.4rem; flex-shrink: 0; }
.proof-toast-text { font-size: 13px; color: var(--off-white); line-height: 1.4; }
.proof-toast-text strong { color: var(--neon); }

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.exit-popup-overlay.open { display: flex; }
.exit-popup {
  background: var(--dark-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  margin: 24px;
  position: relative;
  box-shadow: 0 0 80px rgba(255,0,51,0.15);
  animation: slide-in 0.3s ease;
}
.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--gray);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.exit-popup-close:hover { color: var(--white); border-color: var(--neon); }

/* ============================================================
   PAGE TEMPLATES — SERVICE PAGE
   ============================================================ */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.pain-card:hover { border-color: var(--border-red); }
.pain-problem { font-size: 12px; color: #ff6b6b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.pain-solution { font-size: 13px; color: var(--gray); line-height: 1.6; }
.pain-icon { font-size: 1.8rem; margin-bottom: 12px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--dark);
  padding: 32px 24px;
  position: relative;
}
.process-step-num {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,0,51,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process-step-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--neon) 0%, transparent 60%);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.4;
}
.about-image {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(20%);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.value-card {
  background: var(--dark);
  padding: 24px 20px;
}
.value-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info { }
.contact-info-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,0,51,0.1);
  border: 1px solid var(--border-red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-detail-val { font-size: 15px; color: var(--white); font-weight: 600; margin-top: 2px; }
.contact-detail-val a { color: var(--white); }
.contact-detail-val a:hover { color: var(--neon); }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thankyou-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,51,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,0,51,0.1);
  border: 2px solid var(--neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-neon);
  animation: success-pulse 0.8s ease;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--border-red); transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-excerpt { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Neon glow line */
.neon-divider {
  width: 60px;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  margin: 24px 0;
}
.neon-divider.center { margin: 24px auto; }

/* Code badge */
.code-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray);
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}
.code-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
}

/* Glow text */
.glow-text {
  text-shadow: 0 0 20px rgba(255,0,51,0.6), 0 0 60px rgba(255,0,51,0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 0; }
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .service-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .pain-points-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .form-nav { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .proof-toast { left: 12px; right: 12px; max-width: none; }
}

/* ============================================================
   SERVICE HERO (individual service + location pages)
   ============================================================ */
.service-hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,0,51,0.08) 0%, transparent 70%), var(--black);
  border-bottom: 1px solid var(--border);
}
.service-hero-inner { max-width: 800px; }
.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--neon-subtle);
  border: 1px solid var(--neon-border);
  color: var(--neon);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.service-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}
.service-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--neon);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.service-hero-intro {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 40px;
}
.service-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.service-hero-stat { display: inline-block; margin-right: 40px; }
.service-stat-value {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--neon);
  line-height: 1;
}
.service-stat-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--neon-border); transform: translateY(-3px); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; font-family: var(--font-display); }
.feature-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   RESULTS GRID
   ============================================================ */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.result-card {
  padding: 28px 32px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--neon);
  border-radius: var(--radius-lg);
}
.result-client { font-size: 13px; color: var(--neon); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.result-text { font-size: 1.05rem; font-weight: 700; color: var(--white); font-family: var(--font-display); line-height: 1.4; }

/* ============================================================
   PROCESS GRID
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-border), transparent);
}
.process-step { padding: 0 24px; text-align: center; position: relative; }
.process-num {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--neon);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.process-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; font-family: var(--font-display); }
.process-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ============================================================
   RELATED SERVICE CARDS
   ============================================================ */
.related-service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.related-service-card:hover { border-color: var(--neon); color: var(--neon); transform: translateX(4px); }
.related-service-icon { font-size: 1.4rem; flex-shrink: 0; }
.related-service-label { flex: 1; font-weight: 600; font-family: var(--font-display); font-size: 0.95rem; }
.related-service-arrow { color: var(--gray); flex-shrink: 0; }

/* ============================================================
   BLOG GRID & CARDS
   ============================================================ */
.blog-archive-section { background: var(--black); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { border-color: var(--neon-border); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(255,0,51,0.08); }
.blog-card-img-link { display: block; }
.blog-card-img { height: 200px; overflow: hidden; background: var(--dark-3); display: flex; align-items: center; justify-content: center; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder { color: var(--gray); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon);
  background: var(--neon-subtle);
  border: 1px solid var(--neon-border);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-decoration: none;
}
.blog-cat:hover { background: var(--neon); color: var(--black); }
.blog-title { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; font-family: var(--font-display); line-height: 1.3; }
.blog-title a { color: inherit; text-decoration: none; }
.blog-title a:hover { color: var(--neon); }
.blog-excerpt { font-size: 14px; color: var(--gray); line-height: 1.65; flex: 1; }
.blog-meta { display: flex; gap: 16px; margin-top: 16px; font-size: 12px; color: var(--gray-dark); }
.blog-date, .blog-read-time { font-family: var(--font-mono); }
.pagination-wrap .nav-links { display: flex; gap: 8px; justify-content: center; }
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--gray);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}
.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current { border-color: var(--neon); color: var(--neon); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-hero { padding: 80px 0 48px; background: var(--dark); border-bottom: 1px solid var(--border); }
.single-post-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.1; color: var(--white); margin-top: 16px; }
.single-post-meta { display: flex; gap: 16px; align-items: center; margin-top: 20px; font-size: 13px; color: var(--gray); flex-wrap: wrap; }
.meta-sep { color: var(--border); }
.single-post-featured-img { padding: 48px 0; background: var(--black); }
.single-post-featured-img img { border-radius: var(--radius-xl); max-height: 520px; object-fit: cover; width: 100%; }
.single-post-body { padding: 60px 0; }
.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--off-white);
}
.post-content h2 { font-size: 1.6rem; margin: 48px 0 20px; color: var(--white); }
.post-content h3 { font-size: 1.25rem; margin: 36px 0 16px; color: var(--white); }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--neon); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; color: var(--off-white); }
.post-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--neon);
  background: var(--dark-3);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.post-content blockquote p { color: var(--off-white); font-size: 1.1rem; font-style: italic; margin: 0; }
.post-content img { border-radius: var(--radius-lg); margin: 24px 0; }
.post-content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--dark-3);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--neon);
}
.post-content pre { background: var(--dark-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; overflow-x: auto; margin: 24px 0; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tag {
  font-size: 12px;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
}
.post-tag:hover { border-color: var(--neon); color: var(--neon); }
.single-post-author-box { padding: 60px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.author-card { display: flex; gap: 28px; align-items: flex-start; }
.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.author-name { font-size: 1.1rem; font-weight: 700; color: var(--white); font-family: var(--font-display); }
.author-role { font-size: 13px; color: var(--neon); margin-top: 4px; }

/* ============================================================
   LOCATIONS GRID (Service Areas page)
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.location-card {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}
.location-card:hover { border-color: var(--neon); background: var(--neon-subtle); transform: translateY(-2px); }
.location-city { font-size: 0.95rem; font-weight: 700; color: var(--white); font-family: var(--font-display); }
.location-state { font-size: 12px; color: var(--gray); margin-top: 2px; }
.location-arrow { font-size: 12px; color: var(--neon); margin-top: 8px; opacity: 0; transition: var(--transition); }
.location-card:hover .location-arrow { opacity: 1; }

/* ============================================================
   IMPROVED TYPOGRAPHY — headings & body
   ============================================================ */
.section-title { letter-spacing: -0.02em; }
.section-title span { color: var(--neon); }
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--neon);
  margin-bottom: 12px;
  display: block;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}
body { font-size: 15.5px; }
p { font-size: inherit; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 768px) {
  .service-hero { padding: 70px 0 50px; }
  .service-hero-actions { flex-direction: column; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .author-card { flex-direction: column; }
  .locations-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (max-width: 480px) {
  .service-hero-title { font-size: 1.85rem; }
  .process-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ── DROPDOWN NAVIGATION ──────────────────────────────── */
.nav-links li { position: relative; list-style: none; }
.nav-has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-arrow { font-size: 9px; transition: transform .25s; line-height: 1; margin-top: 1px; }
.nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 230px;
  box-shadow: 0 16px 48px rgba(0,0,0,.7);
  z-index: 9999;
  list-style: none;
  margin: 0;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 10px;
  height: 10px;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.1);
  border-left: 1px solid rgba(255,255,255,.1);
  transform: rotate(45deg);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown { display: block; animation: ddFade .2s ease; }
@keyframes ddFade { from{opacity:0;transform:translateY(-4px)} to{opacity:1;transform:translateY(0)} }

.nav-dropdown li { position: static; list-style: none; }
.nav-dropdown li a {
  display: block;
  padding: 9px 18px;
  color: #bbb !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all .15s;
  background: none;
  border-radius: 0;
}
.nav-dropdown li a:hover { color: #fff !important; background: rgba(255,255,255,.05) !important; padding-left: 24px; }
.nav-dropdown-all { border-top: 1px solid rgba(255,255,255,.07); margin-top: 4px; padding-top: 2px; }
.nav-dropdown-all a { color: #FF0033 !important; font-weight: 600 !important; }
.nav-dropdown-all a:hover { color: #ff3355 !important; background: rgba(255,0,51,.06) !important; }
