:root {
  --ink: #142033;
  --muted: #5f6b7a;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #dce3e8;
  --navy: #0d2740;
  --blue: #1f5d83;
  --green: #2f6f5e;
  --green-dark: #214e44;
  --gold: #c88c35;
  --gold-soft: #f4dfba;
  --sage: #e9f1ec;
  --mist: #eff4f6;
  --shadow: 0 18px 44px rgba(20, 32, 51, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Segoe UI", Arial, sans-serif; line-height: 1.5; }
a { color: inherit; }

.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 18px; min-height: 74px; padding: 12px 28px; background: rgba(251, 250, 247, 0.94); border-bottom: 1px solid rgba(220, 227, 232, 0.9); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 300px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: var(--navy); border: 2px solid var(--gold); border-radius: 8px; font-size: 12px; font-weight: 800; }
.brand strong { display: block; font-size: 17px; }
.brand small { display: block; color: var(--muted); font-size: 12px; }
.main-tabs { display: flex; align-items: center; justify-content: flex-end; gap: 8px; width: 100%; overflow-x: auto; scrollbar-width: thin; }
.tab-link { flex: 0 0 auto; border: 1px solid transparent; border-radius: 999px; padding: 10px 13px; color: #2c3d52; background: transparent; font: inherit; font-size: 14px; cursor: pointer; }
.tab-link:hover { background: var(--mist); }
.tab-link.active { color: var(--white); background: var(--green-dark); border-color: var(--green-dark); }

.page-panel { display: none; }
.page-panel.active { display: block; }

.hero { min-height: calc(70vh - 74px); color: var(--white); background: linear-gradient(90deg, rgba(9, 25, 42, 0.86) 0%, rgba(9, 25, 42, 0.64) 38%, rgba(9, 25, 42, 0.18) 76%), url("assets/hero-agents-under-contract.png") center / cover no-repeat; }
.hero-content { width: min(1180px, 100%); margin: 0 auto; padding: 70px 28px 44px; }
.eyebrow { margin: 0 0 14px; color: var(--gold-soft); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.eyebrow.dark { color: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(36px, 4.4vw, 54px); line-height: 1.02; }
h2 { font-size: clamp(26px, 3.6vw, 40px); line-height: 1.08; }
h3 { margin-bottom: 8px; font-size: 18px; }
.hero-copy { max-width: 660px; color: rgba(255, 255, 255, 0.9); font-size: 18px; }
.hero-actions, .footer-inner, .feed-header, .feed-row { display: flex; align-items: center; }
.hero-actions { flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; border: 1px solid transparent; border-radius: 8px; padding: 12px 18px; text-decoration: none; font-weight: 800; cursor: pointer; }
.button.primary { color: var(--white); background: var(--green); border-color: var(--green); }
.button.primary:hover { background: var(--green-dark); }
.button.secondary { color: var(--white); background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.46); }
.button.full { width: 100%; }

.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 760px; margin: 32px 0 0; }
.hero-metrics div { padding: 14px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 8px; }
.hero-metrics dt { font-weight: 900; font-size: 20px; }
.hero-metrics dd { margin: 2px 0 0; color: rgba(255, 255, 255, 0.78); }

.intro-band, .contractor-band { display: block; padding: 56px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.contractor-band { background: var(--paper); }
body:not([data-page="home"]) .intro-band, body:not([data-page="home"]) .contractor-band { display: none; }

.container { width: min(1180px, calc(100% - 44px)); margin: 0 auto; }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); gap: 36px; align-items: center; }
.split p { color: var(--muted); font-size: 18px; }

.bullets { margin: 14px 0 0; padding-left: 20px; }
.bullets li { margin: 8px 0; color: var(--muted); }
.bullets.two-col { columns: 2; column-gap: 28px; }
@media (max-width: 720px) { .bullets.two-col { columns: 1; } }

.sample-feed, .service-panel, .quote-panel, .price-card, .roi-tool, .contact-form, .problem-card, .step-card, .trade-card, .sample-row, .why-better { background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }

