/* =====================================================
   TRIN REVENUE LAB — Shared Stylesheet
   Brand colors pulled from ROI Calculator design
   ===================================================== */

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #142236;
  --blue:       #1565C0;
  --blue-mid:   #1976D2;
  --blue-light: #E3F2FD;
  --gold:       #F9A825;
  --gold-hover: #FFB300;
  --gold-light: #FFF8E1;
  --white:      #FFFFFF;
  --gray-light: #F5F7FA;
  --gray-mid:   #E0E6EE;
  --gray-text:  #6B7A8D;
  --green:      #2E7D32;
  --green-light:#E8F5E9;
  --shadow:     0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg:  0 8px 40px rgba(13,27,42,0.18);
  --radius:     12px;
  --radius-sm:  8px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--gray-light);
  color: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── NAVIGATION ─────────────────────────────────────── */
.navbar {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  overflow: visible;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Lift the logo so it floats above/below the navbar bar */
  position: relative;
  z-index: 101;
}
/* Logo image — floats larger than the navbar height */
.nav-logo img {
  height: 118px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand-main {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-logo-text .brand-main .trin { color: var(--white); }
.nav-logo-text .brand-main .rev  { color: var(--blue-mid); }
.nav-logo-text .brand-tagline {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: #8AA4BF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-links a.active {
  color: var(--gold);
  background: rgba(249,168,37,0.10);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-hover) !important;
}

/* ─── NAV DROPDOWN ───────────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.7;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #142236;
  border: 1px solid rgba(249,168,37,0.28);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.40);
  min-width: 230px;
  z-index: 9999;
  overflow: hidden;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #B0C4DE;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s, color 0.15s;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover {
  background: rgba(249,168,37,0.12);
  color: var(--gold);
}
.nav-dropdown-menu .menu-icon { font-size: 15px; flex-shrink: 0; }

/* ─── HERO SECTION ───────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #0A2856 50%, #1565C0 100%);
  padding: 80px 40px 72px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231565C0' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.35);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .blue-lt { color: #7EB3F7; }
.hero p {
  font-size: 18px;
  color: #B0C4DE;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

/* ─── STATS BAR ──────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  flex-shrink: 0;
}
.stat-item .stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.3px;
  text-align: left;
  white-space: nowrap;
}

/* ─── SECTION CONTAINERS ─────────────────────────────── */
.section {
  padding: 72px 40px;
}
.section-alt {
  background: var(--white);
  padding: 72px 40px;
}
.section-dark {
  background: var(--navy);
  padding: 72px 40px;
  color: var(--white);
}
.container {
  max-width: 1080px;
  margin: 0 auto;
}

/* ─── SECTION HEADERS ────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-dark .section-label { color: var(--gold); }
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-dark .section-sub { color: #8AA4BF; }
.section-title .gold { color: var(--gold); }
.section-title .blue { color: var(--blue-mid); }

/* ─── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
}
.card-dark {
  background: var(--navy-mid);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 32px;
}
.card-gold {
  background: var(--gold-light);
  border-radius: var(--radius);
  border: 1.5px solid var(--gold);
  padding: 28px 32px;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-blue   { background: var(--blue-light); }
.icon-gold   { background: var(--gold-light); }
.icon-navy   { background: rgba(13,27,42,0.08); }
.icon-green  { background: var(--green-light); }
.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.card-dark h3 { color: var(--white); }
.card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.65;
}
.card-dark p { color: #8AA4BF; }

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

/* ─── BADGE / TAG ────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.badge-blue  { background: var(--blue-light);  color: var(--blue); }
.badge-gold  { background: var(--gold-light);  color: #8a5d00; }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-navy  { background: rgba(13,27,42,0.08); color: var(--navy); }

/* ─── CALLOUT BAR ────────────────────────────────────── */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
}
.callout h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.callout p  { font-size: 14px; color: #B0C4DE; }

/* ─── DIVIDER ────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--gray-mid);
  margin: 0;
}
.divider-dark {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0;
}

/* ─── TABLE ──────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.data-table th:first-child { border-radius: 8px 0 0 0; }
.data-table th:last-child  { border-radius: 0 8px 0 0; }
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--navy);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--gray-light); }
.data-table .highlight td { background: var(--gold-light) !important; font-weight: 600; }

/* ─── PAGE HERO (interior pages) ────────────────────── */
.page-hero {
  position: relative;
  background: url('office_pic.png') center 5% / cover no-repeat, #0D1B2A;
  padding: 56px 40px 52px;
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.92) 100%);
}
.page-hero .container { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.page-hero .page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
}
.page-hero p {
  font-size: 16px;
  color: #B0C4DE;
  max-width: 600px;
  line-height: 1.7;
}

