
/* ── HEADER WIDTH CONSTRAINT ── */
.header-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 1px 15px 0 15px;
}


/* ============================================================
   BAR COP — HOMEPAGE
   Exact design system match to product pages
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep-navy:   #000000;
  --navy:        #070E15;
  --card-bg:     #070E15;
  --gold:        #C9A84C;
  --gold-hover:  #b8943f;
  --steel:       #64A0BC;
  --steel-hover: #3a7090;
  --salmon:      #C03828;
  --white:       #FFFFFF;
  --off-white:   #F7F6F2;
  --light-gray:  #E8E6E0;
  --body-blue:   #C8D8E8;
  --dark-text:   #1A1A1A;
  --muted-dark:  #6B8FA8;
  --muted-light: #717D88;

  --font-headline: 'Barlow Condensed', sans-serif;
  --font-italic:   'Lora', serif;
  --font-body:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --section-pad-y: 80px;
  --content-max:   1250px;
  --content-pad-x: 15px;
}

body {  background-color: #070E15; font-family: var(--font-body); color: var(--dark-text); }

.hp-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad-x);
}

/* ── SHARED COMPONENTS ── */
.sec-label {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.sec-h2-dark {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
}

.sec-h2-light {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 14px;
}

.sec-sub-dark {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: rgba(200,216,232,0.60);
  line-height: 1.7;
}

.sec-sub-light {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--muted-light);
  line-height: 1.7;
}

.btn-gold {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-gold:hover { background: var(--gold-hover); color: var(--white); text-decoration: none; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.1s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: var(--white); text-decoration: none; transform: translateY(-1px); }

.pill {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  font-family: var(--font-headline);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hp-hero {
  background: var(--deep-navy);
  padding: 80px 0 64px;
}

.hp-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}

.hp-hero-h1 {
  font-family: var(--font-headline);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}

.hp-hero-loss {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(54px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--salmon);
  line-height: 1;
  margin-bottom: 20px;
}


.hp-hero-h1 em {
  font-style: normal;
  color: var(--gold);
}

.hp-hero-para {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: #717D88;
  max-width: 640px;
  margin-bottom: 36px;
}

.hp-hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Diagnostic card — hero right */
.hp-diag-card {
  background: #050E18;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 35px 26px;
  width: 100%;
  height: 534px;
  position: relative;
  
}

.hp-diag-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0px;
  background: var(--gold);
  border-radius: 0px 0px 0 0;
}

.hp-diag-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}

.hp-diag-card h3 {
  font-family: var(--font-headline);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hp-diag-card p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  color: #717D88;
  line-height: 1.65;
  margin-bottom: 0px;
}

.hp-diag-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.hp-diag-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  color: #717D88;
  line-height: 1.5;
}

.hp-diag-steps li:last-child { border-bottom: none; }

.hp-diag-num {
  font-family:'Barlow',sans-serif; 
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0px;
  color: var(--gold);
  min-width: 20px;
  margin-top: 1px;
}

.hp-diag-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family:'Barlow',sans-serif; 
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.hp-diag-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }

