:root {
  --bl-forest: #143f34;
  --bl-forest-2: #0f332a;
  --bl-forest-3: #1f5748;
  --bl-ink: #18312b;
  --bl-muted: #65736e;
  --bl-ivory: #f7f2e9;
  --bl-paper: #fffdf9;
  --bl-white: #ffffff;
  --bl-mint: #d9eee7;
  --bl-mint-strong: #bce4d5;
  --bl-peach: #f6d9cc;
  --bl-sky: #dfeaf0;
  --bl-sand: #f4e7bf;
  --bl-line: rgba(24, 49, 43, 0.13);
  --bl-line-light: rgba(255, 255, 255, 0.16);
  --bl-shadow: 0 28px 80px rgba(17, 55, 45, 0.12);
  --bl-radius-lg: 34px;
  --bl-radius-md: 22px;
  --bl-radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

.bestleads-body {
  margin: 0;
  color: var(--bl-ink);
  background: var(--bl-ivory);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.bestleads-body::selection {
  color: var(--bl-white);
  background: var(--bl-forest-3);
}

.bestleads-body a {
  color: inherit;
  text-decoration: none;
}

.bestleads-body button,
.bestleads-body input,
.bestleads-body select,
.bestleads-body textarea {
  font: inherit;
}

.bestleads-body img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--bl-white);
  background: var(--bl-forest);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.bl-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--bl-ink);
  background: rgba(247, 242, 233, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.bl-header.is-scrolled {
  border-color: var(--bl-line);
  box-shadow: 0 12px 36px rgba(20, 63, 52, 0.06);
}

.bl-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.bl-header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.bl-header-contact {
  color: var(--bl-forest);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.bl-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.bl-brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(20, 63, 52, 0.08);
}

.bl-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.bl-brand strong,
.bl-brand small,
.bl-nav,
.bl-button,
.bl-kicker,
.bl-case-head span,
.bl-data-label,
.bl-mode-tag,
.bl-field > span {
  font-family: "Manrope", Arial, sans-serif;
}

.bl-brand strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.bl-brand small {
  margin-top: 4px;
  color: var(--bl-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bl-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 0.84rem;
  font-weight: 700;
}

.bl-nav a {
  position: relative;
  padding: 8px 0;
}

.bl-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--bl-forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.bl-nav a:hover::after,
.bl-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.bl-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.bl-button:hover {
  transform: translateY(-2px);
}

.bl-button:active {
  transform: translateY(0);
}

.bl-button-small {
  min-height: 42px;
  padding: 10px 16px;
  gap: 10px;
  font-size: 0.82rem;
}

.bestleads-body .bl-button-dark {
  color: var(--bl-white);
  background: var(--bl-forest);
}

.bestleads-body .bl-button-dark:hover {
  background: var(--bl-forest-3);
  box-shadow: 0 12px 26px rgba(20, 63, 52, 0.2);
}

.bestleads-body .bl-button-mint {
  color: var(--bl-forest-2);
  background: var(--bl-mint-strong);
  box-shadow: 0 16px 30px rgba(5, 24, 19, 0.18);
}

.bestleads-body .bl-button-mint:hover {
  background: #d5f1e7;
  box-shadow: 0 20px 36px rgba(5, 24, 19, 0.24);
}

.bl-hero {
  position: relative;
  overflow: hidden;
  color: var(--bl-white);
  background:
    radial-gradient(circle at 92% 18%, rgba(188, 228, 213, 0.13), transparent 27rem),
    radial-gradient(circle at 16% 100%, rgba(246, 217, 204, 0.08), transparent 23rem),
    var(--bl-forest);
}

.bl-hero::before {
  position: absolute;
  top: -60px;
  right: -110px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(188, 228, 213, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(188, 228, 213, 0.025),
    0 0 0 100px rgba(188, 228, 213, 0.018);
}

.bl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: 72px;
  align-items: center;
  min-height: 720px;
  padding-top: 78px;
  padding-bottom: 82px;
}

.bl-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--bl-forest-3);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bl-kicker-light {
  color: var(--bl-mint-strong);
}

.bl-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(188, 228, 213, 0.1);
}

