/* ═══════════════════════════════════════════════════════
   THE CONTRACTOR'S BOOKKEEPER — MAIN STYLESHEET
   Construction Financial Authority Platform
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Roboto+Mono:wght@400;500&display=swap');

/* ── CSS Custom Properties ──────────────────────────── */
:root {
  --navy:       #1B3A6B;
  --navy-dark:  #0D1F3C;
  --navy-mid:   #2A4F8A;
  --gold:       #C8922A;
  --gold-light: #E8B04A;
  --green:      #1B6B1B;
  --red:        #C0392B;
  --white:      #FAFAFA;
  --cream:      #FEF9F0;
  --charcoal:   #2C2C2C;
  --gray-light: #F5F5F5;
  --gray-mid:   #DDDDDD;
  --gray-text:  #666666;
  --shadow-sm:  0 2px 8px rgba(27,58,107,0.08);
  --shadow-md:  0 8px 32px rgba(27,58,107,0.12);
  --shadow-lg:  0 16px 64px rgba(27,58,107,0.18);
  --radius:     4px;
  --radius-md:  8px;
  --transition: 0.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, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { font-size: 1.05rem; line-height: 1.75; color: var(--charcoal); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.mono { font-family: 'Roboto Mono', monospace; }

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 31, 60, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 146, 42, 0.2);
  transition: var(--transition);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
/* ── Nav Logo Image Override (fixes global img height:auto conflict) ── */
.nav-logo img {
  height: 46px !important;
  width: auto !important;
  display: block;
  max-width: none;
}


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

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition) !important;
  white-space: nowrap;
}

.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,146,42,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Hero Section ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/01_Homepage_Hero_Revenue_Is_Up_Profit_Is_Missing.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Mobile: flat dark overlay — photo stays subtle, text stays readable */
  background: rgba(13, 31, 60, 0.82);
}

/* Desktop only: gradient opens up the right side to show the construction site */
@media (min-width: 769px) {
  .hero-bg::after {
    background: linear-gradient(
      to right,
      rgba(13, 31, 60, 0.93) 0%,
      rgba(13, 31, 60, 0.90) 30%,
      rgba(13, 31, 60, 0.60) 50%,
      rgba(13, 31, 60, 0.25) 70%,
      rgba(13, 31, 60, 0.05) 100%
    );
  }
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
}

.hero h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-item .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Question Section ────────────────────────────────── */
.question-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.question-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/04_Where_Did_The_Money_Go_After_Hours_Contractor.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.question-section .container { position: relative; z-index: 1; }

.big-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.big-question .q-gold { color: var(--gold); }

.question-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ── Proof Case Section ─────────────────────────────── */
.proof-section {
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.proof-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.proof-headline { margin-bottom: 8px; }
.proof-headline-2 {
  color: var(--red);
  margin-bottom: 32px;
}

.proof-story p { margin-bottom: 16px; color: #444; }

.proof-callout {
  background: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.proof-number {
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-number-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.proof-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 12px;
}

.proof-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.proof-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.proof-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,31,60,0.9));
  padding: 32px 24px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}

/* ── Guide / Will Section ────────────────────────────── */
.guide-section {
  background: var(--cream);
  padding: 100px 0;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.credential-badge {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.credential-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.credential-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.credential-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.credential-detail {
  font-size: 0.78rem;
  color: var(--gray-text);
  line-height: 1.4;
}

.guide-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.guide-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.guide-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

.guide-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.6;
}

/* ── Plan Section ────────────────────────────────────── */
.plan-section {
  background: var(--navy-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.plan-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/07_Contractor_Financial_Dashboard_Command_Center.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}

.plan-section .container { position: relative; z-index: 1; }

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}

.plan-step {
  position: relative;
  padding: 40px 32px;
  border: 1px solid rgba(200,146,42,0.2);
  text-align: center;
}

.plan-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  z-index: 2;
  background: var(--navy-dark);
  padding: 0 4px;
}

.plan-number {
  font-family: 'Roboto Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,146,42,0.2);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.plan-step h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.plan-step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── Tiers / Pricing ─────────────────────────────────── */
.tiers-section {
  background: var(--gray-light);
  padding: 100px 0;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tier-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.02);
}

.tier-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.tier-header {
  padding: 28px;
  background: var(--navy);
  text-align: center;
}

.tier-card.featured .tier-header { background: var(--gold); }

.tier-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.tier-card.featured .tier-label { color: rgba(0,0,0,0.6); }

.tier-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.tier-card.featured .tier-name { color: var(--navy-dark); }