.hp-diag-note {
  font-size: 11px;
  color: #717D88;
  text-align: center;
  margin-top: 17px;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   PROOF STRIP
══════════════════════════════════════ */
.hp-proof {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hp-proof-cols {
  display: flex;
  align-items: stretch;
}

.hp-proof-col {
  flex: 1;
  text-align: center;
  padding: 4px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hp-proof-col:last-child { border-right: none; }

.hp-proof-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hp-proof-lbl {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  line-height: 1;
}

/* ══════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════ */
.hp-problem {
  background: var(--deep-navy);
  padding: var(--section-pad-y) 0;
}

.hp-problem-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: center;
  margin: 48px 0;
}

.hp-problem-label {
  display: block;
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hp-problem-headline {
  font-family: var(--font-headline);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hp-problem-body {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(200,216,232,0.60);
  margin-bottom: 20px;
}

.hp-problem-closer {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.hp-problem-stat {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}

.hp-stat-label {
  display: block;
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 16px;
}

.hp-stat-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--salmon);
  line-height: 1;
  margin-bottom: 8px;
}

.hp-stat-sublabel {
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.hp-stat-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.hp-stat-body {
  font-size: 10px;
  line-height: 1.55;
  color: rgba(200,216,232,0.5);
}

/* Problem table */
.hp-table-wrap { max-width: 1220px; margin: 0 auto; }

.hp-table {
  width: 100%;
  border-collapse: collapse;
}

.hp-table thead tr { border-bottom: 1px solid rgba(255,255,255,0.08); }

.hp-table thead th {
  padding: 20px 2px;
  text-align: left;
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,216,232,0.5);
}

.hp-table thead th:first-child  { width: 28%; }
.hp-table thead th:nth-child(2) { width: 36%; }
.hp-table thead th:last-child   { width: 36%; }

.hp-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hp-table tbody tr:last-child { border-bottom: none; }

.hp-table tbody td { padding: 20px 2px; vertical-align: middle; }

.pt-leak {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.2;
}

.pt-cost {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1.2;
}

.pt-fix {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--steel);
  line-height: 1.55;
}

.hp-table-closer {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   THE 6 PRODUCTS
══════════════════════════════════════ */
.hp-products {
  background: var(--white);
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--light-gray);
}

.hp-products-intro {
  
  margin-bottom: 25px;
}

/* Product cards grid — sidebar left, cards right */
.hp-prod-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.hp-prod-sidebar h3 {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.hp-prod-sidebar-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hp-prod-sidebar p {
  font-size: 14px;
  color: var(--dark-text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.hp-sidebar-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 24px 0;
}

.hp-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.hp-sidebar-nav li {
  border-bottom: 1px solid var(--light-gray);
}

.hp-sidebar-nav li:first-child { border-top: 1px solid var(--light-gray); }

.hp-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s;
}

.hp-sidebar-nav li a:hover { color: var(--navy); }

/* Product cards */
.hp-prod-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hp-prod-card {
  background: var(--navy);
  border-radius: 4px;
  display: block;
  text-decoration: none;
  transition: transform 0.15s;
  position: relative;
  overflow: hidden;
}

.hp-prod-card:hover { transform: translateY(-2px); }

.hp-prod-card-top-bar {
  height: 0px;
  width: 100%;
}

.bar-gold  { background: var(--gold); }
.bar-steel { background: var(--steel); }

.hp-prod-card-inner {
  padding: 24px 22px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  border-radius: 0 0 4px 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hp-prod-card-type {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.type-gold  { color: var(--gold); }
.type-steel { color: var(--steel); }

.hp-prod-card h4 {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hp-prod-card p {
  font-size: 13px;
  color: #717D88;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.hp-prod-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hp-prod-price {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

.hp-prod-price span {
   font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #717D88;
  letter-spacing: 0;
}

.hp-prod-link {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
}

.hp-prod-link-gold { color: var(--gold); }

/* ══════════════════════════════════════
   DIAGNOSTIC BAND
══════════════════════════════════════ */
.hp-diag-band {
  background: var(--deep-navy);
  padding: var(--section-pad-y) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hp-diag-band-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.hp-diag-band-left h2 {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 16px;
}

.hp-diag-band-left h2 em {
  font-style: normal;
  color: var(--gold);
}

.hp-diag-band-left p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  color: #717D88;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 620px;
}

.hp-diag-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.hp-diag-outcome {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  background: var(--navy);
}

.hp-diag-outcome strong {
  display: block;
  font-family:'Barlow',sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.hp-diag-outcome span {
  font-size: 12px;
  color: #717D88;
  line-height: 1.5;
}

/* Diagnostic right panel */
.hp-diag-panel {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.hp-diag-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0px;
  background: var(--gold);
  border-radius: 0px 0px 0 0;
}

.hp-diag-q-count {
  display: block;
  font-family: var(--font-headline);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hp-diag-q-label {
  display: block;
  font-family:'Barlow',sans-serif; 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.hp-diag-rule {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 24px;
}

.hp-diag-panel p {
  font-size: 13px;
  color: #717D88;
  line-height: 1.65;
  margin-bottom: 28px;
}

.hp-diag-panel-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family:'Barlow',sans-serif; 
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 18px;
}

.hp-diag-panel-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }

.hp-diag-panel-note {
  font-size: 11px;
  color: #717D88;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.hp-how {
  background: var(--white);
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.hp-how-col {
  padding: 24px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
}

.hp-how-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 16px;
}

.hn-navy   { color: var(--navy); }
.hn-steel  { color: var(--steel); }
.hn-gold   { color: var(--gold); }

.hp-how-title {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.hp-how-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dark-text);
}

.hp-how-closer {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--muted-light);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   REVENUE HUB BLOG
══════════════════════════════════════ */
.hp-blog {
  background: var(--navy);
  padding: var(--section-pad-y) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.hp-blog-card {
  background: var(--deep-navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  overflow: hidden;
}

.hp-blog-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.hp-blog-card-top-bar {
  height: 2px;
}

.hp-blog-card-body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-blog-cat {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cat-gold   { color: var(--gold); }
.cat-steel  { color: var(--steel); }
.cat-salmon { color: var(--salmon); }

.hp-blog-card h4 {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.hp-blog-card p {
  font-size: 13px;
  color: rgba(200,216,232,0.55);
  line-height: 1.6;
  flex: 1;
}

.hp-blog-card-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hp-blog-read {
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
}

.hp-blog-time {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

.hp-blog-cta-row {
  text-align: center;
  margin-top: 40px;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.hp-faq {
  background: var(--white);
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--light-gray);
}

.hp-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin-top: 40px;
}

.hp-faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--light-gray);
}

.hp-faq-item:first-child { border-top: 1px solid var(--light-gray); }

.hp-faq-q {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.hp-faq-a {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark-text);
}

.hp-faq-a a { color: var(--steel); text-decoration: none; }
.hp-faq-a a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   CLOSE
══════════════════════════════════════ */
.hp-close {
  background: var(--deep-navy);
  padding: 100px 0 80px;
  text-align: center;
}

.hp-close-label {
  display: block;
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hp-close-word1 {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(64px, 11vw, 90px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.hp-close-word2 {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(64px, 11vw, 90px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 48px;
}

.hp-close-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hp-close-sub {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.hp-close-sub a {
  color: var(--steel);
  text-decoration: none;
}

.hp-close-sub a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .hp-hero-grid      { grid-template-columns: 1fr; gap: 40px; }
  .hp-problem-grid   { grid-template-columns: 1fr; gap: 32px; }
  .hp-prod-layout    { grid-template-columns: 1fr; }
  .hp-prod-cards     { grid-template-columns: 1fr 1fr; }
  .hp-diag-band-grid { grid-template-columns: 1fr; }
  .hp-diag-outcomes  { grid-template-columns: 1fr 1fr; }
  .hp-blog-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hp-hero, .hp-problem, .hp-products, .hp-diag-band, .hp-how, .hp-blog, .hp-faq, .hp-close
    { padding-top: 48px; padding-bottom: 48px; }
  .hp-proof          { padding: 20px 0; }
  .hp-prod-cards     { grid-template-columns: 1fr; }
  .hp-how-grid       { grid-template-columns: 1fr; }
  .hp-blog-grid      { grid-template-columns: 1fr; }
  .hp-faq-grid       { grid-template-columns: 1fr; }
  .hp-proof-cols     { flex-wrap: wrap; }
  .hp-proof-col {
    flex: 1 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(74,136,168,0.1);
    padding: 14px;
  }
  .hp-proof-col:nth-child(odd) { border-right: 1px solid rgba(74,136,168,0.12); }
  .hp-diag-outcomes  { grid-template-columns: 1fr; }
}
</style>


<style>
/* ============================================================
   BAR COP — HOMEPAGE v4
   New CSS only. Existing site CSS loads globally.
   ============================================================ */

/* Hero salmon dollar anchor */
.hp-hero-loss {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(48px, 7vw, 78px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--salmon);
  line-height: 1;
  margin-bottom: 12px;
}

.hp-hero-loss-cap {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
  margin-bottom: 28px;
}

/* Bundle callout strip — between products and diagnostic band */
.hp-bundle-strip {
  background: var(--deep-navy);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hp-bundle-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}

.hp-bundle-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 12px;
}

.hp-bundle-headline {
  font-family: var(--font-headline);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hp-bundle-body {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  color: #717D88;
  max-width: 580px;
  margin-bottom: 22px;
}

.hp-bundle-math-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hp-bundle-price {
  font-family: var(--font-headline);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
}

.hp-bundle-price-was {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #717D88;
  text-decoration: line-through;
  margin-left: 8px;
}

.hp-bundle-save {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 2px;
}

.hp-bundle-cta-wrap { text-align: center; }

.hp-bundle-cta {
  display: inline-block;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--white);
  border-radius: 3px;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}
.hp-bundle-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }

.hp-bundle-cta-note {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  color: #717D88;
  letter-spacing: 0.5px;
}

@media (max-width: 760px) {
  .hp-bundle-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   REVENUE HUB — REDESIGNED EDITORIAL LAYOUT
   ============================================================ */

/* Override existing .hp-blog to use white background */
.hp-blog {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.hp-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

.hp-blog-header-left { flex: 1; min-width: 320px; }

.hp-blog-h-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hp-blog-h-title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.0;
  margin-bottom: 12px;
}

.hp-blog-h-sub {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--muted-light);
  line-height: 1.6;
  max-width: 560px;
}

.hp-blog-h-right {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 20px;
  border: 1px solid var(--steel);
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.hp-blog-h-right:hover {
  background: var(--steel);
  color: var(--white);
  text-decoration: none;
}

/* Editorial grid: 1 featured + 2 stacked */
.hp-blog-editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

/* FEATURED ARTICLE — left side, hero treatment */
.hp-blog-feature {
  display: block;
  text-decoration: none;
  position: relative;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.hp-blog-feature:hover { transform: translateY(-3px); }

.hp-blog-feature-image {
  height: 220px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 60%, #0a1828 100%);
  position: relative;
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
}

.hp-blog-feature-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192,56,40,0.08) 0%, transparent 50%);
}

.hp-blog-feature-tag {
  position: absolute;
  top: 20px;
  left: 24px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}

.hp-blog-feature-num {
  position: absolute;
  bottom: 20px;
  right: 28px;
  font-family: var(--font-headline);
  font-size: 88px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  z-index: 1;
}

.hp-blog-feature-body {
  padding: 32px 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-blog-feature-cat {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.hp-blog-feature h3 {
  font-family: var(--font-headline);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hp-blog-feature-excerpt {
  font-size: 14px;
  color: #717D88;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.hp-blog-feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hp-blog-feature-read {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.hp-blog-feature-time {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}

/* STACKED CARDS — right side */
.hp-blog-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-blog-stack-card {
  display: grid;
  grid-template-columns: 6px 1fr;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  flex: 1;
  min-height: 220px;
}

.hp-blog-stack-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(13,27,42,0.10);
}

.hp-stack-accent { width: 0px; }
.acc-gold   { background: var(--gold); }
.acc-steel  { background: var(--steel); }
.acc-salmon { background: var(--salmon); }

.hp-stack-card-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hp-stack-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hp-stack-cat {
  font-family: var(--font-headline);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cat-g { color: var(--gold); }
.cat-s { color: var(--steel); }
.cat-r { color: var(--salmon); }

.hp-stack-divider {
  width: 24px;
  height: 1px;
  background: var(--light-gray);
}

.hp-stack-time {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-light);
}

.hp-blog-stack-card h4 {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hp-blog-stack-card p {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.6;
  margin-bottom:0px;
  flex: 1;
}

.hp-stack-read {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
}

/* Topic strip below editorial grid */
.hp-blog-topics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--light-gray);
  margin-top: 8px;
}

.hp-blog-topics-label {
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-right: 8px;
}

.hp-blog-topic-pill {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hp-blog-topic-pill:hover {
  border-color: var(--steel);
  color: var(--steel);
  text-decoration: none;
}

@media (max-width: 900px) {
  .hp-blog-editorial { grid-template-columns: 1fr; }
  .hp-blog-feature { min-height: auto; }
  .hp-blog-feature-image { height: 180px; }
}

@media (max-width: 640px) {
  .hp-blog-feature-num { font-size: 64px; }
  .hp-blog-feature-body { padding: 24px 22px 22px; }
  .hp-blog-stack-card h4 { font-size: 16px; }
}
























/* ============================================================
   BAR COP -- PRODUCT PAGES (UNIVERSAL)
   One CSS block covers all 6 product pages.
   Add to style.scss. Each product page HTML references
   these classes -- no per-page CSS needed.
   ============================================================ */


/* ── 1. RESET ──────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* ── 2. CSS VARIABLES ──────────────────────────────────────── */

:root {
  --deep-navy:   #000000;
  --navy:        #070E15;
  --card-bg:     #070E15;
  --gold:        #C9A84C;
  --gold-hover:  #b8943f;
  --steel:       #64A0BC;
  --steel-hover: #3a7090;
  --salmon:      #C03828;
  --white:       #FFFFFF;
  --off-white:   #F7F6F2;
  --light-gray:  #E8E6E0;
  --body-blue:   #C8D8E8;
  --dark-text:   #1A1A1A;
  --muted-dark:  #6B8FA8;
  --muted-light: #717D88;

  --font-headline: 'Barlow Condensed', sans-serif;
  --font-italic:   'Lora', serif;
  --font-body:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --section-pad-y:       80px;
  --section-pad-y-tight: 32px;
  --content-max:         1250px;
  --content-pad-x:       15px;
}


/* ── 3. TYPOGRAPHY BASE ─────────────────────────────────────── */

body {
  font-family: var(--font-body);
  color: var(--dark-text);
}


/* ── 4. LAYOUT UTILITIES ────────────────────────────────────── */

.pf-wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad-x);
}

.pf-wrap-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--content-pad-x);
}


/* ── 5. SHARED COMPONENTS ───────────────────────────────────── */

.sec-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C8A748;
  display: block;
  margin-bottom: 12px;
}

.sec-h2-dark {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 14px;
}

.sec-h2-light {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 14px;
}

.sec-sub-dark {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #717D88;
  line-height: 1.7;
}

.sec-sub-light {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--muted-light);
  line-height: 1.7;
}

.btn-gold {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-gold:hover {
  background: var(--gold-hover);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.1s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.pill {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  font-family: var(--font-headline);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}


/* ── 6. SECTION 1 -- HERO ───────────────────────────────────── */

.s1-hero {
  background: var(--deep-navy);
  padding: 80px 0 64px;
}

.s1-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.34fr 0.66fr;
  gap: 56px;
  align-items: center;
}

.hero-h1 {
  font-family: var(--font-headline);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-loss-big {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(54px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--salmon);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-loss-caption {
  font-family:'Barlow',sans-serif; 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
  margin-bottom: 28px;
}

.hero-para {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: #717D88;
  max-width: 670px;
  margin-bottom: 36px;
}

.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-vis-wrap {
  max-width: 420px;
  margin: 0 auto;
  padding: 0px;
  background: #000000;
  border-radius: 10px;
 
  
  }

.hero-vis-wrap img {
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
  border-radius: 4px;
  margin-bottom: 10px;
  width: 100%;
}

.hero-spec-row {
  display: flex;
  justify-content: center;
  font-size: 10px;
  text-transform: uppercase;

}


.hero-spec-row:last-child  { border-bottom: none; }
.hero-spec-row:first-child { margin-top: 5px; }

.spec-l { color: rgba(200, 216, 232, 0.60); }

.spec-r {
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.spec-gold  { color: var(--gold); }
.spec-steel { color: var(--steel); }


/* ── 7. SECTION 2 -- PROOF STRIP ────────────────────────────── */

.s2-proof {
  background: var(--navy);
  padding: var(--section-pad-y-tight) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.proof-cols {
  display: flex;
  align-items: stretch;
}

.proof-col {
  flex: 1;
  text-align: center;
  padding: 4px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.proof-col:last-child { border-right: none; }

.proof-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.proof-lbl {
  font-family:'Barlow',sans-serif; 
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  line-height: 1.5;
}

.proof-rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0.3;
  margin: 30px 0;
}

.trust-line { text-align: center; }

.trust-lbl {
  display: block;
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.trust-line p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 20px;
}


/* ── 8. SECTION 3 -- PAIN HERO + PAIN TABLE (LIGHT) ─────────── */

.s3-pain {
  background: #F7F6F2;
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.pain-header {
  text-align: center;
  margin-bottom: 40px;
}

.pain-hero-wrap {
  margin: 56px auto;
  max-width: 1100px;
}

.pain-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: center;
}

.pain-hero-label {
  display: block;
  font-family:'Barlow',sans-serif; 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pain-hero-headline {
  font-family: var(--font-headline);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--navy) !important;
  line-height: 1.05;
  margin-bottom: 20px;
}

.pain-hero-body {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-light);
  margin-bottom: 15px;
}

.pain-hero-closer {
  font-family:'Barlow Condensed',sans-serif; 
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--navy) !important;
}

.pain-hero-stat {
  background: #050E18;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}

.pain-stat-label {
  display: block;
  font-family:'Barlow',sans-serif; 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white) !important;
  margin-bottom: 16px;
}

.pain-stat-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--salmon) !important;
  line-height: 1;
  margin-bottom: 8px;
}

.pain-stat-sublabel {
  font-family:'Barlow',sans-serif; 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white) !important;
  margin-bottom: 24px;
}

.pain-stat-rule {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 24px;
}

.pain-stat-body {
  font-size: 13px;
  line-height: 1.65;
  color: #717D88;
}

.pain-table-wrap { max-width: 1220px; margin: 40px auto; }

.pain-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 0px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  outline: 1px solid var(--light-gray);
  box-shadow: 0 0 0 1px var(--light-gray);
}

.pain-table thead tr {
  background: #050E18;
}

.pain-table thead th {
  padding: 20px 16px;
  text-align: left;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.pain-table thead th:first-child  { width: 30%; }
.pain-table thead th:nth-child(2) { width: 35%; }
.pain-table thead th:last-child   { width: 35%; }

.pain-table tbody tr {
  border-bottom: 1px solid var(--light-gray);
  background: var(--white);
}

.pain-table tbody tr:last-child { border-bottom: none; }

.pain-table tbody td {
  padding: 18px 16px;
  vertical-align: middle;
}

.pt-leak {
 font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0px;
  color:  var(--navy)  !important;
  line-height: 1.2;
}

.pt-cost {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0px;
  color: var(--salmon) !important;
  line-height: 1.2;
}

.pt-fix {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0px;
  color:  var(--navy)  !important;
  line-height: 1.55;
}

.pain-closer {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--muted-light);
  line-height: 1.6;
}

.pain-sub-center { max-width: 700px; margin-left: auto; margin-right: auto; }


/* ── 9. SECTION 4 -- WHAT'S INSIDE ──────────────────────────── */

.s4-inside {
  background: var(--white);
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--light-gray);
}

.inside-anchor {
  text-align: center;
  max-width: 900px;
  margin: 48px auto;
}

.inside-anchor-h {
  display: block;
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.inside-anchor-p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto;
}

.inside-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
  margin-top: 30px;
}

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

.screenshot-cell img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #465768;
  border-radius: 4px;
}

.screenshot-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #717D88;
  text-align: center;
  margin-top: 8px;
}

.tool-inv-block {
  background: var(--navy);
  border: 1px solid rgba(74,136,168,0.2);
  border-radius: 4px;
  padding: 20px 30px;
}

.tool-inv-lbl {
  display: block;
  font-family:'Barlow',sans-serif; 
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
}

.tool-format-card {
  padding: 20px 0 20px 16px;
  margin-bottom: 16px;
}

.tool-format-card:last-of-type { margin-bottom: 0; }
.tfc-gold   { border-left: 3px solid var(--gold); }
.tfc-steel  { border-left: 3px solid var(--steel); }
.tfc-salmon { border-left: 3px solid var(--salmon); }

.tfc-big {
  display: block;
  font-family: var(--font-headline);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

.tfc-big-gold   { color: var(--gold); }
.tfc-big-steel  { color: var(--steel); }
.tfc-big-salmon { color: var(--salmon); }

.tfc-name {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.tfc-desc {
  font-size: 12px;
  color: #717D88;
  line-height: 1.55;
}

.tool-inv-closer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--steel);
  text-align: center;
  line-height: 1.6;
}

.s4-inside .sec-sub-light { max-width: 750px; }


/* ── 10. SECTION 5 -- BUY CARDS ─────────────────────────────── */

.s5-buy {
  background: var(--deep-navy);
  padding: var(--section-pad-y) 0 64px;
}

.buy-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.buy-header .sec-label { text-align: center; }

.buy-header .sec-label { text-align: center; }

.buy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.bcard {
  background: var(--card-bg);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bcard-gold  { border: 1px solid rgba(255, 255, 255, 0.08); }
.bcard-steel { border: 1px solid rgba(255, 255, 255, 0.08); }

.bcard-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 2px;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.bcard-badge-gold  { background: var(--gold); }
.bcard-badge-steel { background: var(--steel); }

.bcard-top {
  padding: 28px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bcard-type {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bct-gold  { color: var(--gold); }
.bct-steel { color: var(--steel); }

.bcard-name {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.bcard-desc {
  font-size: 13px;
  color: #717D88;
  line-height: 1.6;
}

.bcard-price { padding: 16px 24px; }

.price-big {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-headline);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.price-note {
font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #717D88;
}

.price-del {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-top: 12px;
}

.bcard-cta { padding: 16px 24px 18px; }

.bcard-cta input[type="submit"],
.bcard-cta button {
  display: block;
  width: 100%;
  padding: 15px 36px;
  border: none;
  border-radius: 3px;
  font-family:'Barlow',sans-serif; 
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.bcard-cta input[type="submit"]:hover,
.bcard-cta button:hover { transform: translateY(-1px); }

/* Sub-links under order buttons (brochure / audit report) */
.bcard-sub-link {
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--steel);
}

.bcard-sub-link a,
.bcard-sub-link a:link,
.bcard-sub-link a:visited {
  color: var(--steel) !important;
  text-decoration: none !important;
}

.bcard-sub-link a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.cta-gold  { background: var(--gold);  color: var(--white); }
.cta-gold:hover  { background: var(--gold-hover); }
.cta-steel { background: var(--steel); color: var(--white); }
.cta-steel:hover { background: var(--steel-hover); }

.bcard-list { padding: 6px 24px 24px; flex: 1; }

.bcard-list-lbl {
  display: block;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.cl-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #717D88;
  line-height: 1.4;
  margin-bottom: 7px;
}

.cl-ck-gold  { flex-shrink: 0; font-weight: 700; font-size: 11px; margin-top: 1px; color: var(--gold); }
.cl-ck-steel { flex-shrink: 0; font-weight: 700; font-size: 11px; margin-top: 1px; color: var(--steel); }

.bundle-math {
  margin: 0 24px 24px;
  padding: 20px;
  background: rgba(74,136,168,0.06);
  border: 1px solid rgba(74,136,168,0.18);
  border-radius: 3px;
}

.bundle-math-lbl {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}

.bm-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(74,136,168,0.1);
  font-size: 13px;
}

.bm-row:last-of-type { border-bottom: none; }

.bm-l { color: #717D88; }

.bm-r {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #717D88;
  text-decoration: line-through;
}

.bm-row.total .bm-l { font-weight: 700; color: var(--white); }
.bm-row.total .bm-r { font-size: 14px; color: var(--gold); text-decoration: none; }

.bm-save {
  margin-top: 12px;
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.buy-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.26);
  line-height: 1.8;
}

.buy-footer strong { color: #717D88; }
.buy-footer a { color: var(--steel); text-decoration: none; }
.buy-footer a:hover { text-decoration: underline; }


/* ── 11. SECTION 6 -- AFTER YOU BUY ─────────────────────────── */

.s6-after {
  background: var(--white);
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--light-gray);
}

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

.after-col {
  padding: 24px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
}

.after-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 16px;
}

.an-navy   { color: var(--navy); }
.an-steel  { color: var(--steel); }
.an-salmon { color: var(--salmon); }

.after-title {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.after-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--dark-text);
}

.after-closer {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.6;
}


/* ── 12. SECTION 7 -- FAQ ───────────────────────────────────── */

.s7-faq {
  background: var(--white);
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--light-gray);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin-top: 40px;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child { border-top: 1px solid var(--light-gray); }

.faq-q {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.faq-a {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--dark-text);
}

.faq-a a { color: var(--steel); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }


/* ── 13. SECTION 8 -- CLOSE ─────────────────────────────────── */

.s8-close {
  background: var(--deep-navy);
  padding: 100px 0 80px;
  text-align: center;
}

.close-label {
  display: block;
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.close-word1 {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(64px, 11vw, 90px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.close-word2 {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(64px, 11vw, 90px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 40px;
}

.close-rule {
  border: none;
  border-top: 1px solid var(--white);
  width: 160px;
  margin: 0 auto 14px;
}

.close-stat {
  display: block;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
}

.close-tagline {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--steel);
  margin-bottom: 48px;
}

.close-risk {
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.52);
  text-align: center;
}

.close-cta-wrap { margin-bottom: 0; }

.close-btn {
  display: inline-block;
  padding: 17px 36px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.close-btn:hover {
  background: var(--gold-hover);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.close-sub-wrap { margin-top: 16px; }

.close-sub-link {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--steel);
  text-decoration: none;
}

.close-sub-link:hover { text-decoration: underline; }


/* ── 14. RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-grid         { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual       { order: 2; }
  .hero-copy         { order: 1; }
  .inside-grid       { grid-template-columns: 1fr; gap: 32px; }
  .pain-hero-grid    { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .buy-cards         { grid-template-columns: 1fr; }
  .after-grid        { grid-template-columns: 1fr; }
  .faq-grid          { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .s1-hero, .s3-pain, .s4-inside, .s5-buy, .s6-after, .s7-faq, .s8-close
    { padding-top: 48px; padding-bottom: 48px; }
  .s2-proof          { padding: 20px 0; }
  .s1-topbar         { margin-bottom: 32px; }
  .hero-h1           { font-size: 36px; }
  .sec-h2-dark,
  .sec-h2-light      { font-size: 28px; }
  .close-word1,
  .close-word2       { font-size: 64px; }
  .screenshot-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .proof-cols        { flex-wrap: wrap; }
  .proof-col {
    flex: 1 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(74,136,168,0.1);
    padding: 14px;
  }
  .proof-col:nth-child(odd) {
    border-right: 1px solid rgba(74,136,168,0.12);
  }
  .hero-vis-wrap img { width: 100%; }
}






/* ── OPERATORS FIND HOMEPAGE SECTION WRAPPER ── */
.s-findings {
  background: #ffffff;
  padding: 80px 0 88px;
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
}

/* ── SECTION HEADER ── */
.findings-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 5px;

}
.findings-header-left {}
.findings-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: #050E18;
  line-height: 1.0;
  margin: 6px 0 0 0;
}
.findings-header-right {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: #6B8FA8;
  line-height: 1.75;
  max-width: 380px;
  flex-shrink: 0;
  margin: 0;
  text-align: right;
}

/* ── FOUR CARD GRID ── */
.findings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* ── STAT CARD ── */
.findings-card {
  background: #050E18;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.findings-card-inner {
  padding: 20px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Area label */
.findings-card-area {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.findings-card--gold .findings-card-area   { color: #C9A84C; }
.findings-card--steel .findings-card-area  { color: #C9A84C; }
.findings-card--salmon .findings-card-area { color: #C9A84C; }

/* Big number */
.findings-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

/* Sub-label */
.findings-card-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #717D88;
  line-height: 1.45;
  margin-bottom: 14px;
}

/* Divider */
.findings-card-rule {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 12px;
}

/* Body text */
.findings-card-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  color: #717D88;
  line-height: 1.65;
  flex: 1;
}

/* ── FOOTER ROW ── */
.findings-footer {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #F7F6F2;
  border-radius: 4px;
  padding: 28px 32px;
  border-left: 4px solid #C9A84C;
}

/* Left stat */
.findings-footer-stat {
  flex-shrink: 0;
  min-width: 220px;
}
.findings-footer-stat-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 6px;
}
.findings-footer-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: #050E18;
  line-height: 1;
  margin-bottom: 4px;
}
.findings-footer-stat-note {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* Divider between stat and CTA */
.findings-footer-stat {
  padding-right: 40px;
  border-right: 1px solid #E8E6E0;
}

/* Right CTA */
.findings-footer-cta {
  flex: 1;
}
.findings-footer-cta-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.7;
  margin: 0 0 14px 0;
}
.findings-footer-link {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64A0BC !important;
  text-decoration: none !important;
  border-bottom: 2px solid #64A0BC;
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.findings-footer-link:hover {
  color: #050E18!important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .findings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .findings-header { flex-direction: column; align-items: flex-start; }
  .findings-header-right { text-align: left; max-width: 100%; }
  .findings-grid { grid-template-columns: 1fr; }
  .findings-footer { flex-direction: column; gap: 20px; }
  .findings-footer-stat { padding-right: 0; border-right: none; border-bottom: 1px solid #E8E6E0; padding-bottom: 20px; min-width: auto; width: 100%; }
  .s-findings { padding: 56px 0 64px; }
}



















<!-- ============================================================
  BAR COP — QUICK START DIAGNOSTIC
  Interactive 30-question YES/NO diagnostic.
  Routes to Profit Fix, Revenue Fix, or Traffic Fix product pages.
  Built from locked design standard: profit_fix_product_page_LOCKED.html
  No em dashes. No double hyphens. Operator voice throughout.
============================================================ -->

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #070E15;
  --card-bg:    #070E15;
  --navy-deep:  #000000;
  --navy-mid:   #11171E;
  --steel:      #64A0BC;
  --gold:       #C9A84C;
  --sage:       #4A7C6F;
  --salmon:     #C03828;
  --white:      #FFFFFF;
  --off-white:  #F7F6F2;
  --light-gray: #E8E6E0;
  --mid-gray:   #8A9BB0;
  --dark-text:  #1A1A1A;
  --body-muted: #555555;
}

/* ── BASE ── */
.pf-wrap { max-width:1250px; margin:0 auto; padding:0 15px; }
@media(max-width:600px){ .pf-wrap{ padding:0 16px; } }

.lbl { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; display:block; margin-bottom:10px; }
.lbl-steel  { color:var(--steel); }
.lbl-gold   { color: #717D88; }
.lbl-dim    { color:rgba(255,255,255,0.38); }
.lbl-salmon { color:var(--salmon); }

.h1 { font-family:'Barlow Condensed',sans-serif; font-size:clamp(32px,5vw,64px); font-weight:800; text-transform:uppercase; line-height:1.0; letter-spacing:-1px; color:var(--white); margin-bottom:16px; }
.h2 { font-family:'Barlow Condensed',sans-serif; font-size:clamp(24px,3vw,38px); font-weight:800; text-transform:uppercase; line-height:1.05; letter-spacing:0.3px; color:var(--navy); margin-bottom:14px; }
.h2-light { color:var(--white); }
.h2 .gold, .h2-light .gold { color:var(--gold); }
.h2 .steel, .h2-light .steel { color:var(--steel); }
.h2 .salmon { color:var(--salmon); }

.subhead { font-family:'Lora',serif; font-style:italic; font-size:16px; line-height:1.7; color:var(--body-muted); margin-bottom:20px; }
.subhead-light { color:rgba(255,255,255,0.52); }
.body { font-size:15px; line-height:1.75; color:var(--dark-text); margin-bottom:14px; }
.small { font-size:13px; line-height:1.65; color:var(--body-muted); }

/* ── BUTTONS ── */
.btn-gold:link, .btn-gold:visited { color:var(--white); }
.btn-gold { font-family:'Barlow',sans-serif; font-size:15px; font-weight:600; letter-spacing:0px; text-transform:uppercase; background:var(--gold); color:var(--white); border:none; padding: 15px 36px; border-radius:3px; cursor:pointer; text-decoration:none; display:inline-block; transition:background 0.2s,transform 0.1s; }
.btn-gold:hover { background:#b8943f; color:var(--white); transform:translateY(-1px); text-decoration:none; }
.btn-ghost:link, .btn-ghost:visited { color: #717D88; }
.btn-ghost { font-family:'Barlow',sans-serif; font-size:15px; font-weight:600; letter-spacing:0px; text-transform:uppercase; background:transparent; color: #717D88; border:1px solid rgba(255,255,255,0.2); padding: 15px 36px; border-radius:3px; cursor:pointer; text-decoration:none; display:inline-block; transition:all 0.2s; }
.btn-ghost:hover { border-color:rgba(255,255,255,0.4); color:var(--white); text-decoration:none; }
.pill { font-family:'Barlow',sans-serif; font-size:9px; font-weight:600; letter-spacing:0px; text-transform:uppercase; color:rgba(255,255,255,0.4); border:1px solid rgba(255,255,255,0.1); border-radius:2px; padding:5px 12px; }

/* ── HERO ── */
.hero { background:var(--navy-deep); padding:80px 0 64px; text-align:center; min-height:calc(100vh - 450px); }
.hero-desc { font-family:'Lora',serif; font-style:italic; font-size:16px; line-height:1.7; color: #717D88; max-width:560px; margin:0 auto 28px; }
.hero-pills2 { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin-top:28px; }

/* ── PROGRESS BAR ── */
.prog-bar-wrap {
  background:var(--navy-mid);
  border-bottom:1px solid rgba(255,255,255,0.05);
  padding:20px 0;
  position:sticky; top:80px; z-index:200;
  display:none;
}
.prog-bar-inner { max-width:1250px; margin:0 auto; padding:0 15px; display:flex; align-items:center; gap:16px; }
.prog-lbl { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color: #717D88; flex-shrink:0; }
.prog-track { flex:1; height:3px; background:rgba(255,255,255,0.08); border-radius:2px; overflow:hidden; }
.prog-fill  { height:100%; background:var(--sage); border-radius:2px; width:0%; transition:width 0.35s ease; }
.prog-count { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; color: #717D88; flex-shrink:0; }

/* ── DIAGNOSTIC STAGE ── */
.diag-stage { background:var(--navy-deep); padding:80px 0 80px; display:none; }
.diag-stage.visible { display:block; }
.diag-center { max-width:720px; margin:0 auto; padding:0 15px; }

/* Category header */
.cat-hdr { text-align:center; margin-bottom:32px; padding-bottom:0px; border-bottom:0px solid rgba(255,255,255,0.05); }
.cat-badge { display:inline-block; font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; padding:4px 14px; border-radius:2px; margin-bottom:12px; }
.cb-profit  { background:rgba(201,168,76,0.15); color:var(--gold); }
.cb-revenue { background:rgba(74,136,168,0.15); color:var(--steel); }
.cb-traffic { background:rgba(74,124,111,0.15); color:var(--sage); }
.cat-title { font-family:'Barlow Condensed',sans-serif; font-size:clamp(20px,3vw,28px); font-weight:800; text-transform:uppercase; color:var(--white); letter-spacing:0.3px; margin-bottom:8px; }
.cat-desc { font-family:'Lora',serif; font-style:italic; font-size:14px; color: #717D88; line-height:1.6; }

/* Question card */
.q-card { background:var(--card-bg); border:1px solid rgba(74,136,168,0.18); border-radius:4px; padding:28px 28px 24px; }
.q-num { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color: #717D88; margin-bottom:14px; display:block; }
.q-text { font-size:17px; color:var(--white); line-height:1.55; margin-bottom:10px; font-weight:500; }
.q-cost { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--salmon); display:block; margin-bottom:24px; }
.q-btns { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.q-btn { font-family:'Barlow Condensed',sans-serif; font-size:16px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; padding:15px; border-radius:3px; border:2px solid; cursor:pointer; transition:all 0.15s; background:transparent; }
.q-btn-yes { border-color:rgba(74,124,111,0.35); color:rgba(74,124,111,0.8); }
.q-btn-yes:hover { border-color:var(--sage); color:var(--sage); background:rgba(74,124,111,0.08); }
.q-btn-yes.chosen { background:var(--sage); color:var(--white); border-color:var(--sage); }
.q-btn-no  { border-color:rgba(192,56,40,0.3); color:rgba(192,56,40,0.8); }
.q-btn-no:hover  { border-color:var(--salmon); color:var(--salmon); background:rgba(192,56,40,0.08); }
.q-btn-no.chosen  { background:var(--salmon); color:var(--white); border-color:var(--salmon); }

/* Nav row */
.q-nav { display:flex; justify-content:space-between; align-items:center; margin-top:18px; margin-bottom:150px; }
.q-back { font-family:'Barlow',sans-serif; font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color: #717D88; background:none; border:none; cursor:pointer; padding:8px 0; }
.q-back:hover { color:rgba(255,255,255,0.5); }
.q-next { font-family:'Barlow',sans-serif; font-size:13px; font-weight:600; letter-spacing:0px; text-transform:uppercase; background:var(--gold); color:var(--white); border:none; padding:12px 28px; border-radius:3px; cursor:pointer; transition:all 0.2s; opacity:0.3; pointer-events:none; }
.q-next.ready { opacity:1; pointer-events:auto; }
.q-next.ready:hover { background:#b8943f; }

/* ── START SCREEN ── */
.start-screen { text-align:center; padding:32px 0 16px; }
.start-screen p { font-size:15px; color:rgba(255,255,255,0.42); line-height:1.7; max-width:500px; margin:0 auto 32px; }
.start-meta { margin-top:16px; font-size:12px; color:rgba(255,255,255,0.2); }

/* ── RESULTS STAGE ── */
.results-stage { background:var(--navy-deep); padding:100px 0 80px; display:none; }
.results-stage.visible { display:block; }
.results-center { max-width:900px; margin:0 auto; padding:0 15px; }
.results-hdr { text-align:center; margin-bottom:40px; }
.results-intro { font-family:'Lora',serif; font-style:italic; font-size:14px; color: #717D88; line-height:1.7; max-width:560px; margin:12px auto 0; }

/* Score cards */
.score-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:32px; }
@media(max-width:680px){ .score-cards{ grid-template-columns:1fr; } }
.sc { background:var(--card-bg); border:1px solid rgba(74,136,168,0.18); border-radius:4px; padding:24px 20px; text-align:center; position:relative; transition:border-color 0.3s; }
.sc.winner { border-color:var(--gold); box-shadow:0 0 32px rgba(201,168,76,0.1); }
.sc-win-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--gold); color:var(--white); font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; padding:3px 12px; border-radius:2px; white-space:nowrap; }
.sc-cat { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:8px; }
.sc-name { font-family:'Barlow Condensed',sans-serif; font-size:18px; font-weight:800; text-transform:uppercase; color:var(--white); letter-spacing:0.3px; margin-bottom:16px; }
.sc-gap { font-family:'Barlow Condensed',sans-serif; font-size:34px; font-weight:700; color:var(--salmon); line-height:1; display:block; margin-bottom:4px; }
.sc-gap-lbl { font-family:'Barlow',sans-serif; font-size:9px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color: #717D88; display:block; margin-bottom:12px; }
.sc-nos { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color: #717D88;}

/* Top finding */
.top-finding { background:var(--navy-mid); border: 1px solid rgba(74, 136, 168, 0.14); border-radius:0 4px 4px 0; padding:28px 28px 28px 24px; margin-bottom:28px; }
.tf-label { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:10px; }
.tf-title { font-family:'Barlow Condensed',sans-serif; font-size:clamp(20px,3vw,26px); font-weight:800; text-transform:uppercase; color:var(--white); letter-spacing:0.3px; margin-bottom:8px; }
.tf-desc { font-size:14px; color: #717D88; line-height:1.65; }

/* Result CTA card */
.result-cta { background:var(--card-bg); border:1px solid var(--gold); box-shadow:0 0 32px rgba(201,168,76,0.08); border-radius:4px; padding:32px 28px; text-align:center; margin-bottom:16px; }
.rc-label { font-family:'Barlow',sans-serif; font-size:10px; font-weight:7600; letter-spacing:1px; text-transform:uppercase; display:block; margin-bottom:10px; }
.rc-title { font-family:'Barlow Condensed',sans-serif; font-size:clamp(18px,2.5vw,24px); font-weight:800; text-transform:uppercase; color:var(--white); letter-spacing:0.3px; margin-bottom:8px; }
.rc-desc { font-size:13px; color: #717D88; line-height:1.65; max-width:500px; margin:0 auto 24px; }
.rc-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* All three mini cards */
.all-three { margin-top:16px; }
.at-label { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color: #717D88; text-align:center; display:block; margin-bottom:14px; }
.at-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
@media(max-width:600px){ .at-grid{ grid-template-columns:1fr; } }
@media (max-width: 600px) {
  .hero { padding: 48px 0 48px; }
}
@media (max-width: 1024px) {
  .diag-stage {
    scroll-margin-top: 100px;
  }
}
.mini-card { background:var(--card-bg); border:1px solid rgba(74,136,168,0.14); border-radius:3px; padding:18px 16px; text-align:center; }
.mc-name { font-family:'Barlow Condensed',sans-serif; font-size:15px; font-weight:800; text-transform:uppercase; color:var(--white); letter-spacing:0.3px; margin-bottom:4px; }
.mc-gap { font-family:'Barlow',sans-serif; font-size:10px; font-weight:600; color:var(--salmon); display:block; margin-bottom:10px; }
.mc-price { font-family:'Barlow',sans-serif; font-size:10px; font-weight:7600; color: #717D88; display:block; margin-bottom:12px; }
.mc-link { font-family:'Barlow',sans-serif; font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--steel); text-decoration:none; }
.mc-link:hover { text-decoration:none; color: #FFFFFF; }

/* Restart */
.restart-wrap { text-align:center; margin-top:36px; }
.restart-btn { font-family:'Barlow',sans-serif; font-size:15px; font-weight:600; letter-spacing:0px; text-transform:uppercase; background:transparent; color:rgba(255,255,255,0.6); border:1px solid rgba(255,255,255,0.2); padding:14px 32px; border-radius:3px; cursor:pointer; text-decoration:none; display:inline-block; transition:all 0.2s; }
.restart-btn:hover { color:rgba(255,255,255,0.45); border-color:rgba(255,255,255,0.25); }

















































/* ── 21B. HOMEPAGE -- TESTIMONIALS ─────────────────────────── */
/* Insert this block in your unified stylesheet between the
   "HOW IT WORKS" section (21) and the "REVENUE HUB BLOG" section (22). */

.hp-testify {
  background: var(--off-white);
  padding: var(--section-pad-y) 0;
  border-bottom: 1px solid var(--light-gray);
}

.hp-testify-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.hp-testify-header .sec-h2-light { margin-bottom: 18px; }
.hp-testify-header .sec-sub-light { margin: 0 auto; }

/* Grid: 1 featured card (wider) + 2 standard cards */
.hp-testify-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

/* Card base */
.hp-testify-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.hp-testify-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(13,27,42,0.10);
  border-color: rgba(74,136,168,0.30);
}

/* Featured (Jacob / 12% theft) -- gets navy background and salmon stat */
.hp-testify-feature {
  background: var(--navy);
  border: none;
  position: relative;
  overflow: hidden;
}

.hp-testify-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0px;
  background: var(--salmon);
}

.hp-testify-feature::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(192,56,40,0.10) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Featured stat block (top of card, salmon) */
.hp-testify-stat-block {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.hp-testify-stat-num {
  font-family: var(--font-headline);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--salmon);
  line-height: 1;
}

.hp-testify-stat-lbl {
  font-family:'Barlow',sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  line-height: 1.4;
}

/* Standard tenure block (light cards, gold) */
.hp-testify-tenure {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--light-gray);
}

.hp-testify-tenure-num {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
}

.hp-testify-tenure-lbl {
  font-family:'Barlow',sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-light);
  line-height: 1.4;
}

/* Quote body */
.hp-testify-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Decorative open-quote mark */
.hp-testify-quote-mark {
  display: block;
  font-family: var(--font-italic);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.4;
  margin-bottom: 16px;
  color: var(--gold);
  opacity: 0.45;
}

.hp-testify-feature .hp-testify-quote-mark {
  color: var(--salmon);
  opacity: 0.55;
}

/* Quote text */
.hp-testify-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  flex: 1;
}

.hp-testify-card .hp-testify-quote { color: var(--dark-text); }
.hp-testify-feature .hp-testify-quote {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
}

/* Attribution */
.hp-testify-attr {
  padding-top: 18px;
  border-top: 1px solid var(--light-gray);
}

.hp-testify-feature .hp-testify-attr {
  border-top-color: rgba(255,255,255,0.10);
}

.hp-testify-name {
  display: block;
  font-family:'Barlow',sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hp-testify-role {
  display: block;
  font-family:'Barlow',sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hp-testify-card .hp-testify-name { color: var(--navy); }
.hp-testify-card .hp-testify-role { color: var(--steel); }

.hp-testify-feature .hp-testify-name { color: var(--white); }
.hp-testify-feature .hp-testify-role { color: var(--gold); }

/* Closer line under the grid */
.hp-testify-closer {
  text-align: center;
  margin-top: 8px;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  color: var(--muted-light);
}

/* Responsive */
@media (max-width: 900px) {
  .hp-testify-grid { grid-template-columns: 1fr 1fr; }
  .hp-testify-feature { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hp-testify-grid { grid-template-columns: 1fr; }
  .hp-testify-feature { grid-column: auto; }
  .hp-testify-stat-num { font-size: 52px; }
  .hp-testify-tenure-num { font-size: 48px; }
}



























/* ============================================================
   BAR COP — FOOTER CSS (CONSOLIDATED)
   Self-contained block. No Bootstrap. No inline styles.
   Paste into style.scss or add as a section in barcop_unified.html
   ============================================================ */


/* ── FOOTER SHELL ── */
.bc-footer {
  background-color: #070E15;
  border-top: 1px solid #1D2329;
  width: 100%;
}

.bc-footer-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}


/* ── TOP ROW: logo + tagline ── */
.bc-footer-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid #1D2329;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bc-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.bc-footer-logo img {
  width: 28px;
  height: auto;
  display: block;
  opacity: 0.75;
}

.bc-footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.bc-footer-tagline {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin: 0;
  padding-left: 0px;
  border-left: 0px solid #1D2329;
}


/* ── FOUR COLUMNS ── */
.bc-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.8fr;
  gap: 0;
  padding: 48px 0 40px;
  border-bottom: 1px solid #1D2329;
}

.bc-footer-col {
  padding: 0 32px 0 0;
}

.bc-footer-col--resources {
  padding-left: 47px;
  border-left: 1px solid #1D2329;
}

/* Column label (section title) */
.bc-footer-col-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 6px;
}

/* Column subtitle */
.bc-footer-col-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  color: #717D88;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 18px;
 letter-spacing: .5px;
  
}

/* Link list */
.bc-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-footer-links li {
  padding: 5px 0;
  border-bottom: 0px solid rgba(255,255,255,0.04);
  line-height: 1.4;
}

.bc-footer-links li:last-child {
  border-bottom: none;
}

.bc-footer-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #717D88; 
  text-decoration: none;
  transition: color 0.15s;
  display: block;
  padding: 2px 0;
}

.bc-footer-links a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Coming soon items (no link yet) */
.bc-footer-coming {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  display: block;
  padding: 2px 0;
}


/* ── BOTTOM BAR: legal + copyright ── */
.bc-footer-bottom {
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.bc-footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bc-footer-legal a {
  font-family: 'Barlow', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #717D88;
  text-decoration: none;
  transition: color 0.15s;
}

.bc-footer-legal a:hover {
  color: #ffffff;
}

.bc-footer-sep {
  color: #1D2329;
  font-size: 11px;
}

.bc-footer-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #717D88;
  letter-spacing: 1px;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bc-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
  }

  .bc-footer-col {
    padding-right: 24px;
  }

  .bc-footer-col--resources {
    padding-left: 0;
    border-left: none;
    border-top: 0px solid #1D2329;
    padding-top: 40px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .bc-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 40px 0 32px;
  }

  .bc-footer-tagline {
    padding-left: 0;
    border-left: none;
  }

  .bc-footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bc-footer-col {
    padding-right: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid #1D2329;
  }

  .bc-footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .bc-footer-col--resources {
    grid-column: auto;
    padding-top: 0;
  }

  .bc-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}












/* ============================================================
   BAR COP — AUDIT INTAKE FORMS CSS
   Shared by: Profit, Revenue, and Traffic audit intake pages.
   Self-contained. All design system components included.
   ============================================================ */


/* ── HERO ── */
.bc-intake-hero {
  padding: 80px 24px 48px;
  border-bottom: 0px solid rgba(255,255,255,0.06);
}

.bc-intake-hero--profit  { background: #000000; border-left: 4px solid #C9A84C; border-left: none; border-top: 4px solid #C9A84C; }
.bc-intake-hero--revenue { background: #000000; border-top: 4px solid #C9A84C; }
.bc-intake-hero--traffic { background: #000000; border-top: 4px solid #C9A84C; }

.bc-intake-hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-intake-eyebrow {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 12px;
}

.bc-intake-hero--revenue .bc-intake-eyebrow { color: #717D88; }
.bc-intake-hero--traffic .bc-intake-eyebrow { color: #717D88; }

.bc-intake-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 16px;
}

.bc-intake-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #717D88;
  line-height: 1.75;
  max-width: 740px;
}

.bc-intake-hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bc-intake-pill {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}


/* ── HOW THIS WORKS STRIP ── */
.bc-intake-how {
  background: #070E15;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
}

.bc-intake-how-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bc-intake-how-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bc-intake-how-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.bc-intake-how-text {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #717D88;
  line-height: 1.55;
}

.bc-intake-how-text strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 3px;
}

.bc-intake-how-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: rgba(201,168,76,0.4);
  flex-shrink: 0;
  align-self: center;
}


/* ── WHAT EACH SUBMISSION UNLOCKS ── */
.bc-intake-unlock {
  background: #050E18;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px;
}

.bc-intake-unlock-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-intake-unlock-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}

.bc-intake-unlock-intro {
  font-family: 'Lora', serif !important;
  font-style: italic !important;
  font-size: 15px !important;
  color: rgba(200,216,232,0.55) !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
  max-width: 720px;
}

.bc-intake-unlock-grid {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}

.bc-intake-unlock-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bc-intake-unlock-row:last-child { border-bottom: none; }

.bc-intake-unlock-row--required {
  background: rgba(201,168,76,0.04);
}

.bc-intake-unlock-file,
.bc-intake-unlock-result {
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.bc-intake-unlock-file {
  color: rgba(200,216,232,0.70);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bc-intake-unlock-result {
  color: rgba(200,216,232,0.45);
  font-size: 12px;
}

.bc-intake-unlock-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
}

.bc-intake-unlock-badge--required {
  background: rgba(201,168,76,0.15);
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.3);
}

/* Tier grid for Revenue and Traffic */
.bc-intake-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}

.bc-intake-tier {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 18px 16px;
  position: relative;
}

.bc-intake-tier--recommended {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}

.bc-intake-tier-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 6px;
}

.bc-intake-tier-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}

.bc-intake-tier-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: rgba(200,216,232,0.45);
  line-height: 1.6;
}

/* Screenshot note for Traffic */
.bc-intake-screenshot-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(72,136,168,0.08);
  border-left: 3px solid #4888A8;
  border-radius: 0 3px 3px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(200,216,232,0.60);
  line-height: 1.65;
}

.bc-intake-screenshot-note strong {
  color: rgba(200,216,232,0.85);
}


/* ── FORM BODY ── */
.bc-intake-body {
  background: #F7F6F2;
  padding: 56px 24px 80px;
}

.bc-intake-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Two-column layout: form left, sticky sidebar right */
.bc-intake-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.bc-intake-form-col {
  min-width: 0;
}

/* Sticky unlock sidebar */
.bc-intake-unlock-sidebar {
  position: sticky;
  top: 100px;
}

.bc-intake-unlock-sticky {
  background: #050E18;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
}

.bc-intake-unlock-sidebar-head {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.bc-intake-unlock-sidebar-intro {
  font-family: 'Barlow', sans-serif !important;
  font-size: 12px !important;
  color: #717D88; !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 12px 18px 14px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  font-style: normal !important;
}

.bc-intake-unlock-list {
  padding: 8px 0;
}

.bc-intake-unlock-item {
  padding: 8px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.bc-intake-unlock-item:last-child { border-bottom: none; }

.bc-intake-unlock-item--required {
  background: rgba(201,168,76,0.04);
}

.bc-intake-unlock-item--highlight {
  background: rgba(72,136,168,0.04);
}

.bc-intake-unlock-item-file {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.bc-intake-unlock-item-badge {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  flex-shrink: 0;
}

.bc-intake-unlock-item-badge--required {
  background: rgba(201,168,76,0.15);
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.3);
}

.bc-intake-unlock-item-result {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: #717D88;
  line-height: 1.5;
}

/* Repeat audit cadence note */
.bc-intake-unlock-cadence {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 18px;
  background: rgba(201,168,76,0.04);
}

.bc-intake-unlock-cadence-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 8px;
}

.bc-intake-unlock-cadence p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 11px !important;
  color: #717D88; !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-style: normal !important;
}

/* Timeframe guidance line inside file blocks */
.bc-intake-file-timeframe {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #C9A84C;
  margin-bottom: 6px;
  line-height: 1.5;
  padding: 6px 10px;
  background: rgba(201,168,76,0.06);
  border-left: 2px solid rgba(201,168,76,0.3);
  border-radius: 0 2px 2px 0;
}


/* ── FORM SECTIONS ── */
.bc-intake-section {
  background: #ffffff;
  border: 1px solid #E8E6E0;
  border-radius: 4px;
  padding: 32px 36px;
  margin-bottom: 20px;
}

.bc-intake-section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E6E0;
}

.bc-intake-section-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.bc-intake-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #050E18;
  margin-bottom: 4px;
}

.bc-intake-section-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #6B8FA8;
  line-height: 1.6;
}


/* ── FILE BLOCKS ── */
.bc-intake-file-block {
  background: #F7F6F2;
  border: 1px solid #E8E6E0;
  border-radius: 3px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.bc-intake-file-block--required {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.03);
}

.bc-intake-file-block--highlight {
  border-color: rgba(72,136,168,0.4);
  background: rgba(72,136,168,0.03);
}

.bc-intake-file-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.bc-intake-file-badge {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 7600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.6);
  color: #6B8FA8;
  border: 1px solid #E8E6E0;
}

.bc-intake-file-badge--required {
  background: rgba(201,168,76,0.12);
  color: #9a7a2a;
  border-color: rgba(201,168,76,0.3);
}

.bc-intake-file-badge--highlight {
  background: rgba(72,136,168,0.12);
  color: #2a5a78;
  border-color: rgba(72,136,168,0.3);
}

.bc-intake-file-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #050E18;
}

.bc-intake-file-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 8px;
}

.bc-intake-file-unlocks {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4888A8;
  margin-bottom: 4px;
}


/* ── QUESTIONNAIRE BLOCKS ── */
.bc-intake-questionnaire {
  background: #ffffff;
  border: 1px solid #E8E6E0;
  border-top: 3px solid #E8E6E0;
  border-radius: 4px;
  padding: 20px 20px 8px;
  margin-top: 8px;
}

.bc-intake-questionnaire-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B8FA8;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E8E6E0;
}


