/* =============================================
   Precision Growth Advisors — styles.css
   ============================================= */

/* CSS Variables */
:root {
  --navy:       #1e3870;
  --navy-dark:  #152a58;
  --gold:       #c9a227;
  --gold-dark:  #a8841f;
  --light-bg:   #f4f7fb;
  --mid-bg:     #e8eef6;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-body:  #374151;
  --text-muted: #6b7280;
  --border:     #d1dae8;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.16);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: .2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section         { padding: 80px 0; }
.section-light   { padding: 80px 0; background: var(--light-bg); }
.section-mid     { padding: 80px 0; background: var(--mid-bg); }
.section-dark    { padding: 80px 0; background: var(--navy); }
.section-darker  { padding: 80px 0; background: var(--navy-dark); }
.section-cta     { padding: 72px 0; background: var(--navy-dark); text-align: center; }

.section-header  { text-align: center; margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--text-muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.section-dark .section-header h2,
.section-darker .section-header h2,
.section-dark h2, .section-darker h2 { color: var(--white); }

.section-dark .section-header p,
.section-darker .section-header p { color: rgba(255,255,255,.72); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(201,162,39,.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(30,56,112,.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 8px; }
.btn-full { width: 100%; }

/* Pill variant */
.btn-pill { border-radius: 50px; }

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

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  gap: 24px;
}

.navbar-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
  flex-shrink: 0;
}
.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.navbar-brand-text {
  display: flex;
  flex-direction: column;
}
.navbar-brand .brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .01em;
}
.navbar-brand .brand-tag {
  font-size: .68rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}

.navbar-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: color var(--transition), background var(--transition);
}
.navbar-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.navbar-links a.active { color: var(--white); }

.nav-survey-link {
  color: var(--gold) !important;
  font-weight: 600 !important;
}
.nav-survey-link:hover {
  color: var(--gold-dark) !important;
  background: rgba(201,162,39,.1) !important;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-radius: 50px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--navy-dark) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.navbar-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 0 16px;
}
.navbar-mobile.open { display: flex; }
.navbar-mobile a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: 11px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--transition), color var(--transition);
}
.navbar-mobile a:hover { background: rgba(255,255,255,.06); color: var(--white); }
.navbar-mobile .nav-survey-link { color: var(--gold) !important; }
.navbar-mobile .nav-cta {
  margin: 12px 24px 0;
  text-align: center;
  border-radius: 50px !important;
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
  border-bottom: none !important;
}

