*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --blue-pale: #EFF6FF;
  --teal: #0D9488;
  --teal-light: #5EEAD4;
  --orange: #F97316;
  --navy: #1E3A5F;
  --text: #1F2937;
  --muted: #6B7280;
  --bg: #F9FAFB;
  --white: #ffffff;
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.4rem; font-weight: 900; color: var(--navy); text-decoration: none;
}
.nav-logo span { color: var(--blue); }
.logo-img {
  width: 28px; height: 28px;
  object-fit: contain;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-weight: 700; font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: white; border: none;
  padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 800;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF9 60%, #FFF7ED 100%);
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1.5px solid #BFDBFE;
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; color: var(--blue);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.6s ease both;
}
.badge-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }

.vet-badge-inline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #FEF3C7; border: 1.5px solid #FCD34D;
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 800; color: #92400E;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; line-height: 1.15; color: var(--navy);
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.7s 0.1s ease both;
}
h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 1.15rem; color: var(--muted); font-weight: 600; line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--blue); color: white; padding: 0.85rem 2rem;
  border-radius: 50px; font-weight: 800; font-size: 1rem;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,0.35); }
.btn-secondary {
  background: white; color: var(--navy); padding: 0.85rem 2rem;
  border-radius: 50px; font-weight: 800; font-size: 1rem;
  text-decoration: none; border: 2px solid #E5E7EB; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.hero-visual {
  position: relative; animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero-card-main {
  background: white; border-radius: 24px; padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid #E5E7EB;
}
.hero-card-label {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 1rem;
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat {
  background: var(--blue-pale); border-radius: 14px; padding: 1rem;
  text-align: center;
}
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--blue); }
.hero-stat-desc { font-size: 0.78rem; color: var(--muted); font-weight: 700; }
.hero-stat.teal { background: #F0FDF4; }
.hero-stat.teal .hero-stat-num { color: var(--teal); }
.hero-stat.orange { background: #FFF7ED; }
.hero-stat.orange .hero-stat-num { color: var(--orange); }

.float-badge {
  position: absolute; background: white; border-radius: 14px; padding: 0.75rem 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 0.5rem;
  font-weight: 800; font-size: 0.85rem; color: var(--navy);
}
.float-badge.top { top: -20px; right: -20px; animation: float 3s ease-in-out infinite; }
.float-badge.bottom { bottom: -20px; left: -20px; animation: float 3s 1.5s ease-in-out infinite; }
.float-badge svg { width: 22px; height: 22px; }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes fadeSlideUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── VETERAN SECTION ── */
.veteran-section {
  background: linear-gradient(135deg, #1E3A5F 0%, #1e4d8c 100%);
  color: white; padding: 5rem 2.5rem; position: relative; overflow: hidden;
}
.veteran-section::before {
  content: '★';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 18rem; opacity: 0.04; line-height: 1; pointer-events: none;
}
.veteran-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.vet-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(252,211,77,0.15); border: 1.5px solid rgba(252,211,77,0.4);
  color: #FCD34D; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 1rem;
}
.veteran-section h2 { color: white; margin-bottom: 1rem; }
.veteran-section h2 em { color: #FCD34D; font-style: normal; }
.veteran-section p { color: rgba(255,255,255,0.8); font-weight: 600; line-height: 1.8; font-size: 1.05rem; margin-bottom: 1rem; }
.vet-values { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.vet-value { display: flex; gap: 1rem; align-items: flex-start; }
.vet-value-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(252,211,77,0.15); border: 1px solid rgba(252,211,77,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.vet-value h4 { color: white; font-size: 0.95rem; font-weight: 800; margin-bottom: 0.2rem; }
.vet-value p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }
.vet-emblem {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.5rem;
}
.vet-star-wrap {
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 2px solid rgba(252,211,77,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; line-height: 1;
  box-shadow: 0 0 60px rgba(252,211,77,0.15);
}
.vet-emblem-text h3 { color: white; font-size: 1.3rem; font-weight: 900; margin-bottom: 0.3rem; }
.vet-emblem-text p { color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 600; margin: 0; }
.vet-ribbon {
  background: rgba(252,211,77,0.12); border: 1px solid rgba(252,211,77,0.3);
  border-radius: 12px; padding: 0.75rem 1.5rem;
  color: #FCD34D; font-weight: 800; font-size: 0.88rem; letter-spacing: 0.05em;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy); color: white;
  padding: 1.25rem 2.5rem;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.9rem; }
.trust-icon { font-size: 1.2rem; }

/* ── SECTIONS (shared) ── */
section { padding: 6rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: var(--blue-pale); color: var(--blue);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 50px; margin-bottom: 1rem;
}
.section-tag.teal { background: #F0FDF9; color: var(--teal); }
h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--navy);
  line-height: 1.2; margin-bottom: 1rem;
}
h2 em { font-style: normal; color: var(--blue); }
.section-sub { font-size: 1.05rem; color: var(--muted); font-weight: 600; max-width: 560px; line-height: 1.7; }

/* ── SERVICES ── */
#services { background: white; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--bg); border-radius: var(--radius); padding: 2rem;
  border: 2px solid transparent; transition: all 0.25s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 16px 16px 0 0; opacity: 0; transition: opacity 0.25s;
}
.service-card:hover { border-color: var(--blue); transform: translateY(-4px); background: white; box-shadow: 0 12px 40px rgba(37,99,235,0.1); }
.service-card:hover::before { opacity: 1; }
.service-card.cable::before { background: var(--blue); }
.service-card.network::before { background: var(--teal); }
.service-card.support::before { background: var(--orange); }
.service-card.security::before { background: #8B5CF6; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.icon-blue { background: var(--blue-pale); }
.icon-teal { background: #F0FDF9; }
.icon-orange { background: #FFF7ED; }
.icon-purple { background: #F5F3FF; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.92rem; color: var(--muted); font-weight: 600; line-height: 1.6; }

/* ── CERTIFICATIONS ── */
.certs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.cert-card {
  background: white; border-radius: var(--radius); padding: 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  border: 2px solid #F3F4F6; transition: all 0.25s;
}
.cert-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,99,235,0.08); }
.cert-card.cert-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, #2563EB 100%);
  border-color: transparent;
}
.cert-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.cert-name { font-size: 1rem; font-weight: 900; color: var(--navy); margin-bottom: 0.35rem; }
.cert-desc { font-size: 0.85rem; color: var(--muted); font-weight: 600; line-height: 1.55; margin-bottom: 0.75rem; }
.cert-badge {
  display: inline-block; background: var(--blue-pale); color: var(--blue);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.2rem 0.7rem; border-radius: 50px; border: 1px solid #BFDBFE;
}


#why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.why-items { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
  width: 36px; height: 36px; background: #DCFCE7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.why-item h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.2rem; }
.why-item p { font-size: 0.9rem; color: var(--muted); font-weight: 600; line-height: 1.5; }
.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #2563EB 100%);
  border-radius: 24px; padding: 2.5rem; color: white; position: relative; overflow: hidden;
}
.why-visual::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; background: rgba(255,255,255,0.07); border-radius: 50%;
}
.why-visual h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 0.5rem; }
.why-visual p { font-size: 0.92rem; opacity: 0.8; font-weight: 600; line-height: 1.6; margin-bottom: 1.5rem; }
.roadmap { display: flex; flex-direction: column; gap: 0; }
.roadmap-step {
  display: flex; gap: 1rem; align-items: flex-start; position: relative; padding-bottom: 1.25rem;
}
.roadmap-step:last-child { padding-bottom: 0; }
.step-dot-wrap { display: flex; flex-direction: column; align-items: center; }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 900; flex-shrink: 0;
}
.step-dot.active { background: white; color: var(--blue); border-color: white; }
.step-line {
  width: 2px; flex: 1; background: rgba(255,255,255,0.2); margin-top: 4px; min-height: 24px;
}
.roadmap-step:last-child .step-line { display: none; }
.step-text h5 { font-size: 0.9rem; font-weight: 800; margin-bottom: 0.1rem; }
.step-text p { font-size: 0.8rem; opacity: 0.7; font-weight: 600; }

