/* ============================================
   SUMP PUMP BATTERY BACKUP - styles.css
   Theme: Electric Blue & Deep Navy
============================================ */

:root {
  --primary: #00C8FF;
  --primary-dark: #0099cc;
  --primary-glow: rgba(0, 200, 255, 0.35);
  --secondary: #0047AB;
  --accent: #FFD700;
  --accent-orange: #FF6B35;
  --bg-dark: #050D1A;
  --bg-card: #0A1628;
  --bg-card2: #0D1E38;
  --border: rgba(0, 200, 255, 0.15);
  --border-bright: rgba(0, 200, 255, 0.4);
  --text-light: #E8F4FD;
  --text-muted: #7BA8C4;
  --text-dim: #4A7A9B;
  --gradient-main: linear-gradient(135deg, #00C8FF 0%, #0047AB 60%, #050D1A 100%);
  --gradient-text: linear-gradient(90deg, #00C8FF, #7B61FF, #00C8FF);
  --gradient-card: linear-gradient(145deg, #0D1E38 0%, #050D1A 100%);
  --shadow-glow: 0 0 40px rgba(0, 200, 255, 0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   GRADIENT TEXT
============================ */
.gradient-text {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============================
   ANIMATIONS
============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.8; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
  50% { box-shadow: 0 0 50px rgba(0,200,255,0.6); }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.animate-fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ============================
   NAVBAR
============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 13, 26, 0.85);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(5, 13, 26, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px; height: 40px;
  background: rgba(0,200,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-bright);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
}

.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(0,200,255,0.08);
}

.nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,200,255,0.3);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,200,255,0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px; 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;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(5, 13, 26, 0.94) 0%,
    rgba(0, 71, 171, 0.6) 50%,
    rgba(5, 13, 26, 0.9) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--dur, 6s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.8; }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: 140px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0,200,255,0.12);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(0,200,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  animation: scrollBounce 2s infinite;
  box-shadow: 0 0 12px var(--primary);
}

/* ============================
   BUTTONS
============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0066cc);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,200,255,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,200,255,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(0,200,255,0.1);
  transform: translateY(-3px);
}

.btn-xl {
  padding: 18px 48px;
  font-size: 1.15rem;
}

.btn-icon { font-size: 1.1rem; }

/* ============================
   ALERT BANNER
============================ */
.alert-banner {
  background: linear-gradient(135deg, #FF6B35, #FF4444);
  padding: 14px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.alert-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

.alert-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.alert-icon { font-size: 1.2rem; }

.alert-link {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================
   SECTION COMMONS
============================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0,200,255,0.1);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================
   SERVICES SECTION
============================ */
.services {
  padding: 120px 0;
  background: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.service-card-glow {
  position: absolute; top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-card-glow { opacity: 1; }

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.service-card:hover .service-img { transform: scale(1.04); }

.service-icon-wrap {
  position: absolute;
  top: 16px; left: 16px;
  width: 48px; height: 48px;
  background: rgba(5,13,26,0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.service-icon { font-size: 1.4rem; }

.service-card.featured {
  border-color: rgba(0,200,255,0.3);
}

.service-content {
  padding: 24px;
}

.service-content-full {
  padding: 32px;
}

.service-content h3, .service-content-full h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-content p, .service-content-full p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.service-cta:hover {
  border-color: var(--primary);
  gap: 10px;
}

/* ============================
   WHY US SECTION
============================ */
.why-us {
  padding: 120px 0;
  background: linear-gradient(180deg, #050D1A 0%, #071528 50%, #050D1A 100%);
  position: relative;
  overflow: hidden;
}

.why-bg-anim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,200,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-feature-icon {
  width: 48px; height: 48px;
  background: rgba(0,200,255,0.1);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: rgba(0,200,255,0.2);
  transform: scale(1.1);
}

.why-feature h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Power Diagram */
.why-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.power-diagram {
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}

.pd-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  display: flex; align-items: center; justify-content: center;
}

.pd-ring-outer {
  width: 340px; height: 340px;
  border-color: rgba(0,200,255,0.15);
  animation: spin-slow 20s linear infinite;
}

.pd-ring-mid {
  width: 250px; height: 250px;
  border-color: rgba(0,200,255,0.25);
  animation: spin-slow 12s linear infinite reverse;
}

.pd-ring-inner {
  width: 160px; height: 160px;
  border-color: rgba(0,200,255,0.5);
  background: rgba(0,200,255,0.05);
}

.pd-center {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: float 4s ease-in-out infinite;
}

.pd-icon { font-size: 2.5rem; }

.pd-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  line-height: 1.3;
}

.pd-stat {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  background: rgba(10, 22, 40, 0.95);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  min-width: 80px; text-align: center;
  backdrop-filter: blur(8px);
}

.pd-stat-v {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.pd-stat-l {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pd-stat-1 { top: 0; left: 50%; transform: translateX(-50%) translateY(-10px); }
.pd-stat-2 { right: -10px; top: 50%; transform: translateY(-50%); }
.pd-stat-3 { bottom: 0; left: 50%; transform: translateX(-50%) translateY(10px); }
.pd-stat-4 { left: -10px; top: 50%; transform: translateY(-50%); }

/* ============================
   PROCESS SECTION
============================ */
.process {
  padding: 120px 0;
  background: var(--bg-dark);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 40px 0;
  overflow-x: auto;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
}

.step-icon {
  font-size: 2.4rem;
  margin: 8px 0 16px;
  display: block;
}

.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  flex-shrink: 0;
  margin-top: 80px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
}

/* ============================
   CTA SECTION
============================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #071528, #0A1F3D, #071528);
  position: relative;
  overflow: hidden;
}

.cta-bg-effect {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,200,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0,71,171,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.cta-text { flex: 1; min-width: 300px; }

.cta-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-text p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.cta-address {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.cta-actions {
  text-align: center;
  flex-shrink: 0;
}

.cta-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ============================
   FOOTER
============================ */
.footer {
  background: #020912;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 16px 0 20px;
  line-height: 1.7;
}

.footer-phone {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  transition: var(--transition);
}

.footer-phone:hover { color: #fff; text-shadow: 0 0 20px var(--primary); }

.footer-links-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-links-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links-col a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-contact-item a { color: var(--primary); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ============================
   SCROLL REVEAL
============================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .power-diagram { width: 280px; height: 280px; }
  .pd-ring-outer { width: 280px; height: 280px; }
  .pd-ring-mid { width: 200px; height: 200px; }
  .pd-ring-inner { width: 130px; height: 130px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,13,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.3rem; }
  .nav-toggle { display: flex; z-index: 1001; }

  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }

  .process-steps {
    flex-direction: column;
    gap: 24px;
    overflow-x: visible;
  }
  .process-connector { display: none; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-address { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 120px 16px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .stat-item { padding: 0 20px; }
}