/* ── Hero (Home) ──────────────────────────── */
.hero {
  background: var(--navy-dark) url('hero-building.jpg') center/cover no-repeat;
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 60, 0.60);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(201,162,39,.2);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,.4);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  max-width: 1060px;
  margin: 0 auto 20px;
  white-space: nowrap;
}
.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  max-width: 820px;
  margin: 0 auto 36px;
}
.hero-tagline-bar {
  display: inline-block;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding: 10px 32px;
  margin-bottom: 36px;
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: .02em;
  max-width: 820px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ──────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-hero-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Callout Bar ──────────────────────────── */
.callout-bar {
  background: var(--gold);
  padding: 14px 0;
  text-align: center;
}
.callout-bar p {
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .95rem;
  margin: 0;
}
.callout-bar a { text-decoration: underline; color: var(--navy-dark); }

/* ── Problem Cards (4-col) ────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--navy);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.problem-card .card-icon { font-size: 2rem; margin-bottom: 14px; }
.problem-card h3 { color: var(--navy); margin-bottom: 10px; }
.problem-card p  { color: var(--text-muted); font-size: .93rem; margin: 0; }

/* ── Stat Cards (2×2 dark) ────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.stat-card .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}

/* ── Service Cards (3-col) ────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card.featured h3 { color: var(--white); }
.service-card.featured p  { color: rgba(255,255,255,.78); }
.service-card.featured .service-card-list li { color: rgba(255,255,255,.78); }
.service-card.featured .service-card-list li::before { color: var(--gold); }

.service-card-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.badge-audit    { background: rgba(201,162,39,.15); color: var(--gold-dark); }
.badge-sprint   { background: rgba(30,56,112,.12); color: var(--navy); }
.badge-advisory { background: var(--gold); color: var(--navy-dark); }
.featured .badge-advisory { background: rgba(201,162,39,.25); color: var(--gold); }

.service-card .icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3  { margin-bottom: 12px; }
.service-card p   { font-size: .93rem; flex: 1; }
.service-card .service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 16px 0 8px;
}
.service-card.featured .service-price { color: var(--gold); }
.service-card-list { margin: 12px 0 20px; }
.service-card-list li {
  font-size: .88rem;
  color: var(--text-muted);
  padding: 4px 0 4px 20px;
  position: relative;
}
.service-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.service-card .card-cta { margin-top: auto; }

/* ── Before / After ───────────────────────── */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.before-col {
  background: #fef9e7;
  border-top: 6px solid #e5a000;
  padding: 44px 40px;
}
.after-col {
  background: var(--navy);
  border-top: 6px solid var(--gold);
  padding: 44px 40px;
}
.before-col h3 { color: #8a5700; margin-bottom: 20px; font-size: 1.3rem; }
.after-col h3  { color: var(--white); margin-bottom: 20px; font-size: 1.3rem; }

.before-list li, .after-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .95rem;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.before-list li:last-child, .after-list li:last-child { border-bottom: none; }
.before-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #cc3300;
  font-weight: 700;
}
.after-list li { color: rgba(255,255,255,.9); }
.after-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Case Study Highlight ─────────────────── */
.case-highlight {
  display: flex;
  gap: 64px;
  align-items: center;
}
.case-stat-col { flex-shrink: 0; text-align: center; }
.case-big-stat {
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.case-stat-label {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-top: 6px;
}
.case-text-col h2 { color: var(--white); margin-bottom: 16px; }
.case-text-col p  { color: rgba(255,255,255,.78); font-size: .98rem; }
.case-text-col .case-meta {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 20px;
  font-style: italic;
}

/* ── Pull Quote ───────────────────────────── */
.pull-quote {
  border-left: 5px solid var(--gold);
  padding: 20px 28px;
  background: var(--light-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.pull-quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}
.pull-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: .85rem;
  color: var(--text-muted);
}

/* ── Agents Grid ──────────────────────────── */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.agent-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--transition);
}
.agent-card:hover { background: rgba(255,255,255,.11); }
.agent-card .agent-icon { font-size: 2rem; margin-bottom: 14px; }
.agent-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.agent-card p  { color: rgba(255,255,255,.68); font-size: .88rem; margin: 0; }