.sample-feed { padding: 18px; }
.feed-header { justify-content: space-between; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 800; }
.feed-header strong { color: var(--green); }
.feed-row { gap: 12px; padding: 14px 0; border-bottom: 1px solid #edf1f4; }
.feed-row:last-child { border-bottom: 0; }
.feed-row strong { margin-left: auto; color: var(--ink); text-align: right; }
.status-dot { width: 11px; height: 11px; border-radius: 50%; }
.green { background-color: #2f9d78; }
.gold { background-color: var(--gold); }
.blue { background-color: var(--blue); }

.page-panel:not(.hero) { min-height: calc(100vh - 74px); padding: 64px 0; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading p { color: var(--muted); font-size: 18px; }

.problem-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 8px; }
.problem-card { padding: 22px; }
.problem-card h3 { color: var(--navy); font-size: 19px; border-bottom: 3px solid var(--gold); padding-bottom: 8px; display: inline-block; margin-bottom: 10px; }
.problem-card p { color: var(--muted); margin: 0; }
.contractor-callout { margin: 28px auto 0; padding: 22px 24px; max-width: 920px; background: var(--navy); color: var(--white); border-left: 6px solid var(--gold); border-radius: 10px; font-size: 17px; line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 10px; }
.step-card { padding: 22px; position: relative; }
.step-num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; margin-bottom: 10px; }
.step-card h3 { font-size: 20px; margin-bottom: 4px; }

.trade-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 8px; }
.trade-card { overflow: hidden; display: flex; flex-direction: column; }
.trade-photo { position: relative; width: 100%; aspect-ratio: 16 / 10; background-size: cover; background-position: center; background-color: var(--navy); }
.trade-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13, 39, 64, 0.0) 50%, rgba(13, 39, 64, 0.55) 100%); z-index: 0; pointer-events: none; }
.trade-fallback { position: absolute; inset: auto 14px 12px 14px; z-index: 1; color: var(--white); font-weight: 800; font-size: 16px; letter-spacing: 0.02em; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55); }
.trade-copy { padding: 18px 20px 22px; }
.trade-copy h3 { font-size: 19px; color: var(--navy); margin-bottom: 6px; }
.trade-note { margin-top: 26px; padding: 18px 20px; background: var(--sage); border: 1px dashed rgba(47, 111, 94, 0.45); border-radius: 8px; color: var(--ink); font-weight: 600; }
.trade-note a { color: var(--green-dark); text-decoration: underline; }