.bl-hero h1,
.bl-section-heading h2,
.bl-deliverables-copy h2,
.bl-commercial-copy h2,
.bl-contact-copy h2,
.bl-faq h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.bl-hero h1 {
  max-width: 680px;
  font-size: clamp(3.3rem, 5.7vw, 5.8rem);
  line-height: 0.98;
}

.bl-hero h1 span {
  color: var(--bl-mint-strong);
}

.bl-hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.13rem;
  line-height: 1.7;
}

.bl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.bl-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 700;
}

.bl-text-link:hover {
  color: var(--bl-white);
  border-color: var(--bl-mint-strong);
}

.bl-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 52px 0 0;
  padding: 0;
}

.bl-hero-stats div {
  padding: 0 18px;
  border-left: 1px solid var(--bl-line-light);
}

.bl-hero-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.bl-hero-stats dt {
  color: var(--bl-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.bl-hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  line-height: 1.45;
}

.bl-case-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}

.bl-case-glow {
  position: absolute;
  inset: 18% 6% 4%;
  background: rgba(188, 228, 213, 0.18);
  filter: blur(52px);
}

.bl-case-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--bl-ink);
  background: var(--bl-paper);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 26px;
  box-shadow: 0 40px 100px rgba(5, 24, 19, 0.34);
  transform: rotate(1.2deg);
}

.bl-case-card::before {
  display: block;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--bl-mint-strong), var(--bl-peach), var(--bl-sky));
}

.bl-case-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 25px 28px 20px;
  border-bottom: 1px solid var(--bl-line);
}

.bl-case-head div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bl-case-head div span {
  color: var(--bl-muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bl-case-head div strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
}

.bl-status,
.bl-passed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #176a50;
  background: var(--bl-mint);
  border-radius: 999px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.bl-status {
  padding: 8px 10px;
}

.bl-status i {
  width: 6px;
  height: 6px;
  background: #2c9874;
  border-radius: 50%;
}

.bl-case-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 24px 28px;
  background: linear-gradient(110deg, rgba(217, 238, 231, 0.54), rgba(255, 253, 249, 0.2));
}

.bl-avatar {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--bl-forest);
  background: var(--bl-mint-strong);
  border-radius: 15px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.bl-case-person > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.bl-case-person span,
.bl-case-person small {
  color: var(--bl-muted);
  font-size: 0.66rem;
}

.bl-case-person strong {
  overflow: hidden;
  margin: 4px 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bl-score {
  display: flex;
  width: 64px;
  height: 64px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bl-white);
  background: var(--bl-forest);
  border-radius: 16px;
}

.bl-score strong {
  margin: 0;
  font-size: 1.32rem;
}

.bl-score span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.52rem;
}

.bl-validation-list {
  display: grid;
  gap: 0;
  padding: 10px 28px 16px;
}

.bl-validation-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--bl-line);
}

.bl-validation-row:last-child {
  border-bottom: 0;
}

.bl-validation-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.55rem;
  font-weight: 800;
}

.mint {
  background: var(--bl-mint);
}

.sky {
  background: var(--bl-sky);
}

.peach {
  background: var(--bl-peach);
}

.sand {
  background: var(--bl-sand);
}

.bl-validation-row div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bl-validation-row strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.79rem;
}

.bl-validation-row small {
  color: var(--bl-muted);
  font-size: 0.63rem;
}

.bl-passed {
  padding: 6px 9px;
}

.bl-case-footer {
  display: flex;
  gap: 8px;
  padding: 18px 28px 24px;
  color: var(--bl-white);
  background: var(--bl-forest);
}