/* ─── CHECKLIST ──────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}
.check-icon {
  width: 20px;
  height: 20px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-item.gold .check-icon { background: var(--gold-light); color: #8a5d00; }
.check-item.green .check-icon { background: var(--green-light); color: var(--green); }

/* ─── TIMELINE ───────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -4px;
  width: 2px;
  background: var(--gray-mid);
}
.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot.gold { background: var(--gold-light); color: #8a5d00; }
.timeline-content {
  padding-bottom: 32px;
}
.timeline-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.timeline-content p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: #7A90A8;
  padding: 48px 40px 28px;
}
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand .brand-name span { color: var(--blue-mid); }
.footer-brand .tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: #7A90A8;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1080px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-bottom .copy { color: #5A6E82; }
.footer-bottom .copy span { color: var(--gold); }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; height: 56px; }
  .nav-links { gap: 2px; }
  .nav-links a { font-size: 11px; padding: 8px 10px; }
  .hero, .section, .section-alt, .section-dark, .page-hero { padding-left: 20px; padding-right: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { flex-wrap: wrap; gap: 0; padding: 14px 16px; }
  .stat-item { padding: 8px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); width: 50%; justify-content: center; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.10); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .callout { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 96px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 12px 16px 20px;
    z-index: 9998;
    border-bottom: 2px solid rgba(249,168,37,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .nav-links.mobile-open a {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.mobile-open a:last-child { border-bottom: none; }
  .nav-links.mobile-open .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 13px 20px !important;
  }
  .nav-links.mobile-open .nav-dropdown > a::after { content: ''; }
  .nav-links.mobile-open .nav-dropdown-menu { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 20px; }
  .callout { flex-direction: column; text-align: center; }
}

/* ─── UTILITY ────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-blue   { color: var(--blue-mid); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--gray-text); }
.fw-800      { font-weight: 800; }
.mt-4        { margin-top: 4px; }
.mt-8        { margin-top: 8px; }
.mt-16       { margin-top: 16px; }
.mt-24       { margin-top: 24px; }
.mt-32       { margin-top: 32px; }
.mb-8        { margin-bottom: 8px; }
.mb-16       { margin-bottom: 16px; }
.mb-24       { margin-bottom: 24px; }
.mb-32       { margin-bottom: 32px; }
.gap-8       { gap: 8px; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ─── HAMBURGER MENU ─────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.22);
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: rgba(249,168,37,0.6); }
.nav-hamburger .ham-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}
.nav-hamburger .ham-box span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger .ham-label {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.nav-hamburger.open .ham-box span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open .ham-box span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .ham-box span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }


/* ── Sticky mobile CTA bar ── */
.mobile-cta-bar{display:none}
@media(max-width:760px){
  .mobile-cta-bar{display:flex;position:fixed;left:0;right:0;bottom:0;z-index:9999;box-shadow:0 -2px 14px rgba(0,0,0,.28)}
  .mobile-cta-bar a{flex:1;text-align:center;padding:15px 8px;font-weight:800;font-size:15px;text-decoration:none;letter-spacing:.2px}
  .mcta-quiz{background:var(--gold);color:var(--navy)}
  .mcta-call{background:var(--blue);color:#fff;flex:0 0 34%}
  body{padding-bottom:60px}
  .proof-div{display:none}
}
/* Header click-to-call */
.nav-phone{color:var(--gold);font-weight:700;white-space:nowrap;text-decoration:none;font-size:14px}

/* "New" sticker on Revenue Audit nav link — gold, angled, sits before the text */
.nav-badge{
  display:inline-block;background:var(--gold);color:var(--navy);
  font-size:10px;font-weight:900;letter-spacing:.5px;line-height:1;
  padding:3px 7px;border-radius:5px;margin-right:5px;vertical-align:middle;
  text-transform:uppercase;transform:rotate(-9deg);
  box-shadow:0 2px 5px rgba(0,0,0,.28);
  animation:navBadgeWiggle 2.2s ease-in-out infinite;
}
@keyframes navBadgeWiggle{
  0%,100%{transform:rotate(-9deg) scale(1)}
  50%{transform:rotate(-9deg) scale(1.12)}
}


/* =====================================================
   TRL WEBSITE 2.0 — Revenue Machine additions
   ===================================================== */
.nav-phone { color: var(--gold) !important; border: 1px solid rgba(249,168,37,.35); }
.hero-v2 { padding-top: 92px; padding-bottom: 86px; }
.hero-content.wide { max-width: 1040px; }
.hero-lead { max-width: 780px !important; font-size: clamp(17px, 2vw, 21px) !important; }
.trust-strip { margin: 34px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.trust-strip span { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: #d8e7f8; border-radius: 999px; padding: 8px 13px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; }
.align-center { align-items: center; }
.align-start { align-items: start; }
.tight { margin-bottom: 18px !important; }
.quote-card { background: var(--navy); color: var(--gold); border-radius: var(--radius); padding: 24px 28px; font-size: clamp(24px, 3vw, 36px); font-weight: 850; line-height: 1.12; box-shadow: var(--shadow-lg); }
.decision-card { border-top: 6px solid var(--gold); }
.check-list { margin-top: 18px; display: grid; gap: 10px; }
.check-list li { list-style: none; position: relative; padding-left: 28px; color: var(--gray-text); font-size: 14px; line-height: 1.55; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }
.check-list.large li { font-size: 16px; color: var(--navy); }
.offer-grid { align-items: stretch; }
.offer-card { display: flex; flex-direction: column; gap: 12px; min-height: 100%; }
.offer-card.featured { border: 2px solid var(--gold); box-shadow: 0 12px 44px rgba(249,168,37,.20); }
.offer-card h3 { font-size: 25px; }
.offer-question { color: var(--navy) !important; font-size: 17px !important; font-weight: 750; }
.offer-card .btn-primary, .offer-card .btn-outline { margin-top: auto; text-align: center; }
.btn-outline.dark { color: var(--navy); border-color: rgba(13,27,42,.26); }
.btn-outline.dark:hover { background: rgba(13,27,42,.06); }
.trinity-card { background: linear-gradient(180deg,#fff,#fff8e1); border: 1px solid rgba(249,168,37,.35); }
.script-line { font-size: 18px !important; color: var(--navy) !important; font-weight: 650; line-height: 1.75 !important; }
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.process-grid > div { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-top: 4px solid var(--blue); }
.process-grid span { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; background: var(--gold); color: var(--navy); border-radius: 50%; font-weight: 900; margin-bottom: 12px; }
.process-grid h3 { margin-bottom: 6px; }
.final-cta .callout { gap: 26px; justify-content: space-between; }
.final-cta h2 { color: var(--white); font-size: 32px; margin-bottom: 6px; }
.final-cta p { color: #b0c4de; }
.hero-actions.compact { justify-content: flex-end; margin: 0; }
.audit-hero { background: linear-gradient(135deg, #0D1B2A 0%, #0B3A75 62%, #F9A825 160%); }
.digital-hero { background: linear-gradient(135deg, #0D1B2A 0%, #1565C0 60%, #2E7D32 145%); }
.blueprint-preview { background: var(--white); border-radius: var(--radius); border-left: 6px solid var(--gold); padding: 28px 32px; box-shadow: var(--shadow); }
.blueprint-preview h3 { margin-bottom: 16px; }
.blueprint-preview ol { counter-reset: item; display: grid; gap: 12px; padding-left: 20px; }
.blueprint-preview li { color: var(--navy); line-height: 1.45; font-weight: 650; }
.form-shell { max-width: 980px; }
.form-intro { margin-bottom: 28px; }
.trl-form { display: grid; gap: 18px; }
.trl-form label { display: grid; gap: 7px; font-weight: 750; color: var(--navy); font-size: 14px; }
.trl-form input, .trl-form select, .trl-form textarea { width: 100%; border: 1px solid var(--gray-mid); border-radius: 10px; padding: 13px 14px; font-size: 15px; font-family: inherit; background: var(--white); color: var(--navy); }
.trl-form input:focus, .trl-form select:focus, .trl-form textarea:focus { outline: 3px solid rgba(21,101,192,.16); border-color: var(--blue); }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.consent-box { background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: 10px; padding: 14px; }
.checkbox-line { display: flex !important; grid-template-columns: auto 1fr !important; flex-direction: row; gap: 10px !important; align-items: flex-start; color: var(--gray-text) !important; font-size: 12px !important; font-weight: 500 !important; line-height: 1.45; }
.checkbox-line input { width: auto !important; margin-top: 2px; }
.form-button { justify-self: start; }
.form-note { color: var(--gray-text); font-size: 13px; }
.score-card { position: relative; padding-top: 34px; }
.score-pill { width: 42px; height: 42px; background: var(--gold); color: var(--navy); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 14px; }
.contact-options { display: grid; gap: 12px; margin-top: 24px; }
.contact-tile { display: grid; gap: 2px; padding: 16px 18px; border-radius: 12px; background: var(--white); border-left: 5px solid var(--gold); box-shadow: var(--shadow); }
.contact-tile strong { color: var(--navy); }
.contact-tile span { color: var(--gray-text); font-size: 14px; }
.compact-form { max-width: 860px; }
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2,1fr); } .nav-links { gap: 3px; } .nav-links a { padding: 8px 8px; font-size: 12px; } }
@media (max-width: 760px) { .navbar { height: auto; min-height: 90px; padding: 12px 18px; flex-direction: column; align-items: flex-start; } .nav-logo img { height: 82px; } .nav-links { display: flex; flex-wrap: wrap; width: 100%; } .hero-v2 { padding: 64px 22px; } .section, .section-alt, .section-dark { padding: 54px 22px; } .grid-2, .grid-3, .grid-4, .form-grid-2, .process-grid { grid-template-columns: 1fr; } .final-cta .callout { flex-direction: column; align-items: flex-start; } .hero-actions.compact { justify-content: flex-start; } }


/* =====================================================
   TRL Website 2.0 refinement pass — personal hero, footer, forms
   ===================================================== */
.home-hero-personal {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.home-hero-photo {
  position: absolute;
  inset: 0;
  background: url('alan_desk_new.png') 72% 44% / auto 96% no-repeat;
  opacity: .96;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.80) 38%, rgba(13,27,42,.45) 63%, rgba(13,27,42,.18) 100%);
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 650px) 310px;
  gap: 42px;
  align-items: center;
  padding: 96px 0 74px;
}
.home-hero-copy { text-align: left; }
.home-hero-copy .hero-eyebrow { margin-left: 0; }
.home-hero-copy h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.home-hero-copy .hero-lead {
  margin: 0 0 32px !important;
  color: #d4e2f1;
  max-width: 620px !important;
}
.home-hero-copy .hero-actions { justify-content: flex-start; }
.personal-strip { justify-content: flex-start; margin-left: 0; }
.home-hero-card {
  align-self: end;
  background: rgba(13,27,42,.70);
  border: 1px solid rgba(249,168,37,.42);
  border-radius: 18px;
  padding: 24px 24px 22px;
  box-shadow: 0 12px 44px rgba(0,0,0,.32);
  backdrop-filter: blur(8px);
}
.home-hero-card .card-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
}
.home-hero-card p { font-size: 16px; color: #f5f7fb; line-height: 1.65; margin: 0 0 18px; }
.home-hero-card strong { color: var(--white); line-height: 1.35; }
.home-hero-card strong span { color: #9fb8d2; font-size: 13px; font-weight: 600; }
.footer-logo-row { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.footer-logo-row img { width: 76px; height: auto; filter: drop-shadow(0 3px 8px rgba(0,0,0,.35)); }
.footer-social { margin-top: 14px; }
.footer-social a, .footer-bottom a { color: var(--gold); font-size: 13px; font-weight: 700; }
.footer-col a { color:#7A90A8; }
.sms-consent-block { display: grid; gap: 10px; }
.sms-consent-block .checkbox-line { align-items:flex-start; }
.sms-consent-block .checkbox-line label { display:block; color: var(--gray-text); font-size: 12px; font-weight: 400; line-height: 1.5; cursor: pointer; }
.sms-consent-block .checkbox-line input { flex-shrink:0; accent-color: var(--blue); }
.consent-note { font-size:11px; color:var(--gray-text); margin-top:0; font-style:italic; }
.consent-legal { font-size:12px; color:#64748b; line-height:1.6; margin:0; }
.consent-legal a { color: var(--blue); font-weight: 700; }
@media (max-width: 980px) {
  .home-hero-inner { grid-template-columns: 1fr; padding-top: 72px; }
  .home-hero-photo { background-position: 80% 50%; opacity: .42; }
  .home-hero-card { max-width: 540px; }
}
@media (max-width: 760px) {
  .navbar { height: 90px; min-height: 90px; padding: 0 18px; flex-direction: row; align-items: center; }
  .nav-links { display: none !important; }
  .nav-links.mobile-open { display: flex !important; top: 90px; }
  .nav-logo img { height: 88px; }
  .home-hero-personal { min-height: auto; }
  .home-hero-inner { width: calc(100% - 40px); padding: 54px 0 46px; }
  .home-hero-copy .hero-actions { flex-direction: column; align-items: stretch; }
  .home-hero-copy h1 { font-size: 42px; }
  .home-hero-card { padding: 20px; }
  .footer-logo-row img { width: 62px; }
}


/* TRL Website 2.0 v5 urgency + stats */
.grid-4 { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.stat-grid { margin-top:28px; }
.stat-card { background:#fff; border-radius:16px; padding:24px 20px; box-shadow:0 12px 34px rgba(13,27,42,.08); border-top:4px solid var(--gold); }
.stat-card strong { display:block; font-size:clamp(34px,4vw,52px); line-height:1; color:var(--navy); letter-spacing:-1px; margin-bottom:12px; }
.stat-card span { display:block; color:var(--gray-text); font-size:14px; line-height:1.55; }
.fine-print { font-size:12px; color:var(--gray-text); margin-top:18px; max-width:760px; }
.google-change-section .section-sub.light { color:#B0C4DE; max-width:820px; }
.capacity-section .callout h2 { margin-bottom:8px; }
.landing-urgency-google .section-sub, .agent-ready-criteria .section-sub { max-width:820px; }
@media(max-width:900px){ .grid-4{grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .grid-4{grid-template-columns:1fr;} .stat-card{padding:20px 18px;} }


/* TRL Website 2.0 v6 refinements */
.monthly-rhythm-section .card p { line-height:1.65; }
.q-block textarea { width:100%; border:1.5px solid var(--gray-mid); border-radius:8px; padding:12px 14px; font-family:inherit; font-size:14px; color:var(--navy); resize:vertical; min-height:90px; }
.q-block textarea:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(21,101,192,0.10); }
.assess-hero h1 .gold { display:inline-block; margin-top:6px; }


/* Small helper text under audit URL fields */
.field-help {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--gray-text);
  font-weight: 400;
}
.field-help strong {
  color: var(--navy);
}


/* TRL v7 refinements */
.footer-main-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
}
.footer-social {
  margin-top: 16px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}
.fb-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1877F2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
}
.landing-compact-audit {
  padding-top: 44px;
  padding-bottom: 22px;
}
.compact-audit-grid {
  margin-top: 24px;
}
.compact-audit-grid .card {
  min-height: 0;
}
.compact-promise {
  margin: 22px auto 0;
  max-width: 920px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-text);
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 10px 28px rgba(13,27,42,.06);
}
.home-hero-card {
  margin-left: clamp(20px, 4vw, 58px);
}
@media (max-width: 900px) {
  .home-hero-card {
    margin-left: 0;
  }
  .footer-main-logo {
    width: 220px;
  }
}


/* TRL v8 refinements */
.footer-main-logo {
  width: 380px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}
.footer-logo-row img.footer-main-logo {
  width: 380px !important;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.li-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0A66C2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}
.dollar-first-card h3 {
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  margin: 6px 0 10px;
}
.dollar-first-card p {
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .footer-main-logo,
  .footer-logo-row img.footer-main-logo {
    width: 300px !important;
  }
}


/* TRL v9 refinements */
.footer-brand,
.footer-logo-row {
  overflow: visible !important;
}
.footer-logo-row {
  padding-top: 8px;
  margin-bottom: 12px;
}
.footer-main-logo {
  width: 360px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}
.footer-logo-row img.footer-main-logo {
  width: 360px !important;
}
.compact-contact-hero,
.hero-v2.compact-contact-hero {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
  min-height: 0 !important;
}
.compact-contact-hero .hero-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.compact-contact-hero h1 {
  margin-bottom: 16px !important;
}
@media (max-width: 900px) {
  .footer-main-logo,
  .footer-logo-row img.footer-main-logo {
    width: 300px !important;
  }
  .compact-contact-hero,
  .hero-v2.compact-contact-hero {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }
}


/* TRL v10 refinements */
.footer-main-logo,
.footer-logo-row img.footer-main-logo {
  width: 420px !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}
.footer-logo-row {
  overflow: visible !important;
  padding-top: 0 !important;
  margin-bottom: 12px !important;
}
.footer-brand {
  overflow: visible !important;
}
.home-hero-card.dollar-first-card {
  width: min(560px, 100%) !important;
  max-width: 560px !important;
  padding: 22px 28px !important;
  align-self: center !important;
  margin-left: clamp(40px, 7vw, 110px) !important;
}
.home-hero-card.dollar-first-card h3 {
  font-size: 19px !important;
  margin-bottom: 8px !important;
}
.home-hero-card.dollar-first-card p {
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-bottom: 8px !important;
}
.digital-form-spotlight {
  background: linear-gradient(135deg, #0D1B2A 0%, #0A2856 55%, #1565C0 100%) !important;
  padding-top: 48px !important;
  padding-bottom: 54px !important;
}
.digital-form-spotlight .form-shell {
  background: rgba(255,255,255,0.98) !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 60px rgba(0,0,0,.22) !important;
}
.digital-form-spotlight .form-intro .section-label {
  color: var(--gold) !important;
}
.digital-form-spotlight .form-intro .section-title {
  font-size: clamp(30px, 4vw, 46px) !important;
  line-height: 1.1 !important;
}
.digital-form-spotlight .form-note {
  font-weight: 800 !important;
  color: var(--navy) !important;
}
@media (max-width: 980px) {
  .home-hero-card.dollar-first-card {
    margin-left: 0 !important;
    width: 100% !important;
  }
}
@media (max-width: 900px) {
  .footer-main-logo,
  .footer-logo-row img.footer-main-logo {
    width: 320px !important;
  }
}


/* TRL v11 refinements */
.nav-logo img {
  max-height: 52px !important;
  width: auto !important;
  object-fit: contain !important;
}
.digital-form-spotlight .form-shell {
  color: var(--navy) !important;
  padding-top: 34px !important;
}
.digital-form-spotlight .form-intro .section-label {
  color: var(--gold) !important;
  font-weight: 900 !important;
}
.digital-form-spotlight .form-intro .section-title,
.digital-form-spotlight .section-title,
.digital-form-spotlight h2 {
  color: var(--navy) !important;
  text-shadow: none !important;
}
.digital-form-spotlight .form-intro p,
.digital-form-spotlight p,
.digital-form-spotlight .form-note {
  color: var(--gray-text) !important;
  opacity: 1 !important;
}
.digital-form-spotlight label,
.digital-form-spotlight .trl-form label {
  color: var(--navy) !important;
}
.digital-form-spotlight input,
.digital-form-spotlight textarea {
  background: #fff !important;
  color: var(--navy) !important;
}
.digital-form-spotlight .field-help {
  color: var(--gray-text) !important;
}
.digital-form-spotlight .form-note {
  font-weight: 800 !important;
  color: var(--navy) !important;
}
.home-hero-card.dollar-first-card {
  width: min(640px, 100%) !important;
  max-width: 640px !important;
  padding: 18px 30px !important;
  margin-left: clamp(70px, 9vw, 150px) !important;
  margin-top: clamp(42px, 6vh, 90px) !important;
  align-self: flex-start !important;
}
.home-hero-card.dollar-first-card h3 {
  font-size: 18px !important;
  line-height: 1.22 !important;
  margin: 4px 0 8px !important;
}
.home-hero-card.dollar-first-card p {
  font-size: 13.5px !important;
  line-height: 1.45 !important;
  margin-bottom: 7px !important;
}
@media (max-width: 980px) {
  .home-hero-card.dollar-first-card {
    margin-left: 0 !important;
    margin-top: 22px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 900px) {
  .nav-logo img {
    max-height: 46px !important;
  }
}


/* TRL v12 refinements */
.home-hero-card.dollar-first-card {
  width: min(720px, 100%) !important;
  max-width: 720px !important;
  padding: 16px 30px !important;
  transform: translate(110px, 140px) !important;
  align-self: flex-start !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
}
.home-hero-card.dollar-first-card h3 {
  font-size: 18px !important;
  line-height: 1.18 !important;
  margin: 3px 0 7px !important;
}
.home-hero-card.dollar-first-card p {
  font-size: 13.25px !important;
  line-height: 1.4 !important;
  margin-bottom: 6px !important;
}
.digital-form-spotlight {
  padding-top: 42px !important;
  padding-bottom: 58px !important;
}
.digital-form-spotlight .form-shell {
  max-width: 1120px !important;
  padding: 44px 54px 52px !important;
  overflow: visible !important;
}
.digital-form-spotlight .form-intro {
  margin-bottom: 30px !important;
}
.digital-form-spotlight .form-intro .section-title,
.digital-form-spotlight .section-title,
.digital-form-spotlight h2 {
  font-size: clamp(28px, 3.2vw, 42px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.6px !important;
  color: var(--navy) !important;
}
.digital-form-spotlight .form-intro p {
  max-width: 940px !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  margin-top: 12px !important;
}
.contact-faq-hero {
  background: url('office_pic.png') center 5% / cover no-repeat, #0D1B2A !important;
  padding: 42px 24px 38px !important;
  min-height: 0 !important;
}
.contact-faq-hero h1 {
  font-size: clamp(34px, 5vw, 58px) !important;
  margin-bottom: 10px !important;
}
.contact-faq-hero p {
  max-width: 720px !important;
  font-size: clamp(16px, 1.8vw, 20px) !important;
}
@media (max-width: 980px) {
  .home-hero-card.dollar-first-card {
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .digital-form-spotlight .form-shell {
    padding: 34px 24px 40px !important;
  }
}


/* TRL v13 refinements */
.google-change-pop { position: relative; overflow: hidden; }
.google-change-pop::before { content: ''; position:absolute; inset:0; background: radial-gradient(circle at 50% 0%, rgba(249,168,37,.14), transparent 42%); pointer-events:none; }
.google-change-pop > .container { position: relative; z-index: 1; }
.google-alert-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249,168,37,.7);
  background: rgba(249,168,37,.12);
  color: var(--gold);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}
.google-change-title { font-size: clamp(36px, 5vw, 66px) !important; line-height: .98 !important; margin-bottom: 14px !important; }
.google-change-title span { color: var(--gold); text-shadow: 0 0 28px rgba(249,168,37,.25); }
.google-change-subtitle { color: #fff; font-size: clamp(20px, 2.5vw, 30px); line-height: 1.25; max-width: 900px; margin: 0 auto 18px; font-weight: 850; }
.google-shift-card { border: 1px solid rgba(249,168,37,.22) !important; box-shadow: 0 18px 44px rgba(0,0,0,.20); }
.google-shift-icon { width: 58px; height: 58px; object-fit: contain; margin-bottom: 16px; display:block; }
.google-shift-card h3 { color:#fff; }
.contact-faq-hero { padding: 56px 24px 48px !important; min-height: 0 !important; }
.contact-faq-hero h1 { font-size: clamp(34px, 5vw, 58px) !important; }
@media (max-width: 700px) {
  .google-change-title { font-size: clamp(34px, 10vw, 48px) !important; }
  .google-shift-icon { width: 50px; height: 50px; }
}

/* TRL v14 header consistency */
.hero-v2.digital-hero {
  position: relative;
  background: url('office_pic.png') center 5% / cover no-repeat, #0D1B2A !important;
  overflow: hidden;
  padding-top: 72px !important;
  padding-bottom: 62px !important;
}
.hero-v2.digital-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.92) 100%);
}
.hero-v2.digital-hero > * { position: relative; z-index: 1; }
.hero-v2.digital-hero .hero-eyebrow {
  background: rgba(249,168,37,.15);
  border: 1px solid rgba(249,168,37,.55);
  color: var(--gold) !important;
}
/* v14 blog/GBP article polish */
.article-card#art-gbp { border-top: 5px solid var(--gold); }
.article-card#art-gbp.open .article-toggle-btn { background: var(--navy); color: var(--white); }

/* TRL v14b header sizing polish */
.hero-v2.digital-hero h1 {
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.15 !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero-v2.digital-hero .hero-lead {
  max-width: 760px !important;
  font-size: clamp(16px, 1.8vw, 20px) !important;
}


/* TRL v15 refinements */
.image-hero-dark,
.digital-hero.image-hero-dark,
.roi-hero.image-hero-dark,
.calculator-hero.image-hero-dark {
  position: relative !important;
  background-image: url('office_pic.png') !important;
  background-position: center 5% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-color: var(--navy) !important;
  overflow: hidden !important;
}
.image-hero-dark::before,
.digital-hero.image-hero-dark::before,
.roi-hero.image-hero-dark::before,
.calculator-hero.image-hero-dark::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.94) 100%) !important;
  z-index: 0 !important;
}
.image-hero-dark > *,
.digital-hero.image-hero-dark > *,
.roi-hero.image-hero-dark > *,
.calculator-hero.image-hero-dark > * {
  position: relative !important;
  z-index: 1 !important;
}
.image-hero-dark .hero-lead,
.digital-hero.image-hero-dark .hero-lead,
.roi-hero.image-hero-dark .hero-lead,
.calculator-hero.image-hero-dark .hero-lead {
  color: rgba(255,255,255,0.82) !important;
}
.big-free-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--gold) !important;
  font-size: clamp(15px, 1.5vw, 20px) !important;
  letter-spacing: 2.5px !important;
  background: rgba(249,168,37,0.12) !important;
  border: 1px solid rgba(249,168,37,0.45) !important;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  margin-bottom: 12px !important;
}
.audit-free-urgency-banner {
  max-width: 820px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, #F9A825 0%, #ffb23f 100%);
  color: #0D1B2A;
  font-weight: 900;
  text-align: center;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 18px 44px rgba(249,168,37,0.22);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.35;
}
.audit-free-urgency-banner::before {
  content: "⚡ ";
}


/* TRL v16 exact FAQ-style page hero */
.trl-faq-style-hero {
  position: relative !important;
  background: url('office_pic.png') center 5% / cover no-repeat, #0D1B2A !important;
  color: white !important;
  padding: 56px 24px 48px !important;
  text-align: center !important;
  overflow: hidden !important;
  min-height: 0 !important;
}
.trl-faq-style-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.92) 100%) !important;
  z-index: 0 !important;
}
.trl-faq-style-hero > * {
  position: relative !important;
  z-index: 1 !important;
}
.trl-faq-style-hero .page-eyebrow {
  color: var(--gold) !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  font-weight: 800 !important;
}
.trl-faq-style-hero h1 {
  color: #fff !important;
  font-size: clamp(26px, 4vw, 44px) !important;
  font-weight: 900 !important;
  margin: 0 0 12px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.8px !important;
  text-shadow: none !important;
}
.trl-faq-style-hero h1 span {
  color: var(--gold) !important;
}
.trl-faq-style-hero p {
  font-size: 16px !important;
  color: rgba(255,255,255,0.78) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  line-height: 1.65 !important;
  text-shadow: none !important;
}
.trl-faq-style-hero .hero-actions {
  justify-content: center !important;
  margin-top: 22px !important;
}

/* TRL v19 SEO/service-page additions */
.service-page-grid { margin-top: 30px; }
.service-link-card { text-decoration: none; color: inherit; display: block; transition: transform .18s ease, box-shadow .18s ease; }
.service-link-card:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(13,27,42,.12); }
.service-link-card span { display:inline-block; margin-top: 12px; font-weight: 900; color: var(--blue); }
@media (min-width: 1100px) {
  .nav-links { gap: 14px; }
  .nav-links > a, .nav-dropdown > a { font-size: 11.5px; }
}


/* TRL v20 A2P consent alignment */
.consent-context-note {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin: 12px 0 8px;
}


/* TRL v22 pre-upload homepage tweaks */
.home-hero-card.dollar-first-card {
  transform: translate(132px, 158px) !important;
}
@media (max-width: 980px) {
  .home-hero-card.dollar-first-card {
    transform: none !important;
  }
}


/* TRL v23 revenue recovery page */
.recovery-signal-grid { margin-top: 26px; }
.mini-card { padding: 22px 20px; }
.mini-card strong { display:block; color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.mini-card span { color: var(--gray-text); font-size: 14px; line-height: 1.5; }
.revenue-offer-grid { margin-top: 28px; }
.revenue-offer-card { border-top: 4px solid var(--gold); }
.offer-icon { font-size: 34px; line-height: 1; margin-bottom: 14px; }
.recovery-steps-card { border-top: 4px solid var(--blue); }
.numbered-list { margin: 0; padding-left: 22px; color: var(--gray-text); }
.numbered-list li { margin-bottom: 14px; line-height: 1.65; }
.numbered-list li strong { color: var(--navy); }
.featured-solutions-grid { margin-top: 26px; }
.solution-card { border-top: 4px solid var(--gold); }
.left { text-align:left; margin-left:0; }
.center-actions { justify-content:center; }