/* ── Services Breakdown Table ─────────────── */
.services-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.services-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.services-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.services-table td {
  padding: 16px 20px;
  font-size: .92rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.services-table tbody tr:last-child td { border-bottom: none; }
.services-table tbody tr:nth-child(even) { background: var(--light-bg); }
.services-table tbody tr:hover { background: var(--mid-bg); }
.services-table .check { color: var(--navy); font-weight: 700; text-align: center; }
.services-table .partial { color: var(--gold-dark); font-weight: 700; text-align: center; }
.services-table .dash { color: var(--text-muted); text-align: center; }
.services-table th.center, .services-table td.center { text-align: center; }

/* ── Service Detail (2-col) ───────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.service-detail.reverse { grid-template-columns: 1.4fr 1fr; }
.service-detail.reverse .detail-info { order: 2; }
.service-detail.reverse .detail-content { order: 1; }

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.detail-info .service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.section-mid .detail-info .service-number { background: var(--navy); }

.detail-info h2 { color: var(--navy); margin-bottom: 12px; }
.section-dark .detail-info h2 { color: var(--white); }
.detail-info .price-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: .9rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin: 12px 0 16px;
}
.detail-info p { color: var(--text-body); }
.section-dark .detail-info p { color: rgba(255,255,255,.78); }

.what-you-get { margin: 24px 0; }
.what-you-get h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.section-dark .what-you-get h4 { color: rgba(255,255,255,.5); }
.what-you-get li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: .93rem;
  border-bottom: 1px solid var(--border);
}
.what-you-get li:last-child { border-bottom: none; }
.what-you-get li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}
.section-dark .what-you-get li {
  color: rgba(255,255,255,.82);
  border-bottom-color: rgba(255,255,255,.08);
}
.section-dark .what-you-get li::before { color: var(--gold); }

.detail-content .highlight-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
}
.section-mid .detail-content .highlight-box { background: var(--navy); }
.highlight-box h3 { color: var(--white); margin-bottom: 16px; }
.highlight-box p  { color: rgba(255,255,255,.78); font-size: .93rem; }
.highlight-box .big-outcome {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin: 16px 0 4px;
}
.highlight-box .outcome-desc { color: rgba(255,255,255,.65); font-size: .85rem; }

/* ── Impact Grid ──────────────────────────── */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.impact-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--navy);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.impact-card .impact-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.impact-card h3 { color: var(--navy); margin-bottom: 10px; }
.impact-card p  { color: var(--text-muted); font-size: .9rem; margin: 0; }

.impact-total {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  margin-top: 32px;
}
.impact-total .total-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.impact-total p { color: rgba(255,255,255,.78); margin: 8px 0 0; }

/* ── Full Case Study ──────────────────────── */
.case-hero-stat {
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  margin-bottom: 32px;
}
.case-hero-stat .big-pct {
  font-size: 5rem;
  font-weight: 900;
  color: var(--navy-dark);
  line-height: 1;
}
.case-hero-stat p { color: var(--navy-dark); font-weight: 600; margin: 8px 0 0; }

.outcome-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.outcome-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.outcome-card .outcome-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.outcome-card p { color: rgba(255,255,255,.75); font-size: .88rem; margin: 0; }