.bl-case-footer span {
  flex: 1 1 0;
  padding: 8px 6px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
}

.bl-floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: var(--bl-ink);
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(5, 24, 19, 0.22);
  backdrop-filter: blur(14px);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.bl-floating-note span {
  color: var(--bl-forest-3);
  font-size: 0.58rem;
}

.bl-note-top {
  top: 19%;
  right: -30px;
}

.bl-note-bottom {
  bottom: 18%;
  left: -36px;
}

.bl-hero-rail {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.46);
  background: rgba(6, 29, 23, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bl-hero-rail i {
  width: 26px;
  height: 1px;
  background: var(--bl-mint-strong);
  opacity: 0.34;
}

.bl-section {
  position: relative;
  padding: 120px 0;
}

.bl-section-heading h2,
.bl-deliverables-copy h2,
.bl-commercial-copy h2,
.bl-contact-copy h2,
.bl-faq h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.5rem);
  line-height: 1.04;
}

.bl-section-heading h2 span {
  color: var(--bl-forest-3);
}

.bl-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  gap: 80px;
  align-items: end;
}

.bl-heading-split > p,
.bl-heading-centered > p,
.bl-deliverables-copy > p,
.bl-commercial-copy > p,
.bl-contact-copy > p {
  margin: 0;
  color: var(--bl-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.bl-heading-centered {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.bl-heading-centered .bl-kicker {
  justify-content: center;
}

.bl-heading-centered > p {
  max-width: 660px;
  margin: 24px auto 0;
}

.bl-problem {
  background:
    linear-gradient(rgba(20, 63, 52, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 63, 52, 0.025) 1px, transparent 1px),
    var(--bl-ivory);
  background-size: 42px 42px;
}

.bl-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.bl-problem-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius-md);
  box-shadow: 0 14px 42px rgba(20, 63, 52, 0.05);
}

.bl-problem-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
}

.bl-problem-card.accent-peach::before {
  background: var(--bl-peach);
}

.bl-problem-card.accent-mint::before {
  background: var(--bl-mint-strong);
}

.bl-problem-card.accent-sky::before {
  background: var(--bl-sky);
}

.bl-card-index {
  color: var(--bl-muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.bl-problem-card h3,
.bl-process h3,
.bl-data-card h3,
.bl-mode-card h3,
.bl-timeline h3,
.bl-form-heading h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -0.035em;
}

.bl-problem-card h3 {
  margin-top: 82px;
  font-size: 1.45rem;
}

.bl-problem-card p {
  margin: 14px 0 0;
  color: var(--bl-muted);
  line-height: 1.65;
}

.bl-statement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 25px 30px;
  color: var(--bl-white);
  background: var(--bl-forest);
  border-radius: var(--bl-radius-sm);
}

.bl-statement p,
.bl-statement strong {
  margin: 0;
}

.bl-statement p {
  color: rgba(255, 255, 255, 0.7);
}

.bl-statement strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.08rem;
}

.bl-system {
  background: var(--bl-paper);
}

.bl-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.bl-process::before {
  position: absolute;
  top: 78px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: var(--bl-line);
}

.bl-process li {
  position: relative;
  padding: 22px 20px 26px;
  background: var(--bl-paper);
  border: 1px solid var(--bl-line);
  border-radius: 18px;
}