/* ── SHARED FORM ELEMENT STYLES ── */
.bc-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.bc-form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.bc-form-row--two .bc-form-field {
  margin-bottom: 20px;
}

.bc-form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #050E18;
  margin-bottom: 7px;
}

.bc-form-input,
.bc-form-textarea,
.bc-form-select {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  background: #F7F6F2;
  border: 1px solid #E8E6E0;
  border-radius: 3px;
  padding: 11px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  height: auto;
  text-indent: 0;
}

.bc-form-input:focus,
.bc-form-textarea:focus,
.bc-form-select:focus {
  border-color: #4888A8;
  background: #ffffff;
}

.bc-form-input--error { border-color: #C03828; }

.bc-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.bc-form-select {
  cursor: pointer;
  appearance: auto;
}

.bc-form-hint {
  font-family: 'Barlow', sans-serif;
  font-size: 11.5px;
  color: #6B8FA8;
  margin-top: 5px;
  line-height: 1.5;
}

.bc-form-error {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #C03828;
  margin-top: 5px;
}

.bc-form-required { color: #C03828; }


/* ── REMINDER BOX ── */
.bc-intake-reminder {
  background: #050E18;
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 4px solid #C9A84C;
  border-radius: 4px;
  padding: 20px 22px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bc-intake-reminder-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #C9A84C;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.bc-intake-reminder-body strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
}

.bc-intake-reminder-body p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 13px !important;
  color: rgba(200,216,232,0.65) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  font-style: normal !important;
}

.bc-intake-reminder-body p strong {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
  color: #ffffff;
  margin-bottom: 0;
}


/* ── SUBMIT ROW ── */
.bc-intake-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bc-intake-submit-btn {
  display: inline-block;
  padding: 16px 36px;
  background: #C9A84C;
  border: none;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  flex-shrink: 0;
}

.bc-intake-submit-btn:hover {
  background: #b8943f;
  transform: translateY(-1px);
  color: #ffffff;
}

.bc-intake-submit-note {
  font-family: 'Barlow', sans-serif !important;
  font-size: 12px !important;
  color: #6B8FA8 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  font-style: normal !important;
  flex: 1;
}


/* ── SUCCESS STATE ── */
.bc-intake-success {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px;
}

.bc-intake-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.1);
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  font-size: 26px;
  color: #C9A84C;
  margin-bottom: 20px;
}