/* ── PROCESS ── */
#process { background: white; }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; margin-top: 3rem; position: relative;
}
.process-step { text-align: center; padding: 2rem 1.5rem; position: relative; }
.process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -8px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: #D1D5DB; z-index: 1;
}
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue);
  font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}
.process-step h4 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); font-weight: 600; line-height: 1.5; }

/* ── SERVICE AREA ── */
.area-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.area-map-placeholder {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF9 100%);
  border-radius: 24px; padding: 2.5rem; text-align: center;
  border: 2px solid #E5E7EB; position: relative; overflow: hidden;
}
.map-pin-wrap {
  position: relative; display: inline-flex; align-items: center;
  justify-content: center; margin-bottom: 2rem;
}
.map-pin { font-size: 3rem; position: relative; z-index: 1; animation: float 3s ease-in-out infinite; }
.map-ripple {
  position: absolute; width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.2); animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.area-region-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.region-pill {
  background: white; border: 2px solid #E5E7EB; border-radius: 50px;
  padding: 0.35rem 0.9rem; font-size: 0.82rem; font-weight: 700; color: var(--muted);
  transition: all 0.2s;
}
.region-pill.active {
  background: var(--blue); border-color: var(--blue); color: white;
}

.area-info { display: flex; flex-direction: column; gap: 1.25rem; }
.area-info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--bg); border-radius: 14px; padding: 1.25rem;
  border: 2px solid transparent; transition: all 0.2s;
}
.area-info-card:hover { border-color: var(--blue); background: white; box-shadow: 0 4px 20px rgba(37,99,235,0.07); }
.area-info-icon {
  width: 42px; height: 42px; background: var(--blue-pale); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.area-info-card h4 { font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 0.2rem; }
.area-info-card p { font-size: 0.88rem; color: var(--muted); font-weight: 600; line-height: 1.55; }

@media (max-width: 768px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT ── */
#contact { background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF9 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.contact-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.contact-info p { font-size: 0.95rem; color: var(--muted); font-weight: 600; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.contact-detail-icon {
  width: 36px; height: 36px; background: var(--blue-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-form { background: white; border-radius: 24px; padding: 2.5rem; box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem; border: 2px solid #E5E7EB; border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text);
  background: var(--bg); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--blue); background: white; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; background: var(--blue); color: white;
  padding: 1rem; border-radius: 50px; font-weight: 800; font-size: 1rem;
  font-family: 'Nunito', sans-serif; border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.btn-submit:hover { background: var(--blue-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: white; padding: 2.5rem;
  text-align: center; font-weight: 600; font-size: 0.9rem; opacity: 0.85;
}
footer strong { opacity: 1; font-weight: 900; }
footer a { color: var(--teal-light); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 3rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .trust-bar { gap: 1.5rem; }
  .veteran-inner { grid-template-columns: 1fr; }
  .vet-emblem { order: -1; }
  .veteran-section::before { font-size: 10rem; }
}
