/* ============================================================
   CHICAGO FLEET WRAPS — SUBPAGE DESIGN SYSTEM
   Enhanced visual CSS for all interior pages
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --gold: #F5C518;
  --gold-dim: rgba(245,197,24,.15);
  --gold-glow: rgba(245,197,24,.35);
  --black: #0A0A0A;
  --dark: #111111;
  --steel: #1C1C1C;
  --panel: #181818;
  --border: rgba(255,255,255,.09);
  --border-gold: rgba(245,197,24,.25);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.52);
  --H: 'Barlow Condensed', sans-serif;
  --B: 'Barlow', sans-serif;
  --radius: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,.45);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--B);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── FONT LOADING ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ── TRUST RIBBON ── */
.trib {
  background: #0d0d0d;
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap;
}
.trib-inner {
  display: inline-flex;
  gap: 48px;
  animation: ticker 40s linear infinite;
}
.trib-inner span {
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  font-family: var(--H);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.trib-inner span strong { color: var(--gold); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STICKY HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
  transition: box-shadow .3s;
}
header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.42);
  border-bottom-color: var(--border-gold);
}
.hbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  overflow: visible;
}
.logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo img { height: 38px; width: auto; display: block; }

/* ── NAVIGATION ── */
nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.ni { position: relative; }
.ni > button {
  background: none;
  border: none;
  color: rgba(255,255,255,.68);
  font-family: var(--B);
  font-size: .84rem;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  transition: color .15s, background .15s;
}
.ni > button:hover, .ni > button.act {
  color: #fff;
  background: rgba(255,255,255,.07);
}
.ni > button svg { opacity: .55; transition: opacity .15s; }
.ni:hover > button svg { opacity: 1; }
.drop {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #181818;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  min-width: 230px;
  box-shadow: 0 12px 40px rgba(0,0,0,.42);
  z-index: 200;
}
.drop::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.ni:hover .drop, .ni:focus-within .drop { display: block; }
.drop a {
  display: block;
  padding: 9px 14px;
  color: rgba(255,255,255,.68);
  font-size: .83rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.drop a:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
}
.drop hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 5px 0;
}

/* ── HEADER RIGHT ── */
.hright {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hphone {
  color: var(--gold);
  font-family: var(--H);
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
  letter-spacing: .1em;
  transition: color .15s;
}
.hphone:hover { color: #fff; }
.gmb-hdr {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(245,197,24,.07);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}
.gmb-hdr:hover { background: rgba(245,197,24,.12); }
.gmb-hdr span {
  font-size: .73rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--H);
  letter-spacing: .04em;
}
.btn-est {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--gold);
  color: #000;
  font-family: var(--H);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, transform .15s;
  animation: pulse 2.4s infinite;
}
.btn-est:hover { background: #e6b800; transform: translateY(-1px); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,.4); }
  60% { box-shadow: 0 0 0 10px rgba(245,197,24,0); }
}
.hambtn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: .9rem;
  min-height: 44px;
}

/* ── MOBILE NAV ── */
.mnav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: #111;
  border-top: 1px solid var(--border);
}
.mnav.open { display: flex; }
.mnav a {
  padding: 10px 14px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  border-radius: 6px;
  text-decoration: none;
  display: block;
  transition: background .12s, color .12s;
}
.mnav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.mnav .mg {
  font-family: var(--H);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.2);
  padding: 10px 14px 4px;
}