.bc-intake-success-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #050E18 !important;
  margin-bottom: 24px !important;
}

.bc-intake-success-box {
  background: #050E18;
  border: 1px solid rgba(201,168,76,0.3);
  border-top: 3px solid #C9A84C;
  border-radius: 4px;
  padding: 28px 32px;
  text-align: left;
}

.bc-intake-success-box-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}

.bc-intake-success-box > p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 14px !important;
  color: rgba(200,216,232,0.65) !important;
  line-height: 1.7 !important;
  margin-bottom: 20px !important;
  font-style: normal !important;
}

.bc-intake-success-box > p strong {
  color: #ffffff;
  font-weight: 600;
}

.bc-intake-success-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.bc-intake-success-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(200,216,232,0.65);
  line-height: 1.6;
}

.bc-intake-success-step strong {
  color: #ffffff;
  font-weight: 600;
}

.bc-intake-success-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #C9A84C;
  flex-shrink: 0;
  line-height: 1.2;
  min-width: 20px;
}

.bc-intake-success-note {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C03828;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bc-intake-how-inner {
    flex-direction: column;
    gap: 20px;
  }

  .bc-intake-how-arrow {
    display: none;
  }

  .bc-intake-tier-grid {
    grid-template-columns: 1fr;
  }

  .bc-intake-unlock-row {
    grid-template-columns: 1fr;
  }

  .bc-intake-unlock-file {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* Stack two-col on tablet */
  .bc-intake-two-col {
    grid-template-columns: 1fr;
  }

  .bc-intake-unlock-sidebar {
    position: static;
    order: -1;
  }

  .bc-intake-unlock-sticky {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bc-intake-unlock-sidebar-head,
  .bc-intake-unlock-sidebar-intro {
    grid-column: 1 / -1;
  }

  .bc-intake-unlock-cadence {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .bc-intake-hero {
    padding: 48px 16px 40px;
  }

  .bc-intake-body {
    padding: 36px 16px 56px;
  }

  .bc-intake-section {
    padding: 24px 20px;
  }

  .bc-form-row--two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bc-intake-submit-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .bc-intake-submit-btn {
    width: 100%;
    text-align: center;
  }

  .bc-intake-reminder {
    flex-direction: column;
    gap: 12px;
  }

  .bc-intake-success-box {
    padding: 20px 18px;
  }
}

















/* ============================================================
   BAR COP — SOFTWARE FEATURE PAGE CSS
   Self-contained. Matches established design system.
   FAQ uses homepage hp-faq classes -- include this CSS
   alongside the main style.scss which already has hp-faq rules.
   ============================================================ */


/* ── HERO ── */
.bc-sw-hero {
  background: #050C13;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 24px 64px;
}

.bc-sw-hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-sw-eyebrow {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 14px;
}

.bc-sw-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 980px;
}

.bc-sw-hero-accent {
  color: #C9A84C;
}

.bc-sw-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(200, 216, 232, 0.60);
  line-height: 1.75;
  margin-bottom: 0px;
  max-width: 640px;
}

.bc-sw-hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bc-sw-pill {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}


/* ── SECTION INTRO (light bg label + title above feature blocks) ── */
.bc-sw-section-intro {
  background: #F7F6F2;
  padding: 56px 24px 0;
}

.bc-sw-section-intro-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-sw-section-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #4888A8;
  margin-bottom: 10px;
}

.bc-sw-section-label--light { color: rgba(200,216,232,0.55); }
.bc-sw-section-label--gold  { color: #C9A84C; }

.bc-sw-section-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(22px, 3vw, 34px) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #050E18 !important;
  line-height: 1.05 !important;
  margin-bottom: 0 !important;
}


/* ── FEATURE BODY ── */
.bc-sw-body {
  background: #F7F6F2;
  padding: 40px 24px 56px;
  border-bottom: 1px solid var(--light-gray);
}

.bc-sw-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}


/* ── FEATURE BLOCKS ── */
.bc-sw-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #E8E6E0;
}

.bc-sw-feature:last-child { border-bottom: none; }

.bc-sw-feature--flip .bc-sw-feature-img  { order: 2; }
.bc-sw-feature--flip .bc-sw-feature-text { order: 1; }

.bc-sw-feature-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
  border: 1px solid #E8E6E0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.bc-sw-feature-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}

.bc-sw-feature-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #050E18 !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
}

.bc-sw-feature-text p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 15px !important;
  color: #555555 !important;
  line-height: 1.8 !important;
  margin-bottom: 14px !important;
  font-style: normal !important;
}

.bc-sw-feature-text p:last-child { margin-bottom: 0 !important; }

.bc-sw-feature-text a {
  color: #4888A8 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.bc-sw-feature-text a:hover { text-decoration: underline !important; }


/* ── DIVIDER SECTIONS (dark navy) ── */
.bc-sw-divider {
  background: #050E18;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 56px 24px;
}

.bc-sw-divider-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-sw-divider-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(24px, 3.5vw, 42px) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -1px !important;
  color: #ffffff !important;
  line-height: 1.05 !important;
  margin-bottom: 14px !important;
  max-width: 540px;
}

.bc-sw-divider-sub {
  font-family: 'Lora', serif !important;
  font-style: italic !important;
  font-size: 15px !important;
  color: rgba(200,216,232,0.55) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
  max-width: 640px;
}


/* hp-faq, hp-faq-grid, hp-faq-item, hp-faq-q, hp-faq-a, sec-label, sec-h2-light --
   all defined in main style.scss from homepage. No duplication needed here. */


/* ── BOTTOM CTA ── */
.bc-sw-cta {
  background: #050C13;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 24px;
}

.bc-sw-cta-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-sw-cta-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(26px, 3.5vw, 42px) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #ffffff !important;
  line-height: 1.05 !important;
  margin-bottom: 14px !important;
  max-width: 600px;
}

.bc-sw-cta-sub {
  font-family: 'Lora', serif !important;
  font-style: italic !important;
  font-size: 15px !important;
  color: rgba(200,216,232,0.55) !important;
  line-height: 1.75 !important;
  margin-bottom: 28px !important;
  max-width: 520px;
}

.bc-sw-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #C9A84C;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.bc-sw-cta-btn,
.bc-sw-cta-btn:link,
.bc-sw-cta-btn:visited,
.bc-sw-cta-btn:hover,
.bc-sw-cta-btn:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