.bl-process li > span {
  color: var(--bl-muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
}

.bl-process-mark {
  position: relative;
  z-index: 2;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 4px solid var(--bl-paper);
  border-radius: 15px;
  box-shadow: 0 0 0 1px var(--bl-line);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
}

.bl-process h3 {
  margin-top: 22px;
  font-size: 1.12rem;
}

.bl-process p {
  margin: 10px 0 0;
  color: var(--bl-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.bl-deliverables {
  overflow: hidden;
  background: var(--bl-ivory);
}

.bl-deliverables::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  content: "";
  background: var(--bl-mint);
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(2px);
}

.bl-deliverables-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: center;
}

.bl-deliverables-copy > p {
  margin-top: 26px;
}

.bl-file-stack {
  display: grid;
  gap: 9px;
  margin-top: 34px;
}

.bl-file-stack span {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: var(--bl-forest);
  background: rgba(255, 253, 249, 0.8);
  border: 1px solid var(--bl-line);
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
}

.bl-file-stack span::after {
  content: "✓";
  color: #2b8a6b;
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 800;
}

.bl-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bl-data-card {
  min-height: 214px;
  padding: 26px;
  background: var(--bl-paper);
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius-md);
  box-shadow: 0 16px 38px rgba(20, 63, 52, 0.05);
}

.bl-data-card.data-wide {
  grid-column: span 2;
}

.bl-data-card.data-dark {
  color: var(--bl-white);
  background: var(--bl-forest);
  border-color: transparent;
}

.bl-data-card.data-mint {
  background: var(--bl-mint);
}

.bl-data-card.data-peach {
  background: var(--bl-peach);
}

.bl-data-card.data-sky {
  min-height: 150px;
  background: var(--bl-sky);
}

.bl-data-label {
  color: var(--bl-forest-3);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-dark .bl-data-label {
  color: var(--bl-mint-strong);
}

.bl-data-card h3 {
  max-width: 18ch;
  margin-top: 24px;
  font-size: 1.35rem;
}

.bl-data-card p,
.bl-data-card li {
  color: var(--bl-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.bl-data-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.bl-data-card li::before {
  margin-right: 7px;
  color: #2b8a6b;
  content: "✓";
  font-weight: 800;
}

.data-dark p {
  color: rgba(255, 255, 255, 0.66);
}

.bl-big-number {
  display: block;
  margin-top: 14px;
  color: var(--bl-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 4.2rem;
  line-height: 1;
}

.bl-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.bl-pill-row span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(24, 49, 43, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.bl-delivery {
  background: var(--bl-paper);
}

.bl-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.bl-mode-card {
  min-height: 320px;
  padding: 28px;
  background: var(--bl-white);
  border: 1px solid var(--bl-line);
  border-radius: var(--bl-radius-md);
}

.bl-mode-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-mode-tag {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bl-mode-card h3 {
  margin-top: 72px;
  font-size: 1.65rem;
}

.bl-mode-card p {
  margin: 14px 0 0;
  color: var(--bl-muted);
  line-height: 1.65;
}

.bl-mode-card > strong {
  display: block;
  margin-top: 24px;
  color: var(--bl-forest-3);
  font-size: 0.78rem;
}

.bl-api-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 26px;
  color: var(--bl-white);
  background: var(--bl-forest);
  border-radius: var(--bl-radius-sm);
}

.bl-api-strip div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.bl-api-strip div > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bl-api-strip code {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bl-api-strip > a {
  padding-left: 24px;
  border-left: 1px solid var(--bl-line-light);
  color: var(--bl-mint-strong);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.bl-commercial {
  overflow: hidden;
  color: var(--bl-white);
  background:
    radial-gradient(circle at 12% 90%, rgba(188, 228, 213, 0.12), transparent 24rem),
    var(--bl-forest);
}

.bl-commercial-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) repeat(2, minmax(250px, 0.7fr));
  gap: 18px;
  align-items: stretch;
}

.bl-commercial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 54px;
}

.bl-commercial-copy > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
}

.bl-price-card {
  min-height: 430px;
  padding: 32px;
  color: var(--bl-ink);
  background: var(--bl-paper);
  border-radius: var(--bl-radius-md);
}

.bl-price-card > span {
  color: var(--bl-forest-3);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bl-price-card > strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 50px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 4.2rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.bl-price-card > strong small {
  font-size: 1.4rem;
}

.bl-price-card > strong em {
  margin-left: 5px;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0;
}

.bl-price-card > p {
  min-height: 72px;
  margin: 24px 0 0;
  color: var(--bl-muted);
  line-height: 1.6;
}

.bl-price-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--bl-line);
  list-style: none;
}

.bl-price-card li {
  font-size: 0.8rem;
}

.bl-price-card li::before {
  margin-right: 8px;
  color: #2b8a6b;
  content: "✓";
  font-weight: 800;
}

.bl-price-featured {
  background: var(--bl-mint);
}

.bl-price-featured li::before {
  color: var(--bl-forest);
}

.bl-pilot {
  background: var(--bl-ivory);
}

.bl-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 76px 0 0;
  padding: 0;
  list-style: none;
}

.bl-timeline::before {
  position: absolute;
  top: 18px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: var(--bl-mint-strong);
}

.bl-timeline li {
  position: relative;
  padding-top: 54px;
}

.bl-timeline li::before {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 2;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--bl-paper);
  border: 6px solid var(--bl-forest);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--bl-ivory);
}

