/* =========================================================
   1. DARK BLUE, BLACK & WHITE DESIGN TOKENS
   ========================================================= */
:root {
  --bg-black:     #020305;
  --bg-navy:      #070B14;
  --bg-card:      #0D1322;
  --bg-card-hover:#131B30;
  
  --accent-blue:  #3B82F6;
  --accent-light: #60A5FA;
  --pure-white:   #FFFFFF;
  --slate-muted:  #94A3B8;
  
  --border-subtle:rgba(255, 255, 255, 0.08);
  --border-hover: rgba(59, 130, 246, 0.4);

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --wrap: 1160px;
  --gap: clamp(1.5rem, 3vw, 3rem);
}

/* =========================================================
   2. BASE & RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-black);
  color: var(--pure-white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; color: var(--pure-white); }
p { margin: 0; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 50%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 20px; height: 2px;
  background: var(--accent-blue);
  display: inline-block;
  border-radius: 2px;
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 0.6em; }
.section-head p { color: var(--slate-muted); margin-top: 1em; font-size: 1.05rem; }

/* =========================================================
   3. BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { 
  background: var(--pure-white); 
  color: var(--bg-black); 
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.btn-primary:hover { 
  background: #E2E8F0; 
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
}
.btn-ghost { 
  background: rgba(255, 255, 255, 0.04); 
  color: var(--pure-white); 
  border-color: var(--border-subtle); 
}
.btn-ghost:hover { 
  background: rgba(255, 255, 255, 0.08); 
  border-color: var(--border-hover);
}

.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   4. HEADER & NAV WITH BRAND TAGLINE & SCROLL PROGRESS
   ========================================================= */
#scrollProgress {
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--pure-white));
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.05s ease-out;
  z-index: 100;
}

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 3, 5, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
  position: relative;
}

.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-details { display: flex; flex-direction: column; justify-content: center; }
.brand-name { font-weight: 800; font-size: 1.2rem; color: var(--pure-white); letter-spacing: -0.01em; line-height: 1.2; }
.brand-tagline { font-family: var(--font-mono); font-size: 0.68rem; color: var(--slate-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 6px; }

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a { font-size: 0.95rem; color: var(--slate-muted); font-weight: 500; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--pure-white); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 0; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 6px; right: 6px; height: 2px; background: var(--pure-white);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { top: 17px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 84px; left: 0; right: 0;
    background: var(--bg-black); border-bottom: 1px solid var(--border-subtle);
    flex-direction: column; align-items: flex-start; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-open .nav-links { max-height: 320px; }
  .nav-links a { width: 100%; padding: 1rem clamp(1.25rem,4vw,2.5rem); }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
}

/* =========================================================
   5. HI-TECH ANIMATED HERO BACKGROUND & SCANLINE EFFECT
   ========================================================= */
.hero { 
  padding-top: clamp(4.5rem, 10vw, 8rem); 
  padding-bottom: clamp(5.5rem, 11vw, 9rem);
  background: var(--bg-black);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

/* Hi-Tech Cyber Animation Container */
.hero-hitech-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* Dynamic Glowing Orbs with Smooth Floating Motion */
.tech-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: moveOrbs 10s ease-in-out infinite alternate;
}
.tech-orb-1 { width: 500px; height: 500px; background: rgba(59, 130, 246, 0.25); top: -150px; left: -100px; }
.tech-orb-2 { width: 600px; height: 600px; background: rgba(14, 116, 144, 0.3); bottom: -200px; right: -100px; animation-delay: -4s; animation-duration: 14s; }

@keyframes moveOrbs {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.12); }
  100% { transform: translate(-40px, 60px) scale(0.92); }
}

/* Sweeping Cyber Light Scanline Beam */
.scan-beam {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.18), transparent);
  transform: skewX(-20deg);
  animation: sweepBeam 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes sweepBeam {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Futuristic Cyber Grid Lines */
.cyber-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 70% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 70% 40%, black 20%, transparent 80%);
  opacity: 0.7;
}

