/* ============================================================
   FAITHFORGE TECH - Main Stylesheet
   Dark Coder Aesthetic | Neon Green | Premium Tech Agency
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-black:       #080810;
  --bg-dark:        #0d0d1a;
  --bg-card:        #111122;
  --bg-card-hover:  #161630;
  --border:         rgba(0, 255, 136, 0.12);
  --border-hover:   rgba(0, 255, 136, 0.4);
  --neon-green:     #00ff88;
  --neon-green-dim: #00cc6a;
  --neon-cyan:      #00e5ff;
  --neon-glow:      0 0 20px rgba(0, 255, 136, 0.4), 0 0 60px rgba(0, 255, 136, 0.15);
  --neon-glow-sm:   0 0 10px rgba(0, 255, 136, 0.3);
  --text-white:     #ffffff;
  --text-light:     #e2e8f0;
  --text-muted:     #8892a4;
  --text-dim:       #4a5568;
  --font-main:      'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:      1280px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-black);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.text-center { text-align: center; }

/* ---- Typography ---- */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}
.text-neon { color: var(--neon-green); }
.highlight {
  color: var(--neon-green);
  text-shadow: var(--neon-glow-sm);
}

/* ---- Neon Divider ---- */
.neon-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
  border-radius: 2px;
  box-shadow: var(--neon-glow-sm);
  margin-bottom: 1.5rem;
}
.neon-line.center { margin: 0 auto 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #080810;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--neon-green);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: var(--neon-green);
  transform: translateY(-2px);
}

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 136, 0.08);
}

/* ---- Scroll Animations ---- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].fade-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo img {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.35));
  transition: filter 0.3s ease;
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 16px rgba(0, 255, 136, 0.65));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--neon-green);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--neon-green); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; padding: 0.6rem 1.5rem; font-size: 0.875rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 255, 136, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 50%),
    var(--bg-black);
}
.circuit-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.circuit-bg::before {
  content: '';
  position: absolute;
  top: 10%; left: -5%;
  width: 55%;
  height: 80%;
  background-image:
    /* Horizontal traces */
    linear-gradient(90deg, transparent 0%, rgba(0,255,136,0.18) 20%, rgba(0,255,136,0.18) 22%, transparent 22.5%),
    linear-gradient(90deg, transparent 30%, rgba(0,255,136,0.12) 50%, rgba(0,255,136,0.12) 55%, transparent 55.5%),
    linear-gradient(90deg, transparent 10%, rgba(0,255,136,0.08) 35%, rgba(0,255,136,0.08) 38%, transparent 38.5%),
    /* Vertical traces */
    linear-gradient(180deg, transparent 0%, rgba(0,255,136,0.15) 15%, rgba(0,255,136,0.15) 17%, transparent 17.5%),
    linear-gradient(180deg, transparent 40%, rgba(0,255,136,0.10) 60%, rgba(0,255,136,0.10) 63%, transparent 63.5%),
    linear-gradient(180deg, transparent 25%, rgba(0,255,136,0.08) 45%, rgba(0,255,136,0.08) 47%, transparent 47.5%);
  background-size: 300px 300px;
  mask-image: radial-gradient(ellipse 70% 80% at 30% 50%, black 20%, transparent 75%);
  filter: blur(0.3px);
}
.circuit-bg::after {
  content: '';
  position: absolute;
  top: 5%; right: -5%;
  width: 50%;
  height: 90%;
  background-image:
    linear-gradient(90deg, transparent 60%, rgba(0,255,136,0.12) 75%, rgba(0,255,136,0.12) 78%, transparent 78.5%),
    linear-gradient(90deg, transparent 40%, rgba(0,229,255,0.08) 55%, rgba(0,229,255,0.08) 58%, transparent 58.5%),
    linear-gradient(180deg, transparent 30%, rgba(0,255,136,0.10) 50%, rgba(0,255,136,0.10) 53%, transparent 53.5%),
    linear-gradient(180deg, transparent 60%, rgba(0,229,255,0.07) 75%, rgba(0,229,255,0.07) 78%, transparent 78.5%);
  background-size: 280px 280px;
  mask-image: radial-gradient(ellipse 70% 80% at 70% 40%, black 20%, transparent 75%);
  filter: blur(0.3px);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--neon-green);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--neon-green);
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: var(--neon-glow-sm);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.marquee-section {
  background: rgba(0, 255, 136, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-item .sep {
  color: var(--neon-green);
  margin-left: 2rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 136, 0.08);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neon-green);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.service-link:hover { gap: 0.75rem; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
#pricing {
  background: var(--bg-dark);
  position: relative;
}
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.pricing-tab {
  padding: 0.65rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.pricing-tab.active {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #080810;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}
.pricing-tab:hover:not(.active) { color: var(--text-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.pricing-card.featured {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #080810;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}
.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.pricing-price { margin-bottom: 1.5rem; }
.price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-white);
  font-family: var(--font-mono);
  line-height: 1;
}
.price-amount span { font-size: 1.2rem; color: var(--neon-green); }
.price-period { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.25rem; }
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}
.pricing-features { margin-bottom: 1.75rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-light);
  padding: 0.35rem 0;
  line-height: 1.5;
}
.pricing-features li.muted { color: var(--text-dim); }
.check { color: var(--neon-green); font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.pricing-features li.muted .check { color: var(--text-dim); }

/* ---- Agency Pricing Intro ---- */
.agency-pricing-intro {
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.agency-pricing-intro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-green));
}

/* ---- Scope Cards ---- */
.scope-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.scope-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.scope-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 25px rgba(0,255,136,0.07);
}
.scope-card.featured-scope {
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(0,255,136,0.15);
}
.scope-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  color: #080810;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.scope-icon {
  font-size: 2rem;
}
.scope-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 0.25rem;
  display: block;
}
.scope-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.6rem;
}
.scope-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.scope-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.scope-includes span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--neon-green);
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
}

