/* ============================================================
   BOLDEN STRATEGY & CONSULTATION — SHARED STYLES
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #1E3A5F;
  --navy-light:  #2a4f80;
  --teal:        #2E86AB;
  --accent:      #C0392B;
  --gold:        #D4960A;
  --bg:          #f4f6f9;
  --surface:     #ffffff;
  --border:      #dde3ec;
  --text:        #1a2535;
  --muted:       #6b7a90;
  --footer-bg:   #0f1e30;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--navy);
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.7;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--dark .section-title { color: #fff; }
.section--dark .section-subtitle { color: rgba(255,255,255,0.75); }
.section--dark p { color: rgba(255,255,255,0.85); }

.section--teal-light {
  background: #eef6fb;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.nav__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover { color: #fff; }

.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
}

.nav__cta:hover { background: #c4880a; text-decoration: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  right: 0;
  width: 280px;
  height: calc(100vh - 64px);
  background: var(--navy);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  overflow-y: auto;
  z-index: 999;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav__mobile .nav__cta {
  color: var(--navy) !important;
  text-align: center;
  border-bottom: none;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border-radius: 4px;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--teal) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: #fff;
}

.hero::before { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero::after  { width: 300px; height: 300px; bottom: -80px; left: -60px; }

.hero--sm { padding: 3rem 0 2.5rem; }

.hero__label { color: var(--gold); margin-bottom: 0.75rem; }

.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 760px;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
  background: #c4880a;
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--navy);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-navy:hover { background: var(--navy-light); text-decoration: none; color: #fff; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.card--featured {
  border-top: 3px solid var(--gold);
}

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

.card__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

/* ── Stat Cards ────────────────────────────────────────────── */
.stat-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 1.75rem;
  text-align: center;
}

.stat-card__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-card__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.4;
}

.stat-card__source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ── Research Quote / Callout ──────────────────────────────── */
.research-quote {
  border-left: 4px solid var(--teal);
  background: #eef6fb;
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--text);
  margin: 1.5rem 0;
}

.research-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-weight: 600;
}

.cost-callout {
  border-top: 3px solid var(--gold);
  background: #fef9ec;
  padding: 1.25rem 1.5rem;
  border-radius: 0 0 6px 6px;
}

.cost-callout__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gold);
}

/* ── Phase Cards ───────────────────────────────────────────── */
.phase-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.phase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.phase-card__header {
  background: var(--teal);
  color: #fff;
  padding: 0.85rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.phase-card__body {
  background: #fff;
  padding: 1.25rem;
}

/* ── Pricing Table ─────────────────────────────────────────── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-table th {
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}

.pricing-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.pricing-table tr:nth-child(even) td { background: #f8fafc; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr.featured td { background: #fef9ec; border-left: 3px solid var(--gold); }

/* ── Comparison Table ──────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-table th {
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 600;
}

.compare-table th:first-child { text-align: left; }

.compare-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  text-align: center;
  vertical-align: middle;
}

.compare-table td:first-child { text-align: left; font-weight: 600; background: #f8fafc; }
.compare-table tr.highlight td { background: #fef9ec; }
.compare-table tr.highlight td:first-child { background: #fef4cc; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-banner__sub {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer__logo span { color: var(--gold); }

.footer__tagline {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover { color: #fff; }

.footer__divider {
  border: none;
  border-top: 2px solid var(--teal);
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ── Utility ───────────────────────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-teal  { color: var(--teal); }
.text-muted { color: var(--muted); }
.text-white { color: #fff; }
.font-condensed { font-family: 'Barlow Condensed', sans-serif; }

.check-list { list-style: none; padding: 0; }
.check-list li { padding: 0.4rem 0; padding-left: 1.6rem; position: relative; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.icon-row__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: #eef6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.icon-row__text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.icon-row__text span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.tag {
  display: inline-block;
  background: #eef6fb;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid rgba(46,134,171,0.2);
}

.credibility-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.credibility-bar__item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.credibility-bar__item:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .section { padding: 3rem 0; }
  .hero { padding: 3rem 0 2.5rem; }

  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.5rem; }

  .pricing-table { font-size: 0.82rem; }
  .pricing-table th, .pricing-table td { padding: 0.65rem 0.75rem; }
}
