/* =========================================
   LVL UP Consulting — Government Contractor Style
   Colors: Navy #0a1f5c / #1a2b3c, Cyan #00bcd4, White #fff, Gray #f4f6f8
   Fonts: Merriweather (headings) + Open Sans (body)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #1a2b3c; background: #fff; line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* =========== NAV =========== */
#site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e0e6ee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { font-family: 'Merriweather', serif; font-size: 14px; font-weight: 700; color: #0a1f5c; line-height: 1.3; }
.nav-logo-text span { display: block; font-size: 11px; font-weight: 400; color: #555; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li a {
  padding: 8px 14px; border-radius: 4px;
  font-size: 14px; font-weight: 600; color: #1a2b3c;
  transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover { color: #00bcd4; background: #f0fafd; }
.nav-links li a.active { color: #00bcd4; border-bottom: 2px solid #00bcd4; }
.nav-cta a {
  background: #0a1f5c !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 4px !important;
  font-weight: 700 !important; letter-spacing: 0.3px;
  transition: background 0.2s !important;
}
.nav-cta a:hover { background: #1a2b3c !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #1a2b3c; border-radius: 2px; transition: 0.3s; }

/* =========== HERO =========== */
.hero {
  position: relative;
  background: #0a1f5c;
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0; max-width: 740px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,188,212,0.18); border: 1px solid rgba(0,188,212,0.45);
  color: #00bcd4; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Merriweather', serif; font-size: clamp(28px,4vw,50px); font-weight: 900;
  color: #fff; line-height: 1.18; margin-bottom: 22px;
}
.hero h1 em { color: #00bcd4; font-style: normal; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.7; max-width: 620px; margin-bottom: 32px; }
.hero-bullets {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9);
}
.hero-bullets li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #00bcd4; flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  background: #00bcd4; color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 30px; border-radius: 4px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s; display: inline-block;
}
.btn-primary:hover { background: #00a5bb; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 30px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.55);
  cursor: pointer; transition: border-color 0.2s, background 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: #00bcd4; background: rgba(0,188,212,0.12); }
.btn-navy {
  background: #0a1f5c; color: #fff; font-weight: 700; font-size: 15px;
  padding: 13px 30px; border-radius: 4px; border: 2px solid #00bcd4;
  cursor: pointer; transition: background 0.2s; display: inline-block;
}
.btn-navy:hover { background: #1a2b3c; }
.btn-white {
  background: #fff; color: #0a1f5c; font-weight: 700; font-size: 15px;
  padding: 13px 30px; border-radius: 4px; border: 2px solid #fff;
  cursor: pointer; transition: background 0.2s, color 0.2s; display: inline-block;
}
.btn-white:hover { background: #e8f7fb; }

/* =========== SECTION LAYOUT =========== */
.section { padding: 72px 0; }
.section-white { background: #fff; }
.section-gray { background: #f4f6f8; }
.section-navy { background: #0a1f5c; }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #00bcd4; margin-bottom: 12px;
}
.section-title {
  font-family: 'Merriweather', serif; font-size: clamp(24px,3vw,36px); font-weight: 900;
  color: #0a1f5c; line-height: 1.2; margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-sub { font-size: 16px; color: #4a5568; max-width: 640px; line-height: 1.7; margin-bottom: 48px; }
.section-sub.light { color: rgba(255,255,255,0.8); }
.section-label.light { color: #00bcd4; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* =========== CARDS =========== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card {
  background: #fff; border-radius: 6px; border: 1px solid #e0e6ee;
  border-left: 4px solid #00bcd4; padding: 28px 28px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.card-icon {
  width: 44px; height: 44px; background: #e8f7fb; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: #00bcd4;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-family: 'Merriweather', serif; font-size: 18px; font-weight: 700; color: #0a1f5c; margin-bottom: 10px; }
.card p { font-size: 14px; color: #4a5568; line-height: 1.65; }
.card ul { margin-top: 12px; }
.card ul li { font-size: 14px; color: #4a5568; padding: 4px 0; padding-left: 16px; position: relative; }
.card ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: #00bcd4; }

/* =========== NAICS TABLE =========== */
.naics-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 12px; }
.naics-table th { background: #0a1f5c; color: #fff; padding: 12px 16px; text-align: left; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; }
.naics-table td { padding: 12px 16px; border-bottom: 1px solid #e0e6ee; color: #1a2b3c; }
.naics-table tr:nth-child(even) td { background: #f9fafb; }
.naics-table tr:hover td { background: #f0fafd; }

/* =========== CTA BAND =========== */
.cta-band { padding: 64px 0; }
.cta-band-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.cta-band-text h2 { font-family: 'Merriweather', serif; font-size: clamp(22px,2.5vw,32px); font-weight: 900; color: #fff; margin-bottom: 10px; }
.cta-band-text p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 520px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========== DIFFERENTIATORS =========== */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.diff-item { padding: 24px; border-radius: 6px; background: #fff; border: 1px solid #e0e6ee; }
.diff-number { font-family: 'Merriweather', serif; font-size: 36px; font-weight: 900; color: #00bcd4; line-height: 1; margin-bottom: 10px; }
.diff-item h4 { font-size: 16px; font-weight: 700; color: #0a1f5c; margin-bottom: 8px; }
.diff-item p { font-size: 14px; color: #4a5568; line-height: 1.6; }

/* =========== ROADMAP =========== */
.roadmap-steps { display: flex; flex-direction: column; gap: 0; }
.roadmap-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid #e0e6ee;
  position: relative;
}
.roadmap-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: #0a1f5c; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif; font-size: 18px; font-weight: 900;
}
.step-num.done { background: #00bcd4; }
.step-num.active { background: #0a1f5c; border: 3px solid #00bcd4; }
.step-content h3 { font-family: 'Merriweather', serif; font-size: 18px; font-weight: 700; color: #0a1f5c; margin-bottom: 6px; }
.step-content p { font-size: 14px; color: #4a5568; line-height: 1.65; }
.step-badge {
  display: inline-block; margin-top: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
}
.step-badge.complete { background: #e6f7ef; color: #1a8a4a; }
.step-badge.progress { background: #e8f7fb; color: #0086a0; }
.step-badge.pending { background: #f4f6f8; color: #6b7280; }

/* =========== CONTACT TRACKS =========== */
.contact-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-track { padding: 36px; border-radius: 6px; background: #fff; border: 1px solid #e0e6ee; border-top: 4px solid #00bcd4; }
.contact-track h3 { font-family: 'Merriweather', serif; font-size: 20px; font-weight: 700; color: #0a1f5c; margin-bottom: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-info-icon { width: 36px; height: 36px; background: #e8f7fb; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #00bcd4; }
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-text { font-size: 14px; color: #4a5568; }
.contact-info-text strong { display: block; font-weight: 700; color: #1a2b3c; margin-bottom: 2px; }
.contact-info-text a { color: #00bcd4; }
.contact-info-text a:hover { text-decoration: underline; }

/* =========== CALLOUT BOX =========== */
.callout-box {
  background: #f4f6f8; border-radius: 6px; border-left: 5px solid #00bcd4;
  padding: 32px 36px; max-width: 800px; margin: 0 auto;
}
.callout-box h3 { font-family: 'Merriweather', serif; font-size: 22px; font-weight: 700; color: #0a1f5c; margin-bottom: 10px; }
.callout-box p { font-size: 15px; color: #4a5568; line-height: 1.7; }

/* =========== PARTNER CATEGORIES =========== */
.partner-cat { padding: 24px 28px; border-radius: 6px; background: #fff; border: 1px solid #e0e6ee; }
.partner-cat h3 { font-size: 16px; font-weight: 700; color: #0a1f5c; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid #00bcd4; }
.partner-cat ul li { font-size: 14px; color: #4a5568; padding: 5px 0; padding-left: 16px; position: relative; }
.partner-cat ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: #00bcd4; }

/* =========== CAPABILITY LIST =========== */
.cap-list { display: flex; flex-direction: column; gap: 28px; }
.cap-item { padding: 24px 28px; background: #fff; border-radius: 6px; border: 1px solid #e0e6ee; border-left: 4px solid #00bcd4; }
.cap-item h3 { font-family: 'Merriweather', serif; font-size: 18px; font-weight: 700; color: #0a1f5c; margin-bottom: 10px; }
.cap-item p, .cap-item ul li { font-size: 14px; color: #4a5568; line-height: 1.7; }
.cap-item ul { margin-top: 8px; }
.cap-item ul li { padding: 4px 0 4px 18px; position: relative; }
.cap-item ul li::before { content: ''; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: #00bcd4; }

/* =========== FOOTER =========== */
footer {
  background: #0a1f5c; color: rgba(255,255,255,0.85);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 40px; }
.footer-brand-name { font-family: 'Merriweather', serif; font-size: 15px; font-weight: 700; color: #fff; }
.footer-brand-name span { display: block; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.6); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: #00bcd4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-duns { font-size: 12px; color: rgba(255,255,255,0.45); }

/* =========== RESPONSIVE =========== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-top: 1px solid #e0e6ee; padding: 16px; gap: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: 420px; }
  .hero-inner { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-tracks { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}