.compare-table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 760px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table thead th { background: var(--navy); color: var(--white); font-weight: 800; letter-spacing: 0.02em; font-size: 13px; text-transform: uppercase; }
.compare-table tbody tr:nth-child(even) td { background: rgba(239, 244, 246, 0.55); }
.compare-table tr.highlight td { background: linear-gradient(180deg, #f4f9f5 0%, #e8f3ec 100%); border-top: 3px solid var(--green); border-bottom: 3px solid var(--green); color: var(--ink); }
.compare-table tr.highlight td strong { color: var(--green-dark); }

.why-better { margin-top: 26px; padding: 24px; }
.why-better h2 { font-size: 22px; margin-bottom: 4px; color: var(--navy); }

.sample-row { margin-top: 26px; padding: 22px; }
.sample-row h2 { font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.sample-data { margin-top: 12px; padding: 14px 16px; background: #0d1f2f; border-radius: 8px; overflow-x: auto; }
.sample-data code { color: #e7eef5; font-family: "Consolas", "SF Mono", Menlo, monospace; font-size: 13px; line-height: 1.7; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.price-card { padding: 24px; }
.price-card.featured { border-color: rgba(47, 111, 94, 0.55); background: linear-gradient(180deg, #ffffff 0%, #eef7f2 100%); }
.price { margin: 16px 0 10px; color: var(--navy); font-size: 42px; font-weight: 900; }
.price span { color: var(--muted); font-size: 16px; }

.roi-tool { display: grid; grid-template-columns: minmax(280px, 1fr) 180px 180px minmax(260px, 0.8fr); gap: 18px; align-items: end; margin-top: 26px; padding: 22px; }
.roi-tool h2 { margin-bottom: 8px; font-size: 24px; }

label { display: grid; gap: 7px; color: var(--ink); font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid #cbd6de; border-radius: 8px; padding: 12px 13px; color: var(--ink); background: var(--white); font: inherit; }
textarea { resize: vertical; }
output { display: block; padding: 14px; color: var(--white); background: var(--green-dark); border-radius: 8px; font-weight: 800; }

.contact-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr); gap: 40px; align-items: start; }
.contact-layout > div > p { color: var(--muted); font-size: 19px; }
.contact-facts { display: grid; gap: 12px; margin: 28px 0 0; }
.contact-facts p { margin: 0; padding: 16px; background: var(--white); border-left: 4px solid var(--gold); border-radius: 8px; }
.contact-cta-secondary { margin-top: 18px; color: var(--muted); }
.contact-cta-secondary a { color: var(--green-dark); font-weight: 800; text-decoration: underline; }
.contact-form { display: grid; gap: 16px; padding: 24px; }
.form-note { margin: 0; font-size: 13px; color: var(--muted); }

.site-footer { padding: 30px 0; color: rgba(255, 255, 255, 0.85); background: var(--navy); }
.footer-inner { gap: 18px; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: var(--white); font-size: 16px; }
.footer-meta { color: rgba(255, 255, 255, 0.55); font-size: 13px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--gold-soft); font-weight: 800; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 1080px) {
  .problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trade-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .site-header { align-items: flex-start; flex-direction: column; padding: 12px 18px; }
  .brand { min-width: 0; }
  .main-tabs { justify-content: flex-start; width: 100%; padding-bottom: 4px; }
  .hero { min-height: 68vh; background-position: 62% center; }
  .hero-content { padding-top: 62px; }
  .hero-metrics, .split, .pricing-grid, .roi-tool, .contact-layout { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .trade-gallery { grid-template-columns: 1fr; }
  .feed-row { align-items: flex-start; }
  .feed-row strong { margin-left: 0; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { min-height: 74vh; background-position: 66% center; }
  .hero-content { padding: 44px 18px 46px; }
  h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-copy { font-size: 17px; }
  .hero-metrics { margin-top: 32px; }
  .hero-metrics div, .problem-card, .step-card, .trade-copy, .price-card, .contact-form, .sample-row, .why-better { padding: 16px; }
  .page-panel:not(.hero) { padding: 48px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ===== Sample feed redesigned for real data ===== */
.feed-row { gap: 12px; padding: 14px 0; align-items: flex-start; }
.feed-row .status-dot { margin-top: 6px; flex: 0 0 11px; }
.feed-row-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.feed-row-body strong { color: var(--ink); font-size: 15px; margin: 0; text-align: left; }
.feed-row-body span { color: var(--muted); font-size: 13px; }
.feed-foot { margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; font-style: italic; }

/* ===== Pricing axes list ===== */
.pricing-axes { margin-bottom: 28px; padding: 24px 26px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.pricing-axes h2 { font-size: 22px; color: var(--navy); margin-bottom: 14px; }
.axes-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.axes-list li { color: var(--ink); font-size: 14px; line-height: 1.45; padding: 12px 14px; background: var(--paper); border-radius: 8px; border-left: 3px solid var(--green); }
.axes-list strong { color: var(--gold); font-weight: 900; display: block; margin-bottom: 4px; }

/* ===== 4-card pricing grid ===== */
.pricing-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 8px; }
.tier-card { padding: 26px 22px 24px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.tier-name { font-size: 18px; color: var(--navy); margin: 0; font-weight: 800; letter-spacing: 0; }
.tier-card .price-starting { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800; margin: 8px 0 0; }
.tier-card .price { margin: 4px 0 6px; color: var(--navy); font-size: 36px; font-weight: 900; line-height: 1; }
.tier-card .price span { color: var(--muted); font-size: 15px; font-weight: 700; }
.tier-desc { color: var(--ink); font-size: 14px; margin: 6px 0 0; }
.tier-terms { margin: 6px 0 0; color: var(--green-dark); font-size: 13px; font-weight: 800; }
.tier-card .best-for { margin-top: auto; padding-top: 12px; color: var(--muted); font-size: 13px; font-style: italic; border-top: 1px dashed var(--line); }
.tier-exclusive { background: linear-gradient(180deg, #ffffff 0%, #f6efe2 100%); border: 1.5px solid var(--gold); }
.tier-exclusive .tier-name, .tier-exclusive .price { color: var(--navy); }
.tier-badge { position: absolute; top: -12px; right: 16px; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; box-shadow: 0 4px 12px rgba(200, 140, 53, 0.35); }

/* ===== Territories ===== */
.territories-section { margin-top: 40px; padding: 28px 28px 30px; background: var(--navy); color: var(--white); border-radius: 14px; box-shadow: var(--shadow); }
.territories-heading h2 { color: var(--white); font-size: 24px; margin: 0 0 6px; }
.territories-heading p { color: rgba(255, 255, 255, 0.78); margin: 0 0 18px; font-size: 15px; }
.territories-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.territories-list li { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(244, 223, 186, 0.18); border-radius: 8px; }
.terr-num { color: var(--gold-soft); font-weight: 900; font-size: 13px; letter-spacing: 0.04em; min-width: 24px; }
.terr-name { color: var(--white); font-weight: 600; font-size: 15px; }

/* ===== Trade categories ===== */
.trade-categories { margin-top: 40px; }
.trade-categories-heading h2 { font-size: 24px; color: var(--navy); margin: 0 0 6px; }
.trade-categories-heading p { color: var(--muted); margin: 0 0 18px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.cat-card { padding: 22px 22px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); border-top: 5px solid var(--blue); }
.cat-standard { border-top-color: var(--blue); }
.cat-high { border-top-color: var(--green); }
.cat-premium { border-top-color: var(--gold); background: linear-gradient(180deg, #ffffff 0%, #faf3e6 100%); }
.cat-card h3 { font-size: 18px; color: var(--navy); margin: 0 0 8px; }
.cat-card p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; }
.cat-callout { margin-top: 20px; padding: 18px 22px; background: var(--sage); border-left: 4px solid var(--green); border-radius: 8px; color: var(--ink); font-size: 15px; line-height: 1.55; }

/* ===== 3-step strip ===== */
.three-step-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 40px; padding: 24px 22px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.three-step-card { display: flex; align-items: center; gap: 14px; padding: 12px 14px; background: var(--paper); border-radius: 10px; }
.ts-num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; font-size: 16px; flex: 0 0 36px; }
.three-step-card h3 { font-size: 15px; color: var(--navy); margin: 0; }

/* ===== Managed outreach ===== */
.managed-outreach { margin-top: 28px; padding: 26px 28px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); border-left: 6px solid var(--blue); }
.managed-outreach h2 { font-size: 22px; color: var(--navy); margin: 0 0 8px; }
.managed-outreach p { color: var(--ink); font-size: 15px; margin: 0; line-height: 1.6; }

/* ===== Final CTA ===== */
.final-cta { margin-top: 28px; padding: 30px 32px; background: linear-gradient(135deg, var(--navy) 0%, #163655 100%); border-radius: 14px; color: var(--white); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; box-shadow: var(--shadow); }
.final-cta h2 { color: var(--white); font-size: 26px; margin: 0 0 6px; }
.final-cta p { color: rgba(255, 255, 255, 0.85); margin: 0; font-size: 15px; line-height: 1.5; }
.final-cta .button.primary { background: var(--gold); border-color: var(--gold); color: var(--navy); padding: 14px 22px; font-size: 15px; }
.final-cta .button.primary:hover { background: #b8771e; border-color: #b8771e; }

/* ===== Pricing responsive ===== */
@media (max-width: 1080px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .axes-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .territories-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-grid { grid-template-columns: 1fr; }
  .three-step-strip { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta .button.primary { justify-self: start; }
}
@media (max-width: 620px) {
  .pricing-grid-4 { grid-template-columns: 1fr; }
  .axes-list { grid-template-columns: 1fr; }
  .territories-list { grid-template-columns: 1fr; }
}

/* ===== Sample feed: details/summary expandable ===== */
.sample-feed-toggle { background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); overflow: hidden; }
.sample-feed-toggle summary { list-style: none; cursor: pointer; padding: 18px 22px; display: flex; align-items: center; gap: 12px; background: linear-gradient(180deg, #ffffff 0%, var(--mist) 100%); color: var(--navy); font-weight: 800; font-size: 16px; user-select: none; transition: background 0.2s; }
.sample-feed-toggle summary::-webkit-details-marker { display: none; }
.sample-feed-toggle summary:hover { background: var(--mist); }
.sft-icon { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; font-size: 18px; line-height: 1; flex: 0 0 28px; transition: transform 0.2s; }
.sample-feed-toggle[open] .sft-icon { transform: rotate(45deg); }
.sft-label { font-size: 15px; }
.sample-feed-body { padding: 18px 22px 22px; border-top: 1px solid var(--line); }
.sft-foot { margin: 0 0 12px; color: var(--muted); font-size: 13px; font-style: italic; }
.sample-feed-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
.sample-feed-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 880px; }
.sample-feed-table th { background: var(--navy); color: var(--white); padding: 10px 12px; text-align: left; font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.sample-feed-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); color: var(--ink); white-space: nowrap; }
.sample-feed-table tbody tr:nth-child(even) td { background: rgba(239, 244, 246, 0.55); }
.sample-feed-table .redacted { color: var(--muted); font-family: "Consolas", "SF Mono", Menlo, monospace; font-size: 12px; letter-spacing: 0.02em; }
.sample-feed-table .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.sample-feed-table .dot.green { background: #2f9d78; }
.sample-feed-table .dot.gold { background: var(--gold); }

/* ===== Trades callout box (3-col list on home) ===== */
.trades-callout-box { background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 26px 28px; margin-top: 8px; border-top: 5px solid var(--gold); }
.trades-callout-intro { color: var(--ink); font-size: 17px; font-weight: 700; margin: 0 0 18px; }
.trades-three-col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 32px; }
.trades-three-col ul { list-style: none; padding: 0; margin: 0; }
.trades-three-col li { padding: 8px 0 8px 22px; position: relative; color: var(--ink); font-size: 15px; border-bottom: 1px solid var(--line); }
.trades-three-col li:last-child { border-bottom: 0; }
.trades-three-col li::before { content: ""; position: absolute; left: 0; top: 14px; width: 10px; height: 10px; background: var(--green); border-radius: 2px; transform: rotate(45deg); }

@media (max-width: 720px) {
  .trades-three-col { grid-template-columns: 1fr; gap: 0; }
}

/* Tighten contact page now that contact-facts removed */
.contact-layout > div > p { color: var(--muted); font-size: 19px; line-height: 1.55; }

/* ===== Multiplier explainer ===== */
.multiplier-explainer { margin-top: 40px; padding: 32px 28px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); border-top: 5px solid var(--gold); }
.me-intro { max-width: 880px; margin-bottom: 22px; }
.me-intro h2 { color: var(--navy); font-size: 24px; margin: 0 0 8px; }
.me-intro p { color: var(--muted); font-size: 16px; line-height: 1.55; margin: 0; }

.band-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.band-card { padding: 18px 20px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; border-top: 4px solid var(--blue); }
.band-card header { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.band-card h3 { margin: 0; font-size: 17px; color: var(--navy); }
.band-mult { font-weight: 900; color: var(--gold); font-size: 14px; letter-spacing: 0.02em; }
.band-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.band-ultra    { border-top-color: #8b1a1a; background: linear-gradient(180deg, #ffffff 0%, #fff1f0 100%); }
.band-premium  { border-top-color: var(--gold); background: linear-gradient(180deg, #ffffff 0%, #faf3e6 100%); }
.band-high     { border-top-color: var(--green); }
.band-standard { border-top-color: var(--blue); }
.band-light    { border-top-color: #7c8a9b; }
.band-micro    { border-top-color: #9aa6b6; opacity: 0.95; }

@media (max-width: 1080px) {
  .band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .band-grid { grid-template-columns: 1fr; }
}

/* ===== Managed outreach expanded block ===== */
.managed-outreach { display: block; padding: 30px 32px; }
.mo-head h2 { color: var(--navy); font-size: 24px; margin: 0 0 6px; }
.mo-tag { color: var(--muted); font-size: 16px; line-height: 1.55; margin: 0 0 20px; max-width: 900px; }
.mo-grid { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.5fr); gap: 24px; margin-top: 10px; }
.mo-block { padding: 22px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.mo-block h3 { font-size: 17px; color: var(--navy); margin: 0 0 10px; border-bottom: 3px solid var(--gold); padding-bottom: 6px; display: inline-block; }
.mo-formula { color: var(--ink); font-size: 16px; margin: 0 0 12px; }
.mo-formula strong { color: var(--navy); }

@media (max-width: 980px) { .mo-grid { grid-template-columns: 1fr; } }

/* Methodology link in footer */
.footer-methodology {
  color: var(--accent, #FFB300) !important;
  font-weight: 700 !important;
  border-bottom: 2px solid rgba(255,179,0,0.35);
  padding-bottom: 1px;
}
.footer-methodology:hover { border-bottom-color: #FFB300; }

/* Hero metrics — explicitly NOT clickable (they look like buttons otherwise) */
.hero-metrics div { cursor: default !important; user-select: none; transition: none !important; }
.hero-metrics div:hover { background: rgba(255, 255, 255, 0.12) !important; border-color: rgba(255, 255, 255, 0.24) !important; transform: none !important; box-shadow: none !important; }
.hero-metrics dt { text-transform: uppercase; letter-spacing: 0.04em; font-size: 18px; }

/* Methodology footer link — two lines, prominent */
.footer-methodology {
  display: inline-flex !important;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
  border-bottom: none !important;
}
.footer-methodology .meth-label {
  color: var(--gold, #FFB300) !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: 14px;
}
.footer-methodology .meth-sub {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 12px;
}
.footer-methodology:hover .meth-label { text-decoration: underline; }

/* ============================================================
   v=10 REVAMP STYLES
   ============================================================ */

/* Hero highlights — explicitly NOT clickable, no card look */
.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 760px;
}
.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  cursor: default;
}
.hero-highlights .hh-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB300 0%, #ff8a00 100%);
  box-shadow: 0 0 0 4px rgba(255,179,0,0.18);
  flex: 0 0 10px;
}
.hero-highlights li:hover { background: transparent; }

/* ===== Inspector pitch band ===== */
.inspector-pitch-band {
  background: linear-gradient(135deg, #0A1A2F 0%, #163655 100%);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.inspector-pitch-band::before, .inspector-pitch-band::after {
  content: ""; position: absolute; pointer-events: none;
  width: 380px; height: 380px; border-radius: 50%;
  filter: blur(80px); opacity: 0.4;
}
.inspector-pitch-band::before { background: #FFB300; top: -100px; right: -100px; }
.inspector-pitch-band::after { background: #00C853; bottom: -100px; left: -100px; }
.inspector-pitch-band .container { position: relative; z-index: 1; }
.ip-badge {
  display: inline-block;
  padding: 7px 18px;
  background: linear-gradient(135deg, #FFB300 0%, #ff8a00 100%);
  color: #0A1A2F;
  font-weight: 900;
  letter-spacing: 0.15em;
  font-size: 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 8px 22px rgba(255,179,0,0.45);
}
.inspector-pitch-band h2 {
  font-size: clamp(24px, 3vw, 30px);
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.3;
}
.ip-lede {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  max-width: 940px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.ip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 800px) { .ip-grid { grid-template-columns: 1fr; } }
.ip-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  padding: 22px 22px 24px;
  backdrop-filter: blur(6px);
  transition: transform 0.18s ease, background 0.18s ease;
}
.ip-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
}
.ip-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
}
.ip-card h3 {
  font-size: 17px;
  color: #FFB300;
  margin: 0 0 8px;
}
.ip-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin: 0;
}
.ip-footer {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  max-width: 940px;
  margin: 0;
  padding: 16px 20px;
  border-left: 3px solid #00C853;
  background: rgba(0,200,83,0.08);
  border-radius: 6px;
}

/* ===== Steps v2 — more attractive ===== */
.steps-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
@media (max-width: 960px) { .steps-grid-v2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid-v2 { grid-template-columns: 1fr; } }
.step-card-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%) !important;
  border: 1px solid rgba(10,110,255,0.10);
  border-radius: 18px;
  padding: 26px 22px 22px;
  position: relative;
  box-shadow: 0 14px 32px rgba(10,26,47,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step-card-v2::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0A6EFF 0%, #00C853 50%, #FFB300 100%);
  border-radius: 18px 18px 0 0;
}
.step-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(10,26,47,0.14);
}
.step-card-v2 .step-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.step-card-v2 .step-num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C853 0%, #00b248 100%);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0,200,83,0.35), 0 0 0 4px rgba(0,200,83,0.18);
}
.step-card-v2 .step-icon {
  font-size: 26px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.step-card-v2 h3 {
  margin: 0 0 12px;
  color: #0A1A2F;
  font-size: 17px;
  line-height: 1.35;
}
.step-card-v2 .bullets li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 5px;
}

/* ===== Pricing axes (How your price is built) — big bullet points ===== */
.pricing-axes-v2 {
  background: linear-gradient(135deg, #f6faff 0%, #fffaf0 100%);
  border: 1px solid rgba(10,110,255,0.12);
  border-radius: 18px;
  padding: 28px 30px;
  margin: 28px 0 36px;
}
.pricing-axes-v2 h2 {
  margin: 0 0 18px;
  color: #0A1A2F;
  font-size: 24px;
}
.axes-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.axes-bullets li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(10,110,255,0.10);
  box-shadow: 0 4px 14px rgba(10,26,47,0.05);
  transition: transform 0.15s ease;
}
.axes-bullets li:hover { transform: translateX(4px); }
.axes-num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A6EFF 0%, #00B8D4 100%);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  flex: 0 0 40px;
  box-shadow: 0 6px 14px rgba(10,110,255,0.35);
}
.axes-text {
  font-size: 18px;
  font-weight: 700;
  color: #0A1A2F;
  line-height: 1.4;
}

/* ===== Multiplier explainer plain-English examples ===== */
.me-plain {
  font-size: 16px;
  line-height: 1.65;
  color: #142033;
  margin: 0 0 18px;
}
.me-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 14px 0 4px;
}
@media (max-width: 720px) { .me-examples { grid-template-columns: 1fr; } }
.me-example {
  background: linear-gradient(135deg, rgba(10,110,255,0.06) 0%, rgba(0,200,83,0.06) 100%);
  border: 1px solid rgba(10,110,255,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.me-ex-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0A6EFF;
  font-weight: 900;
}
.me-ex-math {
  font-size: 15px;
  color: #0A1A2F;
}
.me-ex-math strong { color: #00701a; }

/* Band card plain-English description */
.band-plain {
  font-size: 13px;
  line-height: 1.55;
  color: #364356;
}

/* ===== Show Map button + Territory Map ===== */
.show-map-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #0A6EFF 0%, #00B8D4 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(10,110,255,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.show-map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10,110,255,0.50);
}
.show-map-btn .smb-icon { font-size: 18px; }
.territory-map-wrap {
  margin: 22px 0 30px;
  background: #fff;
  border: 1px solid rgba(10,110,255,0.12);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(10,26,47,0.06);
}
.terr-map {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}
.terr-map-caption {
  margin: 10px 0 0;
  font-size: 12px;
  font-style: italic;
  color: #5F6B7A;
  text-align: center;
}

/* ===== Contact form v2 — two columns, less bland ===== */
.contact-layout-v2 {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 880px) { .contact-layout-v2 { grid-template-columns: 1fr; } }
.contact-intro h1 { font-size: 28px; line-height: 1.3; }
.contact-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}
.contact-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #364356;
  font-weight: 600;
}
.cb-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C853 0%, #00b248 100%);
  flex: 0 0 10px;
  box-shadow: 0 0 0 4px rgba(0,200,83,0.18);
}
.contact-form-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid rgba(10,110,255,0.12);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 22px 48px rgba(10,26,47,0.10);
  display: grid;
  gap: 14px;
}
.cf-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .cf-row-two { grid-template-columns: 1fr; } }
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0A6EFF;
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(10,110,255,0.15);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #0A1A2F;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: #0A6EFF;
  box-shadow: 0 0 0 3px rgba(10,110,255,0.18);
}
.cf-submit {
  margin-top: 8px;
  font-size: 16px !important;
  padding: 14px 22px !important;
  box-shadow: 0 14px 32px rgba(255,179,0,0.45);
}