.bl-timeline span {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--bl-forest-3);
  background: var(--bl-mint);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bl-timeline h3 {
  margin-top: 20px;
  font-size: 1.15rem;
}

.bl-timeline p {
  margin: 10px 0 0;
  color: var(--bl-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.bl-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--bl-radius-sm);
  box-shadow: 0 0 0 1px var(--bl-line);
}

.bl-metrics span {
  padding: 18px;
  text-align: center;
  background: var(--bl-paper);
  font-size: 0.76rem;
  font-weight: 800;
}

.bl-contact {
  overflow: hidden;
  color: var(--bl-white);
  background:
    radial-gradient(circle at 20% 0%, rgba(188, 228, 213, 0.13), transparent 24rem),
    var(--bl-forest-2);
}

.bl-contact::after {
  position: absolute;
  bottom: -270px;
  left: -220px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(188, 228, 213, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(188, 228, 213, 0.018);
}

.bl-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 86px;
  align-items: start;
}

.bl-contact-copy {
  position: sticky;
  top: 130px;
}

.bl-contact-copy h2 {
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
}

.bl-contact-copy > p {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.66);
}

.bl-contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.bl-contact-methods a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--bl-line-light);
  border-radius: var(--bl-radius-sm);
  transition: background 180ms ease, border-color 180ms ease;
}

.bl-contact-methods a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(188, 228, 213, 0.36);
}

.bl-contact-methods span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bl-contact-methods strong {
  color: var(--bl-mint-strong);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
}

.bl-contact-promise {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.62);
}

.bl-contact-promise > span {
  display: flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--bl-forest);
  background: var(--bl-mint-strong);
  border-radius: 50%;
  font-weight: 800;
}

.bl-contact-promise p {
  margin: 2px 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.bl-contact-form {
  padding: 38px;
  color: var(--bl-ink);
  background: var(--bl-paper);
  border-radius: var(--bl-radius-lg);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
}

.bl-form-heading > span {
  color: var(--bl-forest-3);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bl-form-heading h3 {
  margin-top: 10px;
  font-size: 2rem;
}

.bl-form-heading p {
  margin: 8px 0 0;
  color: var(--bl-muted);
  font-size: 0.78rem;
}

.bl-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin-top: 30px;
}

.bl-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 17px;
}

.bl-field-grid .bl-field {
  margin-top: 0;
}