/* Financial Table */
.financial-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.financial-table thead tr { background: var(--navy); }
.financial-table th {
  padding: 14px 20px;
  text-align: left;
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.financial-table td {
  padding: 14px 20px;
  font-size: .92rem;
  border-bottom: 1px solid var(--border);
}
.financial-table tbody tr:last-child td { border-bottom: none; font-weight: 700; color: var(--navy); }
.financial-table tbody tr:nth-child(even) { background: var(--light-bg); }
.financial-table .num { text-align: right; font-variant-numeric: tabular-nums; }

/* ── About: Founder ───────────────────────── */
.founder-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-photo-col { text-align: center; }
.founder-photo-col img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 8px 32px rgba(30,56,112,.25);
  margin: 0 auto 20px;
}
.founder-name  { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.founder-title { font-size: .88rem; color: var(--text-muted); margin: 4px 0 12px; }
.founder-email a { color: var(--navy); font-size: .88rem; font-weight: 600; }
.founder-creds { margin-top: 20px; }
.founder-creds li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.founder-creds li:last-child { border-bottom: none; }
.founder-creds li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.founder-story h2 { color: var(--navy); margin-bottom: 16px; }
.founder-story p  { color: var(--text-body); }
.founder-blockquote {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-top: 28px;
  position: relative;
}
.founder-blockquote::before {
  content: '"';
  font-size: 5rem;
  color: var(--gold);
  opacity: .4;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.founder-blockquote p { color: rgba(255,255,255,.88); font-style: italic; font-size: 1.05rem; margin: 0; }

/* Diff Cards (Why PGA) */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.diff-card .diff-icon { font-size: 2rem; margin-bottom: 14px; }
.diff-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.diff-card p  { color: rgba(255,255,255,.68); font-size: .88rem; margin: 0; }

/* Fit Items */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fit-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px 24px 28px;
  border-left: 4px solid var(--navy);
  box-shadow: var(--shadow-sm);
}
.fit-item h4 { color: var(--navy); margin-bottom: 6px; }
.fit-item p  { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* ── Contact Page ─────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.expect-items { margin: 24px 0; }
.expect-item  { display: flex; gap: 16px; margin-bottom: 24px; }
.expect-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.expect-text h4 { color: var(--navy); margin-bottom: 4px; font-size: .95rem; }
.expect-text p  { color: var(--text-muted); font-size: .88rem; margin: 0; }
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
}
.contact-quote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  margin-top: 32px;
  background: var(--light-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.contact-quote p { font-style: italic; color: var(--navy); font-size: .92rem; margin: 0; }

.contact-right-col { display: flex; flex-direction: column; gap: 28px; }

.calendly-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.calendly-header {
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
}
.calendly-header h3 { color: var(--white); margin-bottom: 4px; font-size: 1.05rem; }
.calendly-header p  { color: rgba(255,255,255,.72); font-size: .85rem; margin: 0; }
.calendly-widget-wrap { min-height: 400px; }

.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
}
.contact-divider::before, .contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.form-card h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.05rem; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .92rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,56,112,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.form-privacy input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
.form-privacy label { font-size: .8rem; color: var(--text-muted); cursor: pointer; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 16px;
}

/* ── Survey Page ──────────────────────────── */
.survey-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0 48px;
  text-align: center;
}
.survey-hero h1 { color: var(--white); margin-bottom: 12px; }
.survey-hero p  { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto; }
.survey-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.survey-shell {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 760px;
  margin: -32px auto 0;
  position: relative;
  z-index: 10;
}

.survey-progress-bar {
  height: 6px;
  background: var(--mid-bg);
}
.survey-progress-fill {
  height: 100%;
  background: var(--gold);
  transition: width .4s ease;
  border-radius: 0 3px 3px 0;
}

.survey-progress-text {
  padding: 14px 32px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.survey-progress-text span { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.survey-progress-text strong { color: var(--navy); }

#questionContainer { padding: 40px 40px 32px; }
.question-icon   { font-size: 2.5rem; margin-bottom: 16px; }
.question-category {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.question-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.4;
}

.option-buttons { display: flex; flex-direction: column; gap: 10px; }
.option-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  font-size: .92rem;
  color: var(--text-body);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  font-weight: 500;
}
.option-btn:hover {
  border-color: var(--navy);
  background: var(--light-bg);
  color: var(--navy);
}
.option-btn.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.survey-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px 32px;
  border-top: 1px solid var(--border);
}
.survey-nav-right { display: flex; gap: 12px; align-items: center; }

/* Contact Step */
#contactStep {
  padding: 40px;
  display: none;
}
#contactStep h2 { color: var(--navy); margin-bottom: 8px; }
#contactStep > p { color: var(--text-muted); margin-bottom: 28px; }

/* Results Step */
#resultsStep {
  display: none;
  padding: 0;
}
.results-header {
  background: var(--navy);
  padding: 40px;
  text-align: center;
}
.results-header h2 { color: var(--white); margin-bottom: 4px; }
.results-header .results-sub { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 24px; }

.score-ring-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}
.score-ring-wrap svg { position: absolute; top: 0; left: 0; transform: rotate(-90deg); }
.score-ring-bg    { stroke: rgba(255,255,255,.15); }
.score-ring-fill  { stroke: var(--gold); stroke-linecap: round; transition: stroke-dashoffset 1.2s ease; }
.score-number-display {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  z-index: 1;
}
.score-max { font-size: .9rem; color: rgba(255,255,255,.55); }

.tier-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 16px;
}
.tier-title { font-size: 1.4rem; font-weight: 700; color: var(--white); margin: 10px 0 8px; }
.tier-desc  { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto; font-size: .92rem; }