.tier-price {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.tier-card.featured .tier-price { color: var(--navy-dark); }

.tier-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tier-target {
  font-size: 0.82rem;
  color: var(--gray-text);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-mid);
}

.tier-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.tier-feature {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--charcoal);
  align-items: flex-start;
}

.tier-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-anchor {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: rgba(200,146,42,0.06);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--gray-text);
  font-style: italic;
}

/* ── Scorecard Section ───────────────────────────────── */
.scorecard-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.scorecard-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.score-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 48px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.score-zone {
  padding: 32px 24px;
  text-align: center;
}

.score-zone.red-zone { background: linear-gradient(135deg, #8B1A0E, #C0392B); }
.score-zone.yellow-zone { background: linear-gradient(135deg, #7A5C00, #C8922A); }
.score-zone.green-zone { background: linear-gradient(135deg, #0F4A0F, #1B6B1B); }

.zone-score {
  font-family: 'Roboto Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 8px;
}

.zone-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.zone-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ── Tools Section ───────────────────────────────────── */
.tools-section {
  background: var(--white);
  padding: 100px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.tool-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tool-card:hover::before { transform: scaleX(1); }

.tool-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.tool-card h4 { color: var(--navy); margin-bottom: 10px; }
.tool-card p { font-size: 0.875rem; color: var(--gray-text); }

.tool-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ── Trades Section ──────────────────────────────────── */
.trades-section {
  background: var(--cream);
  padding: 80px 0;
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.trade-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.trade-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--navy);
}

.trade-card:hover .trade-name { color: var(--white); }
.trade-card:hover .trade-icon { transform: scale(1.1); }

.trade-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  transition: transform var(--transition);
}

.trade-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.trade-keyword {
  font-size: 0.75rem;
  color: var(--gray-text);
  margin-top: 4px;
  transition: color var(--transition);
}

.trade-card:hover .trade-keyword { color: rgba(255,255,255,0.6); }

/* ── Learning Center Preview ─────────────────────────── */
.intel-preview {
  background: var(--white);
  padding: 80px 0;
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.intel-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.intel-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.intel-card-category {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
}

.intel-card-body { padding: 24px; }

.intel-card h4 {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.intel-card p { font-size: 0.85rem; color: var(--gray-text); }

.intel-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 16px;
}

/* ── Morgan Section ──────────────────────────────────── */
.morgan-section {
  background: var(--navy-dark);
  padding: 80px 0;
}

.morgan-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  max-width: 720px;
  margin: 48px auto 0;
  overflow: hidden;
}

.morgan-header {
  background: rgba(200,146,42,0.1);
  border-bottom: 1px solid rgba(200,146,42,0.2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.morgan-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.morgan-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.morgan-status {
  font-size: 0.75rem;
  color: var(--gold);
}

.morgan-chat {
  padding: 24px;
  min-height: 200px;
}

.morgan-bubble {
  background: rgba(255,255,255,0.06);
  border-radius: 0 12px 12px 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 85%;
}

.morgan-bubble strong { color: var(--gold); }

.morgan-input-row {
  padding: 16px 24px;
  border-top: 1px solid rgba(200,146,42,0.15);
  display: flex;
  gap: 12px;
}

.morgan-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.morgan-input::placeholder { color: rgba(255,255,255,0.3); }
.morgan-input:focus { border-color: var(--gold); }

.morgan-send {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--transition);
}

.morgan-send:hover { background: var(--gold-light); }

/* ── Case Studies / Proof Stories ────────────────────── */
.stories-section {
  background: var(--gray-light);
  padding: 80px 0;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-image {
  height: 220px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-card:hover .story-image img { transform: scale(1.03); }

.story-body { padding: 28px; }

.story-trade {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.story-body h4 { color: var(--navy); margin-bottom: 10px; font-size: 1rem; }
.story-body p { font-size: 0.875rem; color: var(--gray-text); margin-bottom: 16px; }

.story-result {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}

/* ── Florida Market Section ──────────────────────────── */
.florida-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.florida-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/06_Florida_Construction_Intelligence_Aerial_Market.jpg');
  background-size: cover;
  background-position: center;
}

.florida-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.93), rgba(13,31,60,0.82));
}

.florida-section .container { position: relative; z-index: 1; }

.florida-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.florida-stat {
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
}

.stat-number {
  font-family: 'Roboto Mono', monospace;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.stat-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* ── Benchmark Report Section ────────────────────────── */
.benchmark-section {
  background: var(--navy);
  padding: 80px 0;
}

.benchmark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benchmark-cover {
  position: relative;
}

.benchmark-cover img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

.benchmark-content h2 { color: var(--white); margin-bottom: 16px; }
.benchmark-content p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

.benchmark-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.benchmark-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.benchmark-metric::before {
  content: '📊 ';
}

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 { margin-bottom: 20px; }
.cta-section p { margin-bottom: 40px; color: var(--gray-text); font-size: 1.05rem; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand-tagline {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-brand-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 6px;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--gold); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  margin: 0;
}

.footer-disclaimer {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.72rem !important;
  font-style: italic;
}

/* ── Section Headers ─────────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header.centered { text-align: center; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--gold); }
.section-header.light p { color: rgba(255,255,255,0.7); }

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 580px;
  margin-top: 12px;
}

.section-header.centered p { margin: 12px auto 0; }

/* ── Divider ─────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0;
}

.section-header.centered .gold-divider { margin: 16px auto; }

/* ── Utility ─────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── Mobile Sticky CTA ───────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold);
  padding: 14px 24px;
  text-align: center;
}

.mobile-cta a {
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .benchmark-inner { grid-template-columns: 1fr; }
  .benchmark-cover img { max-width: 240px; }
}

@media (min-width: 769px) {
  .hero-bg::after {
    background: linear-gradient(
      to right,
      rgba(13, 31, 60, 0.93) 0%,
      rgba(13, 31, 60, 0.90) 30%,
      rgba(13, 31, 60, 0.60) 50%,
      rgba(13, 31, 60, 0.25) 70%,
      rgba(13, 31, 60, 0.05) 100%
    );
  }
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
}

.hero h1 .accent { color: var(--gold); }

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-item .dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Question Section ────────────────────────────────── */
.question-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.question-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/04_Where_Did_The_Money_Go_After_Hours_Contractor.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.question-section .container { position: relative; z-index: 1; }

.big-question {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.big-question .q-gold { color: var(--gold); }

.question-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ── Proof Case Section ─────────────────────────────── */
.proof-section {
  background: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.proof-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.proof-headline { margin-bottom: 8px; }
.proof-headline-2 {
  color: var(--red);
  margin-bottom: 32px;
}

.proof-story p { margin-bottom: 16px; color: #444; }

.proof-callout {
  background: var(--navy-dark);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}

.proof-number {
  font-family: 'Roboto Mono', monospace;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-number-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.proof-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 12px;
}

.proof-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.proof-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.proof-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,31,60,0.9));
  padding: 32px 24px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}

/* ── Guide / Will Section ────────────────────────────── */
.guide-section {
  background: var(--cream);
  padding: 100px 0;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.credential-badge {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.credential-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.credential-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.credential-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.credential-detail {
  font-size: 0.78rem;
  color: var(--gray-text);
  line-height: 1.4;
}

.guide-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.guide-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.guide-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

.guide-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.6;
}

/* ── Plan Section ────────────────────────────────────── */
.plan-section {
  background: var(--navy-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.plan-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/07_Contractor_Financial_Dashboard_Command_Center.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
}

.plan-section .container { position: relative; z-index: 1; }

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}

.plan-step {
  position: relative;
  padding: 40px 32px;
  border: 1px solid rgba(200,146,42,0.2);
  text-align: center;
}

.plan-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  z-index: 2;
  background: var(--navy-dark);
  padding: 0 4px;
}

.plan-number {
  font-family: 'Roboto Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,146,42,0.2);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.plan-step h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.plan-step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── Tiers / Pricing ─────────────────────────────────── */
.tiers-section {
  background: var(--gray-light);
  padding: 100px 0;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tier-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.02);
}

.tier-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.tier-header {
  padding: 28px;
  background: var(--navy);
  text-align: center;
}

.tier-card.featured .tier-header { background: var(--gold); }

.tier-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.tier-card.featured .tier-label { color: rgba(0,0,0,0.6); }

.tier-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.tier-card.featured .tier-name { color: var(--navy-dark); }

.tier-price {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

.tier-card.featured .tier-price { color: var(--navy-dark); }

.tier-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tier-target {
  font-size: 0.82rem;
  color: var(--gray-text);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-mid);
}

.tier-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.tier-feature {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--charcoal);
  align-items: flex-start;
}

.tier-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-anchor {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: rgba(200,146,42,0.06);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--gray-text);
  font-style: italic;
}

/* ── Scorecard Section ───────────────────────────────── */
.scorecard-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.scorecard-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.score-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 48px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.score-zone {
  padding: 32px 24px;
  text-align: center;
}

.score-zone.red-zone { background: linear-gradient(135deg, #8B1A0E, #C0392B); }
.score-zone.yellow-zone { background: linear-gradient(135deg, #7A5C00, #C8922A); }
.score-zone.green-zone { background: linear-gradient(135deg, #0F4A0F, #1B6B1B); }

.zone-score {
  font-family: 'Roboto Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 8px;
}

.zone-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.zone-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ── Tools Section ───────────────────────────────────── */
.tools-section {
  background: var(--white);
  padding: 100px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.tool-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tool-card:hover::before { transform: scaleX(1); }

.tool-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.tool-card h4 { color: var(--navy); margin-bottom: 10px; }
.tool-card p { font-size: 0.875rem; color: var(--gray-text); }

.tool-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ── Trades Section ──────────────────────────────────── */
.trades-section {
  background: var(--cream);
  padding: 80px 0;
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.trade-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.trade-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--navy);
}

.trade-card:hover .trade-name { color: var(--white); }
.trade-card:hover .trade-icon { transform: scale(1.1); }

.trade-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  transition: transform var(--transition);
}

.trade-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.trade-keyword {
  font-size: 0.75rem;
  color: var(--gray-text);
  margin-top: 4px;
  transition: color var(--transition);
}

.trade-card:hover .trade-keyword { color: rgba(255,255,255,0.6); }

/* ── Learning Center Preview ─────────────────────────── */
.intel-preview {
  background: var(--white);
  padding: 80px 0;
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.intel-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.intel-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.intel-card-category {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
}

.intel-card-body { padding: 24px; }

.intel-card h4 {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.intel-card p { font-size: 0.85rem; color: var(--gray-text); }

.intel-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 16px;
}

/* ── Morgan Section ──────────────────────────────────── */
.morgan-section {
  background: var(--navy-dark);
  padding: 80px 0;
}

.morgan-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  max-width: 720px;
  margin: 48px auto 0;
  overflow: hidden;
}

.morgan-header {
  background: rgba(200,146,42,0.1);
  border-bottom: 1px solid rgba(200,146,42,0.2);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.morgan-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy-dark);
  flex-shrink: 0;
}

.morgan-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.morgan-status {
  font-size: 0.75rem;
  color: var(--gold);
}

.morgan-chat {
  padding: 24px;
  min-height: 200px;
}

.morgan-bubble {
  background: rgba(255,255,255,0.06);
  border-radius: 0 12px 12px 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 85%;
}

.morgan-bubble strong { color: var(--gold); }

.morgan-input-row {
  padding: 16px 24px;
  border-top: 1px solid rgba(200,146,42,0.15);
  display: flex;
  gap: 12px;
}

.morgan-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.morgan-input::placeholder { color: rgba(255,255,255,0.3); }
.morgan-input:focus { border-color: var(--gold); }

.morgan-send {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background var(--transition);
}

.morgan-send:hover { background: var(--gold-light); }

/* ── Case Studies / Proof Stories ────────────────────── */
.stories-section {
  background: var(--gray-light);
  padding: 80px 0;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-image {
  height: 220px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-card:hover .story-image img { transform: scale(1.03); }

.story-body { padding: 28px; }

.story-trade {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.story-body h4 { color: var(--navy); margin-bottom: 10px; font-size: 1rem; }
.story-body p { font-size: 0.875rem; color: var(--gray-text); margin-bottom: 16px; }

.story-result {
  font-family: 'Roboto Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}

/* ── Florida Market Section ──────────────────────────── */
.florida-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.florida-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/06_Florida_Construction_Intelligence_Aerial_Market.jpg');
  background-size: cover;
  background-position: center;
}

.florida-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.93), rgba(13,31,60,0.82));
}

.florida-section .container { position: relative; z-index: 1; }

.florida-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.florida-stat {
  text-align: center;
  padding: 32px;
  border: 1px solid rgba(200,146,42,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
}

.stat-number {
  font-family: 'Roboto Mono', monospace;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.stat-label { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* ── Benchmark Report Section ────────────────────────── */
.benchmark-section {
  background: var(--navy);
  padding: 80px 0;
}

.benchmark-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benchmark-cover {
  position: relative;
}

.benchmark-cover img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}

.benchmark-content h2 { color: var(--white); margin-bottom: 16px; }
.benchmark-content p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

.benchmark-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.benchmark-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.benchmark-metric::before {
  content: '📊 ';
}

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  background: var(--cream);
  padding: 100px 0;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 { margin-bottom: 20px; }
.cta-section p { margin-bottom: 40px; color: var(--gray-text); font-size: 1.05rem; }

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand-tagline {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-brand-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 6px;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--gold); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  margin: 0;
}

.footer-disclaimer {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.72rem !important;
  font-style: italic;
}

/* ── Section Headers ─────────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header.centered { text-align: center; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--gold); }
.section-header.light p { color: rgba(255,255,255,0.7); }

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 580px;
  margin-top: 12px;
}

.section-header.centered p { margin: 12px auto 0; }

/* ── Divider ─────────────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0;
}

.section-header.centered .gold-divider { margin: 16px auto; }

/* ── Utility ─────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── Mobile Sticky CTA ───────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold);
  padding: 14px 24px;
  text-align: center;
}

.mobile-cta a {
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .benchmark-inner { grid-template-columns: 1fr; }
  .benchmark-cover img { max-width: 240px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--navy-dark);
    padding: 24px;
    gap: 0;
    border-top: 1px solid rgba(200,146,42,0.2);
  }
  .nav-links.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: block;
  }
  .nav-links.open .btn-nav {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  .nav-toggle { display: flex; }
  .btn-nav.desktop-only { display: none; }
  .mobile-cta { display: block; }
  body { padding-bottom: 56px; }
  .grid-3 { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .plan-steps { grid-template-columns: 1fr; }
  .plan-step:not(:last-child)::after { display: none; }
  .score-zones { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .intel-grid { grid-template-columns: 1fr; }
  .florida-stats { grid-template-columns: 1fr; }
  .hero-trust { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .benchmark-metrics { grid-template-columns: 1fr; }

  /* ── CRITICAL MOBILE FIXES ── */
  .nav-inner { padding: 0 16px; }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 1rem; }
  .btn-group { flex-direction: column; gap: 12px; }
  .btn-group .btn { width: 100%; justify-content: center; text-align: center; }
  .plan-steps { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .proof-callout { padding: 28px 20px; }
  .proof-number { font-size: 3rem; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .benchmark-inner { grid-template-columns: 1fr; }
  .florida-stats { grid-template-columns: 1fr; }
  .score-zones { grid-template-columns: 1fr; }
  .nav-logo img { height: 36px !important; }

}

@media (max-width: 480px) {
  .trades-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { flex-direction: column; gap: 10px; }
  h1 { font-size: 1.9rem; line-height: 1.15; }
  .hero h1 { font-size: 1.9rem; }
  h2 { font-size: 1.35rem; }
  .nav-inner { padding: 0 12px; }
  .nav-logo img { height: 32px !important; }
  .container { padding: 0 16px; }
  .hero { padding-top: 80px; }
  .big-question { font-size: 2rem; }
  .proof-number { font-size: 2.8rem; }
  .tier-card.featured { transform: none; }
  .tool-card { padding: 24px 20px; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
}

/* ── Custom Cursor (desktop only) ───────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none !important; }
}

/* ── Credential Trust Bar ──────────────────────────────────────── */
#credential-trust-bar {
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6 !important;
}

@media (max-width: 768px) {
  #credential-trust-bar {
    font-size: 11px !important;
    padding: 8px 12px !important;
    letter-spacing: 0.01em !important;
  }
}

@media (max-width: 480px) {
  #credential-trust-bar {
    font-size: 10px !important;
    padding: 6px 10px !important;
  }
}

/* ── Mobile Nav Specific Fixes ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
    gap: 8px;
  }
  .nav-logo {
    flex: 1;
    overflow: hidden;
  }
  .nav-logo img {
    height: 36px !important;
    max-width: calc(100vw - 80px) !important;
    object-fit: contain;
    object-position: left center;
  }
  .nav-toggle {
    display: flex !important;
    flex-shrink: 0;
    margin-left: auto;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-links:not(.open) {
    display: none !important;
  }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px 20px 24px;
    z-index: 999;
    border-top: 1px solid rgba(200,146,42,0.2);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-links.open li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open a {
    padding: 14px 0;
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
  }
  .nav-links.open .btn-nav {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    display: block;
    padding: 14px;
    border-radius: 4px;
  }
}

/* ── Force all 2-col grids to stack on mobile ───────────────────── */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns: 1fr 2fr"],
  [style*="grid-template-columns:auto 1fr"],
  [style*="grid-template-columns: auto 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Also fix the benchmark cover */
  [style*="grid-template-columns:1fr 1fr"] > div,
  [style*="grid-template-columns: 1fr 1fr"] > div {
    order: unset !important;
  }
  /* Fix any ordered divs so text comes before image on mobile */
  [style*="order:2"],
  [style*="order: 2"] {
    order: 2 !important;
  }
  [style*="order:1"],
  [style*="order: 1"] {
    order: 1 !important;
  }
}