.bl-field > span {
  color: var(--bl-ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.bl-field input,
.bl-field select,
.bl-field textarea {
  width: 100%;
  color: var(--bl-ink);
  background: #faf8f3;
  border: 1px solid var(--bl-line);
  border-radius: 13px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.bl-field input,
.bl-field select {
  min-height: 50px;
  padding: 0 14px;
}

.bl-field textarea {
  min-height: 118px;
  padding: 14px;
  resize: vertical;
  line-height: 1.5;
}

.bl-field input:focus,
.bl-field select:focus,
.bl-field textarea:focus {
  background: var(--bl-white);
  border-color: var(--bl-forest-3);
  box-shadow: 0 0 0 4px rgba(31, 87, 72, 0.1);
}

.bl-field input[aria-invalid="true"],
.bl-field select[aria-invalid="true"],
.bl-field textarea[aria-invalid="true"] {
  border-color: #a74f40;
  box-shadow: 0 0 0 4px rgba(167, 79, 64, 0.08);
}

.bl-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.bl-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  color: var(--bl-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.bl-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--bl-forest);
}

.bl-consent a {
  color: var(--bl-forest-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bl-button-submit {
  width: 100%;
  margin-top: 24px;
  color: var(--bl-white);
  background: var(--bl-forest);
}

.bl-button-submit:hover {
  background: var(--bl-forest-3);
  box-shadow: 0 16px 30px rgba(20, 63, 52, 0.2);
}

.bl-button-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.bl-form-feedback {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--bl-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.bl-form-feedback.is-error {
  color: #9d4337;
}

.bl-form-feedback.is-success {
  padding: 12px 14px;
  color: #176a50;
  background: var(--bl-mint);
  border-radius: 10px;
  font-weight: 700;
}

.bl-faq {
  background: var(--bl-paper);
}

.bl-faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
  align-items: start;
}

.bl-faq h2 {
  max-width: 8ch;
}

.bl-faq-list {
  border-top: 1px solid var(--bl-line);
}

.bl-faq-list details {
  border-bottom: 1px solid var(--bl-line);
}

.bl-faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.bl-faq-list summary::-webkit-details-marker {
  display: none;
}

.bl-faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  content: "+";
  color: var(--bl-forest);
  background: var(--bl-mint);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.bl-faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.bl-faq-list details p {
  max-width: 68ch;
  margin: -6px 0 24px;
  color: var(--bl-muted);
  line-height: 1.7;
}

.bl-footer {
  color: rgba(255, 255, 255, 0.62);
  background: #0a251f;
}

.bl-footer-top,
.bl-footer-bottom {
  display: grid;
  align-items: center;
}

.bl-footer-top {
  grid-template-columns: auto 1fr auto;
  gap: 44px;
  min-height: 126px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bl-brand-footer strong {
  color: var(--bl-white);
}

.bl-brand-footer small {
  color: rgba(255, 255, 255, 0.46);
}

.bl-footer-top > p {
  margin: 0;
  font-size: 0.84rem;
}

.bl-footer-email {
  color: var(--bl-mint-strong) !important;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
}

.bl-footer-bottom {
  grid-template-columns: 0.8fr 1.8fr auto;
  gap: 28px;
  min-height: 102px;
  font-size: 0.68rem;
}

.bl-footer-bottom p {
  margin: 0;
  line-height: 1.55;
}

.bl-footer-bottom nav {
  display: flex;
  gap: 18px;
}

.bl-footer-bottom a:hover {
  color: var(--bl-white);
}

.bl-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bl-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bl-button:focus-visible,
.bl-nav a:focus-visible,
.bl-text-link:focus-visible,
.bl-contact-methods a:focus-visible,
.bl-faq-list summary:focus-visible,
.bl-footer a:focus-visible {
  outline: 3px solid var(--bl-peach);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .bl-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 42px;
  }

  .bl-note-top {
    right: -8px;
  }

  .bl-note-bottom {
    left: -12px;
  }

  .bl-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bl-process::before {
    display: none;
  }

  .bl-process li:nth-child(4),
  .bl-process li:nth-child(5) {
    grid-column: span 1;
  }

  .bl-deliverables-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
  }

  .bl-commercial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bl-commercial-copy {
    grid-column: span 2;
    max-width: 780px;
    padding: 0 0 38px;
  }

  .bl-contact-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
    gap: 48px;
  }
}

@media (max-width: 840px) {
  .bl-container {
    width: min(100% - 32px, 680px);
  }

  .bl-header-inner {
    min-height: 70px;
  }

  .bl-nav {
    display: none;
  }

  .bl-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 80px;
  }

  .bl-hero-copy {
    max-width: 650px;
  }

  .bl-case-wrap {
    max-width: 570px;
    margin: 10px auto 0;
  }

  .bl-heading-split,
  .bl-deliverables-grid,
  .bl-contact-grid,
  .bl-faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .bl-heading-split > p {
    max-width: 620px;
  }

  .bl-problem-grid,
  .bl-mode-grid {
    grid-template-columns: 1fr;
  }

  .bl-problem-card {
    min-height: 220px;
  }

  .bl-problem-card h3 {
    margin-top: 48px;
  }

  .bl-statement {
    align-items: flex-start;
    flex-direction: column;
  }

  .bl-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bl-data-grid {
    margin-top: 10px;
  }

  .bl-api-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bl-api-strip > a {
    padding: 18px 0 0;
    border-top: 1px solid var(--bl-line-light);
    border-left: 0;
  }

  .bl-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 30px;
  }

  .bl-timeline::before {
    display: none;
  }

  .bl-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bl-contact-copy {
    position: static;
  }

  .bl-footer-top,
  .bl-footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .bl-footer-top,
  .bl-footer-bottom {
    min-height: auto;
  }
}