.bc-sw-cta-btn:hover {
  background: #b8943f;
  transform: translateY(-1px);
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bc-sw-feature {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
  }

  .bc-sw-feature--flip .bc-sw-feature-img  { order: 0; }
  .bc-sw-feature--flip .bc-sw-feature-text { order: 0; }
}

@media (max-width: 640px) {
  .bc-sw-hero        { padding: 48px 16px 40px; }
  .bc-sw-body        { padding: 32px 16px 48px; }
  .bc-sw-section-intro { padding: 40px 16px 0; }
  .bc-sw-divider     { padding: 40px 16px; }
  .bc-sw-cta         { padding: 48px 16px; }
}




































/* ============================================================
   BAR COP — CART PAGE CSS (CONSOLIDATED)
   Self-contained block. No Bootstrap. No inline styles.
   ============================================================ */


/* ── HERO ── */
.bc-cart-hero {
  background: #000000;
  padding: 80px 24px 64px;
}

.bc-cart-hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-cart-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 16px;
}

.bc-cart-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #717D88;
  line-height: 1.75;
  margin-bottom: 0px;
  max-width: 620px;
}

.bc-cart-shopify-logo {
  display: block;
  opacity: 0.5;
}


/* ── STICKY FIX ──
   position:sticky requires every ancestor between the sticky element
   and the scroll container (viewport) to have overflow:visible.
   Shopify themes commonly set overflow:hidden on these wrappers. */
#PageContainer,
#page,
main,
.main-content,
[role="main"],
[data-section-type="cart-template"],
.bc-cart-body,
.bc-cart-inner,
.bc-cart-form {
  overflow: visible !important;
}


/* ── CART BODY ── */
.bc-cart-body {
  padding: 48px 24px 64px;
  background: #f7f6f2;
}

.bc-cart-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-cart-form {
  display: grid !important;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* Without a tall enough grid row, sticky has nothing to stick within */
/* ── LINE ITEMS ── */
.bc-cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-column: 1;
  min-height: 200px;
}

.bc-cart-item {
  background: #ffffff;
  border: 1px solid #E5EDF3;
  border-radius: 4px;
  padding: 20px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
}

.bc-cart-item-img img {
  width: 100%;
  display: block;
  border-radius: 3px;
  border: 1px solid #E5EDF3;
}

.bc-cart-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #0a1520;
  line-height: 1.1;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.bc-cart-item-variants {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.bc-cart-item-variants li {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #717D88;
  padding: 1px 0;
}

.bc-cart-item-props {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #6B8FA8;
  margin-bottom: 8px;
  line-height: 1.6;
}

.bc-cart-item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0a1520;
  margin-bottom: 12px;
}

.bc-cart-item-delete {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #C03828;
  text-decoration: none;
  border-bottom: 1px solid rgba(192,56,40,0.3);
  transition: color 0.15s, border-color 0.15s;
}

.bc-cart-item-delete:hover {
  color: #a02818;
  border-bottom-color: #a02818;
}


/* ── ORDER SUMMARY ── */

/* .bc-cart-summary-col is the direct grid child — sticky must live here, not on the inner card */
.bc-cart-summary-col {
  position: sticky;
  top: 100px;
  align-self: start;
  grid-column: 2;
}

.bc-cart-summary {
  background: #070E15;
  border-radius: 4px;
  padding: 24px 22px;
  border: 1px solid rgba(74,136,168,0.25);
}

/* Flow steps */
.bc-cart-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bc-cart-flow-step {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
}

.bc-cart-flow-active {
  color: #ffffff;
}

.bc-cart-flow-arrow {
  color: #f0c060;
  font-size: 13px;
  font-weight: 700;
}

.bc-cart-summary-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 18px 0;
}

/* Total */
.bc-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.bc-cart-total-label {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.bc-cart-total-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.bc-cart-total-note {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  color: #717D88;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 15px;
}

/* Checkout notice */
.bc-cart-notice {
  background: rgba(192,56,40,0.1);
  border: 1px solid rgba(192,56,40,0.3);
  border-radius: 3px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.bc-cart-notice-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e08878;
  margin-bottom: 6px;
}

.bc-cart-notice p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

.bc-cart-notice p a {
  color: #4888A8;
  text-decoration: none;
  font-weight: 600;
}

.bc-cart-notice p a:hover {
  text-decoration: underline;
}

/* Instant download note */
.bc-cart-instant {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.bc-cart-instant-icon {
  color: #f0c060;
  font-size: 14px;
}


/* ============================================================
   CART — EMPTY STATE (updated)
   Add to barcop_cart.css or style.scss
   Replace existing .bc-cart-empty rules
   ============================================================ */

.bc-cart-empty {
  text-align: center;
  padding: 64px 24px 80px;
  max-width: 680px;
  margin: 0 auto;
}

.bc-cart-empty-icon {
  font-size: 40px;
  color: #C8D8E8;
  margin-bottom: 16px;
  line-height: 1;
}

.bc-cart-empty-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #050C13;
  margin-bottom: 12px;
}

.bc-cart-empty-p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: #6B8FA8;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Divider between CTA and product grid */
.bc-cart-empty-divider {
  height: 1px;
  background: #E8E6E0;
  margin: 36px auto;
  max-width: 480px;
}

/* "Or go directly" label above grid */
.bc-cart-empty-products-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #6B8FA8;
  margin-bottom: 20px;
}

/* Three-column product grid */
.bc-cart-empty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  text-align: left;
}

/* Individual category card */
.bc-cart-empty-cat {
  background: #050E18;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

/* Colored top bar — set via inline style */
.bc-cart-empty-cat-bar {
  height: 3px;
  width: 100%;
}

.bc-cart-empty-cat-inner {
  padding: 16px 18px 18px;
}

/* Category name */
.bc-cart-empty-cat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Product links */
.bc-cart-empty-product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(200,216,232,0.80);
  text-decoration: none;
  transition: color 0.15s;
}

.bc-cart-empty-product-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bc-cart-empty-product-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.bc-cart-empty-product-link span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Footer note */
.bc-cart-empty-footer {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #6B8FA8;
  line-height: 1.6;
}

.bc-cart-empty-footer a {
  color: #4888A8;
  text-decoration: none;
  font-weight: 600;
}

.bc-cart-empty-footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .bc-cart-empty-grid {
    grid-template-columns: 1fr;
  }

  .bc-cart-empty {
    padding: 48px 16px 56px;
  }
}




/* sec-label and FAQ heading overrides --
   prevents theme global h2 styles from overriding the design system */
.bc-cart-hero .sec-label,
.hp-faq .sec-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 12px;
}

.hp-faq .sec-h2-light {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: clamp(24px, 3.5vw, 38px) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  line-height: 1.05 !important;
  letter-spacing: -1px !important;
  color: #050E18 !important;
  margin-bottom: 32px !important;
}

.hp-faq .hp-faq-q {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #050E18 !important;
  margin-bottom: 6px !important;
}

.hp-faq .hp-faq-a {
  font-size: 13.5px !important;
  line-height: 1.7 !important;
  color: #1A1A1A !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-style: normal !important;
  font-weight: normal !important;
}

.hp-faq .hp-faq-item {
  padding: 18px 0 !important;
  border-bottom: 1px solid #E8E6E0 !important;
}

.hp-faq .hp-faq-item:first-child {
  border-top: 1px solid #E8E6E0 !important;
}

.hp-faq .hp-faq-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 56px !important;
  margin-top: 40px !important;
}

@media (max-width: 640px) {
  .hp-faq .hp-faq-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ── HP-WRAP ──
   Needed on cart page since homepage CSS isn't loaded globally yet.
   Keeps FAQ section contained at the same max-width as the homepage. */
.hp-faq .hp-wrap {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ── FAQ ──
   Uses homepage .hp-faq, .hp-faq-grid, .hp-faq-item,
   .hp-faq-q, .hp-faq-a classes directly. No extra rules needed.
   Link colors locked below. */

.hp-faq .hp-faq-a a,
.hp-faq .hp-faq-a a:link,
.hp-faq .hp-faq-a a:visited {
  color: #4888A8;
  text-decoration: none;
}

.hp-faq .hp-faq-a a:hover {
  text-decoration: underline;
  color: #4888A8;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bc-cart-form {
    grid-template-columns: 1fr !important;
  }

  .bc-cart-summary-col {
    position: static !important;
    grid-column: 1 !important;
  }

  .bc-cart-items {
    grid-column: 1 !important;
  }
}

@media (max-width: 600px) {
  .bc-cart-hero {
    padding: 48px 0 48px;
  }

  .bc-cart-body {
    padding: 32px 16px 48px;
  }

  .bc-cart-item {
    grid-template-columns: 90px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .bc-cart-item-title {
    font-size: 18px;
  }
}




/* ============================================================
   BAR COP — CONTACT PAGE CSS
   Self-contained. All design system components included.
   ============================================================ */


/* ── DESIGN SYSTEM TOKENS ── */
.bc-contact-hero,
.bc-contact-body {
  --deep-navy:  #070E15;
  --navy:       #070E15;
  --gold:       #C9A84C;
  --gold-hover: #b8943f;
  --steel:      #64A0BC;
  --salmon:     #C03828;
  --white:      #FFFFFF;
  --off-white:  #F7F6F2;
  --light-gray: #E8E6E0;
  --dark-text:  #1A1A1A;
  --muted:      #6B8FA8;
}


/* ── HERO ── */
.bc-contact-hero {
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 24px 64px;
}

.bc-contact-hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-contact-hero .sec-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  display: block;
  margin-bottom: 12px;
}

.bc-contact-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 16px;
}

.bc-contact-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #717D88;
  line-height: 1.75;
  max-width: 750px;
}

.bc-contact-hero-sub a {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  color: #64A0BC;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
}

.bc-contact-hero-sub a:hover {
  text-decoration: none;
color: #FFFFFF;

}


/* ── BODY ── */
.bc-contact-body {
  background: #F7F6F2;
  padding: 48px 24px 80px;
}

.bc-contact-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}


/* ── FORM ── */
.bc-contact-form-col {
  background: #ffffff;
  border: 1px solid #E8E6E0;
  border-radius: 4px;
  padding: 40px 36px;
}

.bc-form-row {
  margin-bottom: 20px;
}

.bc-form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.bc-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.bc-form-row--two .bc-form-field {
  margin-bottom: 0;
}

.bc-form-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #050E18;
  margin-bottom: 8px;
  margin-top: 12px;
}

.bc-form-input,
.bc-form-textarea {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  background: #F7F6F2;
  border: 1px solid #E8E6E0;
  border-radius: 3px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  height: auto;
  text-indent: 0;
}

.bc-form-input:focus,
.bc-form-textarea:focus {
  border-color: #4888A8;
  background: #ffffff;
}

.bc-form-input--error {
  border-color: #C03828;
}

.bc-form-textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.6;
}

.bc-form-error {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #C03828;
  margin-top: 5px;
}

/* Section divider labels inside form */
.bc-form-section-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C8A748;
  padding-bottom: 10px;
  margin-bottom: 20px;
  margin-top: 28px;
  border-bottom: 1px solid #E8E6E0;
}

.bc-form-section-label:first-of-type {
  margin-top: 0;
}

/* Required asterisk */
.bc-form-required {
  color: #C03828;
  font-style: normal;
  font-size: 17px;
}

/* Select fields */
.bc-form-select {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  background: #F7F6F2;
  border: 1px solid #E8E6E0;
  border-radius: 3px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  height: auto;
  appearance: auto;
}

.bc-form-select:focus {
  border-color: #4888A8;
  background: #ffffff;
}

/* Bottom row: button + note side by side */
.bc-form-bottom-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.bc-form-bottom-row .bc-form-note {
  margin: 0;
  flex: 1;
}
.btn-gold.bc-form-submit,
.bc-form-submit {
  display: inline-block;
  padding: 14px 32px;
  background: #C9A84C;
  border: none;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 14px;
}

.btn-gold.bc-form-submit,
.btn-gold.bc-form-submit:link,
.btn-gold.bc-form-submit:visited,
.btn-gold.bc-form-submit:hover,
.btn-gold.bc-form-submit:active,
.btn-gold.bc-form-submit:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

.bc-form-submit:hover {
  background: #b8943f;
  transform: translateY(-1px);
}

.bc-form-note {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #6B8FA8;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Success state */
.bc-form-success {
  text-align: center;
  padding: 48px 24px;
}

.bc-form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(72,136,168,0.1);
  border: 1px solid rgba(72,136,168,0.3);
  border-radius: 50%;
  font-size: 22px;
  color: #4888A8;
  margin-bottom: 18px;
}

.bc-form-success-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #050E18;
  margin-bottom: 10px;
}

.bc-form-success p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: #6B8FA8;
  line-height: 1.7;
  margin: 0;
}


/* ── INFO PANEL ── */
.bc-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.bc-contact-info-card {
  background: #070E15;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 24px 22px;
}

.bc-contact-info-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}

.bc-contact-info-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #717D88;
  line-height: 1.4;
  margin-bottom: 14px;
}

.bc-contact-info-card p:last-child {
  margin-bottom: 0;
}

.bc-contact-info-link {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64A0BC;
  text-decoration: none;
  transition: color 0.15s;
}

.bc-contact-info-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.bc-contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-contact-info-list li {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: #717D88;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.bc-contact-info-list li:last-child {
  border-bottom: none;
}

.bc-contact-info-list li::before {
  content: '→';
  color: #C9A84C;
  font-size: 11px;
  flex-shrink: 0;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bc-contact-grid {
    grid-template-columns: 1fr;
  }

  .bc-contact-info-col {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .bc-contact-info-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 600px) {
  .bc-contact-hero {
    padding: 48px 16px 40px;
  }

  .bc-contact-body {
    padding: 40px 16px 56px;
  }

  .bc-contact-form-col {
    padding: 28px 20px;
  }

  .bc-form-row--two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bc-contact-info-col {
    flex-direction: column;
  }
}












/* ============================================================
   BAR COP — POLICY PAGES CSS
   Shared by: privacy policy, refund policy, terms of use
   Self-contained. Add once to style.scss.
   ============================================================ */


/* ── HERO ── */
.bc-policy-hero {
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 24px 48px;
}

.bc-policy-hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-policy-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}

.bc-policy-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 10px;
}

.bc-policy-date {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin: 0;
}


/* ── BODY ── */
.bc-policy-body {
  background: #F7F6F2;
  padding: 56px 24px 80px;
}

.bc-policy-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-policy-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}


/* ── TABLE OF CONTENTS (sticky sidebar) ── */
.bc-policy-toc {
  position: sticky;
  top: 100px;
}

.bc-policy-toc-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E8E6E0;
}

.bc-policy-toc-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  counter-reset: toc-counter;
}

.bc-policy-toc-list li {
  counter-increment: toc-counter;
  padding: 5px 0;
  border-bottom: 1px solid #E8E6E0;
}

.bc-policy-toc-list li:last-child {
  border-bottom: none;
}

.bc-policy-toc-list li a {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: #6B8FA8;
  text-decoration: none;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  gap: 8px;
  transition: color 0.15s;
}

.bc-policy-toc-list li a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #C9A84C;
  flex-shrink: 0;
}

.bc-policy-toc-list li a:hover {
  color: #050E18;
  text-decoration: none;
}

/* Related links at bottom of TOC */
.bc-policy-toc-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid #E8E6E0;
}

.bc-policy-toc-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4888A8;
  text-decoration: none;
  transition: color 0.15s;
}

.bc-policy-toc-links a:hover {
  color: #050E18;
  text-decoration: none;
}


/* ── CONTENT AREA ── */
.bc-policy-content {
  min-width: 0;
}

.bc-policy-intro {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 32px;
  padding-bottom: 10px;
  border-bottom: 0px solid #E8E6E0;
}

/* Summary callout box (refund policy) */
.bc-policy-callout {
  background: #050E18;
  border-radius: 4px;
  padding: 24px 26px;
  margin-bottom: 32px;
  border-left: 3px solid #C03828;
}

.bc-policy-callout-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C03828;
  margin-bottom: 10px;
}

.bc-policy-content .bc-policy-callout p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 14px !important;
  color: #C8D8E8 !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* Section */
.bc-policy-section {
  padding: 28px 0;
  scroll-margin-top: 120px;
}

.bc-policy-divider {
  height: 1px;
  background: #E8E6E0;
}

/* Section heading */
.bc-policy-h2 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #050E18 !important;
  line-height: 1.1 !important;
  margin-bottom: 14px !important;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.bc-policy-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #C9A84C;
  flex-shrink: 0;
  min-width: 20px;
}

/* Body text */
.bc-policy-content p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 15px !important;
  font-style: normal !important;
  color: #1A1A1A !important;
  line-height: 1.75 !important;
  margin-bottom: 14px !important;
}

.bc-policy-content p:last-child {
  margin-bottom: 0 !important;
}

.bc-policy-content strong {
  color: #050E18;
  font-weight: 600;
}

.bc-policy-content a {
  color: #4888A8;
  text-decoration: none;
  font-weight: 600;
}

.bc-policy-content a:hover {
  text-decoration: underline;
}