/* ---- Pricing CTA Strip ---- */
.pricing-cta-strip {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(0,255,136,0.05), rgba(0,229,255,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 0.5rem;
}
.pricing-cta-strip p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.pricing-cta-strip strong { color: var(--neon-green); }

@media (max-width: 1024px) {
  .scope-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .scope-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
#process { background: var(--bg-black); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-green), var(--neon-cyan), var(--neon-green), transparent);
  opacity: 0.3;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.process-step:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 136, 0.08);
}
.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neon-green);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  font-size: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.contact-item-text a,
.contact-item-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition);
}
.contact-item-text a:hover { color: var(--neon-green); }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--text-white);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-dark); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; padding: 1rem; font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--neon-green); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-socials { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: var(--neon-glow-sm);
}

/* ============================================================
   AI CHATBOT WIDGET
   ============================================================ */
#chatbot-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.chat-toggle {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
  transition: var(--transition);
  position: relative;
}
.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
}
.pulse-ring {
  position: absolute;
  inset: -4px;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
  opacity: 0;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.chat-window {
  width: 380px;
  max-height: 580px;
  background: var(--bg-dark);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 136, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 229, 255, 0.1));
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #080810;
  flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.15rem;
}
.chat-status {
  font-size: 0.72rem;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.chat-status .dot {
  width: 6px; height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--neon-green);
  animation: pulse-dot 2s infinite;
}
.chat-close {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.25rem;
  transition: var(--transition);
}
.chat-close:hover { color: var(--text-white); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.msg {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.msg.user { flex-direction: row-reverse; }
.msg .msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #080810;
  flex-shrink: 0;
  margin-top: 2px;
}
.msg.user .msg-avatar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.85rem;
}
.msg-bubble {
  max-width: 80%;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-size: 0.83rem;
  line-height: 1.65;
}
.msg.bot .msg-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-light);
  border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 229, 255, 0.15));
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--text-white);
  border-bottom-right-radius: 4px;
}
.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 2px 0;
}
.typing-dots span {
  width: 6px; height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
.chat-quick-replies {
  padding: 0.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px solid var(--border);
}
.quick-reply {
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  color: var(--neon-green);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}
.quick-reply:hover {
  background: rgba(0, 255, 136, 0.15);
  border-color: var(--neon-green);
}
.chat-input-area {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--bg-black);
}
.chat-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  color: var(--text-white);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--neon-green); }
.chat-input::placeholder { color: var(--text-dim); }
.chat-send {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080810;
  font-size: 0.85rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.chat-send:hover { transform: scale(1.05); box-shadow: var(--neon-glow-sm); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  #about .container > div { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8,8,16,0.98); backdrop-filter: blur(20px); align-items: center; justify-content: center; gap: 2.5rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .chat-window { width: calc(100vw - 2rem); right: 0; }
  #chatbot-widget { right: 1rem; bottom: 1rem; }
  .pricing-tabs { flex-direction: column; width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