/* ── ENHANCED PAGE HERO BANNER ── */
.page-hero-banner {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #0d0d0d;
  margin-bottom: 0;
}
.page-hero-banner .hero-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  opacity: .52;
  display: block;
  animation: heroKenBurns 8s ease-in-out forwards;
  will-change: transform;
}
@keyframes heroKenBurns {
  0% { transform: scale(1.08) translate(1%, .5%); }
  100% { transform: scale(1) translate(0, 0); }
}
.page-hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.57) 0%, rgba(0,0,0,.25) 55%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,.46) 0%, transparent 55%);
  z-index: 1;
}
.page-hero-banner .hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
  z-index: 3;
}
.page-hero-banner .hero-text {
  position: absolute;
  left: 64px;
  bottom: 56px;
  z-index: 2;
  max-width: 700px;
}
.page-hero-banner .hero-eyebrow {
  font-family: var(--H);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-20px);
  animation: heroFadeIn .6s .2s ease-out forwards;
}
.page-hero-banner .hero-h1,
.page-hero-banner .hero-h2 {
  font-family: 'Bebas Neue', var(--H);
  font-size: clamp(44px, 7vw, 86px);
  line-height: .92;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.42);
  margin: 0;
  opacity: 0;
  transform: translateX(-30px);
  animation: heroFadeIn .7s .4s ease-out forwards;
}
.page-hero-banner .hero-h1 span,
.page-hero-banner .hero-h2 span { color: var(--gold); }
.page-hero-banner .hero-subline {
  font-family: var(--H);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,.72);
  margin-top: 10px;
  opacity: 0;
  transform: translateX(-20px);
  animation: heroFadeIn .6s .65s ease-out forwards;
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateX(0); }
}
/* Diagonal accent stripe */
.page-hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 55%, rgba(245,197,24,.04) 100%);
  pointer-events: none;
  z-index: 2;
}
/* Scanline texture */
.page-hero-banner .hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,.025) 3px,
    rgba(0,0,0,.025) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* ── SUPPLEMENTAL IMAGE BLOCK ── */