/* Lists */
.bc-policy-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.bc-policy-list li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  line-height: 1.6;
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid #E8E6E0;
  position: relative;
}

.bc-policy-list li:last-child {
  border-bottom: none;
}

.bc-policy-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-size: 11px;
  top: 8px;
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bc-policy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bc-policy-toc {
    position: static;
    background: #ffffff;
    border: 1px solid #E8E6E0;
    border-radius: 4px;
    padding: 20px;
  }

  .bc-policy-toc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    margin-bottom: 16px;
  }
}

@media (max-width: 600px) {
  .bc-policy-hero {
    padding: 48px 16px 40px;
  }

  .bc-policy-body {
    padding: 36px 16px 56px;
  }

  .bc-policy-toc-list {
    grid-template-columns: 1fr;
  }
}




/* ============================================================
   BAR COP — 404 PAGE CSS
   Self-contained. All design system components included.
   ============================================================ */

.bc-404-wrap {
  background: #050C13;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.bc-404-inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

/* Giant 404 number */
.bc-404-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(100px, 18vw, 160px);
  font-weight: 800;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.09);
  line-height: 1;
  margin-bottom: -20px;
  user-select: none;
}

/* Label */
.bc-404-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 18px;
}

/* Heading */
.bc-404-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 16px;
}

/* Subtext */
.bc-404-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(200,216,232,0.55);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Divider */
.bc-404-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 36px auto;
  max-width: 400px;
}

/* Nav links */
.bc-404-links {
  margin-bottom: 36px;
}

.bc-404-links-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #4888A8;
  margin-bottom: 16px;
}

.bc-404-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
}

.bc-404-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
}

.bc-404-nav li:nth-child(even) {
  border-right: none;
}

.bc-404-nav li:nth-last-child(-n+2) {
  border-bottom: none;
}

.bc-404-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(200,216,232,0.60);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.bc-404-nav li a::before {
  content: '→';
  color: #C9A84C;
  font-size: 11px;
  flex-shrink: 0;
}

.bc-404-nav li a:hover {
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  text-decoration: none;
}

/* CTA button -- full btn-gold definition */
.bc-404-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #C9A84C;
  border: none;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.bc-404-btn,
.bc-404-btn:link,
.bc-404-btn:visited,
.bc-404-btn:hover,
.bc-404-btn:active,
.bc-404-btn:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

.bc-404-btn:hover {
  background: #b8943f;
  transform: translateY(-1px);
}


/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .bc-404-wrap {
    padding: 56px 16px;
    align-items: flex-start;
  }

  .bc-404-nav {
    grid-template-columns: 1fr;
  }

  .bc-404-nav li {
    border-right: none;
  }

  .bc-404-nav li:last-child {
    border-bottom: none;
  }

  .bc-404-nav li:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .bc-404-nav li:last-child {
    border-bottom: none;
  }
}




/* ============================================================
   BAR COP — BLOG & HELP DOCS CSS
   Covers: Revenue Hub blog listing + article,
           Help Docs listing + article.
   Self-contained. All design system components included.
   ============================================================ */


/* ══════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════ */

/* Shared label */
.bc-blog-label {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}

/* Shared sidebar card */
.bc-blog-sidebar-card {
  background: #070E15;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 22px 20px;
  margin-bottom: 16px;
}

.bc-blog-sidebar-card p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 13px !important;
  color: #717D88; !important;
  line-height: 1.7 !important;
  margin-bottom: 14px !important;
  font-style: normal !important;
}

.bc-blog-sidebar-card p:last-child {
  margin-bottom: 0 !important;
}

.bc-blog-sidebar-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}

.bc-blog-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-blog-sidebar-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bc-blog-sidebar-nav li:last-child {
  border-bottom: none;
}

.bc-blog-sidebar-nav li a {
  display: block;
  padding: 8px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64A0BC;
  text-decoration: none;
  transition: color 0.15s;
}

.bc-blog-sidebar-nav li a:hover {
  color: #ffffff;
  text-decoration: none;
}

.bc-blog-sidebar-link {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64A0BC;
  text-decoration: none;
  transition: color 0.15s;
}

.bc-blog-sidebar-link:hover {
  color: #ffffff;
  text-decoration: none;
}

/* CTA sidebar card */
.bc-blog-sidebar-cta {
  border-color: rgba(201,168,76,0.2);
}

.bc-blog-sidebar-btn {
  display: block;
  padding: 11px 16px;
  background: #C9A84C;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}

.bc-blog-sidebar-btn,
.bc-blog-sidebar-btn:link,
.bc-blog-sidebar-btn:visited,
.bc-blog-sidebar-btn:hover,
.bc-blog-sidebar-btn:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

.bc-blog-sidebar-btn:hover {
  background: #b8943f;
}

/* Tags */
.bc-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bc-blog-tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(200,216,232,0.5);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.bc-blog-tag:hover {
  border-color: rgba(201,168,76,0.4);
  color: #C9A84C;
  text-decoration: none;
}

/* Pagination */
.bc-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid #E8E6E0;
  margin-top: 32px;
}

.bc-blog-page-btn {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4888A8;
  text-decoration: none;
  transition: color 0.15s;
}

.bc-blog-page-btn:hover {
  color: #050E18;
  text-decoration: none;
}

.bc-blog-page-count {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6B8FA8;
}


/* ══════════════════════════════════════
   REVENUE HUB BLOG — LISTING
══════════════════════════════════════ */

.bc-blog-hero {
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 24px 64px;
}


.bc-blog-hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-blog-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 16px;
}

.bc-blog-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #717D88;
  line-height: 1.75;
  max-width: 600px;
  margin: 0;
}

.bc-blog-body {
  background: #F7F6F2;
  padding: 48px 24px 80px;
}

.bc-blog-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-blog-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.bc-blog-main { min-width: 0; }

/* Article card */
.bc-blog-card {
  background: #ffffff;
  border: 1px solid #E8E6E0;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}

.bc-blog-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.bc-blog-card-top {
  height: 3px;
  background: #050E18;
}

.bc-blog-card-body {
  padding: 24px 26px 22px;
}

.bc-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}


/* ============================================================
   BLOG LISTING — TWO NEW RULES
   Add these to barcop_blog.css or style.scss
   after the existing .bc-blog-card rules
   ============================================================ */
 
/* Category badge — filled background, white text, rounded pill */
.bc-blog-cat-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}
 
/* Quote pullquote — left border matches category color, set via inline style on the element */
.bc-blog-card-quote {
  border-left: 3px solid #6B8FA8; /* fallback — overridden by inline style */
  padding: 12px 16px;
  margin: 14px 0 18px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: #555555;
  line-height: 1.75;
  background: rgba(0,0,0,0.02);
  border-radius: 0 3px 3px 0;
}
 
/* Read time — matches .bc-blog-date style */
.bc-blog-read-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6B8FA8;
}
 
/* Category filter dropdown */
.bc-blog-filter-select {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #050E18;
  background: #F7F6F2;
  border: 1px solid #E8E6E0;
  border-radius: 3px;
  padding: 10px 12px;
  cursor: pointer;
  outline: none;
  appearance: auto;
  transition: border-color 0.15s;
}
 
.bc-blog-filter-select:focus {
  border-color: #4888A8;
}
 
.bc-blog-filter-select:hover {
  border-color: #4888A8;
}
 
 
 


.bc-blog-cat {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
}

.bc-blog-date,
.bc-blog-read-time {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6B8FA8;
}

.bc-blog-meta-sep {
  color: #E8E6E0;
  font-size: 10px;
}

.bc-blog-card-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  line-height: 1.1 !important;
  color: #050E18 !important;
  margin-bottom: 10px !important;

}

.bc-blog-card-title a {
  color: #050E18 !important;
  text-decoration: none !important;
  transition: color 0.15s;
}

.bc-blog-card-title a:hover {
  color: #4888A8 !important;
}

.bc-blog-card-excerpt {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 14px !important;
  color: #555555 !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
  font-style: normal !important;
}

.bc-blog-card-link {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4888A8;
  text-decoration: none;
  transition: color 0.15s;
}

.bc-blog-card-link:hover {
  color: #050E18;
  text-decoration: none;
}

/* Sidebar sticky */
.bc-blog-sidebar {
  position: sticky;
  top: 100px;
}


/* ══════════════════════════════════════
   REVENUE HUB BLOG — ARTICLE
══════════════════════════════════════ */

.bc-article-hero {
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 24px 56px;
}

.bc-article-hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Breadcrumb */
.bc-article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.bc-article-breadcrumb a {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #64A0BC;
  text-decoration: none;
  transition: color 0.15s;
}

.bc-article-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: none;
}

.bc-article-breadcrumb span {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
}

.bc-article-breadcrumb-sep {
  color: #717D88; !important;
}

/* Category tags in hero */
.bc-article-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.bc-article-cat {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  text-decoration: none;
  transition: border-color 0.15s;
}

.bc-article-cat:hover {
  border-color: rgba(201,168,76,0.6);
  text-decoration: none;
  color: #C9A84C;
}

/* Article title */
.bc-article-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 16px;
}

/* Meta */
.bc-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bc-article-date,
.bc-article-author {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #717D88;
}

.bc-article-meta-sep {
  color: #717D88;
  font-size: 11px;
}

/* Article body */
.bc-article-body {
  background: #F7F6F2;
  padding: 48px 24px 80px;
}

.bc-article-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.bc-article-content {
  min-width: 0;
}

/* Article rich text styles */
.bc-article-rte {
  background: #ffffff;
  border: 1px solid #E8E6E0;
  border-radius: 4px;
  padding: 40px 44px;
  margin-bottom: 28px;
}

.bc-article-rte h2 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #050E18 !important;
  margin-top: 32px !important;
  margin-bottom: 12px !important;
  line-height: 1.1 !important;
}

.bc-article-rte h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #050E18 !important;
  margin-top: 24px !important;
  margin-bottom: 10px !important;
}

.bc-article-rte p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 16px !important;
  color: #1A1A1A !important;
  line-height: 1.8 !important;
  margin-bottom: 18px !important;
  font-style: normal !important;
}

.bc-article-rte strong {
  color: #050E18 !important;
  font-weight: 600 !important;
}

.bc-article-rte a {
  color: #4888A8 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.bc-article-rte a:hover {
  text-decoration: underline !important;
}

.bc-article-rte ul,
.bc-article-rte ol {
  margin: 0 0 18px 0 !important;
  padding: 0 !important;
}

.bc-article-rte ul li,
.bc-article-rte ol li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 15px !important;
  color: #1A1A1A !important;
  line-height: 1.7 !important;
  padding: 5px 0 5px 20px !important;
  border-bottom: 1px solid #E8E6E0 !important;
  position: relative !important;
  list-style: none !important;
}

.bc-article-rte ul li:last-child,
.bc-article-rte ol li:last-child {
  border-bottom: none !important;
}

.bc-article-rte ul li::before {
  content: '→' !important;
  position: absolute !important;
  left: 0 !important;
  color: #C9A84C !important;
  font-size: 11px !important;
  top: 8px !important;
}

.bc-article-rte ol {
  counter-reset: ol-counter !important;
}

.bc-article-rte ol li::before {
  content: counter(ol-counter) !important;
  counter-increment: ol-counter !important;
  position: absolute !important;
  left: 0 !important;
  color: #C9A84C !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  top: 7px !important;
}

.bc-article-rte blockquote {
  border-left: 3px solid #C9A84C !important;
  padding: 16px 20px !important;
  background: #F7F6F2 !important;
  margin: 24px 0 !important;
  border-radius: 0 3px 3px 0 !important;
}

.bc-article-rte blockquote p {
  font-family: 'Lora', serif !important;
  font-style: italic !important;
  font-size: 16px !important;
  color: #555555 !important;
  margin: 0 !important;
}

/* Footer tags */
.bc-article-footer-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid #E8E6E0;
  margin-bottom: 24px;
}

.bc-article-footer-tags-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B8FA8;
}

/* Prev/Next nav */
.bc-article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #E8E6E0;
}

.bc-article-nav-btn {
  text-decoration: none;
  transition: color 0.15s;
}

.bc-article-nav-dir {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color:  #64A0BC;
  transition: color 0.15s;
}

.bc-article-nav-btn:hover .bc-article-nav-dir {
  color: #050E18;
}

/* Article sidebar */
.bc-article-sidebar {
  position: sticky;
  top: 100px;
}


/* ══════════════════════════════════════
   HELP DOCS — LISTING
══════════════════════════════════════ */

.bc-docs-hero {
  background: #050E18;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 24px 56px;
}

.bc-docs-hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-docs-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 14px;
}

.bc-docs-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(200,216,232,0.55);
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}

.bc-docs-body {
  background: #F7F6F2;
  padding: 48px 24px 80px;
}

.bc-docs-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

.bc-docs-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: start;
}

.bc-docs-main { min-width: 0; }

/* Tag filter */
.bc-docs-tag-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E6E0;
}

.bc-docs-filter-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6B8FA8;
  white-space: nowrap;
}

.bc-blog-tag--active {
  border-color: rgba(201,168,76,0.5);
  color: #C9A84C;
}

/* Docs list */
.bc-docs-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bc-docs-item {
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #E8E6E0;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.bc-docs-item:hover {
  background: #ffffff;
  border-color: #4888A8;
  transform: translateX(3px);
  text-decoration: none;
}

.bc-docs-item-icon {
  width: 40px;
  height: 40px;
  background: #050E18;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #C9A84C;
  flex-shrink: 0;
}

.bc-docs-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #050E18;
  margin-bottom: 4px;
  line-height: 1.2;
}

.bc-docs-item-excerpt {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 6px;
}

.bc-docs-item-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bc-docs-item-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6B8FA8;
  padding: 2px 7px;
  border: 1px solid #E8E6E0;
  border-radius: 2px;
}

.bc-docs-item-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #E8E6E0;
  transition: color 0.15s;
  text-align: right;
}

.bc-docs-item:hover .bc-docs-item-arrow {
  color: #4888A8;
}


/* ══════════════════════════════════════
   HELP DOCS — ARTICLE
══════════════════════════════════════ */

.bc-docs-article-hero {
  background: #050E18;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 80px 24px 56px;
}

.bc-docs-article-cat {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(72,136,168,0.3);
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4888A8;
  text-decoration: none;
  margin-bottom: 16px;
  display: inline-block;
  transition: border-color 0.15s;
}

.bc-docs-article-cat:hover {
  border-color: rgba(72,136,168,0.6);
  color: #4888A8;
  text-decoration: none;
}

.bc-docs-article-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 14px;
}

.bc-docs-article-body {
  background: #F7F6F2;
}

/* Docs RTE -- slightly different from blog, plainer */
.bc-docs-rte {
  background: #ffffff;
  border: 1px solid #E8E6E0;
  border-top: 3px solid #4888A8;
  border-radius: 4px;
  padding: 36px 40px;
  margin-bottom: 28px;
}

.bc-docs-rte h2 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #050E18 !important;
  margin-top: 28px !important;
  margin-bottom: 10px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #E8E6E0 !important;
}

.bc-docs-rte h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #4888A8 !important;
  margin-top: 20px !important;
  margin-bottom: 8px !important;
}

.bc-docs-rte p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 15px !important;
  color: #1A1A1A !important;
  line-height: 1.8 !important;
  margin-bottom: 16px !important;
  font-style: normal !important;
}

.bc-docs-rte strong {
  color: #050E18 !important;
  font-weight: 600 !important;
}

.bc-docs-rte a {
  color: #4888A8 !important;
 
  text-decoration: none !important;
}

.bc-docs-rte a:hover {
  text-decoration: underline !important;
}

.bc-docs-rte ul,
.bc-docs-rte ol {
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}

.bc-docs-rte ul li,
.bc-docs-rte ol li {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 15px !important;
  color: #1A1A1A !important;
  line-height: 1.7 !important;
  padding: 5px 0 5px 20px !important;
  border-bottom: 1px solid #E8E6E0 !important;
  position: relative !important;
  list-style: none !important;
}

.bc-docs-rte ul li:last-child,
.bc-docs-rte ol li:last-child {
  border-bottom: none !important;
}

.bc-docs-rte ul li::before {
  content: '→' !important;
  position: absolute !important;
  left: 0 !important;
  color: #4888A8 !important;
  font-size: 11px !important;
  top: 8px !important;
}

/* Note/tip callout for docs */
.bc-docs-rte blockquote {
  border-left: 3px solid #4888A8 !important;
  padding: 14px 18px !important;
  background: #f0f6fa !important;
  margin: 20px 0 !important;
  border-radius: 0 3px 3px 0 !important;
}

.bc-docs-rte blockquote p {
  font-size: 14px !important;
  color: #050E18 !important;
  margin: 0 !important;
  font-style: normal !important;
}

/* ============================================================
   HELP DOCS — IMAGE FIX
   Add these rules inside the existing .bc-docs-rte block
   in style.scss — or paste directly after it.
   Prevents screenshots from breaking out of the content column.
   ============================================================ */
 
.bc-docs-rte img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 3px;
  border: 1px solid #E8E6E0;
  margin: 20px 0;
}
 
