/* ============================================================
   TD Consulting Group, Inc. — Main Stylesheet
   www.tdcginc.com | GSA MAS #47QRAA24D00DL | WOSB (SBA)
   Prepare. Position. Prevail.
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: #111111;
  background: #ffffff;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #1F5C3A; text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ── COLOR VARIABLES ──────────────────────────────────────── */
:root {
  --green:       #1F5C3A;
  --green-mid:   #2E7D52;
  --green-dark:  #143D27;
  --green-lt:    #E8F2EC;
  --orange:      #C9520A;
  --orange-lt:   #FDF0E8;
  --gold:        #B8943A;
  --gold-lt:     #FBF6EC;
  --gray:        #3D3D3D;
  --gray-mid:    #6B6B6B;
  --gray-lt:     #F2F2F2;
  --gray-rule:   #D1D1D1;
  --off-white:   #FAFAFA;
  --black:       #111111;
  --white:       #FFFFFF;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: Georgia, serif; line-height: 1.2; }
h1 { font-size: 2.5rem; font-weight: bold; }
h2 { font-size: 1.75rem; font-weight: bold; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: bold; }
h4 { font-size: 1.1rem; font-weight: bold; }
p  { margin-bottom: 1rem; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

.mono {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.eyebrow {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: bold;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 64px 0; }
.section-sm { padding: 48px 0; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.nav-logo img { height: 84px; max-width: 240px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: Georgia, serif;
  font-size: 0.85rem;
  color: var(--gray);
  padding: 8px 12px;
  border-radius: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); border-bottom-color: var(--orange); text-decoration: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 240px;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-family: Georgia, serif;
  color: var(--gray);
  border-left: 3px solid transparent;
  border-bottom: none;
  border-radius: 0;
}

.dropdown-menu a:hover { background: var(--orange-lt); color: var(--orange); border-left-color: var(--orange); text-decoration: none; }

.nav-cta {
  margin-left: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white) !important;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  font-weight: bold;
  border-bottom: none !important;
  box-shadow: 0 2px 8px rgba(201,82,10,0.35);
  transition: background 0.2s;
}

.nav-cta:hover { background: #a84108; text-decoration: none; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  padding: 72px 24px 60px;
  border-bottom: 4px solid var(--orange);
  text-align: center;
}

.hero-eyebrow {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-orange {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(201,82,10,0.4);
  transition: background 0.2s;
}
.btn-orange:hover { background: #a84108; text-decoration: none; color: var(--white); }

.btn-green {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: bold;
  transition: background 0.2s;
}
.btn-green:hover { background: var(--green-dark); text-decoration: none; color: var(--white); }

.btn-outline {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--white); text-decoration: none; color: var(--white); }

/* ── CREDENTIAL BAR ───────────────────────────────────────── */
.cred-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-rule);
  padding: 12px 24px;
}

.cred-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cred-item {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── SECTION LABELS ───────────────────────────────────────── */
.section-label {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  font-weight: bold;
}

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.card-green-top { border-top: 3px solid var(--green); }
.card-orange-top { border-top: 3px solid var(--orange); }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
}

.service-card h3 { color: var(--green); margin-bottom: 8px; font-size: 0.95rem; }
.service-card p  { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.6; margin: 0; }
.service-card .learn-more { margin-top: 12px; color: var(--orange); font-size: 0.85rem; font-family: "Courier New", Courier, monospace; }

/* ── CERT BADGE ───────────────────────────────────────────── */
.cert-badge {
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 16px 20px;
  background: var(--white);
  text-align: center;
}
.cert-badge .cert-title { font-family: Georgia, serif; font-weight: bold; font-size: 0.875rem; color: var(--green); margin-bottom: 4px; }
.cert-badge .cert-issuer { font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: var(--gray-mid); letter-spacing: 0.05em; }

/* ── PAST PERFORMANCE CARD ────────────────────────────────── */
.perf-card { border: 1px solid var(--gray-rule); border-radius: 10px; overflow: hidden; background: var(--white); }
.perf-card-header { background: var(--green); padding: 12px 16px; }
.perf-card-header .client { font-family: Georgia, serif; font-weight: bold; font-size: 0.875rem; color: var(--white); }
.perf-card-header .office { font-family: "Courier New", Courier, monospace; font-size: 0.75rem; color: var(--gold); margin-top: 3px; }
.perf-card-body { padding: 14px 16px; }
.perf-card-body .services { font-size: 0.8rem; color: var(--gray); font-family: Georgia, serif; line-height: 1.5; }
.perf-card-tags { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.tag { padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-family: "Courier New", Courier, monospace; }
.tag-green  { background: var(--green-lt); color: var(--green); }
.tag-orange { background: var(--orange-lt); color: var(--orange); }
.tag-gray   { background: var(--gray-lt);   color: var(--gray-mid); }

/* ── TESTIMONIAL ──────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-rule);
  border-radius: 10px;
  padding: 24px;
  position: relative;
}
.testimonial blockquote {
  font-family: Georgia, serif;
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 16px;
}
.testimonial cite {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: bold;
  font-style: normal;
}

/* ── GRIDS ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.grid-1-14 { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }

/* ── DARK GREEN SECTION ───────────────────────────────────── */
.bg-dark-green { background: var(--green-dark); color: var(--white); }
.bg-dark-green h2 { color: var(--white); }
.bg-dark-green p  { color: rgba(255,255,255,0.75); }

.bg-green { background: var(--green); color: var(--white); }
.bg-green h2 { color: var(--white); }

.bg-gray-lt  { background: var(--gray-lt); }
.bg-off-white { background: var(--off-white); }
.bg-orange   { background: var(--orange); color: var(--white); }
.bg-green-lt { background: var(--green-lt); }
.bg-orange-lt { background: var(--orange-lt); }
.bg-white    { background: var(--white); }

/* ── CALLOUT BOX ──────────────────────────────────────────── */
.callout {
  border-radius: 10px;
  padding: 20px 24px;
  border-left: 4px solid;
  margin-bottom: 2rem;
}
.callout-orange { background: var(--orange-lt); border-left-color: var(--orange); }
.callout-green  { background: var(--green-lt);  border-left-color: var(--green);  }
.callout-gold   { background: var(--gold-lt);   border-left-color: var(--gold);   }
.callout .callout-label { font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: var(--orange); letter-spacing: 0.15em; margin-bottom: 8px; font-weight: bold; text-transform: uppercase; }
.callout p { font-family: Georgia, serif; font-size: 0.875rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* ── SIDEBAR CONTRACT BOX ─────────────────────────────────── */
.contract-sidebar {
  background: var(--green-dark);
  border-radius: 14px;
  padding: 28px 24px;
  position: sticky;
  top: 120px;
}
.contract-sidebar .sidebar-label { font-family: "Courier New", Courier, monospace; font-size: 0.875rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 16px; text-transform: uppercase; font-weight: bold; }
.contract-sidebar .field { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; margin-bottom: 8px; }
.contract-sidebar .field-key { font-family: "Courier New", Courier, monospace; font-size: 0.8rem; color: var(--gold); margin-bottom: 4px; }
.contract-sidebar .field-val { font-family: Georgia, serif; font-size: 0.8rem; color: var(--white); }
.contract-sidebar .poc { margin-top: 16px; }
.contract-sidebar .poc-label { font-family: "Courier New", Courier, monospace; font-size: 0.8rem; color: var(--gold); margin-bottom: 6px; }
.contract-sidebar .poc-val { font-family: Georgia, serif; font-size: 0.8rem; color: var(--white); line-height: 1.5; }

/* ── SERVICE LIST ─────────────────────────────────────────── */
.service-list-item { border-left: 3px solid var(--green); padding-left: 20px; margin-bottom: 28px; }
.service-list-item h3 { color: var(--green); font-size: 0.95rem; margin-bottom: 8px; }
.service-list-item p  { font-size: 0.97rem; color: var(--gray-mid); line-height: 1.8; margin: 0; }

/* ── SECTOR HEADER ────────────────────────────────────────── */
.sector-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sector-bar { width: 4px; height: 32px; border-radius: 2px; flex-shrink: 0; }
.sector-label { font-family: "Courier New", Courier, monospace; font-size: 0.75rem; font-weight: bold; letter-spacing: 0.15em; text-transform: uppercase; }

/* ── PAST PERFORMANCE DETAIL CARD ─────────────────────────── */
.pp-card { border: 1px solid var(--gray-rule); border-radius: 10px; overflow: hidden; border-left-width: 4px; border-left-style: solid; margin-bottom: 16px; }
.pp-card-header { background: var(--gray-lt); padding: 14px 20px; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; flex-wrap: wrap; }
.pp-card-header .client-name { font-family: Georgia, serif; font-weight: bold; font-size: 0.95rem; color: var(--black); }
.pp-card-header .client-office { font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: var(--orange); margin-top: 3px; }
.pp-card-body { padding: 16px 20px; }
.pp-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 12px; }
.pp-meta-key { font-family: "Courier New", Courier, monospace; font-size: 0.6rem; color: var(--gray-mid); margin-bottom: 3px; text-transform: uppercase; }
.pp-meta-val { font-family: Georgia, serif; font-size: 0.8rem; color: var(--black); line-height: 1.5; }
.pp-results { background: var(--green-lt); border-radius: 8px; padding: 12px 14px; font-family: Georgia, serif; font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
.pp-results strong { color: var(--green); }

/* ── DARK PAST PERFORMANCE CARD ───────────────────────────── */
.pp-dark-card { background: rgba(255,255,255,0.06); border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); padding: 24px; border-top: 3px solid var(--orange); margin-bottom: 20px; }
.pp-dark-label { font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: var(--orange); letter-spacing: 0.15em; margin-bottom: 10px; text-transform: uppercase; }
.pp-dark-client { font-family: Georgia, serif; font-weight: bold; font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.pp-dark-office { font-family: "Courier New", Courier, monospace; font-size: 0.75rem; color: var(--gold); margin-bottom: 16px; }
.pp-dark-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.pp-dark-key { font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: var(--gold); margin-bottom: 4px; text-transform: uppercase; }
.pp-dark-val { font-family: Georgia, serif; font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.pp-dark-results { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 14px 16px; font-family: Georgia, serif; font-size: 0.875rem; color: rgba(255,255,255,0.85); line-height: 1.7; }

/* ── CERTS PAGE ───────────────────────────────────────────── */
.cert-row { border: 1px solid var(--gray-rule); border-radius: 12px; overflow: hidden; border-left-width: 4px; border-left-style: solid; margin-bottom: 20px; }
.cert-row-header { padding: 18px 24px; background: var(--gray-lt); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.cert-row-title { font-family: Georgia, serif; font-weight: bold; font-size: 0.95rem; color: var(--black); }
.cert-row-issuer { font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: var(--gray-mid); margin-top: 3px; }
.cert-status { padding: 4px 14px; background: var(--green-lt); color: var(--green); border-radius: 20px; font-size: 0.7rem; font-family: "Courier New", Courier, monospace; font-weight: bold; }
.cert-row-body { padding: 16px 24px; font-family: Georgia, serif; font-size: 0.875rem; color: var(--gray-mid); line-height: 1.7; }

/* ── STEP BOXES ───────────────────────────────────────────── */
.step-box { background: var(--white); border-radius: 10px; padding: 28px 22px; border: 1px solid var(--gray-rule); text-align: center; }
.step-number { width: 44px; height: 44px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: "Courier New", Courier, monospace; font-weight: bold; font-size: 0.95rem; color: var(--white); }
.step-box h3 { color: var(--green); font-size: 0.95rem; margin-bottom: 10px; }
.step-box p  { font-size: 0.875rem; color: var(--gray-mid); line-height: 1.6; margin: 0; }

/* ── FEATURE BOX ──────────────────────────────────────────── */
.feature-box { background: var(--white); border-radius: 10px; padding: 24px; border-top: 3px solid var(--green); border: 1px solid var(--gray-rule); }
.feature-box h3 { font-family: Georgia, serif; font-weight: bold; font-size: 0.95rem; color: var(--green); margin-bottom: 10px; }
.feature-box p  { font-family: Georgia, serif; font-size: 0.875rem; color: var(--gray-mid); line-height: 1.6; margin: 0; }

/* ── COACHING TIER ────────────────────────────────────────── */
.tier-card { border: 1px solid var(--gray-rule); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.tier-header { background: var(--green); padding: 22px 20px; }
.tier-header h3 { font-family: Georgia, serif; font-weight: bold; font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.tier-header .tier-outcome { font-family: Georgia, serif; font-size: 0.8rem; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 10px; }
.tier-header .tier-calls { font-family: "Courier New", Courier, monospace; font-size: 0.8rem; color: var(--gold); border-top: 1px solid rgba(255,255,255,0.2); padding-top: 10px; }
.tier-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.tier-body ul { flex: 1; margin-bottom: 20px; }
.tier-body ul li { display: flex; gap: 8px; margin-bottom: 9px; align-items: flex-start; }
.tier-body ul li::before { content: "✓"; color: var(--orange); font-weight: bold; flex-shrink: 0; margin-top: 1px; }
.tier-body ul li span { font-family: Georgia, serif; font-size: 0.875rem; color: var(--gray); line-height: 1.5; }

/* ── TRAINING CARD ────────────────────────────────────────── */
.training-card { background: var(--white); border-radius: 10px; padding: 24px; border: 1px solid var(--gray-rule); border-top: 3px solid var(--orange); }
.training-card h3 { font-family: Georgia, serif; font-weight: bold; font-size: 0.95rem; color: var(--green); margin-bottom: 10px; }
.training-card p  { font-family: Georgia, serif; font-size: 0.875rem; color: var(--gray-mid); line-height: 1.6; margin-bottom: 16px; }
.training-card .reg-badge { font-family: "Courier New", Courier, monospace; font-size: 0.75rem; color: var(--orange); }

/* ── STAT BOX ─────────────────────────────────────────────── */
.stat-box { text-align: center; background: var(--white); border-radius: 8px; padding: 18px; }
.stat-val { font-family: Georgia, serif; font-weight: bold; font-size: 1.375rem; color: var(--green); }
.stat-label { font-family: "Courier New", Courier, monospace; font-size: 0.8rem; color: var(--gray-mid); margin-top: 4px; }

/* ── STORY ────────────────────────────────────────────────── */
.story-highlight {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--orange);
  line-height: 1.9;
  font-style: italic;
  border-left: 4px solid var(--orange);
  padding-left: 24px;
  margin-bottom: 28px;
}

/* ── LEADERSHIP ───────────────────────────────────────────── */
.leader-photo { background: var(--green); border-radius: 14px; overflow: hidden; margin-bottom: 20px; }
.leader-photo img { width: 100%; height: auto; display: block; }
.leader-info { background: var(--green-lt); border-radius: 10px; padding: 18px; }
.leader-info-row { margin-bottom: 10px; }
.leader-info-key { font-family: "Courier New", Courier, monospace; font-size: 0.6rem; color: var(--gray-mid); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.leader-info-val { font-family: Georgia, serif; font-size: 0.875rem; color: var(--black); }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-info { background: var(--green-lt); border-radius: 12px; padding: 24px; border: 1px solid var(--gray-rule); margin-bottom: 24px; }
.contact-info-name  { font-family: Georgia, serif; font-weight: bold; font-size: 0.95rem; color: var(--green); margin-bottom: 4px; }
.contact-info-title { font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: var(--orange); margin-bottom: 16px; }
.contact-info-row { margin-bottom: 12px; }
.contact-info-key { font-family: "Courier New", Courier, monospace; font-size: 0.625rem; color: var(--gray-mid); margin-bottom: 2px; text-transform: uppercase; }
.contact-info-val { font-family: Georgia, serif; font-size: 0.875rem; color: var(--black); }
.contact-note { padding: 16px; background: var(--orange-lt); border-radius: 8px; border-left: 3px solid var(--orange); font-family: Georgia, serif; font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ── FORM ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: var(--gray-mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-rule);
  border-radius: 8px;
  font-family: Georgia, serif;
  font-size: 0.875rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; }
.form-required { font-size: 0.7rem; color: var(--gray-mid); margin-top: 8px; text-align: center; font-family: "Courier New", Courier, monospace; }

/* ── CAPSTAT ──────────────────────────────────────────────── */
.capstat-wrap { background: var(--gray-lt); padding: 40px 24px; }
.capstat-card { max-width: 850px; margin: 0 auto; background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.capstat-header { background: var(--green-dark); padding: 28px 32px; }
.capstat-header h2 { font-family: Georgia, serif; font-size: 1.625rem; color: var(--white); margin-bottom: 4px; }
.capstat-header .tagline { font-family: Georgia, serif; font-style: italic; font-size: 0.8rem; color: var(--gold); margin-bottom: 10px; }
.capstat-header .services-line { font-family: "Courier New", Courier, monospace; font-size: 0.625rem; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; }
.capstat-bar { height: 4px; background: var(--orange); }
.capstat-body { display: grid; grid-template-columns: 1fr 1.2fr; }
.capstat-left { padding: 28px 24px; border-right: 1px solid var(--gray-rule); background: var(--green-lt); }
.capstat-right { padding: 28px 24px; }
.capstat-section { margin-top: 20px; border-top: 1px solid var(--gray-rule); padding-top: 16px; }
.capstat-section:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.capstat-section-label { font-family: "Courier New", Courier, monospace; font-size: 0.6rem; color: var(--green); font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.capstat-section li { font-family: Georgia, serif; font-size: 0.75rem; color: var(--gray); line-height: 1.5; margin-bottom: 4px; }
.capstat-footer { background: var(--green-dark); padding: 16px 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.capstat-footer-left { font-family: Georgia, serif; font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.capstat-footer-right { font-family: "Courier New", Courier, monospace; font-size: 0.75rem; color: var(--gold); text-align: right; line-height: 1.6; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--green-dark); color: var(--white); }
.footer-grid { max-width: 1100px; margin: 0 auto; padding: 48px 24px 32px; display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr; gap: 40px; }
.footer-logo img { height: 72px; max-width: 200px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline { font-family: "Courier New", Courier, monospace; font-size: 0.625rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 6px; }
.footer-desc { font-family: Georgia, serif; font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 12px; }
.footer-contact { font-family: "Courier New", Courier, monospace; font-size: 0.7rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.footer-col-label { font-size: 0.7rem; font-weight: bold; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; font-family: "Courier New", Courier, monospace; text-transform: uppercase; }
.footer-col a { display: block; font-family: Georgia, serif; font-size: 0.8rem; color: rgba(255,255,255,0.75); padding: 3px 0; line-height: 1.5; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 16px 24px; text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.45); font-family: "Courier New", Courier, monospace; }

/* ── ALERT / BANNER ───────────────────────────────────────── */
.alert-banner { border-radius: 10px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.alert-banner-orange { background: var(--orange-lt); border-left: 4px solid var(--orange); }
.alert-banner-green  { background: var(--green-lt);  border-left: 4px solid var(--green);  }
.alert-icon { font-size: 1.125rem; flex-shrink: 0; }
.alert-banner p { font-family: Georgia, serif; font-size: 0.875rem; color: var(--orange); margin: 0; font-weight: bold; line-height: 1.5; }
.alert-banner-green p { color: var(--green); }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section { background: var(--green-dark); border-radius: 12px; padding: 32px; text-align: center; margin-top: 32px; }
.cta-section .cta-label { font-family: "Courier New", Courier, monospace; font-size: 0.75rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 12px; text-transform: uppercase; }
.cta-section h3 { font-family: Georgia, serif; font-size: 1.375rem; color: var(--white); margin-bottom: 12px; }
.cta-section p  { font-family: Georgia, serif; font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── DISCOVERY CTA ────────────────────────────────────────── */
.discovery-bar {
  background: var(--green-lt);
  border-radius: 10px;
  border-left: 4px solid var(--green);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.discovery-bar h3 { font-family: Georgia, serif; font-weight: bold; font-size: 0.95rem; color: var(--green); margin-bottom: 4px; }
.discovery-bar p  { font-family: Georgia, serif; font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin: 0; }

/* ── URGENCY BANNER ───────────────────────────────────────── */
.urgency-banner {
  background: var(--orange-lt);
  border-radius: 10px;
  padding: 14px 20px;
  border-left: 4px solid var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.urgency-banner p { font-family: Georgia, serif; font-size: 0.875rem; color: var(--orange); font-weight: bold; margin: 0; line-height: 1.5; }

/* ── STORY PAGE ───────────────────────────────────────────── */
.story-wrap { max-width: 780px; margin: 0 auto; }
.story-wrap p { font-family: Georgia, serif; font-size: 1rem; color: var(--gray); line-height: 1.85; margin-bottom: 28px; }

/* ── CLOSING DARK BAR ─────────────────────────────────────── */
.closing-bar { background: var(--green); padding: 56px 24px; text-align: center; }
.closing-bar h2 { font-family: Georgia, serif; font-size: 1.75rem; color: var(--white); margin-bottom: 16px; }
.closing-bar p  { font-family: Georgia, serif; font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 28px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ── UTILITY ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-white  { color: var(--white); }
.text-green  { color: var(--green); }
.text-orange { color: var(--orange); }
.text-gold   { color: var(--gold); }
.text-gray   { color: var(--gray); }
.text-gray-mid { color: var(--gray-mid); }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mt-0  { margin-top: 0; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.fw-bold { font-weight: bold; }
.italic  { font-style: italic; }

/* ── SAM BOX ──────────────────────────────────────────────── */
.sam-box { background: var(--orange-lt); border-radius: 10px; padding: 18px 24px; border-left: 4px solid var(--orange); }
.sam-box .sam-label { font-family: "Courier New", Courier, monospace; font-size: 0.625rem; color: var(--orange); letter-spacing: 0.1em; font-weight: bold; text-transform: uppercase; margin-bottom: 8px; }
.sam-box p { font-family: Georgia, serif; font-size: 0.875rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
/* ── MOBILE NAVIGATION ────────────────────────────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 16px;
}

.nav-mobile-logo img {
  height: 60px;
  max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.nav-mobile a {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}

.nav-mobile a:hover { color: var(--white); text-decoration: none; }

.nav-mobile .mobile-section-label {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 4px;
}

.nav-mobile .mobile-sub-link {
  font-size: 0.95rem;
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
}

.nav-mobile .nav-mobile-cta {
  display: block;
  margin-top: 24px;
  padding: 14px;
  background: var(--orange);
  border-radius: 8px;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: bold;
  color: var(--white);
  border-bottom: none;
}

/* ── RESPONSIVE BREAKPOINTS ───────────────────────────────── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .grid-2-3, .grid-1-2, .grid-1-14 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.75rem; }
  .capstat-body { grid-template-columns: 1fr; }
  .pp-meta-grid, .pp-dark-meta { grid-template-columns: 1fr; }
  .contract-sidebar { position: static; }
  .discovery-bar { flex-direction: column; }
  /* Show hamburger, hide desktop nav */
  .nav-links { display: none !important; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 80px; }
  .nav-logo img { height: 64px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
  .capstat-footer { flex-direction: column; text-align: center; }
  .capstat-footer-right { text-align: center; }
}
