:root {
  --bg:           #fcfcff;
  --dark:         #003333;
  --dark-mid:     #005454;
  --text:         #202931;
  --text-muted:   #5a6a78;
  --text-light:   #c1ced9;
  --green:        #14d64d;
  --green-dark:   #0daa3c;
  --cyan:         #00d7d7;
  --border:       #e4eaef;
  --surface:      #f4f7fa;
  --surface-dark: #eaf0f5;
  --gradient:     linear-gradient(45.01deg, #00d7d7 23.29%, #84f11e 88.12%);
  --gradient-btn: linear-gradient(90deg, #00d7d7, #84f11e);
  --font:         'Plus Jakarta Sans', sans-serif;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-xs:    6px;
  --shadow:       0 1px 3px rgba(0,51,51,0.08), 0 4px 16px rgba(0,51,51,0.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
a { color: var(--dark); text-decoration: none; }
a:hover { color: var(--dark-mid); }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.sg-nav { background: var(--dark); height: 64px; display: flex; align-items: center; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sg-nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.sg-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: -0.5px; white-space: nowrap; }
.sg-logo-by { font-size: 0.62em; font-weight: 500; opacity: 0.55; letter-spacing: 0; }
.sg-logo-mark { width: 32px; height: 32px; background: var(--gradient); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; color: var(--dark); }
.sg-nav-links { display: flex; gap: 28px; }
.sg-nav-links a { color: var(--text-light); font-size: 0.88rem; font-weight: 500; transition: color 0.15s; }
.sg-nav-links a:hover, .sg-nav-links a.active { color: #fff; }
.sg-nav-cta { background: var(--gradient-btn); color: var(--dark) !important; font-weight: 700; font-size: 0.875rem; padding: 9px 20px; border-radius: var(--radius-sm); transition: opacity 0.15s; }
.sg-nav-cta:hover { opacity: 0.9; }

/* BREADCRUMB */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: 10px 0; font-size: 0.75rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb .sep { margin: 0 6px; color: var(--border); }

/* HERO */
.profile-hero { background: #fff; border-bottom: 1px solid var(--border); padding: 28px 0 24px; }
.hero-row { display: flex; gap: 18px; align-items: flex-start; }
.broker-logo-mark { width: 68px; height: 68px; border-radius: var(--radius); background: var(--color-brand, var(--dark)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.15rem; color: #fff; flex-shrink: 0; letter-spacing: -1px; }
.hero-body { flex: 1; }
.broker-name { font-weight: 800; font-size: 1.75rem; color: var(--dark); line-height: 1.15; letter-spacing: -0.5px; }
.broker-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 3px; font-weight: 500; }

.rating-row { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.rating-num { font-weight: 800; font-size: 1.6rem; color: var(--dark); line-height: 1; }
.rating-stars { font-size: 1rem; color: #f59e0b; }
.rating-meta { font-size: 0.73rem; color: var(--text-muted); line-height: 1.5; }

.stat-bar { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.stat-cell { padding: 12px 10px; text-align: center; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-v { font-weight: 800; font-size: 1.1rem; color: var(--dark); line-height: 1; }
/* Plan C, April 2026: neutral grey "Pending" treatment for stat-cell values
   that haven't been collected yet. Distinct from the dark colour of populated
   values — visually communicates "in progress" without alarm. */
.stat-v.stat-pending { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.stat-l { font-size: 0.62rem; color: var(--text-muted); margin-top: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-src { font-size: 0.58rem; color: #aabbc8; margin-top: 2px; }

/* JUMP NAV */
.jump-nav { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 64px; z-index: 90; box-shadow: 0 1px 3px rgba(0,51,51,0.04); }
.jump-nav-inner { display: flex; align-items: center; gap: 2px; padding: 0 24px; max-width: 1120px; margin: 0 auto; overflow-x: auto; scrollbar-width: none; }
.jump-nav-inner::-webkit-scrollbar { display: none; }
.jump-link { display: inline-block; padding: 10px 12px; font-size: 0.73rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; text-decoration: none; }
.jump-link:hover { color: var(--dark); }
.jump-link.active { color: var(--dark); border-bottom-color: var(--green); font-weight: 700; }

/* LAYOUT */
.page-body { padding: 28px 0 80px; }
.content-grid { display: grid; grid-template-columns: 1fr 292px; gap: 22px; }

/* CARDS */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 14px; box-shadow: var(--shadow); overflow: hidden; }
.card-title { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.92rem; color: var(--dark); margin-bottom: 14px; padding-bottom: 11px; border-bottom: 2px solid var(--surface-dark); }
.card-title .source-tag { margin-left: auto; font-size: 0.63rem; font-weight: 600; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; white-space: nowrap; }
.card-body { font-size: 0.87rem; color: var(--text); line-height: 1.75; }
.about-clamped { max-height: 130px; overflow: hidden; position: relative; }
.about-clamped::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: linear-gradient(transparent, #fff); pointer-events: none; }
.about-toggle { display: inline-block; margin-top: 6px; font-size: 0.78rem; font-weight: 700; color: var(--dark-mid); background: none; border: none; font-family: var(--font); padding: 0; cursor: pointer; }
.about-toggle:hover { color: var(--dark); }
.sidebar-browse { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 12px; box-shadow: var(--shadow); }
.sidebar-browse .sb-title { font-weight: 800; font-size: 0.75rem; color: var(--dark); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.sidebar-browse ul { list-style: none; display: flex; flex-direction: column; }
.sidebar-browse li { border-bottom: 1px solid var(--surface-dark); }
.sidebar-browse li:last-child { border-bottom: none; }
.sidebar-browse a { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; font-size: 0.78rem; font-weight: 600; color: var(--dark); }
.sidebar-browse a:hover { color: var(--dark-mid); }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 12px; box-shadow: var(--shadow); }
.sidebar-card h4 { font-weight: 800; font-size: 0.75rem; color: var(--dark); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }

/* KEY FACTS — quotable summary block at top of broker profile body (Plan A AEO bundle, April 2026).
   Surfaces 4–6 declarative facts (founded, HQ, scale, FMCSA, TT rank, gross revenue, primary modes)
   that AI engines (ChatGPT, Claude, Perplexity, Gemini) can lift verbatim. Sits BEFORE the About card. */
.key-facts { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 14px; box-shadow: var(--shadow); }
.key-facts-title { font-size: 0.7rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.key-facts-list { list-style: none; display: flex; flex-direction: column; gap: 6px; padding: 0; margin: 0; }
.key-facts-list li { position: relative; padding-left: 1.4em; font-size: 0.85rem; color: var(--text); line-height: 1.5; }
.key-facts-list li::before { content: "▸"; position: absolute; left: 0; top: 0; color: var(--dark-mid); font-weight: 700; }
.key-facts-list li strong { color: #0a7a2e; font-weight: 700; }

/* LISTING STATUS — neutral grey strip at bottom of About card (Plan C, April 2026).
   Replaces the old amber `.unverified-footnote` / `.card-status-strip.unverified`.
   Tone is informational — disclosure of source, not a warning about reliability. */
.listing-status-strip { font-size: 0.72rem; color: var(--text-muted); margin-top: 12px; margin-bottom: 0; padding-top: 10px; border-top: 1px solid var(--border); line-height: 1.55; }
.listing-status-strip .claim-link { color: var(--text-muted); font-weight: 600; }
.claim-link { color: inherit; text-decoration: underline; white-space: nowrap; }

/* VERIFIED CHIP — small green chip rendered near broker subtitle when the
   broker has claimed their listing (verification.claimed === true in JSON).
   Wired but unpopulated as of Plan C; brokers self-claim via the directory@ mailto. */
.verified-chip { display: inline-flex; align-items: center; gap: 5px; background: #e6fbee; border: 1px solid #a3e6bb; color: #0a7a2e; border-radius: 12px; padding: 3px 10px; font-size: 0.7rem; font-weight: 700; margin-top: 6px; line-height: 1; }

/* LOAD TYPES */
.lt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.lt-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 11px 7px; text-align: center; }
.lt-icon { font-size: 1.2rem; }
.lt-label { font-size: 0.68rem; font-weight: 700; color: var(--text); margin-top: 5px; line-height: 1.3; }
.lt-status { margin-top: 4px; font-size: 0.65rem; font-weight: 700; }
.lt-primary { color: var(--dark); }
.lt-active  { color: #0a7a2e; }
.lt-limited { color: var(--text-muted); font-weight: 400; }
.lt-none    { color: #ccc; font-weight: 400; }
a.lt-card { text-decoration: none; color: inherit; display: block; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
a.lt-card:hover { border-color: var(--dark-mid); box-shadow: 0 2px 8px rgba(0,84,84,0.12); transform: translateY(-1px); }

/* FMCSA — 2×2 core fields only */
.fmcsa-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-bottom: 12px; }
.fmcsa-cell { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 13px; }
.fmcsa-l { font-size: 0.63rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.fmcsa-v { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.status-active { color: #0a7a2e; }
.status-pending { color: #92400e; }
/* Plan C, April 2026: neutral grey "Data pending" pill — replaces alarming amber
   `.status-pending` for cases where data simply hasn't been collected yet
   (vs genuine FMCSA non-active states, which keep the amber treatment). */
.status-pending-neutral { color: var(--text-muted); font-weight: 600; }
.fmcsa-verify { background: #e6f7f7; border: 1px solid #9dd7d7; border-radius: var(--radius-sm); padding: 9px 12px; font-size: 0.73rem; color: var(--dark-mid); font-weight: 500; }
.fmcsa-verify a { color: var(--dark); font-weight: 700; text-decoration: underline; }

/* COVERAGE */
.coverage-note { font-size: 0.85rem; color: var(--text); margin-bottom: 12px; }
.lane-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lane-tag { background: #e6f7f7; border: 1px solid #9dd7d7; color: var(--dark); border-radius: 5px; padding: 3px 9px; font-size: 0.71rem; font-weight: 700; }

/* PROS / CONS */
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pros-box { background: #e6fbee; border: 1px solid #a3e6bb; border-radius: var(--radius-sm); padding: 14px; }
.cons-box { background: #fef3ec; border: 1px solid #f6c89e; border-radius: var(--radius-sm); padding: 14px; }
.pc-h { font-size: 0.75rem; font-weight: 800; margin-bottom: 9px; }
.pros-box .pc-h { color: #0a7a2e; }
.cons-box .pc-h { color: #b5460f; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pc-list li { font-size: 0.77rem; color: var(--text); display: flex; gap: 7px; align-items: flex-start; line-height: 1.45; }
.pros-box li::before { content: "✓"; color: #14d64d; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.cons-box li::before { content: "✕"; color: #e8713d; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* REVIEWS PENDING */
.reviews-pending { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; text-align: center; font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* COMPARE */
.alt-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--surface-dark); }
.alt-row:last-child { border-bottom: none; }
.alt-mark { width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.alt-info { flex: 1; min-width: 0; }
.alt-n { font-size: 0.84rem; font-weight: 700; color: var(--dark); }
.alt-d { font-size: 0.71rem; color: var(--text-muted); margin-top: 2px; }
.alt-actions { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.alt-link { font-size: 0.73rem; font-weight: 700; color: var(--dark-mid); white-space: nowrap; }
.btn-compare { border: 1.5px solid var(--dark); color: var(--dark); background: transparent; border-radius: var(--radius-sm); padding: 5px 10px; font-family: var(--font); font-size: 0.7rem; font-weight: 700; cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.btn-compare:hover { background: var(--surface); }
.btn-compare.selected { background: var(--dark); color: #fff; }

/* FAQ — collapsed <details>; Google indexes this content */
.faq-item { border-bottom: 1px solid var(--surface-dark); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { padding: 13px 0; font-size: 0.87rem; font-weight: 700; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1rem; color: var(--text-muted); font-weight: 400; flex-shrink: 0; }
.faq-item[open] summary::after { content: "−"; }
.faq-a { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; padding-bottom: 13px; }
.faq-a a { color: var(--dark-mid); font-weight: 600; }

/* SIDEBAR */
.sidebar .card { margin-bottom: 12px; }

/* Primary CTA */
.cta-card { background: var(--dark); border: none; border-radius: var(--radius); padding: 22px 18px; text-align: center; margin-bottom: 12px; box-shadow: 0 4px 20px rgba(0,51,51,0.25); }
.cta-eyebrow { font-size: 0.65rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 7px; }
.cta-card h3 { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.3px; line-height: 1.2; }
.cta-card p { color: var(--text-light); font-size: 0.78rem; margin-bottom: 16px; line-height: 1.55; }
.btn-primary { display: block; background: var(--gradient-btn); color: var(--dark) !important; padding: 12px 16px; border-radius: var(--radius-sm); font-family: var(--font); font-weight: 800; font-size: 0.88rem; transition: opacity 0.15s; }
.btn-primary:hover { opacity: 0.9; }

/* Best For */
.bestfor-list { font-size: 0.8rem; color: var(--text); line-height: 2; }
.bestfor-note { font-size: 0.73rem; color: var(--text-muted); font-style: italic; margin-top: 8px; line-height: 1.5; }

/* Company card — merged Quick Facts + Contact */
.company-list { list-style: none; }
.company-list li { display: flex; justify-content: space-between; align-items: flex-start; padding: 7px 0; border-bottom: 1px solid var(--surface-dark); font-size: 0.79rem; gap: 10px; }
.company-list li:last-child { border-bottom: none; }
.ck { color: var(--text-muted); flex-shrink: 0; }
.cv { color: var(--dark); font-weight: 700; text-align: right; }
.contact-tip { margin-top: 11px; background: var(--surface); border-radius: var(--radius-xs); padding: 9px 11px; font-size: 0.71rem; color: var(--text-muted); line-height: 1.5; }
.contact-tip strong { color: var(--dark); }

/* COMPARE TRAY */
#compare-tray { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: var(--dark); border-top: 3px solid var(--green); padding: 11px 24px; display: none; box-shadow: 0 -4px 28px rgba(0,51,51,0.35); }
.tray-row { max-width: 1120px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.tray-label { color: var(--green); font-size: 0.78rem; font-weight: 800; white-space: nowrap; flex-shrink: 0; }
.tray-slots { display: flex; gap: 8px; flex: 1; }
.tray-slot { flex: 1; max-width: 220px; background: rgba(255,255,255,0.06); border: 1.5px dashed rgba(255,255,255,0.2); border-radius: var(--radius-sm); padding: 7px 12px; display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.tray-slot.filled { border-style: solid; border-color: var(--green); background: rgba(20,214,77,0.1); color: #fff; }
.tray-slot-name { font-weight: 700; font-size: 0.78rem; }
.tray-rm { cursor: pointer; color: rgba(255,255,255,0.4); transition: color 0.1s; }
.tray-rm:hover { color: #f87171; }
.tray-hint { color: rgba(255,255,255,0.4); font-size: 0.73rem; white-space: nowrap; }
#btn-run-compare { background: var(--gradient-btn); color: var(--dark) !important; border: none; border-radius: var(--radius-sm); padding: 9px 16px; font-family: var(--font); font-size: 0.83rem; font-weight: 800; cursor: pointer; white-space: nowrap; transition: opacity 0.15s; }
#btn-run-compare:disabled { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.3) !important; cursor: not-allowed; }
#btn-run-compare:not(:disabled):hover { opacity: 0.88; }
.tray-clear { color: rgba(255,255,255,0.3); font-size: 0.7rem; cursor: pointer; white-space: nowrap; }
.tray-clear:hover { color: #f87171; }

/* COMPARE MODAL */
#cmp-modal { display: none; position: fixed; inset: 0; z-index: 1000; }
#cmp-overlay { position: absolute; inset: 0; background: rgba(0,51,51,0.82); backdrop-filter: blur(4px); }
#cmp-panel { position: absolute; inset: 20px; max-width: 1040px; margin: 0 auto; background: #fff; border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 24px 80px rgba(0,51,51,0.35); }
#cmp-head { background: var(--dark); padding: 15px 22px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
#cmp-head h2 { color: #fff; font-size: 0.92rem; font-weight: 800; }
#cmp-head span { font-size: 0.73rem; color: var(--text-light); margin-left: 8px; }
#cmp-close { background: none; border: none; color: var(--text-light); font-size: 1.3rem; cursor: pointer; line-height: 1; padding: 0 4px; }
#cmp-close:hover { color: #fff; }
#cmp-body { overflow-y: auto; flex: 1; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 0.79rem; }
.cmp-table thead th { position: sticky; top: 0; z-index: 10; background: var(--dark); color: #fff; padding: 13px 15px; text-align: left; border-right: 1px solid rgba(255,255,255,0.08); font-weight: 700; font-size: 0.83rem; }
.cmp-table thead th:first-child { background: var(--surface-dark); color: var(--text-muted); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; width: 145px; }
.cmp-table td { padding: 10px 15px; border-bottom: 1px solid var(--surface-dark); border-right: 1px solid var(--surface-dark); vertical-align: top; color: var(--text); line-height: 1.5; }
.cmp-table td:first-child { background: var(--surface); font-weight: 700; color: var(--text-muted); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.03em; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-section-row td { background: var(--dark) !important; color: var(--text-light) !important; font-size: 0.63rem !important; font-weight: 700 !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; padding: 6px 15px !important; border: none !important; }
.cmp-table tr:not(.cmp-section-row):hover td { background: var(--surface); }
.cmp-table tr:not(.cmp-section-row):hover td:first-child { background: var(--surface-dark); }
.broker-col-head { display: flex; align-items: center; gap: 8px; }
.bch-logo { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.58rem; font-weight: 800; color: #fff; flex-shrink: 0; }

/* FOOTER */
.sg-footer { background: var(--dark); color: var(--text-light); padding: 36px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.footer-brand { color: #fff; font-size: 0.95rem; font-weight: 800; margin-bottom: 7px; }
.footer-about { font-size: 0.73rem; color: var(--text-light); line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a { color: var(--text-light); font-size: 0.73rem; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; display: flex; justify-content: space-between; font-size: 0.68rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); }

/* HUB PAGE SPECIFIC */
.hub-hero { background: var(--dark); padding: 48px 0 40px; }
.hub-eyebrow { font-size: 0.7rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.hub-h1 { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 10px; }
.hub-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; line-height: 1.65; margin-bottom: 22px; }
.hub-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 4px; }
.hub-stat { text-align: center; }
.hub-stat-v { font-size: 1.5rem; font-weight: 800; color: var(--green); line-height: 1; }
.hub-stat-l { font-size: 0.65rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }

/* FILTER BAR */
.filter-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 64px; z-index: 90; }
.filter-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label { font-size: 0.73rem; font-weight: 700; color: var(--text-muted); white-space: nowrap; }
.filter-chip { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 0.73rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.15s; white-space: nowrap; }
.filter-chip:hover { border-color: var(--dark); color: var(--dark); }
.filter-chip.active { background: var(--dark); border-color: var(--dark); color: #fff; }

/* HERO CTA (hub pages) */
.hero-cta { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; background: var(--gradient-btn); color: var(--dark) !important; padding: 13px 28px 10px; border-radius: var(--radius-sm); font-weight: 800; font-size: 0.95rem; text-decoration: none; transition: opacity 0.15s; margin-top: 20px; }
.hero-cta:hover { opacity: 0.88; }
.hero-cta-sub { font-size: 0.68rem; font-weight: 600; color: var(--dark); opacity: 0.7; }
.hub-cta-row { margin: 0 0 24px; }

/* CTA subtext below buttons */
.cta-sub { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 6px; }

/* VIEW PROFILE BUTTON */
.bc-btn { display: inline-block; font-size: 0.73rem; font-weight: 700; color: var(--dark-mid) !important; white-space: nowrap; padding: 7px 14px; border: 1.5px solid var(--dark-mid); border-radius: var(--radius-sm); transition: all 0.15s; background: #fff; }
.bc-btn:hover { background: var(--dark); color: #fff !important; border-color: var(--dark); }

/* BROKER GRID (card layout — profile compare section) */
.broker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.broker-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; display: flex; flex-direction: row; align-items: center; }
.broker-grid .broker-card { flex-direction: column; align-items: stretch; }
.broker-card:hover { border-color: var(--dark-mid); box-shadow: 0 4px 20px rgba(0,51,51,0.1); transform: translateY(-2px); }
.bc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.bc-mark { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.bc-meta { flex: 1; min-width: 0; }
.bc-rank { font-size: 0.62rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.bc-name { font-size: 0.92rem; font-weight: 800; color: var(--dark); line-height: 1.2; margin-top: 1px; }
.bc-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; flex: 1; margin-bottom: 12px; }
.bc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.bc-tag { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2px 7px; font-size: 0.62rem; font-weight: 700; color: var(--text-muted); }
.bc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--surface-dark); }
.bc-rating { font-size: 0.73rem; font-weight: 700; color: var(--dark); }
.bc-link { font-size: 0.73rem; font-weight: 800; color: var(--dark-mid); }
.bc-tier-badge { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; }

/* SECTION HEADER */
.section-header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 32px 0 14px; }
.section-header h2 { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.section-header span { font-size: 0.73rem; color: var(--text-muted); }
.section-title { font-weight: 800; font-size: 1.1rem; color: var(--dark); letter-spacing: -0.3px; }
.section-link { font-size: 0.78rem; font-weight: 700; color: var(--dark-mid); }
.section-sub { font-size: 0.72rem; color: var(--text-muted); }
.section-divider { border: none; border-top: 2px solid var(--surface-dark); margin: 28px 0; }

/* CTA BANNER */
.cta-banner { background: var(--dark); border-radius: var(--radius); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 36px 0; }
.cta-banner-text h2 { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 5px; }
.cta-banner-text p { color: var(--text-light); font-size: 0.82rem; line-height: 1.5; }
.btn-cta-lg { display: inline-block; background: var(--gradient-btn); color: var(--dark) !important; padding: 13px 24px; border-radius: var(--radius-sm); font-family: var(--font); font-weight: 800; font-size: 0.92rem; white-space: nowrap; transition: opacity 0.15s; }
.btn-cta-lg:hover { opacity: 0.9; }

/* SERVICE HUB SPECIFIC */
.svc-hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.svc-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 4px 13px; font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.svc-hero-eyebrow .svc-badge { background: rgba(20,214,77,0.15); border: 1px solid rgba(20,214,77,0.3); border-radius: 5px; padding: 2px 8px; font-size: 0.65rem; color: var(--green); font-weight: 800; }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.what-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.what-icon { font-size: 1.4rem; margin-bottom: 8px; }
.what-h { font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.what-p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }
.faq-section { max-width: 720px; }

/* DIRECTORY HERO */
.dir-hero { background: var(--dark); padding: 48px 0 36px; }
.dir-hero-eyebrow { font-size: 0.72rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.dir-hero h1 { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.8px; max-width: 700px; margin-bottom: 12px; }
.dir-hero p { font-size: 0.95rem; color: var(--text-light); max-width: 580px; line-height: 1.7; margin-bottom: 24px; }
.dir-stat-bar { display: flex; gap: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.04); width: fit-content; }
.dir-stat { padding: 12px 22px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.dir-stat:last-child { border-right: none; }
.dir-stat-v { font-weight: 800; font-size: 1.25rem; color: #fff; line-height: 1; }
.dir-stat-l { font-size: 0.63rem; color: rgba(255,255,255,0.45); margin-top: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* SERVICE FILTER NAV (directory hub) */
.svc-nav { background: #fff; border-bottom: 1px solid var(--border); padding: 0; }
.svc-nav-inner { display: flex; align-items: center; gap: 2px; padding: 0 24px; max-width: 1120px; margin: 0 auto; overflow-x: auto; scrollbar-width: none; }
.svc-nav-inner::-webkit-scrollbar { display: none; }
.svc-link { display: inline-block; padding: 11px 14px; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; text-decoration: none; }
.svc-link:hover { color: var(--dark); border-bottom-color: var(--border); }
.svc-link.all, .svc-link.active { color: var(--dark); border-bottom-color: var(--green); font-weight: 700; }

/* SERVICE HERO */
.svc-hero { background: var(--dark); padding: 44px 0 32px; }
.svc-hero-eyebrow { font-size: 0.72rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.svc-hero h1 { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.7px; max-width: 660px; margin-bottom: 12px; }
.svc-hero p { font-size: 0.92rem; color: var(--text-light); max-width: 560px; line-height: 1.7; }

/* RELATED SERVICES NAV */
.related-nav { background: #fff; border-bottom: 1px solid var(--border); padding: 0; }
.related-nav-inner { display: flex; align-items: center; gap: 2px; padding: 0 24px; max-width: 1120px; margin: 0 auto; overflow-x: auto; scrollbar-width: none; }
.related-nav-inner::-webkit-scrollbar { display: none; }
.rel-link { display: inline-block; padding: 10px 13px; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; text-decoration: none; }
.rel-link:hover { color: var(--dark); }
.rel-link.active { color: var(--dark); border-bottom-color: var(--green); font-weight: 700; }
.rel-link-label { font-size: 0.6rem; margin-right: 4px; }

/* BROKER LIST (hub pages — list layout) */
.broker-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.broker-list .broker-card { flex-direction: row; align-items: center; padding: 14px 18px; gap: 14px; }
.bc-rank-badge { width: 34px; height: 34px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.72rem; color: var(--text-muted); flex-shrink: 0; }
.bc-rank-badge.top3 { background: var(--dark); color: #fff; border-color: var(--dark); }
.bc-logo { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; color: #fff; flex-shrink: 0; letter-spacing: -0.5px; position: relative; overflow: hidden; }
.bc-logo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #fff; border-radius: inherit; }
.bc-body { flex: 1; min-width: 0; }
.broker-list .bc-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 700; }
.broker-list .bc-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; flex: unset; min-width: unset; }
.bc-note { font-size: 0.72rem; color: var(--dark-mid); margin-top: 4px; font-weight: 600; }
.bc-right { flex-shrink: 0; text-align: right; }
.broker-list .bc-tag.primary { background: #e6f7f7; border-color: #9dd7d7; color: var(--dark); }

/* SERVICE GRID */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 28px; }
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 14px; text-align: center; text-decoration: none; color: inherit; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; box-shadow: var(--shadow); }
.svc-card:hover { border-color: var(--dark-mid); box-shadow: 0 2px 12px rgba(0,84,84,0.1); transform: translateY(-1px); }
.svc-icon { font-size: 1.6rem; margin-bottom: 7px; }
.svc-label { font-weight: 800; font-size: 0.82rem; color: var(--dark); margin-bottom: 3px; }
.svc-count { font-size: 0.68rem; color: var(--text-muted); }

/* STATE TAGS */
.state-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.state-tag { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xs); padding: 5px 12px; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: all 0.15s; }
.state-tag:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* QUICK LINKS (sidebar) */
.quick-links { list-style: none; }
.quick-links li { border-bottom: 1px solid var(--surface-dark); }
.quick-links li:last-child { border-bottom: none; }
.quick-links a { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: 0.8rem; font-weight: 600; color: var(--dark); }
.quick-links a:hover { color: var(--dark-mid); }
.ql-count { font-size: 0.68rem; color: var(--text-muted); font-weight: 400; }

/* INTRO CARD (service hub) */
.intro-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; box-shadow: var(--shadow); }
.intro-card h2 { font-weight: 800; font-size: 0.92rem; color: var(--dark); margin-bottom: 10px; }
.intro-card p { font-size: 0.87rem; color: var(--text); line-height: 1.75; margin-bottom: 10px; }
.intro-card p:last-child { margin-bottom: 0; }

/* RELATED GRID */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 28px; }
.rel-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; text-align: center; text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s; box-shadow: var(--shadow); }
.rel-card:hover { border-color: var(--dark-mid); transform: translateY(-1px); }
.rel-icon { font-size: 1.3rem; margin-bottom: 5px; }
.rel-label { font-weight: 700; font-size: 0.8rem; color: var(--dark); }
.rel-count { font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }

/* CHECKLIST */
.checklist { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.checklist li { display: block; position: relative; padding-left: 1.4em; font-size: 0.84rem; color: var(--text); line-height: 1.6; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-dark); font-weight: 800; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .broker-grid { grid-template-columns: repeat(2, 1fr); }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .broker-name { font-size: 1.35rem; }
  .stat-bar { grid-template-columns: repeat(3, 1fr); }
  .stat-cell:nth-child(n+4) { display: none; }
  .lt-grid { grid-template-columns: repeat(2, 1fr); }
  .pc-grid { grid-template-columns: 1fr; }
  .fmcsa-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sg-nav-links { display: none; }
  .broker-grid { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }
  .hub-h1 { font-size: 1.5rem; }
  .dir-hero h1 { font-size: 1.5rem; }
  .dir-stat-bar { flex-wrap: wrap; }
  .svc-hero h1 { font-size: 1.45rem; }
  .related-grid { grid-template-columns: 1fr; }
}


/* ── Industry Index Cards (by-industry/) ───────────────────────────────────── */
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
.industry-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 20px 18px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow); transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.industry-card:hover { border-color: var(--dark-mid); box-shadow: 0 2px 14px rgba(0,84,84,0.1); transform: translateY(-1px); }
.ic-icon { font-size: 1.6rem; line-height: 1; }
.ic-label { font-weight: 800; font-size: 0.97rem; color: var(--dark); letter-spacing: -0.2px; }
.ic-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }
.ic-brokers { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.ic-brokers strong { color: var(--dark-mid); font-weight: 700; }
.ic-arrow { font-size: 0.75rem; font-weight: 700; color: var(--dark-mid); margin-top: 4px; }

/* ── Service Index Cards (by-service/) ─────────────────────────────────────── */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 20px 18px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow); transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.service-card:hover { border-color: var(--dark-mid); box-shadow: 0 2px 14px rgba(0,84,84,0.1); transform: translateY(-1px); }
.sc-icon { font-size: 1.6rem; line-height: 1; }
.sc-label { font-weight: 800; font-size: 0.97rem; color: var(--dark); letter-spacing: -0.2px; }
.sc-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }
.sc-brokers { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.sc-brokers strong { color: var(--dark-mid); font-weight: 700; }
.sc-arrow { font-size: 0.75rem; font-weight: 700; color: var(--dark-mid); margin-top: 4px; }
@media (max-width: 680px) { .industry-grid, .service-grid { grid-template-columns: 1fr; } }

/* ── US State Map (hub-state-index) ────────────────────────────────────────── */
.map-wrapper { position: relative; margin-bottom: 28px; background: #f0f5f8; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 12px 8px; box-shadow: var(--shadow); }
.us-map { width: 100%; height: auto; display: block; }
.state-path { fill: #c8d8e8; stroke: #fff; stroke-width: 0.8; cursor: pointer; transition: fill 0.12s; }
.state-path:hover, .state-path.hovered { fill: var(--dark-mid); }
.state-path.active { fill: var(--dark); }
.map-tooltip { position: absolute; background: var(--dark); color: #fff; padding: 9px 13px; border-radius: 8px; font-size: 0.78rem; pointer-events: none; z-index: 20; box-shadow: 0 4px 16px rgba(0,0,0,0.3); display: none; font-family: var(--font); line-height: 1.5; max-width: 220px; }
.map-label { font-size: 5px; fill: rgba(0,51,51,0.55); font-family: var(--font); font-weight: 700; pointer-events: none; user-select: none; }
.map-inset-label { font-size: 6px; fill: rgba(0,51,51,0.45); font-family: var(--font); font-weight: 600; pointer-events: none; }
.state-grid { display: none; }

/* SEO state grid (hub-state-index alphabetical card list under the map) */
.state-grid-seo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 28px; }
.state-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 5px; box-shadow: var(--shadow); transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.state-card:hover { border-color: var(--dark-mid); box-shadow: 0 2px 14px rgba(0,84,84,0.1); transform: translateY(-1px); }
.sc-name { font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.sc-hubs { font-size: 0.7rem; color: var(--text-muted); }
@media (max-width: 900px) { .state-grid-seo { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .state-grid-seo { grid-template-columns: 1fr; } }

/* ── Hero Quote Widget (hub pages) ─────────────────────────────────────────── */
.dir-hero-inner { display: grid; grid-template-columns: 1fr 288px; gap: 40px; align-items: center; }
.svc-hero-inner { display: grid; grid-template-columns: 1fr 256px; gap: 36px; align-items: start; }
.hero-quote-widget { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius); padding: 20px 18px; }
.hqw-eyebrow { font-size: 0.63rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 7px; }
.hqw-title { color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; line-height: 1.2; }
.hqw-desc { color: var(--text-light); font-size: 0.77rem; margin-bottom: 14px; line-height: 1.55; }
.hqw-btn { display: block; background: var(--gradient-btn); color: var(--dark) !important; padding: 11px 16px; border-radius: var(--radius-sm); font-weight: 800; font-size: 0.85rem; text-align: center; text-decoration: none; transition: opacity 0.15s; }
.hqw-btn:hover { opacity: 0.9; }
.hqw-sub { font-size: 0.67rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 6px; }
/* Sidebar context: solid dark card instead of glass */
aside .hero-quote-widget { background: var(--dark); border-color: transparent; box-shadow: 0 4px 20px rgba(0,51,51,0.25); margin-bottom: 12px; }
.hub-cta-row { display: none; }
@media (max-width: 900px) { .dir-hero-inner { grid-template-columns: 1fr; } .svc-hero-inner { grid-template-columns: 1fr; } .hero-quote-widget { display: none; } aside .hero-quote-widget { display: block; } }

/* ── Broker logo overlay ────────────────────────────────────────────────────── */
.broker-logo-mark { position: relative; overflow: hidden; }
.blm-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 7px; background: #fff; border-radius: inherit; }

/* ── Directory search bar ────────────────────────────────────────────────────── */
.dir-search-wrap { margin-bottom: 22px; }
.dir-search-bar { display: flex; align-items: center; gap: 10px; background: #fff; border: 2px solid var(--border); border-radius: var(--radius); padding: 0 14px; box-shadow: var(--shadow); transition: border-color 0.15s, box-shadow 0.15s; }
.dir-search-bar:focus-within { border-color: var(--dark-mid); box-shadow: 0 0 0 3px rgba(0,84,84,0.08); }
.dir-search-icon { color: var(--text-muted); flex-shrink: 0; }
#dir-search { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 0.92rem; font-weight: 500; color: var(--text); padding: 13px 0; background: transparent; }
#dir-search::placeholder { color: var(--text-muted); font-weight: 400; }
.dir-search-clear { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 1rem; padding: 4px 6px; border-radius: 4px; line-height: 1; flex-shrink: 0; transition: background 0.12s, color 0.12s; }
.dir-search-clear:hover { background: var(--surface); color: var(--dark); }
.dir-search-count { font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; font-weight: 500; }
.dir-no-results { text-align: center; padding: 48px 0; color: var(--text-muted); }
.dir-no-results strong { display: block; font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
/* Nav search icon */
.sg-nav-search { display: flex; align-items: center; color: rgba(255,255,255,0.7); padding: 6px; border-radius: 6px; transition: color 0.15s, background 0.15s; }
.sg-nav-search:hover { color: #fff; background: rgba(255,255,255,0.1); }


/* ── Rate Modal ─────────────────────────────────────────────────────────────── */
.rate-modal-overlay { position: fixed; inset: 0; z-index: 9000; background: rgba(0,20,20,0.72); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.rate-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.rate-modal-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.35); width: 540px; max-width: 100%; max-height: 90vh; display: flex; flex-direction: column; transform: translateY(14px); transition: transform 0.22s; }
.rate-modal-overlay.is-open .rate-modal-card { transform: translateY(0); }
.rate-modal-header { background: var(--dark); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-shrink: 0; }
.rate-modal-header-copy { min-width: 0; }
.rate-modal-title { color: #fff; font-size: 0.95rem; font-weight: 800; }
.rate-modal-sub { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 3px; font-weight: 500; }
.rate-modal-close { background: rgba(255,255,255,0.1); border: none; cursor: pointer; color: #fff; width: 30px; height: 30px; border-radius: 6px; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font); transition: background 0.15s; }
.rate-modal-close:hover { background: rgba(255,255,255,0.22); }
.rate-modal-body { flex: 1; overflow: auto; -webkit-overflow-scrolling: touch; }
.rate-modal-body iframe { display: block; border: none; width: 100%; }
@media (max-width: 580px) { .rate-modal-overlay { padding: 0; align-items: flex-end; } .rate-modal-card { width: 100%; border-radius: 14px 14px 0 0; max-height: 92vh; } }

/* ── Freight Lane Pages ─────────────────────────────────────────────────────── */
.lane-hero { background: var(--dark); padding: 44px 0 32px; }
.lane-eyebrow { font-size: 0.7rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.lane-route { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 8px; }
.lane-city-block { display: flex; flex-direction: column; }
.lane-city { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -0.8px; }
.lane-city-state { font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 3px; }
.lane-route-arrow { font-size: 1.6rem; color: var(--green); flex-shrink: 0; margin-top: 8px; line-height: 1; }
.lane-hero-sub { font-size: 0.88rem; color: var(--text-light); margin-top: 8px; line-height: 1.5; }
.lane-load-badge { display: inline-block; background: rgba(20,214,77,0.15); border: 1px solid rgba(20,214,77,0.3); color: var(--green); border-radius: 5px; padding: 3px 10px; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 10px; }

.lane-stats-bar { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,0.04); margin-top: 24px; }
.lane-stat { padding: 12px 10px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center; }
.lane-stat:last-child { border-right: none; }
.lane-stat-v { font-weight: 800; font-size: 1rem; color: #fff; line-height: 1; }
.lane-stat-l { font-size: 0.58rem; color: rgba(255,255,255,0.4); margin-top: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.lane-stat-v.favorable { color: var(--green); }
.lane-stat-v.carrier { color: #f97316; }
.lane-stat-v.balanced { color: var(--cyan); }

.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.market-card { border-radius: var(--radius-sm); padding: 16px; }
.market-card .mc-label { font-size: 0.63rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 5px; }
.market-card .mc-value { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.market-card .mc-note { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; }
.mc-favorable { background: #e6fbee; border: 1px solid #a3e6bb; }
.mc-favorable .mc-label { color: #0a7a2e; }
.mc-carrier { background: #fef3ec; border: 1px solid #f6c89e; }
.mc-carrier .mc-label { color: #b5460f; }
.mc-balanced { background: #e6f7f7; border: 1px solid #9dd7d7; }
.mc-balanced .mc-label { color: var(--dark-mid); }
.mc-seasonal { background: var(--surface); border: 1px solid var(--border); }
.mc-seasonal .mc-label { color: var(--text-muted); }

.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.zone-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; }
.zone-card .zc-label { font-size: 0.63rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 5px; }
.zone-card .zc-city { font-size: 0.92rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.zone-card .zc-zones { font-size: 0.77rem; color: var(--text-muted); line-height: 1.6; }

.load-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.load-badge { background: var(--surface); border: 1px solid var(--border); color: var(--text-muted); border-radius: 5px; padding: 4px 11px; font-size: 0.73rem; font-weight: 700; }
.load-badge.primary { background: var(--dark); border-color: var(--dark); color: #fff; }
.load-badge.active { background: #e6f7f7; border-color: #9dd7d7; color: var(--dark); }

.blr-list { display: flex; flex-direction: column; }
.blr { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--surface-dark); text-decoration: none; color: inherit; transition: background 0.1s; }
.blr:last-child { border-bottom: none; }
.blr-mark { width: 36px; height: 36px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.blr-body { flex: 1; min-width: 0; }
.blr-name { font-size: 0.86rem; font-weight: 700; color: var(--dark); }
.blr-desc { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.blr-link { font-size: 0.73rem; font-weight: 700; color: var(--dark-mid); flex-shrink: 0; white-space: nowrap; }

.lane-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lane-related-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 3px; }
.lane-related-card:hover { border-color: var(--dark-mid); transform: translateY(-1px); }
.lrc-eyebrow { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.lrc-route { font-size: 0.88rem; font-weight: 800; color: var(--dark); line-height: 1.25; }
.lrc-meta { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.lrc-cta { font-size: 0.7rem; font-weight: 700; color: var(--green); margin-top: 6px; }

/* Lane Hub Index Page */
.lane-hub-hero { background: var(--dark); padding: 48px 0 40px; }
.lane-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 8px; }
.lane-hub-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; text-decoration: none; color: inherit; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow); transition: border-color 0.15s, transform 0.15s; }
.lane-hub-card:hover { border-color: var(--dark-mid); transform: translateY(-1px); }
.lhc-route { flex: 1; min-width: 0; }
.lhc-cities { font-size: 0.92rem; font-weight: 800; color: var(--dark); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lhc-meta { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }
.lhc-badge { font-size: 0.62rem; font-weight: 700; border-radius: 4px; padding: 2px 7px; white-space: nowrap; flex-shrink: 0; }
.lhc-badge.favorable { background: #e6fbee; color: #0a7a2e; border: 1px solid #a3e6bb; }
.lhc-badge.carrier { background: #fef3ec; color: #b5460f; border: 1px solid #f6c89e; }
.lhc-badge.balanced { background: #e6f7f7; color: var(--dark-mid); border: 1px solid #9dd7d7; }
.lane-corridor-section { margin-bottom: 36px; }
.lane-corridor-title { font-size: 0.7rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--surface-dark); }

@media (max-width: 900px) { .lane-stats-bar { grid-template-columns: repeat(3, 1fr); } .market-grid { grid-template-columns: 1fr; } .zone-grid { grid-template-columns: 1fr; } .lane-related-grid { grid-template-columns: repeat(2, 1fr); } .lane-hub-grid { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .lane-route { gap: 10px; } .lane-city { font-size: 1.5rem; } .lane-stats-bar { grid-template-columns: repeat(2, 1fr); } .lane-related-grid { grid-template-columns: 1fr; } }

/* ── Homepage ───────────────────────────────────────────────────────────────── */
.home-hero { background: var(--dark); padding: 80px 0 64px; text-align: center; position: relative; overflow: hidden; }
.home-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,215,215,0.12) 0%, transparent 70%); pointer-events: none; }
.home-eyebrow { display: inline-block; background: rgba(20,214,77,0.15); border: 1px solid rgba(20,214,77,0.3); color: var(--green); border-radius: 20px; padding: 4px 14px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 22px; }
.home-h1 { font-size: 3.4rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.home-h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.home-sub { font-size: 1.05rem; color: var(--text-light); max-width: 720px; margin: 0 auto 36px; line-height: 1.7; }

/* Search */
.home-search-wrap { position: relative; max-width: 680px; margin: 0 auto; }
.home-search-form { display: flex; align-items: center; background: #fff; border-radius: 14px; box-shadow: 0 8px 40px rgba(0,0,0,0.35); overflow: hidden; border: 2px solid transparent; transition: border-color 0.15s; }
.home-search-form:focus-within { border-color: var(--green); }
.home-search-icon { padding: 0 16px 0 20px; color: var(--text-muted); flex-shrink: 0; display: flex; align-items: center; }
.home-search-input { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 1rem; font-weight: 500; color: var(--text); padding: 18px 0; background: transparent; }
.home-search-input::placeholder { color: #aabbc8; font-weight: 400; }
.home-search-btn { background: var(--gradient-btn); border: none; color: var(--dark); font-family: var(--font); font-weight: 800; font-size: 0.9rem; padding: 0 28px; height: 100%; cursor: pointer; white-space: nowrap; transition: opacity 0.15s; flex-shrink: 0; align-self: stretch; }
.home-search-btn:hover { opacity: 0.88; }
.home-search-suggestions { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,51,51,0.2); z-index: 200; overflow: hidden; display: none; }
.home-search-suggestions.visible { display: block; }
.home-suggestion { display: flex; align-items: center; gap: 12px; padding: 11px 18px; text-decoration: none; color: var(--text); transition: background 0.1s; cursor: pointer; border-bottom: 1px solid var(--surface-dark); }
.home-suggestion:last-child { border-bottom: none; }
.home-suggestion:hover { background: var(--surface); }
.home-sug-type { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.home-sug-label { font-size: 0.88rem; font-weight: 600; color: var(--dark); }

/* Quick pills */
.home-quick-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
.home-quick-pill { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); border-radius: 20px; padding: 6px 16px; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: all 0.15s; }
.home-quick-pill:hover { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.3); }

/* Trust bar */
.home-trust-bar { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.home-trust-item { text-align: center; }
.home-trust-v { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.home-trust-l { font-size: 0.62rem; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }

/* Section wrappers */
.home-section { padding: 64px 0; }
.home-section.bg-surface { background: var(--surface); }
.home-section.bg-white { background: #fff; }
.home-section-hd { text-align: center; margin-bottom: 36px; }
.home-section-hd h2 { font-size: 1.85rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 8px; }
.home-section-hd p { font-size: 0.92rem; color: var(--text-muted); max-width: 520px; margin: 0 auto; line-height: 1.65; }
.home-section-footer { text-align: center; margin-top: 28px; }
.home-view-all { display: inline-block; font-size: 0.88rem; font-weight: 700; color: var(--dark-mid); border: 1.5px solid var(--dark-mid); border-radius: var(--radius-sm); padding: 10px 22px; transition: all 0.15s; }
.home-view-all:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Service cards — homepage (larger than svc-card) */
.home-svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.home-svc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 18px; text-align: center; text-decoration: none; color: inherit; transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; box-shadow: var(--shadow); }
.home-svc-card:hover { border-color: var(--dark-mid); box-shadow: 0 4px 20px rgba(0,84,84,0.1); transform: translateY(-2px); }
.home-svc-icon { font-size: 2.2rem; margin-bottom: 10px; }
.home-svc-label { font-weight: 800; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.home-svc-desc { font-size: 0.73rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 6px; }
.home-svc-count { font-size: 0.68rem; font-weight: 700; color: var(--green-dark); }

/* Top 10 broker list */
.top10-list { max-width: 720px; margin: 0 auto; }
.top10-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--surface-dark); text-decoration: none; color: inherit; transition: background 0.1s; }
.top10-item:last-child { border-bottom: none; }
.top10-item:hover .top10-name { color: var(--dark-mid); }
.top10-rank { width: 32px; text-align: center; font-size: 0.78rem; font-weight: 800; color: var(--text-muted); flex-shrink: 0; }
.top10-rank.gold { color: #d4a017; }
.top10-rank.silver { color: #8a9bb0; }
.top10-rank.bronze { color: #b07445; }
.top10-mark { width: 42px; height: 42px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; color: #fff; flex-shrink: 0; letter-spacing: -0.5px; }
.top10-info { flex: 1; min-width: 0; }
.top10-name { font-size: 0.97rem; font-weight: 800; color: var(--dark); transition: color 0.15s; }
.top10-meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.top10-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 5px; }
.top10-tag { background: var(--surface); border: 1px solid var(--border); border-radius: 4px; padding: 2px 7px; font-size: 0.6rem; font-weight: 700; color: var(--text-muted); }
.top10-arrow { font-size: 0.85rem; color: var(--text-muted); flex-shrink: 0; transition: color 0.15s; }
.top10-item:hover .top10-arrow { color: var(--dark-mid); }

/* Homepage industry cards (larger variant) */
.home-industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.home-industry-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow); transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s; }
.home-industry-card:hover { border-color: var(--dark-mid); box-shadow: 0 4px 20px rgba(0,84,84,0.1); transform: translateY(-2px); }

/* AI TMS Block */
.ai-tms-block { background: linear-gradient(135deg, #001a1a 0%, #002929 50%, #001414 100%); padding: 80px 0; position: relative; overflow: hidden; }
.ai-tms-block::before { content: ''; position: absolute; top: -40%; right: -10%; width: 60%; height: 180%; background: radial-gradient(ellipse, rgba(0,215,215,0.08) 0%, transparent 65%); pointer-events: none; }
.ai-tms-inner { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; position: relative; }
.ai-tms-eyebrow { display: inline-block; background: rgba(20,214,77,0.15); border: 1px solid rgba(20,214,77,0.3); color: var(--green); border-radius: 20px; padding: 4px 14px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 18px; }
.ai-tms-h2 { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.8px; margin-bottom: 16px; }
.ai-tms-h2 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ai-tms-body { font-size: 1rem; color: var(--text-light); line-height: 1.75; margin-bottom: 24px; max-width: 480px; }
.ai-tms-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.ai-tms-checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.ai-tms-checklist li::before { content: ''; width: 18px; height: 18px; background: rgba(20,214,77,0.2); border: 1.5px solid rgba(20,214,77,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2314d64d' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 10px; }
.ai-tms-cta { display: inline-block; background: var(--gradient-btn); color: var(--dark) !important; padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 800; font-size: 1rem; transition: opacity 0.15s; }
.ai-tms-cta:hover { opacity: 0.88; }

/* Rate mock card */
.rate-mock { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.rate-mock-header { background: rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 18px; }
.rate-mock-route { font-size: 0.88rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.rate-mock-meta { font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.rate-mock-body { padding: 6px 0; }
.rate-mock-row { display: flex; align-items: center; gap: 12px; padding: 11px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.rate-mock-row:last-child { border-bottom: none; }
.rate-mock-row.best { background: rgba(20,214,77,0.06); border-left: 3px solid var(--green); padding-left: 15px; }
.rmr-mark { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.rmr-name { flex: 1; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.rmr-rate { font-size: 0.95rem; font-weight: 800; color: #fff; white-space: nowrap; }
.rmr-transit { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-align: right; margin-top: 1px; }
.rmr-best-badge { font-size: 0.58rem; font-weight: 800; background: rgba(20,214,77,0.2); color: var(--green); border: 1px solid rgba(20,214,77,0.3); border-radius: 3px; padding: 2px 5px; white-space: nowrap; }
.rate-mock-footer { background: rgba(255,255,255,0.03); border-top: 1px solid rgba(255,255,255,0.08); padding: 11px 18px; display: flex; align-items: center; justify-content: space-between; }
.rate-mock-footer-note { font-size: 0.68rem; color: rgba(255,255,255,0.35); }
.rate-mock-footer-save { font-size: 0.72rem; font-weight: 800; color: var(--green); }
/* TMS MOCK PANEL (AI-Native TMS promo block) */
.tms-mock { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.tms-mock-header { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px; }
.tms-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 20px; }
.tms-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 14px 10px; text-align: center; }
.tms-stat-v { font-size: 1.9rem; font-weight: 800; letter-spacing: -1px; line-height: 1; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tms-stat-l { font-size: 0.62rem; color: rgba(255,255,255,0.4); margin-top: 6px; line-height: 1.35; }
.tms-mock-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 20px 0; }
.tms-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.7); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.4; }
.tms-feature:last-child { border-bottom: none; }
.tms-feature-check { color: var(--green); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.tms-feature-text strong { color: #fff; font-weight: 700; display: block; }
.tms-mock-badge { margin-top: 18px; font-size: 0.63rem; color: rgba(255,255,255,0.25); text-align: center; line-height: 1.5; }
.btn-primary-sm { display: inline-block; padding: 11px 20px; font-size: 0.85rem; }

/* State chip grid */
.home-state-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 6px; }
.home-state-chip { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 7px 4px; font-size: 0.65rem; font-weight: 700; color: var(--text-muted); text-align: center; text-decoration: none; transition: all 0.15s; }
.home-state-chip:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

/* Bottom CTA strip */
.home-cta-strip { background: var(--gradient-btn); padding: 56px 0; text-align: center; }
.home-cta-strip h2 { font-size: 1.9rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 10px; }
.home-cta-strip p { font-size: 1rem; color: rgba(0,51,51,0.65); margin-bottom: 28px; }
.home-cta-strip .btn-cta-home { display: inline-block; background: var(--dark); color: #fff !important; padding: 15px 36px; border-radius: var(--radius-sm); font-weight: 800; font-size: 1rem; transition: opacity 0.15s; }
.home-cta-strip .btn-cta-home:hover { opacity: 0.85; }

@media (max-width: 1000px) { .ai-tms-inner { grid-template-columns: 1fr; } .rate-mock { max-width: 480px; margin: 0 auto; } .tms-mock { max-width: 480px; margin: 0 auto; } }
@media (max-width: 900px) { .home-h1 { font-size: 2.4rem; } .home-svc-grid { grid-template-columns: repeat(2, 1fr); } .home-industry-grid { grid-template-columns: repeat(2, 1fr); } .home-state-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 680px) { .home-hero { padding: 56px 0 48px; } .home-h1 { font-size: 1.9rem; letter-spacing: -0.8px; } .home-sub { font-size: 0.92rem; } .home-trust-bar { gap: 20px; } .home-svc-grid { grid-template-columns: repeat(2, 1fr); } .home-industry-grid { grid-template-columns: 1fr; } .home-state-grid { grid-template-columns: repeat(4, 1fr); } .ai-tms-h2 { font-size: 1.75rem; } .home-cta-strip h2 { font-size: 1.4rem; } }