/* Also constrain any images sitting outside the rte wrapper
   in case the help doc template outputs images directly */
.bc-docs-article-body img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}
 


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 900px) {
  .bc-blog-layout,
  .bc-article-layout,
  .bc-docs-layout {
    grid-template-columns: 1fr;
  }

  .bc-blog-sidebar,
  .bc-article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .bc-blog-sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .bc-blog-hero,
  .bc-article-hero,
  .bc-docs-hero,
  .bc-docs-article-hero {
    padding: 48px 16px 40px;
  }

  .bc-blog-body,
  .bc-article-body,
  .bc-docs-body {
    padding: 36px 16px 56px;
  }

  .bc-article-rte,
  .bc-docs-rte {
    padding: 24px 20px;
  }

  .bc-blog-sidebar,
  .bc-article-sidebar {
    grid-template-columns: 1fr;
  }

  .bc-docs-item {
    grid-template-columns: 36px 1fr 20px;
    gap: 12px;
    padding: 14px 16px;
  }

  .bc-article-nav {
    flex-direction: column;
    gap: 12px;
  }
}


/* ══════════════════════════════════════
   REVENUE HUB ARTICLE — PRODUCT CTA BLOCK
══════════════════════════════════════ */

.bc-article-cta {
  background: #000000;
  border-radius: 4px;
  padding: 36px 36px 32px;
  margin-bottom: 28px;
  border-top: 0px solid #C9A84C;
  position: relative;
  overflow: hidden;
}

.bc-article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.bc-article-cta-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 10px;
  position: relative;
}

.bc-article-cta-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #ffffff !important;
  line-height: 1.05 !important;
  margin-bottom: 12px !important;
  position: relative;
}

.bc-article-cta-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 14px !important;
  color: #717D88; !important;
  line-height: 1.75 !important;
  margin-bottom: 24px !important;
  font-style: normal !important;
  position: relative;
}

.bc-article-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  position: relative;
}

.bc-article-cta-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, border-color 0.2s;
}

.bc-article-cta-btn--gold { background: #C9A84C; }

.bc-article-cta-btn--gold,
.bc-article-cta-btn--gold:link,
.bc-article-cta-btn--gold:visited,
.bc-article-cta-btn--gold:hover,
.bc-article-cta-btn--gold:active { color: #ffffff !important; text-decoration: none !important; }

.bc-article-cta-btn--gold:hover { background: #b8943f; transform: translateY(-1px); }

.bc-article-cta-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}

.bc-article-cta-btn--ghost,
.bc-article-cta-btn--ghost:link,
.bc-article-cta-btn--ghost:visited,
.bc-article-cta-btn--ghost:hover,
.bc-article-cta-btn--ghost:active { color: rgba(255,255,255,0.6) !important; text-decoration: none !important; }

.bc-article-cta-btn--ghost:hover { border-color: rgba(255,255,255,0.4); color: #ffffff !important; }

.bc-article-cta-note {
  font-family: 'Barlow', sans-serif !important;
  font-size: 12px !important;
  color: #717D88; !important;
  margin: 0 !important;
  position: relative;
}

.bc-article-cta-note a { color: #4888A8 !important; text-decoration: none !important; font-weight: 600 !important; }
.bc-article-cta-note a:hover { text-decoration: underline !important; }


/* ══════════════════════════════════════
   HELP DOCS — INTRO CARD
══════════════════════════════════════ */

.bc-docs-intro-card {
  background: #050E18;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 28px 30px;
  margin-bottom: 32px;
}

.bc-docs-intro-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}

.bc-docs-intro-card > p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 14px !important;
  color: rgba(200,216,232,0.65) !important;
  line-height: 1.7 !important;
  margin-bottom: 20px !important;
  font-style: normal !important;
}

.bc-docs-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.bc-docs-intro-item {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(200,216,232,0.55);
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.5;
}

.bc-docs-intro-arrow { color: #C9A84C; font-size: 11px; flex-shrink: 0; }

.bc-docs-intro-note {
  background: rgba(72,136,168,0.08);
  border-left: 3px solid #4888A8;
  padding: 12px 16px;
  border-radius: 0 3px 3px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(200,216,232,0.55);
  line-height: 1.65;
}

.bc-docs-intro-note strong { color: rgba(200,216,232,0.80); }

.bc-docs-section-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #6B8FA8;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E8E6E0;
}


/* ══════════════════════════════════════
   HELP DOCS — ACCORDION SIDEBAR
══════════════════════════════════════ */

.bc-docs-sidebar {
  position: sticky;
  top: 100px;
}

.bc-docs-sidebar-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A84C;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bc-docs-accordion-group {
  background: #050E18;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.bc-docs-acc-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.bc-docs-acc-item:last-child { border-bottom: none; }

.bc-docs-acc-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s, background 0.15s;
}

.bc-docs-acc-trigger:hover { color: #ffffff; background: rgba(255,255,255,0.03); }

.bc-docs-acc-icon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #C9A84C;
  flex-shrink: 0;
  line-height: 1;
}

.bc-docs-acc-panel {
  padding: 4px 0 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.bc-docs-acc-panel a {
  display: block;
  padding: 7px 16px 7px 20px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(200,216,232,0.50);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  position: relative;
}

.bc-docs-acc-panel a::before {
  content: '→';
  position: absolute;
  left: 8px;
  color: rgba(201,168,76,0.4);
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.bc-docs-acc-panel a:hover { color: #ffffff; background: rgba(255,255,255,0.03); text-decoration: none; }

.bc-docs-sidebar-contact {
  background: #050E18;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 20px;
}

.bc-docs-sidebar-contact p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 13px !important;
  color: rgba(200,216,232,0.55) !important;
  line-height: 1.65 !important;
  margin-bottom: 12px !important;
  font-style: normal !important;
}

@media (max-width: 900px) {
  .bc-docs-sidebar { position: static; }
  .bc-docs-intro-grid { grid-template-columns: 1fr; }
  .bc-article-cta-btns { flex-direction: column; }
}

@media (max-width: 640px) {
  .bc-article-cta { padding: 24px 20px 22px; }
}






/* ============================================================
   BAR COP — HEADER CSS (CONSOLIDATED)
   Replace ALL header rules in style.scss, default.scss.css,
   and responsive.css with this single block.
   Paste at the top of style.scss (or replace Section 5 content).
   ============================================================ */


/* ── CORE HEADER SHELL ── */
header {
  background-color: #070E15;
  border-bottom: 1px solid #1D2329;
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
}

.header-container {
  position: relative;
  padding: 1px 10px 0 10px;
}

.nav-container {
  float: left;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 0;
}


/* ── LOGO ── */
.logo {
  display: block;
  float: left;
  width: 225px;
  height: 48px;
  margin-right: 20px;
  margin-top: 18px;
  text-indent: -9999px;
  background-repeat: no-repeat;
}

.logo a {
  display: block;
  height: 100%;
}

.nologo {
  display: block;
  float: left;
  height: 80px;
  margin: 0;
  line-height: 80px;
}


/* ── PRIMARY NAVIGATION (desktop) ── */
.primary-navigation {
  float: right;
  margin-right: 50px;
  margin-top: 0;
}

.primary-navigation > ul > li {
  float: left;
  display: block;
  margin-left: 60px;
  position: relative;
  margin-top: 6px;
}

.primary-navigation > ul > li > a {
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: .8em;
  height: 70px;
  letter-spacing: 0;
  line-height: 66px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
}

.primary-navigation > ul > li:hover > a {
  color: #ffffff;
  text-decoration: none;
}

/* Dropdown */
.primary-navigation > ul > li.dropped > ul {
  display: none;
  background: #0C1822;
  width: 200px;
  position: absolute;
  left: -5px;
  top: 120px;
  padding: 0px 0 0px;
  border-radius: 3px;
  z-index: 9999;
  border: 1px solid #1D2E3E;
  box-shadow: 0 12px 40px 0 rgba(0,0,0,0.5);
}

/* No arrow caret — cleaner look */
.primary-navigation > ul > li.dropped > ul::before {
  display: none;
}

.primary-navigation > ul > li.dropped:hover > ul {
  display: block;
  top: 60px;
  animation: fadein 0.25s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}

.primary-navigation > ul > li > ul > li,
.primary-navigation > ul > li > ul:not(.mega-menu) > li > ul > li {
  width: 100%;
  display: block;
  position: relative;
}

/* Divider label above first item */
.primary-navigation > ul > li.dropped > ul > li:first-child {
  border-bottom: none;
}

.primary-navigation > ul > li > ul > li > a,
.primary-navigation > ul > li > ul:not(.mega-menu) > li > ul > li > a {
  color: #C8D8E8;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  line-height: 100%;
  padding: 10px 10px;
  border-left: 0px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  box-sizing: border-box;
}

/* Gold accent arrow */
.primary-navigation > ul > li > ul > li > a::before {
  content: "›";
  color: #C9A84C;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.15s;
}

.primary-navigation > ul > li > ul > li:hover > a,
.primary-navigation > ul > li > ul:not(.mega-menu) > li > ul > li:hover > a {
  background: #111E2A;
  color: #ffffff;
  border-left-color: #C9A84C;
}

.primary-navigation > ul > li > ul > li:hover > a::before {
  transform: translateX(3px);
}

/* Thin separator between items */
.primary-navigation > ul > li > ul > li + li > a {
  border-top: 1px solid #1A2A38;
}


/* ── TOOL NAVIGATION (cart icon, desktop) ── */
.tool-navigation {
  float: right;
  margin: 12px 0 0 0;
}

.cart-button {
  background: transparent;
  cursor: pointer;
  border: none;
  display: block;
  float: left;
  font-size: 1em;
  font-weight: 500;
  outline: none;
  width: 170px;
  height: 30px;
  margin-top: 3px;
  margin-left: 10px;
  text-align: center;
  position: relative;
}

.cart-button i {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1em;
  line-height: 30px;
}

.cart-item-count {
  display: inline-block;
  color: #F7625E;
  font-size: 0.8em;
  font-weight: 800;
  height: 16px;
  line-height: 16px;
  padding: 0 8px;
  position: absolute;
  top: 4px;
  left: 80%;
}


/* ── HAMBURGER TRIGGER (mobile only, hidden on desktop) ── */
.responsive-trigger {
  color: #ffffff;
  cursor: pointer;
  display: none;
  float: right;
  font-size: 2em;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-top: 26px;
  margin-right: 7px;
  position: relative;
}


/* ── CART ICON (desktop, hide-on-mobile div) ── */
.hide-on-mobile {
  float: right;
  margin-top: 23px;
}


/* ── MOBILE NAVIGATION ── */
.responsive-navigation {
  display: none;
  clear: both;
  width: 100%;
  float: left;
  position: relative;
  margin-top: -5px;
}

.responsive-navigation > ul {
  background: #050F19;
  width: 100%;
  display: block;
  float: none;
  box-sizing: border-box;
  border-bottom: 1px solid #172D3D;
  border-top: 1px solid #172D3D;
  padding: 5px 0 15px 6px;
  margin: 0;
  overflow: visible;
}

.responsive-navigation > ul > li {
  width: 100%;
  position: relative;
  list-style: none;
}

.responsive-navigation > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 0 8px 12px;
  color: #ffffff;
  font-family: 'Barlow', sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.responsive-navigation > ul > li:hover > a,
.responsive-navigation > ul > li.selected > a {
  color: #ffffff;
  text-decoration: none;
}

/* Mobile cart link inside nav */
.responsive-navigation .mobile-cart-link {
  padding: 13px 0 15px 0;
}

/* ── MOBILE SUB-NAVIGATION ── */

/* Hidden by default — JS toggles is-open to show */
.responsive-navigation > ul > li > ul,
.responsive-navigation > ul > li.dropped > ul {
  display: none;
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 0 6px 0 !important;
  animation: none !important;
  transform: none !important;
  border-top: 1px solid #1D2E3E !important;
  margin-top: 2px !important;
}

/* Show when parent has is-open class */
.responsive-navigation > ul > li.is-open > ul {
  display: block !important;
}

/* Hide the caret triangle */
.responsive-navigation > ul > li > ul::before,
.responsive-navigation > ul > li.dropped > ul::before {
  display: none !important;
}

/* Sub-link list items */
.responsive-navigation > ul > li > ul > li {
  width: 100%;
  display: block;
  list-style: none;
}

/* Sub-link anchors */
.responsive-navigation > ul > li > ul > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 8px 12px 8px 24px;
  color: #7A9BB5;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

/* Gold arrow prefix */
.responsive-navigation > ul > li > ul > li > a::before {
  content: "›";
  color: #C9A84C;
  font-size: 16px;
  line-height: 1;
}

/* Tap/hover state */
.responsive-navigation > ul > li > ul > li:hover > a,
.responsive-navigation > ul > li > ul > li:active > a {
  color: #ffffff;
  border-left-color: #C9A84C;
}

/* Separator between sub-items */
.responsive-navigation > ul > li > ul > li + li > a {
  border-top: 1px solid #131F2A;
}


/* ── MEGA MENU ── */
.mega-menu {
  width: 100%;
  position: absolute;
  left: auto !important;
  right: 15px;
}

.mm {
  position: static !important;
}

.mega-menu .mega-menu-col {
  float: left;
  display: block;
  border-left: 1px solid #eeeeee;
  padding: 20px;
}

.mega-menu .mega-menu-col:first-child {
  border-left: none;
}

.mega-menu-col-title {
  color: #444444;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mega-menu.mega-3-col .mega-menu-col { width: 33.33%; }
.mega-menu.mega-4-col .mega-menu-col { width: 25%; }
.mega-menu.mega-5-col .mega-menu-col { width: 20%; }

.mega-menu-col > ul > li > a {
  display: block;
  color: #666;
  font-size: 1em;
  width: 100%;
  padding: 10px;
}

.mega-menu-col > ul > li:hover > a {
  background: #f5f5f5;
}


/* ── TRANSPARENT HEADER VARIANT ── */
header.transparent,
header.transparent-dark {
  background: #070E15;
  box-shadow: none;
}

header.transparent .primary-navigation > ul > li > a {
  color: #ffffff;
}


/* ── FOOTER (matches header colors — one place to change both) ── */
.footer-container {
  background: #070E15;
  border-top: 1px solid #1D2329;
  width: 100%;
  float: left;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS — ALL HEADER RULES IN ONE PLACE
   ============================================================ */

/* Tablet and below: switch to mobile nav */
@media only screen and (max-width: 1240px) {

  header {
    background: #070E15;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: none;
  }

  .primary-navigation,
  .tool-navigation {
    display: none;
  }

  .responsive-trigger {
    display: block;
  }

  .hide-on-mobile {
    display: none !important;
  }

}

/* Mobile: small tweaks */
@media only screen and (max-width: 767px) {

  .tool-navigation {
    display: none;
  }

}

/* Very small screens */
@media only screen and (max-width: 480px) {

  .header-container {
    padding: 0;
  }

}

@media only screen and (max-width: 800px) {

  .logomargin {
    padding-left: 15px !important;
  }

}

@media only screen and (max-width: 1024px) {
  .logomargin {
    padding-left: 15px !important;
  }
}









/* ============================================================
   BAR COP — WHAT OPERATORS FIND PAGE
   Add this block to style.scss
   ============================================================ */

/* ── HERO ── */
.wof-hero {
  background: #000000;
  width: 100%;
  padding: 80px 0 64px;
  position: relative;
}
.wof-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0px;
  background: linear-gradient(to right, #C9A84C 0%, #4888A8 50%, #C03828 100%);
}
.wof-hero-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 16px;
}
.wof-hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 20px;
  max-width: 880px;
  letter-spacing: -1px;
}
.wof-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #717D88;
  line-height: 1.75;
  max-width: 650px;
}
.wof-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  max-width: 760px;
}
.wof-hero-stat {
  flex: 1;
  min-width: 160px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.wof-hero-stat:last-child {
  border-right: none;
}
.wof-hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 4px;
}
.wof-hero-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.4;
}

/* ── INTRO CALLOUT ── */
.wof-intro {
  background: #F7F6F2;
  width: 100%;
  padding: 48px 0;
  border-bottom: 1px solid #E8E6E0;
}
.wof-intro-row {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.wof-intro-text {
  flex: 1;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 17px;
  color: #333333;
  line-height: 1.8;
}
.wof-intro-text strong {
  font-style: normal;
  color: #050E18;
}
.wof-intro-note {
  flex-shrink: 0;
  max-width: 260px;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  line-height: 1.7;
  padding-top: 4px;
  border-left: 2px solid #E8E6E0;
  padding-left: 24px;
}

/* ── FINDINGS SECTIONS ── */
.wof-section {
  background: #ffffff;
  width: 100%;
  padding: 48px 0 72px;
}
.wof-section + .wof-section {
  border-top: 1px solid #F7F6F2;
}
.wof-section-header {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 25px;
}
.wof-section-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 6px;
}
.wof-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -1px;
  font-weight: 800;
  text-transform: uppercase;
  color: #050E18;
  line-height: 1.0;
}
.wof-finding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.wof-finding {
  background: #070E15;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 20px 26px;
  display: flex;
  flex-direction: column;
}
.wof-finding-area {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #C9A84C;
}
.wof-finding-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: #ffffff;
}
.wof-finding-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 14px;
  line-height: 1.4;
}
.wof-finding-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 14px;
}
.wof-finding-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.wof-finding-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #717D88;
  line-height: 1.65;
  flex: 1;
}
.wof-impact-bar {
  background: #F7F6F2;
  border-radius: 4px;
  border-left: 4px solid #E8E6E0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.wof-impact-bar--gold   { border-left-color: #C9A84C; }
.wof-impact-bar--steel  { border-left-color: #C9A84C; }
.wof-impact-bar--salmon { border-left-color: #C9A84C; }
.wof-impact-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  flex-shrink: 0;
}
.wof-impact-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: #717D88;
  line-height: 1.65;
  flex: 1;
}
.wof-impact-cta {
  flex-shrink: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 10px 18px;
  border-radius: 3px;
  color: #ffffff !important;
  transition: background 0.2s;
}
.wof-impact-cta--gold            { background: #C9A84C; }
.wof-impact-cta--gold:hover      { background: #b8943f; }
.wof-impact-cta--steel           { background: #C9A84C; }
.wof-impact-cta--steel:hover     { background: #b8943f; }
.wof-impact-cta--salmon          { background: #C9A84C; }
.wof-impact-cta--salmon:hover    { background: #b8943f; }

/* ── COMBINED IMPACT ── */
.wof-combined {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  width: 100%;
  padding: 72px 0;
}
.wof-combined-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 12px;
  text-align: center;
}
.wof-combined-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  color: #050E18;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 12px;
}
.wof-combined-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: #717D88;
  line-height: 1.75;
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
}
.wof-combined-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}
.wof-combined-col {
  background: #070E15;
  padding: 32px 28px;
  text-align: center;
}
.wof-combined-col-icon {
  font-size: 28px;
  margin-bottom: 14px;
  color: #ffffff;
}
.wof-combined-col-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #C9A84C;
}
.wof-combined-col-range {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.wof-combined-col-note {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  line-height: 1.5;
}
.wof-combined-total {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.30);
  border-radius: 4px;
  padding: 28px 32px;
  text-align: center;
}
.wof-combined-total-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 10px;
}
.wof-combined-total-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  color: #050E18;
  line-height: 1;
  margin-bottom: 8px;
}
.wof-combined-total-note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ── CLOSE CTA ── */
.wof-close {
  background: #000000;
  width: 100%;
  padding: 80px 0 88px;
  text-align: center;
}
.wof-close-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  display: block;
  margin-bottom: 18px;
}
.wof-close-word1 {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -1px;
}
.wof-close-word2 {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 28px;
}
.wof-close-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: #717D88;
  line-height: 1.75;
  max-width: 530px;
  margin: 0 auto 32px;
}
.wof-close-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.wof-close-btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.2s;
}
.wof-close-btn--gold          { background: #C9A84C; color: #ffffff !important; }
.wof-close-btn--gold:hover    { background: #b8943f; }
.wof-close-btn--ghost         { background: transparent; border: 1px solid rgba(255,255,255,0.20); color: #717D88; !important; }
.wof-close-btn--ghost:hover   { border-color: rgba(255,255,255,0.40); color: #ffffff !important; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .wof-finding-grid        { grid-template-columns: 1fr 1fr; }
  .wof-combined-grid       { grid-template-columns: 1fr; }
  .wof-intro-row           { flex-direction: column; gap: 24px; }
  .wof-intro-note          { border-left: none; border-top: 2px solid #E8E6E0; padding-left: 0; padding-top: 20px; max-width: 100%; }
}
@media (max-width: 640px) {
  .wof-hero                { padding: 48px 0 48px; }
  .wof-finding-grid        { grid-template-columns: 1fr; }
  .wof-hero-stats          { flex-direction: column; }
  .wof-hero-stat           { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .wof-hero-stat:last-child { border-bottom: none; }
  .wof-impact-bar          { flex-direction: column; align-items: flex-start; }
  .wof-close-btns          { flex-direction: column; align-items: stretch; }
  .wof-close-btn           { text-align: center; }
}







/* ============================================================
   BAR COP — AUDIT PROCESS PAGE
   ============================================================ */

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.ap-hero {
  background: #000000;
  width: 100%;
  padding: 80px 0 64px;
  position: relative;
}
.ap-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0px;
  background: linear-gradient(to right, #C9A84C 0%, #4888A8 50%, #C03828 100%);
}
.ap-hero-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 16px;
}
.ap-hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 20px;
  max-width: 800px;
  letter-spacing: -1px;
}
.ap-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #717D88;
  line-height: 1.75;
  max-width: 620px;
}

/* ══════════════════════════════════════
   MAIN CONTENT — white background
══════════════════════════════════════ */
.ap-body {
  background: #ffffff;
  width: 100%;
  padding: 48px 0 80px;
}
.ap-body-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

/* ── MAIN COLUMN ── */
.ap-main {}

/* Section label */
.ap-section-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 8px;
}
.ap-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #050E18;
  line-height: 1.05;
  margin-bottom: 0px;
  padding-bottom: 20px;
  border-bottom: 0px solid #E8E6E0;
}