.results-body { padding: 36px 40px; }
.breakdown-section h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breakdown-bars { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.breakdown-bar  { }
.breakdown-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.breakdown-label span { font-size: .82rem; color: var(--text-body); }
.breakdown-label .bar-score { font-weight: 700; color: var(--navy); font-size: .82rem; }
.bar-track {
  height: 8px;
  background: var(--mid-bg);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 4px;
  transition: width 1s ease;
}

.rec-block {
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  background: #fef9e7;
}
.rec-block h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.rec-block p  { color: var(--text-body); font-size: .9rem; margin: 0; }

.email-confirm {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 24px;
}
.email-confirm strong { color: var(--navy); }

.results-cta-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.results-cta-block h3 { color: var(--white); margin-bottom: 8px; }
.results-cta-block p  { color: rgba(255,255,255,.72); font-size: .9rem; margin-bottom: 20px; }
.results-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.retake-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: .85rem;
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: inherit;
}
.retake-btn:hover { color: var(--navy); }

/* ── Footer ───────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .brand-tag {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-brand .footer-email a {
  color: var(--gold);
  font-size: .9rem;
  font-weight: 500;
}

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col li a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.45); font-size: .8rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.75); }

/* ── Misc / Utilities ─────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tag-navy { background: rgba(30,56,112,.12); color: var(--navy); }
.tag-gold { background: rgba(201,162,39,.15); color: var(--gold-dark); }

.two-col-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col-intro h2 { margin-bottom: 12px; }

/* ── Responsive: 900px ────────────────────── */
@media (max-width: 900px) {
  .navbar-links  { display: none; }
  .nav-hamburger { display: flex; }

  .problem-grid  { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .agents-grid   { grid-template-columns: 1fr 1fr; }
  .diff-grid     { grid-template-columns: 1fr 1fr; }
  .outcome-cards { grid-template-columns: 1fr; }

  .case-highlight { flex-direction: column; gap: 32px; text-align: center; }
  .case-big-stat  { font-size: 4.5rem; }

  .before-after-grid { grid-template-columns: 1fr; }

  .service-detail,
  .service-detail.reverse { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.reverse .detail-info,
  .service-detail.reverse .detail-content { order: unset; }

  .stat-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr; }

  .founder-section { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo-col { text-align: left; display: flex; align-items: center; gap: 24px; }
  .founder-photo-col img { margin: 0; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .two-col-intro { grid-template-columns: 1fr; gap: 24px; }
  .fit-grid { grid-template-columns: 1fr; }
}

/* ── Responsive: 640px ────────────────────── */
@media (max-width: 640px) {
  .section, .section-light, .section-mid, .section-dark, .section-darker, .section-cta {
    padding: 56px 0;
  }
  .hero   { padding: 64px 0 56px; }
  .page-hero { padding: 48px 0 40px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .hero h1 { white-space: normal; }

  .hero-tagline-bar { padding: 8px 16px; font-size: .95rem; }

  .problem-grid { grid-template-columns: 1fr; }
  .agents-grid  { grid-template-columns: 1fr; }
  .diff-grid    { grid-template-columns: 1fr; }
  .stat-grid    { grid-template-columns: 1fr; }

  .before-col, .after-col { padding: 28px 24px; }
  .case-big-stat { font-size: 3.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  #questionContainer { padding: 28px 20px 20px; }
  .survey-nav { padding: 16px 20px 24px; }
  #contactStep { padding: 28px 20px; }
  .results-header { padding: 32px 20px; }
  .results-body { padding: 28px 20px; }
  .results-cta-block { padding: 24px 20px; }
  .results-cta-buttons { flex-direction: column; }

  .form-row { grid-template-columns: 1fr; }

  .founder-photo-col { flex-direction: column; text-align: center; }

  .contact-layout { gap: 28px; }
}
