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

:root {
  --navy:    #1b3a6b;
  --navy2:   #0f2447;
  --orange:  #f7941d;
  --orange2: #e07d0a;
  --teal:    #00d4ff;
  --teal2:   #0099cc;
  --white:   #ffffff;
  --light:   #f5f7fa;
  --gray:    #6b7280;
  --dark:    #0d1b2e;
  --border:  #e5e7eb;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(27,58,107,0.12);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,148,29,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--teal);
  color: var(--teal);
}
.btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 9px 20px;
  font-size: 0.875rem;
}
.btn-nav:hover { background: var(--orange2); }
.btn-full { width: 100%; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5,12,28,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,212,255,0.12);
  transition: all var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

/* ── Logo block ── */
.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.88; }

.logo-icon-img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0,212,255,0.28));
  transition: filter var(--transition);
  flex-shrink: 0;
}
.logo:hover .logo-icon-img {
  filter: drop-shadow(0 0 20px rgba(0,212,255,0.55));
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-tps {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(130deg, #ffffff 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-fullname {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.logo-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--teal); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 84px;
}
/* Deep space base */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #010912 0%, #050e22 30%, #091830 60%, #0c2040 100%);
  z-index: 0;
}
/* Left teal glow blob */
.hero-glow-left {
  position: absolute;
  top: 15%; left: -10%;
  width: 55vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(0,212,255,0.14) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  animation: blobFloat 9s ease-in-out infinite;
}
/* Right orange glow blob */
.hero-glow-right {
  position: absolute;
  top: -10%; right: -8%;
  width: 50vw; height: 55vh;
  background: radial-gradient(ellipse, rgba(247,148,29,0.11) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0)    scale(1);    }
  50%       { transform: translateY(28px) scale(1.06); }
}
/* Scan beam sweeping down */
.scan-beam {
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.2) 35%, rgba(0,212,255,0.2) 65%, transparent 100%);
  pointer-events: none;
  z-index: 4;
  animation: scanDown 10s linear infinite;
}
@keyframes scanDown {
  0%   { top: -2px; opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
/* Subtle scanline texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.03) 3px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 3;
}
#neuralCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 5;
  padding: 80px 24px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,212,255,0.1);
  color: var(--teal);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}
.highlight      { color: var(--orange); }
.highlight-teal { color: var(--teal); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: 38px;
  line-height: 1.75;
}
.hero-sub strong { color: var(--teal); font-weight: 600; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}
.stat-num.ai-glow {
  color: var(--teal);
  text-shadow: 0 0 20px rgba(0,212,255,0.5);
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-light  { background: var(--light); }
.section-dark   { background: var(--dark); color: var(--white); }
.section-navy   { background: var(--navy2); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}
.section-dark  .section-header p,
.section-navy  .section-header p { color: rgba(255,255,255,0.62); }

.section-badge {
  display: inline-block;
  background: rgba(247,148,29,0.12);
  color: var(--orange);
  border: 1px solid rgba(247,148,29,0.3);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-light { background: rgba(247,148,29,0.18); border-color: rgba(247,148,29,0.5); }
.badge-teal  {
  background: rgba(0,212,255,0.1);
  color: var(--teal);
  border-color: rgba(0,212,255,0.3);
}

/* ===== AI SERVICES ===== */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.ai-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: all var(--transition);
}
.ai-card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.ai-card:hover {
  border-color: rgba(0,212,255,0.4);
  background: rgba(0,212,255,0.06);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,212,255,0.12);
}
.ai-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.ai-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}
.ai-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-list.light li {
  color: rgba(255,255,255,0.6);
}
.service-list.light li::before { color: var(--teal); }

/* ===== IT SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(247,148,29,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-list li {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

/* ===== LOCAL PARTNER ===== */
.partner-intro {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.partner-intro p {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.partner-intro strong { color: var(--teal); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 52px;
}
.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.partner-card:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
  transform: translateY(-3px);
}
.partner-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.partner-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.partner-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}
.partner-cta-block {
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.partner-cta-text { flex: 1; min-width: 260px; }
.partner-cta-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
}
.partner-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.partner-step {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.4);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.partner-cta-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  max-width: 200px;
  line-height: 1.5;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}
.about-text p {
  color: rgba(255,255,255,0.72);
  line-height: 1.78;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.82);
}
.about-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: var(--white);
}
.about-card-icon { font-size: 2.4rem; margin-bottom: 14px; }
.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--teal);
}
.about-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
}
.card-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 28px 0;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ===== SERVICE AREA ===== */
.area-counties {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.county-badge {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--teal);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
}
.area-note {
  text-align: center;
  color: rgba(255,255,255,0.52);
  font-size: 0.88rem;
  font-style: italic;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  background: rgba(247,148,29,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-item a {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--orange); }
.contact-item span { color: #374151; font-size: 0.9rem; }

/* ===== FORM ===== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #1f2937;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer { background: #060e1a; color: var(--white); }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-icon-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0,212,255,0.2));
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-tps {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(130deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-fullname {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  max-width: 220px;
  line-height: 1.65;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--white); }
.footer-contact p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.footer-contact a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ===== FAB ===== */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(247,148,29,0.45);
  z-index: 999;
  transition: all var(--transition);
}
.fab:hover {
  background: var(--orange2);
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(247,148,29,0.55);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1050px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid   { grid-template-columns: 1fr; }
  .partner-cta-block { flex-direction: column; padding: 32px 28px; }
}
@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: rgba(6,14,26,0.98);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 20px;
    border-bottom: 1px solid rgba(0,212,255,0.1);
  }
  .nav-links.open { display: flex; }
  .hamburger  { display: flex; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .hero-actions { flex-direction: column; }
  .hero-stats   { gap: 20px; }
  .stat-divider { display: none; }
  .contact-form { padding: 28px 20px; }
  .section      { padding: 64px 0; }
}