.hero .wrap {
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  gap: clamp(2.5rem, 5vw, 4.5rem); 
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 999px;
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 1.4rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.9);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.9); }
  70% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.hero .lede { 
  color: var(--slate-muted); 
  font-size: 1.15rem; 
  max-width: 46ch; 
  margin-top: 1.3rem; 
  line-height: 1.65;
}

.hero .cta-row { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero .note { margin-top: 1.4rem; font-size: 0.85rem; color: #64748B; font-family: var(--font-mono); }

/* Hero Right Visual: Hi-Tech Dashboard Mockup with Pulse Waves */
.hero-visual { 
  display: flex; 
  justify-content: center; 
  align-items: center;
  position: relative;
}

.dashboard-mockup {
  width: 100%;
  max-width: 480px;
  background: rgba(13, 19, 34, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 20px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(59, 130, 246, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.mockup-header {
  background: rgba(7, 11, 20, 0.9);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--pure-white);
}

.mockup-status-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 2px 9px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
  animation: liveBlink 2s infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.mockup-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.metric-box::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.metric-box .label { font-size: 0.75rem; color: var(--slate-muted); font-family: var(--font-mono); }
.metric-box .value { font-size: 1.25rem; font-weight: 700; color: var(--pure-white); margin-top: 0.2rem; }

.pipeline-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pipeline-step-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.step-name { display: flex; align-items: center; gap: 0.5rem; color: var(--pure-white); font-weight: 500; }
.step-check { color: #34D399; font-family: var(--font-mono); font-size: 0.8rem; }

.floating-pill {
  position: absolute;
  background: rgba(13, 19, 34, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.4);
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pure-white);
  z-index: 10;
}

.floating-pill.design-pill { top: -15px; right: -15px; border-left: 4px solid var(--accent-blue); animation: floatCard 5s ease-in-out infinite alternate; }
.floating-pill.qa-pill { bottom: -15px; left: -15px; border-left: 4px solid #34D399; animation: floatCard 7s ease-in-out infinite alternate-reverse; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .floating-pill { display: none; }
}

/* =========================================================
   6. TECH TICKER
   ========================================================= */
.tech-ticker {
  background: #050811;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--slate-muted);
  animation: marquee 64s linear infinite;
}

.ticker-track span { color: var(--accent-light); font-weight: 600; padding: 0 0.4rem; }

@keyframes marquee {
  from { transform: translateX(0%); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   7. SERVICES CARDS
   ========================================================= */
#services { background: var(--bg-navy); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-blue);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-light);
}

.service-card h3 { font-size: 1.4rem; color: var(--pure-white); }
.service-card p.desc { color: var(--slate-muted); font-size: 0.98rem; line-height: 1.6; }

.service-card ul { 
  display: flex; 
  flex-direction: column; 
  gap: 0.6rem; 
  margin-top: auto; 
  padding-top: 1.2rem; 
  border-top: 1px solid var(--border-subtle); 
}

.service-card li { 
  font-size: 0.92rem; 
  color: var(--pure-white); 
  display: flex; 
  gap: 0.6em; 
  align-items: center; 
  font-weight: 500;
}

.service-card li::before { 
  content: "✓"; 
  color: var(--accent-light); 
  font-weight: bold; 
  font-size: 0.85rem;
}

@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   8. PROCESS SECTION
   ========================================================= */
#process {
  background: var(--bg-black);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.process-list { display: flex; flex-direction: column; gap: 1.2rem; }

.process-step {
  display: grid; 
  grid-template-columns: 80px 1fr; 
  gap: var(--gap);
  padding: 1.8rem 2rem; 
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.process-step:hover {
  border-color: var(--border-hover);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: var(--bg-card-hover);
}

.process-step .num-badge { 
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-light);
  font-family: var(--font-mono); 
  font-size: 1.1rem; 
  font-weight: 700; 
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.process-step h3 { font-size: 1.3rem; margin-top: 0.2rem; color: var(--pure-white); }
.process-step p { color: var(--slate-muted); margin-top: 0.5rem; max-width: 65ch; font-size: 1rem; }

/* =========================================================
   9. FOUNDERS & WHY US
   ========================================================= */
#founders { background: var(--bg-navy); }

.founders-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.founder-card {
  background: var(--bg-card);
  border-radius: var(--radius); 
  padding: 2.4rem;
  display: flex; flex-direction: column; gap: 1rem; 
  min-height: 280px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
  border: 1px solid var(--border-subtle);
  border-top: 4px solid var(--accent-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.founder-card .role-pill { 
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-mono); 
  font-size: 0.75rem; 
  letter-spacing: 0.06em; 
  text-transform: uppercase; 
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-light);
  width: fit-content;
}

.founder-card h3 { font-size: 1.8rem; color: var(--pure-white); }
.founder-card p { font-size: 0.98rem; color: var(--slate-muted); margin-top: auto; line-height: 1.6; }

.why-strip { 
  display: grid; grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; margin-top: 3.5rem; padding-top: 2.5rem; 
  border-top: 1px solid var(--border-subtle); 
}

.why-item { 
  background: var(--bg-card);
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex; flex-direction: column; gap: 0.6rem;
}

.why-item .mark { color: var(--accent-light); font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700; }
.why-item p { font-size: 1.05rem; font-weight: 600; color: var(--pure-white); }

@media (max-width: 860px) { .founders-grid, .why-strip { grid-template-columns: 1fr; } }

/* =========================================================
   10. FAQ ACCORDION
   ========================================================= */
#faq {
  background: var(--bg-black);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: var(--accent-blue);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.3rem 1.6rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-main); font-weight: 600; font-size: 1.08rem; color: var(--pure-white);
}

.faq-q .plus { font-family: var(--font-mono); color: var(--accent-light); font-size: 1.3rem; font-weight: 700; transition: transform 0.25s ease; }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-a { padding: 0 1.6rem 1.5rem 1.6rem; color: var(--slate-muted); line-height: 1.65; font-size: 0.98rem; }

/* =========================================================
   11. CONTACT FORM PANEL
   ========================================================= */
.contact-panel {
  background: var(--bg-card); color: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  border: 1px solid var(--border-subtle);
}
.contact-panel h2 { color: var(--pure-white); font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.contact-panel .lede { color: var(--slate-muted); margin-top: 1rem; max-width: 42ch; }
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; font-family: var(--font-mono); font-size: 0.92rem; }
.contact-info a { transition: color 0.15s ease; }
.contact-info a:hover { color: var(--accent-light); }

.form-row { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-row label { font-size: 0.85rem; color: var(--pure-white); font-weight: 500; }
.form-row input, .form-row select, .form-row textarea {
  background: rgba(255,255,255,0.03); 
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); 
  padding: 0.8em 1em; 
  color: var(--pure-white); 
  font-family: inherit; 
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #64748B; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.8rem; color: #64748B; margin-top: 0.8rem; }
.contact-panel .btn-primary { width: 100%; justify-content: center; margin-top: 0.4rem; font-weight: 700; background: var(--pure-white); color: var(--bg-black); }

@media (max-width: 860px) {
  .contact-panel { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; }
}
/* Fix for dropdown options visibility */
.form-row select option {
  background-color: #0D1322;
  color: #FFFFFF;
}

/* =========================================================
   12. FOOTER
   ========================================================= */
footer { 
  border-top: 1px solid var(--border-subtle); 
  padding: 3.5rem 0 2.5rem 0; 
  background: #050811; 
  color: var(--pure-white);
}
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-links { display: flex; gap: 2.2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.92rem; color: var(--slate-muted); font-weight: 500; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--pure-white); }
.footer-bottom { 
  margin-top: 3rem; 
  padding-top: 1.8rem; 
  border-top: 1px solid var(--border-subtle); 
  display: flex; justify-content: space-between; flex-wrap: wrap; 
  gap: 0.6rem; font-size: 0.82rem; color: #64748B; font-family: var(--font-mono); 
}