/* Step cards */
.ap-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
}
.ap-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  
  border-top: 1px solid #F0EFEA;
  position: relative;
}
.ap-step:last-child { border-bottom: none; }

.ap-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  text-align: right;
  margin-top: 2px;
}
.ap-step--gold .ap-step-num   { color: #C9A84C; }
.ap-step--steel .ap-step-num  { color: #C9A84C; }
.ap-step--salmon .ap-step-num { color: #C9A84C; }
.ap-step--navy .ap-step-num   { color: #C9A84C; }

.ap-step-content { flex: 1; min-width: 0; }
.ap-step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #050E18;
  line-height: 1.1;
  margin-bottom: 8px;
}
.ap-step-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #444444;
  line-height: 1.75;
}
.ap-step-note {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.ap-step--gold .ap-step-note   { color: #4888A8; background: rgba(72,136,168,0.08); border: 1px solid rgba(72,136,168,0.20); }
.ap-step--steel .ap-step-note  { color: #4888A8; background: rgba(72,136,168,0.08); border: 1px solid rgba(72,136,168,0.20); }
.ap-step--salmon .ap-step-note { color: #4888A8; background: rgba(72,136,168,0.08); border: 1px solid rgba(72,136,168,0.20); }
.ap-step--navy .ap-step-note   { color: #4888A8; background: rgba(72,136,168,0.08); border: 1px solid rgba(72,136,168,0.20); }

/* Divider between sections */
.ap-section-divider {
  height: 1px;
  background: #E8E6E0;
  margin: 48px 0 40px;
}

/* Bundle section */
.ap-bundle-box {
  background: #050E18;
  border-radius: 4px;
  border-top: 0px solid #C9A84C;
  padding: 28px 28px 32px;
  margin-bottom: 48px;
}
.ap-bundle-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight:600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 12px;
}
.ap-bundle-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ap-bundle-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #717D88;
  line-height: 1.75;
  margin-bottom: 18px;
}
.ap-bundle-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ap-bundle-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
}
.ap-bundle-row-num {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C9A84C;
  flex-shrink: 0;
  padding-top: 3px;
}
.ap-bundle-row-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: rgba(200,216,232,0.85);
  line-height: 1.55;
}
.ap-bundle-row-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* What you receive box */
.ap-receive-box {
  background: #F7F6F2;
  border-radius: 4px;
  border-left: 4px solid #C9A84C;
  padding: 28px 28px 32px;
}
.ap-receive-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 14px;
}
.ap-receive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ap-receive-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
}
.ap-receive-list li::before {
  content: '✓';
  font-size: 12px;
  font-weight: 700;
  color: #C9A84C;
  flex-shrink: 0;
  margin-top: 2px;
}
.ap-receive-list li strong {
  color: #050E18;
  font-weight: 600;
}

/* ── SIDEBAR ── */
.ap-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ap-sidebar-card {
  background: #050E18;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.ap-sidebar-card-bar {
  height: 0px;
  background: #C9A84C;
}
.ap-sidebar-card-inner {
  padding: 22px 20px 24px;
}
.ap-sidebar-card-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 10px;
}
.ap-sidebar-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.ap-sidebar-card-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  color: #717D88;
  line-height: 1.65;
  margin-bottom: 16px;
}
.ap-sidebar-btn {
  display: block;
  text-align: center;
  padding: 11px 16px;
  background: #C9A84C;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: background 0.2s;
  margin-bottom: 8px;
}
.ap-sidebar-btn:hover { background: #b8943f; }
.ap-sidebar-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.60) !important;
}
.ap-sidebar-btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}

.ap-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.ap-sidebar-link {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64A0BC;
  text-decoration: none !important;
  transition: color 0.15s;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ap-sidebar-link:last-child { border-bottom: none; }
.ap-sidebar-link:hover { color: #ffffff; }

/* Timeline dots sidebar card */
.ap-timeline {
  padding: 22px 20px 24px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #E8E6E0;
}
.ap-timeline-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 16px;
}
.ap-timeline-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ap-timeline-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  position: relative;
}
.ap-timeline-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 26px;
  bottom: -10px;
  width: 1px;
  background: #E8E6E0;
}
.ap-timeline-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.ap-timeline-dot--gold   { background: #C9A84C; }
.ap-timeline-dot--steel  { background: #4888A8; }
.ap-timeline-dot--salmon { background: #C03828; }
.ap-timeline-dot--gray   { background: #E8E6E0; border: 2px solid #8A9BB0; }
.ap-timeline-text {
  flex: 1;
}
.ap-timeline-time {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 2px;
}
.ap-timeline-event {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #333333;
  line-height: 1.4;
  font-weight: 500;
}

/* ══════════════════════════════════════
   CLOSE CTA — matches s8-close
══════════════════════════════════════ */
.ap-close {
  background: #050C13;
  width: 100%;
  padding: 80px 0 88px;
  text-align: center;
}
.ap-close-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
   color: #717D88;
  display: block;
  margin-bottom: 18px;
}
.ap-close-word1 {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -1px;
}
.ap-close-word2 {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.05;
  margin-bottom: 28px;
}
.ap-close-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
   color: #717D88;
  line-height: 1.75;
  max-width: 550px;
  margin: 0 auto 32px;
}
.ap-close-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ap-close-btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.2s;
}
.ap-close-btn--gold { background: #C9A84C; color: #ffffff !important; }
.ap-close-btn--gold:hover { background: #b8943f; }
.ap-close-btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.20); color: rgba(255,255,255,0.70) !important; }
.ap-close-btn--ghost:hover { border-color: rgba(255,255,255,0.40); color: #ffffff !important; }
.ap-close-note {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.20);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ap-body-inner { grid-template-columns: 1fr; gap: 48px; }
  .ap-sidebar { position: static; }
}
@media (max-width: 600px) {
  .ap-hero { padding: 48px 0 48px; }
  .ap-body { padding: 48px 0 60px; }
  .ap-step { gap: 16px; }
  .ap-step-num { font-size: 32px; width: 40px; }
  .ap-close { padding: 60px 0 72px; }
  .ap-close-btns { flex-direction: column; align-items: stretch; }
  .ap-close-btn { text-align: center; }
}









/* ============================================================
   BAR COP — PRODUCT COMPARISON PAGE
   ============================================================ */


/* ══════════════════════════════════════
   HERO SECTION — full-width deep navy
══════════════════════════════════════ */
.cmp-hero-section {
  background: #000000;
  width: 100%;
  padding: 80px 0 64px;
  position: relative;
}
.cmp-hero-section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0px;
  background: linear-gradient(to right, #C9A84C 0%, #4888A8 50%, #C03828 100%);
}
.cmp-hero-label {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 16px;
}
.cmp-hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4.5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.0;
  margin-bottom: 20px;
  max-width: 800px;
  letter-spacing: -1px;
}
.cmp-hero-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: #717D88;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 0px;
}
.cmp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cmp-hero-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.55);
}

/* ══════════════════════════════════════
   PRODUCT SECTIONS — full-width white
══════════════════════════════════════ */
.cmp-products-section {
  background: #ffffff;
  width: 100%;
  padding: 48px 0 72px;
}
.cmp-products-section + .cmp-products-section {
  border-top: 1px solid #E8E6E0;
}

/* Section header */
.cmp-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E6E0;
}
.cmp-section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 8px;
}
.cmp-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  color: #050E18;
  line-height: 1.0;
}
.cmp-section-note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: #8A9BB0;
  line-height: 1.65;
  max-width: 300px;
  text-align: right;
  flex-shrink: 0;
}

/* Three-column grid */
.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

/* ══════════════════════════════════════
   PRODUCT CARDS — dark navy
══════════════════════════════════════ */
.cmp-card {
  background: #050E18;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}

/* Top color bar */
.cmp-card-bar { height: 0px; width: 100%; flex-shrink: 0; }
.cmp-card--gold .cmp-card-bar   { background: #C9A84C; }
.cmp-card--steel .cmp-card-bar  { background: #4888A8; }
.cmp-card--salmon .cmp-card-bar { background: #C03828; }

.cmp-card-body {
  padding: 26px 22px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Badge */
.cmp-card-badge {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.cmp-card--gold .cmp-card-badge   { color: #C9A84C; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.28); }
.cmp-card--steel .cmp-card-badge  { color: #C9A84C; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.28); }
.cmp-card--salmon .cmp-card-badge { color: #C9A84C; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.28); }

/* Card name */
.cmp-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* Card description */
.cmp-card-desc {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #717D88;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Divider */
.cmp-card-rule {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 16px;
}

/* Specs */
.cmp-card-specs {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.cmp-spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.cmp-spec-label {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #717D88;
}
.cmp-spec-val {
  font-family: 'Barlow', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cmp-card--gold .cmp-spec-val   { color: #C9A84C; }
.cmp-card--steel .cmp-spec-val  { color: #C9A84C; }
.cmp-card--salmon .cmp-spec-val { color: #C9A84C; }

/* Checklist */
.cmp-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cmp-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: #717D88;
  line-height: 1.5;
}
.cmp-card-list li::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.cmp-card--gold .cmp-card-list li::before   { color: #C9A84C; }
.cmp-card--steel .cmp-card-list li::before  { color: #C9A84C; }
.cmp-card--salmon .cmp-card-list li::before { color: #C9A84C; }

/* Price block */
.cmp-card-price-block { margin-top: auto; }
.cmp-card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 3px;
}
.cmp-card-price span {
font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #717D88;
  margin-left: 4px;
}
.cmp-card-delivery {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #717D88;
  margin-bottom: 14px;
  margin-top: 10px;
}

/* Add to cart button */
.cmp-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 16px;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #ffffff !important;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  margin-bottom: 15px;
}
.cmp-card--gold .cmp-card-btn   { background: #C9A84C; }
.cmp-card--gold .cmp-card-btn:hover { background: #b8943f; }
.cmp-card--steel .cmp-card-btn   { background: #C9A84C; }
.cmp-card--steel .cmp-card-btn:hover { background: #b8943f; }
.cmp-card--salmon .cmp-card-btn  { background: #C9A84C; }
.cmp-card--salmon .cmp-card-btn:hover { background: #b8943f; }

/* Secondary link */
.cmp-card-link {
  display: block;
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: color 0.15s;
}
.cmp-card--gold .cmp-card-link   { color: #4888A8; }
.cmp-card--gold .cmp-card-link:hover { color: #FFFFFF; }
.cmp-card--steel .cmp-card-link  { color: #4888A8; }
.cmp-card--steel .cmp-card-link:hover { color: #FFFFFF; }
.cmp-card--salmon .cmp-card-link { color: #4888A8; }
.cmp-card--salmon .cmp-card-link:hover { color: #FFFFFF; }

/* ══════════════════════════════════════
   CLOSE CTA SECTION — matches s8-close
   on product pages and homepage
══════════════════════════════════════ */
.cmp-close-section {
  background: #050C13;
  width: 100%;
  padding: 80px 0 88px;
}

.cmp-close-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 18px;
}
.cmp-close-word1 {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -1px;
}
.cmp-close-word2 {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: #C9A84C;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.cmp-close-sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(200,216,232,0.70);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cmp-close-btn {
  display: inline-block;
  padding: 16px 44px;
  background: #C9A84C;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.cmp-close-btn:hover { background: #b8943f; }
.cmp-close-note {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cmp-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .cmp-section-header { flex-direction: column; align-items: flex-start; }
  .cmp-section-note { text-align: left; max-width: 100%; }
  .cmp-close-word1 { font-size: clamp(42px, 10vw, 80px); }
  .cmp-close-word2 { font-size: clamp(30px, 7vw, 52px); }
}
@media (max-width: 600px) {
  .cmp-hero-section { padding: 48px 0 48px; }
  .cmp-products-section { padding: 48px 0 56px; }
  .cmp-close-section { padding: 60px 0 72px; }
}







.bc-footer {
  width: 100%;
  float: none;
  clear: both;
}

html {
  overflow-y: scroll;
}