@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,300;1,6..72,400&display=swap');

:root {
  --navy:       #0f2744;
  --blue:       #003087;
  --blue-mid:   #0050c8;
  --blue-light: #e6f0ff;
  --blue-tint:  #f0f5fc;
  --accent:     #0066cc;
  --text:       #0a1929;
  --text2:      #334155;
  --text3:      #64748b;
  --border:     #d1dce8;
  --border2:    #e8eef6;
  --bg:         #ffffff;
  --bg2:        #f5f8fc;
  --red:        #c0392b;
  --red-light:  #fdf0ef;
  --green:      #1a6b3a;
  --green-light:#edf7f1;
  --sans:       'Inter', system-ui, sans-serif;
  --serif:      'Newsreader', Georgia, serif;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--navy);
}

a { color: var(--accent); }

/* ── NAV ── */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(15,39,68,.06);
}

.nav-logo-text {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.03em;
  color: var(--blue);
  text-decoration: none;
}

.nav-logo-text span { color: var(--text3); font-weight: 400; }

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

.nav-links a {
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  font-weight: 400;
  transition: color .15s;
  font-family: var(--sans);
}

.nav-links a:hover { color: var(--navy); }

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 3px;
  text-decoration: none !important;
  font-size: 14px;
  font-family: var(--sans);
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
  transition: background .15s;
}

.btn-primary:hover { background: var(--blue-mid); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--blue) !important;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 3px;
  border: 1.5px solid var(--blue);
  text-decoration: none !important;
  font-size: 14px;
  font-family: var(--sans);
  cursor: pointer;
  transition: all .15s;
}

.btn-secondary:hover { background: var(--blue-light); }

/* ── HERO ── */
.hero {
  padding: 80px 56px 72px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue);
  display: block;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.07;
  margin: 0 0 24px;
  max-width: 680px;
  color: var(--navy);
}

.hero h1 em { font-style: italic; color: var(--blue-mid); }

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.72;
  font-weight: 300;
  font-family: var(--sans);
}

.hero-cta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item { padding: 0 32px; border-right: 1px solid var(--border); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }

.stat-item .num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-item .num.red { color: var(--red); }

.stat-item .stat-label {
  font-size: 12px;
  color: var(--text3);
  margin-top: 6px;
  font-family: var(--sans);
  line-height: 1.4;
}

/* ── SECTIONS ── */
.section { max-width: 1100px; margin: 0 auto; padding: 64px 56px; }
.section-alt { background: var(--bg2); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }

.section-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--sans);
}

.section h2 { font-size: 30px; margin: 0 0 12px; }

.section-intro {
  font-size: 15px;
  color: var(--text2);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-family: var(--sans);
}

.section-divider { border: none; border-top: 1px solid var(--border2); margin: 0; }

/* ── COVERAGE CHIPS ── */
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 24px; }

.coverage-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chip-icon { font-size: 18px; flex-shrink: 0; }
.chip-text { font-size: 13px; font-weight: 500; color: var(--navy); font-family: var(--sans); line-height: 1.3; }

/* ── DELIVERABLES ── */
.deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.deliverable-card {
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: 18px 20px;
  background: var(--bg);
}

.deliverable-card h4 {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--sans);
}

.deliverable-card p { font-size: 13px; color: var(--text2); line-height: 1.6; margin: 0; font-family: var(--sans); }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }

.step { padding: 26px 22px; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 14px;
  font-family: var(--sans);
}

.step h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin: 0 0 8px; font-family: var(--sans); }
.step p { font-size: 13px; color: var(--text2); margin: 0; line-height: 1.6; font-family: var(--sans); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 20px;
  background: var(--bg);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(0,48,135,.06);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: var(--sans);
}

.pricing-tier-name { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 10px; font-family: var(--sans); }
.price { font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--navy); letter-spacing: -.03em; line-height: 1; margin-bottom: 4px; }
.turnaround { font-size: 12px; color: var(--text3); margin-bottom: 14px; font-family: var(--sans); }
.pricing-card p { font-size: 13px; color: var(--text2); line-height: 1.6; margin: 0; font-family: var(--sans); }

/* ── CASE CARDS ── */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.case-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 20px;
  background: var(--bg);
  text-decoration: none;
  display: block;
  transition: box-shadow .15s, border-color .15s;
}

.case-card:hover { box-shadow: 0 4px 16px rgba(0,48,135,.10); border-color: var(--blue); }

.case-sector {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-family: var(--sans);
}

.case-company { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; font-family: var(--sans); }
.case-desc { font-size: 12px; color: var(--text3); margin-bottom: 10px; font-family: var(--sans); }
.case-finding { font-size: 12px; color: var(--red); font-weight: 600; font-family: var(--sans); }

/* ── CALLOUT ── */
.callout-block {
  background: var(--blue-tint);
  border: 1px solid rgba(0,80,200,.12);
  border-left: 3px solid var(--blue-mid);
  border-radius: 0 6px 6px 0;
  padding: 18px 22px;
  margin: 28px 0;
}

.callout-block p { font-size: 15px; color: var(--navy); line-height: 1.7; margin: 0; font-family: var(--sans); }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--navy);
  border-radius: 6px;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-block h2 { color: #fff; font-size: 28px; margin: 0 0 10px; }
.cta-block p { color: rgba(255,255,255,.72); font-size: 15px; max-width: 480px; margin: 0 0 24px; line-height: 1.7; font-family: var(--sans); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--navy) !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none !important;
  font-size: 14px;
  font-family: var(--sans);
  transition: background .15s;
}

.btn-white:hover { background: var(--blue-light); }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 24px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text3);
  font-family: var(--sans);
}
