:root {
  --navy: #071a33;
  --navy-2: #0d2b52;
  --blue: #1c7ed6;
  --blue-light: #5dc9ff;
  --orange: #ff7a1a;
  --yellow: #ffc233;
  --bg: #f6f8fb;
  --white: #ffffff;
  --ink: #0b1b30;
  --muted: #5b6b82;
  --radius: 14px;
  --max-w: 1180px;
  --shadow: 0 12px 30px rgba(7, 26, 51, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--muted); }
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 26, 51, 0.92);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #cfe0f5;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--yellow); }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  color: var(--navy);
}
.btn-primary:hover { filter: brightness(1.05); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 20% 20%, var(--navy-2), var(--navy) 65%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--white);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--blue-light), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.lead {
  color: #b9cbe3;
  font-size: 1.1rem;
  max-width: 46ch;
}

.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.fiber-wrap { position: relative; }

.pulse {
  animation: dash 3.2s linear infinite;
  stroke-dasharray: 14 10;
}
@keyframes dash {
  to { stroke-dashoffset: -240; }
}
.pulse-dot {
  animation: glow 2.4s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { opacity: 0.4; r: 4; }
  50% { opacity: 1; r: 7; }
}

/* Sections */
section { padding: 90px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { margin: 0 auto; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--blue);
}
.card:nth-child(2) { border-top-color: var(--orange); }
.card:nth-child(3) { border-top-color: var(--yellow); }

.card .icon {
  width: 44px; height: 44px;
  margin-bottom: 16px;
}

/* Coverage */
.coverage {
  background: var(--navy);
  color: var(--white);
}
.coverage .section-head p { color: #b9cbe3; }
.coverage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
}
.coverage-list li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Process */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  padding-top: 44px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.92rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.stat-row { display: flex; gap: 30px; margin-top: 24px; flex-wrap: wrap; }
.stat b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  color: var(--blue);
}
.stat span { font-size: 0.85rem; color: var(--muted); }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info a { color: var(--yellow); }
.contact-info .item { margin-bottom: 18px; }
.contact-info .item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8fa8c8;
  margin-bottom: 4px;
}

form.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
form.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}
form.contact-form textarea { resize: vertical; min-height: 110px; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 20px;
}
.map-frame iframe { width: 100%; height: 240px; border: 0; display: block; }

/* Footer */
footer {
  background: var(--navy);
  color: #8fa8c8;
  padding: 40px 0;
  font-size: 0.9rem;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-row a { color: #8fa8c8; margin-left: 18px; }
.footer-row a:hover { color: var(--yellow); }

/* Legal pages */
.legal {
  padding: 100px 0 80px;
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 { margin-bottom: 30px; }
.legal h2 { margin-top: 34px; font-size: 1.2rem; }
.legal p, .legal li { color: var(--muted); }

@media (max-width: 860px) {
  .hero-grid, .about-grid, .contact-wrap { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}
