:root {
  --primary: #0A1128;
  --secondary: #1E293B;
  --accent: #F97316;
  --accent-hover: #EA580C;
  --text-dark: #0A1128;
  --text-light: #94A3B8;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --border-color: #E2E8F0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; color: var(--primary); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { margin-bottom: 1.5rem; font-size: 1.125rem; color: var(--secondary); }
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2.5rem; font-weight: 700; font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 2px; transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
header { position: absolute; top: 0; left: 0; right: 0; padding: 1.5rem 0; z-index: 100; background: linear-gradient(to bottom, rgba(10,17,40,0.88) 0%, rgba(10,17,40,0.35) 70%, transparent 100%); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.logo { font-size: 1.5rem; font-weight: 900; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; flex-shrink: 0; }
.logo span { color: var(--accent); }
.mobile-menu-toggle, .mobile-sticky-call { display: none; }
.header-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; flex: 1; flex-wrap: wrap; }
.header-nav a, .nav-dropdown-toggle { color: rgba(255,255,255,0.88); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: none; border: 0; cursor: pointer; font-family: inherit; }
.header-nav a:hover, .nav-dropdown-toggle:hover { color: var(--accent); }
.nav-dropdown { position: relative; padding-bottom: 0.9rem; margin-bottom: -0.9rem; }
.nav-dropdown-toggle::after { content: '▾'; margin-left: 0.45rem; font-size: 0.8em; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 0.2rem); left: 0; min-width: 260px; background: rgba(5, 8, 20, 0.97); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 0.65rem; box-shadow: 0 20px 40px rgba(0,0,0,0.25); display: none; z-index: 200; }
.nav-dropdown-menu a { display: block; padding: 0.8rem 0.9rem; border-radius: 8px; font-size: 0.85rem; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); }
.nav-dropdown.open .nav-dropdown-menu, .nav-dropdown:hover .nav-dropdown-menu { display: block; }
.header-cta .btn { padding: 0.75rem 1.5rem; font-size: 1rem; }
.hero { position: relative; background-color: var(--primary); color: var(--white); min-height: 90vh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,17,40,0.95) 0%, rgba(10,17,40,0.72) 100%); z-index: 1; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(var(--secondary) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.1; z-index: 0; }
.hero-bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; z-index: 0; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; width: 100%; }
.hero-content { max-width: 760px; }
.hero h1 { color: var(--white); }
.hero p { color: var(--text-light); font-size: 1.25rem; max-width: 800px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.command-strip { display: inline-flex; gap: 2rem; padding: 1rem 2rem; background: rgba(255,255,255,0.05); border-left: 4px solid var(--accent); backdrop-filter: blur(10px); }
.command-strip-fullwidth { grid-column: 1 / -1; width: 100%; justify-content: space-between; margin-top: 1rem; padding: 1.1rem 1.5rem; border-left: 0; border-top: 4px solid var(--accent); flex-wrap: wrap; }
.command-strip span { color: var(--white); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.5rem; }
.hero-image-panel { position: relative; }
.hero-image-panel img { width: 100%; height: auto; display: block; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); }
section { padding: 120px 0; }
.gap-section { background: var(--white); }
.gap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.gap-content h2 { margin-bottom: 1.5rem; }
.infographic-wrap img, .icon-strip img { width: 100%; height: auto; display: block; border-radius: 10px; box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.services-section { background: var(--bg-light); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.service-card { background: var(--white); padding: 2rem 1.5rem; border-top: 4px solid transparent; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.03); min-height: 100%; text-align: center; }
.service-card:hover { border-top-color: var(--accent); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.service-card-icon { width: 56px; height: 56px; margin: 0 auto 1rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(10,17,40,0.08)); color: var(--accent); font-size: 1.5rem; font-weight: 800; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.85rem; }
.service-card p { color: var(--text-light); font-size: 0.98rem; margin-bottom: 0; }
.icon-strip { margin-top: 3rem; }
.authority-band { background: var(--primary); color: var(--white); padding: 100px 0; text-align: center; }
.authority-band h2 { color: var(--white); max-width: 800px; margin: 0 auto 4rem; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.proof-item { padding: 2rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); }
.proof-item h4 { color: var(--accent); font-size: 1.25rem; margin-bottom: 0.5rem; }
.proof-item p { color: #94A3B8; font-size: 0.9rem; margin-bottom: 0; }
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 4rem; counter-reset: process; }
.process-step { position: relative; }
.process-step::before { counter-increment: process; content: '0' counter(process); font-size: 4rem; font-weight: 900; color: var(--bg-light); line-height: 1; margin-bottom: 1rem; display: block; }
.process-step h3 { position: relative; top: -2rem; margin-bottom: -1rem; }
.coverage-section { background: var(--primary); color: var(--white); }
.coverage-section h2 { color: var(--white); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.city-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem 1.25rem; }
.city-list li { font-size: 1rem; font-weight: 600; padding: 0.75rem 0.35rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-section { background: var(--bg-light); }
.faq-container { max-width: 800px; margin: 4rem auto 0; }
.faq-item { background: var(--white); padding: 2rem; margin-bottom: 1rem; border-left: 4px solid var(--secondary); box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.faq-item h4 { margin-bottom: 1rem; font-size: 1.25rem; }
.faq-item p { margin-bottom: 0; font-size: 1rem; color: var(--text-light); }
.final-cta { text-align: center; background: var(--white); padding: 150px 0; }
.final-cta h2 { font-size: clamp(2.5rem, 5vw, 4rem); max-width: 900px; margin: 0 auto 2rem; }
.final-cta p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 3rem; }
footer { background: #050814; color: #CBD5E1; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; margin-bottom: 4rem; }
.footer-col h3 { color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.footer-col p, .footer-col li { color: #CBD5E1; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a:hover { color: var(--accent); }
.footer-brand-accent { color: var(--accent); }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.875rem; display: flex; justify-content: space-between; color: #CBD5E1; }
@media (max-width: 992px) {
  header { position: relative; background: var(--primary); padding: 1rem 0 1.25rem; }
  .hero { padding-top: 64px; min-height: auto; }
  .gap-grid, .coverage-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-grid, .gap-grid, .coverage-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-ctas { flex-direction: column; }
  .command-strip { flex-direction: column; gap: 1rem; }
  .command-strip-fullwidth { justify-content: flex-start; }
  .header-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; font-size: 1.5rem; }
  .header-nav { display: none; width: 100%; grid-column: 1 / -1; flex-direction: column; align-items: flex-start; gap: 0.75rem; padding-top: 1rem; }
  .header-nav.mobile-open { display: flex; }
  .header-cta { display: none; }
  .nav-dropdown { width: 100%; padding-bottom: 0; margin-bottom: 0; }
  .nav-dropdown-menu { position: static; min-width: 100%; margin-top: 0.5rem; }
  .mobile-sticky-call { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; justify-content: center; align-items: center; background: var(--accent); color: var(--white); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 1rem 1.25rem; box-shadow: 0 -10px 30px rgba(0,0,0,0.2); }
  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr 1fr; }
  .header-nav a, .nav-dropdown-toggle { font-size: 0.82rem; }
  .hero .btn { padding: 0.82rem 1.05rem; font-size: 0.9rem; letter-spacing: 0.03em; }
}