@media (max-width: 590px) {
  html {
    scroll-padding-top: 76px;
  }

  .bl-container {
    width: min(100% - 24px, 520px);
  }

  .bl-header .bl-button-small {
    padding: 9px 13px;
  }

  .bl-header .bl-button-small span {
    display: none;
  }

  .bl-header-contact {
    display: none;
  }

  .bl-brand img {
    width: 34px;
    height: 34px;
  }

  .bl-hero-grid {
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .bl-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .bl-hero-lead {
    font-size: 1rem;
  }

  .bl-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .bl-hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .bl-hero-stats div,
  .bl-hero-stats div:first-child {
    padding: 0 0 14px;
    border-bottom: 1px solid var(--bl-line-light);
    border-left: 0;
  }

  .bl-case-card {
    border-radius: 20px;
    transform: none;
  }

  .bl-case-head,
  .bl-case-person,
  .bl-validation-list,
  .bl-case-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .bl-case-head {
    align-items: stretch;
    flex-direction: column;
  }

  .bl-status {
    align-self: flex-start;
  }

  .bl-case-person {
    grid-template-columns: auto 1fr;
  }

  .bl-score {
    display: none;
  }

  .bl-validation-row {
    grid-template-columns: auto 1fr;
  }

  .bl-passed {
    display: none;
  }

  .bl-floating-note,
  .bl-hero-rail {
    display: none;
  }

  .bl-section {
    padding: 84px 0;
  }

  .bl-section-heading h2,
  .bl-deliverables-copy h2,
  .bl-commercial-copy h2,
  .bl-contact-copy h2,
  .bl-faq h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .bl-problem-grid {
    margin-top: 44px;
  }

  .bl-statement {
    padding: 22px;
  }

  .bl-process,
  .bl-data-grid,
  .bl-commercial-grid,
  .bl-timeline {
    grid-template-columns: 1fr;
  }

  .bl-data-card.data-wide,
  .bl-commercial-copy {
    grid-column: auto;
  }

  .bl-data-card ul {
    grid-template-columns: 1fr;
  }

  .bl-api-strip {
    grid-template-columns: 1fr;
  }

  .bl-api-strip > a {
    grid-column: auto;
  }

  .bl-price-card {
    min-height: 0;
  }

  .bl-timeline {
    gap: 32px;
  }

  .bl-metrics {
    grid-template-columns: 1fr;
  }

  .bl-contact-form {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .bl-field-grid {
    grid-template-columns: 1fr;
  }

  .bl-footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .bl-motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