.supp-image-block {
  margin: 2.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.supp-image-block img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.supp-image-block:hover img { transform: scale(1.02); }
.supp-image-block figcaption {
  background: var(--panel);
  color: var(--muted);
  font-size: 12px;
  font-family: var(--B);
  padding: 10px 16px;
  letter-spacing: .5px;
  border-top: 1px solid var(--border);
}

/* ── MAIN CONTENT AREA ── */
main { display: block; }
.content, .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--H);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 20px;
  line-height: 1.05;
}
h2 {
  font-family: var(--H);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 56px 0 16px;
  line-height: 1.1;
  position: relative;
  padding-bottom: 14px;
}
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(245,197,24,.4);
}
h3 {
  font-family: var(--H);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin: 32px 0 12px;
  letter-spacing: .02em;
}
h4 {
  font-family: var(--H);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 24px 0 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
p {
  line-height: 1.78;
  color: var(--text);
  margin: 0 0 18px;
  font-size: 1.02rem;
  max-width: 72ch;
}
p.lead {
  font-size: 1.18rem;
  color: rgba(255,255,255,.85);
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 78ch;
}
.body-text { font-size: 1.02rem; line-height: 1.78; }
ul, ol { padding-left: 22px; margin: 0 0 20px; }
li { margin-bottom: 9px; line-height: 1.68; }
a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: #fff; }
strong { color: #fff; font-weight: 700; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ── CTA BAR ── */
.cta-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: var(--H);
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background .18s, transform .18s, border-color .18s;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  animation: pulse 2.4s infinite;
}
.btn-primary:hover { background: #e6b800; transform: translateY(-2px); color: #000; }

/* ── TRUST BADGES ── */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 20px 0 32px;
  padding: 16px 20px;
  background: var(--steel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.trust span {
  font-size: .84rem;
  color: var(--muted);
  font-family: var(--H);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust span strong { color: var(--gold); }

/* ── SERVICES LIST ── */
.services {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}
.services li {
  padding: 12px 16px;
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  transition: border-color .2s, background .2s;
  margin: 0;
}
.services li:hover {
  border-color: var(--border-gold);
  background: var(--panel);
}

/* ── GRID LAYOUTS ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 28px 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
}

/* ── CARD COMPONENTS ── */
.card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.card h3 { margin-top: 0; }

/* ── PRICING TABLE ── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .95rem;
}
.pricing-table th {
  background: var(--steel);
  color: var(--gold);
  font-family: var(--H);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--gold);
}
.pricing-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.pricing-table tr:hover td { background: rgba(255,255,255,.03); }
.pricing-table tr:last-child td { border-bottom: none; }

/* ── TESTIMONIAL GRID ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 28px 0;
}
.testimonial-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--gold);
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

/* ── FAQ ITEMS ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--B);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.faq-item p { margin: 0; color: var(--muted); }

/* ── SECTION DIVIDERS ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
  position: relative;
}
.section-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--gold);
}

/* ── HIGHLIGHT BOXES ── */
.highlight-box {
  background: linear-gradient(135deg, #1a1a0a 0%, #1a1a1a 100%);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box h3 { margin-top: 0; color: var(--gold); }

/* ── STAT COUNTERS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  display: block;
  font-family: var(--H);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-family: var(--H);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

/* ── FINAL CTA SECTION ── */
.final-cta {
  background: linear-gradient(135deg, #161606 0%, #1a1a1a 100%);
  border: 2px solid var(--border-gold);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.final-cta h2 {
  color: var(--gold);
  margin-top: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.final-cta h2::after { display: none; }
.final-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }

/* ── LEAD MAGNET SECTION ── */
#lead-magnet {
  background: #0d0d0d;
  border-top: 3px solid var(--gold);
  padding: 64px 32px;
}
#lead-magnet > div {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 2px solid var(--gold);
  padding: 56px 0 28px;
}
.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.fb h4 {
  font-family: var(--H);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.28);
  margin-bottom: 14px;
}
.fb p, .fb a {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.52);
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.5;
  transition: color .12s;
}
.fb a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1140px;
  margin: 36px auto 0;
  padding: 20px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: .74rem;
  color: rgba(255,255,255,.2);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.ft-sm { display: flex; gap: 10px; margin-top: 14px; }
.ft-sm a {
  display: flex;
  align-items: center;
  justify-content: center;
  width:36px;
  height:36px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  transition: background .15s, border-color .15s;
}
.ft-sm a:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}
.ft-sm svg { width: 20px; height: 20px; display: block; }

/* ── ENTRANCE ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp .6s ease-out forwards;
}
.fade-in-delay-1 { animation-delay: .1s; }
.fade-in-delay-2 { animation-delay: .2s; }
.fade-in-delay-3 { animation-delay: .3s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Intersection Observer driven animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STICKY MOBILE CTA ── */
.sc2 {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,.97);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  z-index: 990;
  align-items: center;
  gap: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.sc2 a {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-family: var(--H);
  font-weight: 800;
  font-size: .88rem;
  background: var(--gold);
  color: #000;
  text-decoration: none;
  display: block;
}
.sc2 button {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-family: var(--H);
  font-weight: 800;
  font-size: .88rem;
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
}

/* ── ACCESSIBILITY ── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  padding: 12px 24px;
  z-index: 9999;
  font-family: var(--H);
  font-weight: 800;
  border-radius: 0 0 8px 8px;
  transition: top .2s;
  text-decoration: none;
}
.skip-nav:focus { top: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .fg { grid-template-columns: 1fr 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat-item:nth-child(2) { border-right: none; }
  .stats-row .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .hright .gmb-hdr { display: none; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hambtn { display: block; }
  .hright .gmb-hdr { display: none; }
  .sc2 { display: flex; }
  .page-hero-banner { height: 320px; }
  .page-hero-banner .hero-text { left: 24px; bottom: 32px; }
  .page-hero-banner .hero-h1,
  .page-hero-banner .hero-h2 { font-size: clamp(32px, 9vw, 56px); }
  .content, .container { padding: 32px 16px 60px; }
  .fg { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  #lead-magnet > div { grid-template-columns: 1fr; gap: 32px; }
  .final-cta { padding: 32px 24px; }
  .trust { padding: 12px 16px; }
}
@media (max-width: 480px) {
  .fg { grid-template-columns: 1fr; }
  .page-hero-banner { height: 260px; }
  .cta-bar { flex-direction: column; }
  .cta-bar .btn { text-align: center; justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .trib-inner { animation: none; }
  .page-hero-banner .hero-bg { animation: none; }
}

/* ── PRINT ── */
@media print {
  header, .trib, .sc2, footer, .mnav { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}


/* ── Team Section ──────────────────────────────────────────────────────── */
.team-section {
  padding: 64px 0 48px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.team-heading {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--gold, #F5C518);
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.team-intro {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: #1a1a1a;
  border: 1px solid rgba(245,197,24,.18);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(245,197,24,.35);
  border-color: rgba(245,197,24,.45);
}
.team-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s ease;
}
.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
}
.team-info {
  padding: 20px 22px 24px;
}
.team-name {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #fff;
  margin: 0 0 4px;
}
.team-role {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold, #F5C518);
  margin: 0 0 12px;
}
.team-bio {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-info { padding: 14px 16px 18px; }
  .team-name { font-size: 1.3rem; }
  .team-bio { display: none; }
}
@media (max-width: 380px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-bio { display: block; }
}

/* Footer column headings (replaced h4 for heading hierarchy) */
.ft-col-head{font-family:var(--H);font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:12px;}

/* Ensure content links are distinguishable beyond color */
.content-body a[style*="color:var(--gold)"], .content-body a[style*="--gold"] { text-decoration: underline; text-underline-offset: 3px; }


/* ── CONTENT VISUAL ENHANCEMENTS ──────────────────────────────────────────── */

/* Remove max-width from p inside tables, grids, and cards so they don't break layouts */
table p,
.grid p,
.card p,
.services li,
.trust span,
.faq-item p,
.pricing-cta-row p,
.final-cta p,
.highlight-box p,
.stats-row p,
.team-bio,
footer p,
.fb p,
[style*="grid"] p,
[style*="display:grid"] p,
[style*="display: grid"] p {
  max-width: none;
}

/* Section separator before each H2 (except the first one) */
.content h2 + p,
.content h2 + ul,
.content h2 + ol,
.content h2 + div,
.content h2 + table {
  margin-top: 0;
}

/* Visual section break — gold accent line before H2 blocks */
.content h2.reveal,
.content h2 {
  margin-top: 64px;
  padding-top: 0;
}

/* First H2 in content gets less top margin */
.content h1 + p + div + div + img + h2,
.content h1 + p + div + div + h2 {
  margin-top: 40px;
}

/* Section block wrapper effect — subtle panel behind each content section */
.content-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 32px 0;
}
.content-section h2 {
  margin-top: 0;
}
.content-section h2::after {
  width: 40px;
}

/* ── CONTENT BODY PROSE IMPROVEMENTS ──────────────────────────────────────── */

/* Constrain prose text width for readability but allow full-width for structured elements */
.content > p,
.content > .body-text {
  max-width: 72ch;
}

/* Ensure lists in content don't get constrained */
.content ul,
.content ol {
  max-width: none;
}

/* Body-text paragraphs */
.body-text {
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 18px;
}

/* ── VISUAL SECTION DIVIDERS BETWEEN MAJOR SECTIONS ──────────────────────── */

/* Add a subtle top border to h2 elements to visually separate sections */
.content h2 {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 48px;
  margin-top: 0;
}

/* First h2 in content doesn't need the top border */
.content > h2:first-of-type,
.content h1 ~ h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 48px;
}

/* ── ENHANCED FAQ SECTION ──────────────────────────────────────────────────── */

/* FAQ section heading */
.content h2:last-of-type {
  /* FAQ heading gets same gold treatment */
}

/* FAQ items — enhanced styling */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  transition: background .15s;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 1.05rem;
  font-family: var(--B);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  max-width: none;
  font-size: .97rem;
}

/* ── PRICING TABLE ENHANCEMENTS ──────────────────────────────────────────── */

/* Pricing CTA rows — override p max-width */
.pricing-cta-row p {
  max-width: none;
  margin: 0;
}

/* ── INLINE IMAGE STYLES ──────────────────────────────────────────────────── */

/* Full-width images within content */
.content > img,
.content img[style*="width:100%"] {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ── SERVICES LIST ENHANCEMENTS ──────────────────────────────────────────── */

/* Services grid items — gold accent on left border */
.services li {
  border-left: 3px solid transparent;
  transition: border-color .2s, background .2s;
}
.services li:hover {
  border-left-color: var(--gold);
}

/* ── GRID CARD ENHANCEMENTS ──────────────────────────────────────────────── */

/* Card headings — remove top margin when first child */
.card > h3:first-child,
.card > h4:first-child {
  margin-top: 0;
}

/* Card paragraph text — no max-width constraint */
.card p {
  max-width: none;
  font-size: .95rem;
  color: var(--muted);
}

/* ── CONTENT SECTION VISUAL RHYTHM ──────────────────────────────────────── */

/* Add a gold left border accent to the first paragraph after each H2 */
.content h2 + p {
  border-left: 3px solid rgba(245,197,24,.3);
  padding-left: 16px;
  color: rgba(255,255,255,.82);
}

/* Remove the border from body-text class paragraphs after h2 */
.content h2 + p.body-text {
  border-left: 3px solid rgba(245,197,24,.3);
  padding-left: 16px;
}

/* ── MOBILE RESPONSIVE ADJUSTMENTS ──────────────────────────────────────── */

@media (max-width: 768px) {
  p {
    max-width: 100%;
  }
  p.lead {
    max-width: 100%;
  }
  .content h2 {
    padding-top: 36px;
    margin-top: 0;
  }
}
