/*
 * Shared presentation layer for the Commercial, Hospitality, and Multi-Family
 * landing pages. The original page-level CSS remains as a safe fallback.
 */
.b2d-request-page {
  --b2d-navy: #29312d;
  --b2d-navy-2: #1f2522;
  --b2d-accent: #b85f3f;
  --b2d-accent-2: #95472f;
  --b2d-ink: #252a27;
  --b2d-muted: #66706a;
  --b2d-line: #dedbd3;
  --b2d-paper: #f6f4ef;
  --b2d-sage: #718176;
  --b2d-sage-light: #e6ebe6;
  --b2d-white: #fff;
  --b2d-shadow: 0 18px 45px rgba(41, 49, 45, .09);
  background: #fff;
  color: var(--b2d-ink);
  font-family: "Source Sans Pro", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow: hidden;
}

.b2d-request-page .b2d-container {
  width: min(1180px, calc(100% - 48px));
}

.b2d-request-page h1,
.b2d-request-page h2,
.b2d-request-page h3 {
  letter-spacing: -.02em;
}

/* Editorial split hero */
.b2d-request-page .b2d-hero {
  min-height: 350px;
  color: var(--b2d-ink);
  border-bottom: 1px solid rgba(41, 49, 45, .12);
  background-color: #f2eee7;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.b2d-page--multi-family .b2d-hero {
  background-image:
    linear-gradient(90deg, #f2eee7 0%, #f2eee7 50%, rgba(242, 238, 231, .98) 60%, rgba(242, 238, 231, .62) 72%, rgba(242, 238, 231, .08) 86%),
    url("../images/multihome-hero-building.png");
}

.b2d-page--hospitality .b2d-hero {
  background-image:
    linear-gradient(90deg, #f2eee7 0%, #f2eee7 50%, rgba(242, 238, 231, .98) 60%, rgba(242, 238, 231, .62) 72%, rgba(242, 238, 231, .08) 86%),
    url("../images/hospitality-hero-lobby.png");
}

.b2d-page--commercial .b2d-hero {
  background-image:
    linear-gradient(90deg, #f2eee7 0%, #f2eee7 50%, rgba(242, 238, 231, .98) 60%, rgba(242, 238, 231, .62) 72%, rgba(242, 238, 231, .08) 86%),
    url("../images/commercial-page-hero.png");
}

.b2d-request-page .b2d-hero-inner {
  display: flex;
  min-height: 350px;
  padding: 34px 0;
  flex-direction: column;
  justify-content: center;
}

.b2d-request-page .b2d-eyebrow {
  display: flex;
  margin: 0 0 12px;
  color: var(--b2d-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  align-items: center;
}

.b2d-request-page .b2d-eyebrow::before {
  width: 34px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
  content: "";
}

.b2d-request-page .b2d-hero h1 {
  max-width: 660px;
  color: var(--b2d-ink);
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(36px, 4.25vw, 54px);
  font-weight: 400;
  line-height: .98;
  text-transform: none;
}

.b2d-request-page .b2d-hero h1 .b2d-accent-text {
  margin-top: 4px;
  color: var(--b2d-accent);
  font-weight: 700;
}

.b2d-request-page .b2d-hero-lead {
  max-width: 570px;
  margin-top: 15px;
  color: var(--b2d-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.b2d-request-page .b2d-hero-copy {
  max-width: 560px;
  color: #59615c;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.55;
}

.b2d-request-page .b2d-hero-track {
  position: relative;
  min-height: 350px;
}

.b2d-request-page .b2d-hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background-color: #f2eee7;
  background-image:
    linear-gradient(90deg, rgba(242, 238, 231, 1) 0%, rgba(242, 238, 231, .98) 47%, rgba(242, 238, 231, .7) 60%, rgba(242, 238, 231, .06) 79%),
    var(--b2d-slide-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity .65s ease, visibility .65s ease;
}

.b2d-request-page .b2d-hero-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.b2d-request-page .b2d-hero-slide .b2d-hero-inner > * {
  opacity: 0;
  transform: translateY(10px);
}

.b2d-request-page .b2d-hero-slide.is-active .b2d-hero-inner > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease .14s, transform .45s ease .14s;
}

.b2d-request-page .b2d-carousel-controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.b2d-request-page .b2d-carousel-dots,
.b2d-request-page .b2d-carousel-arrows {
  display: flex;
  gap: 8px;
  align-items: center;
  pointer-events: auto;
}

.b2d-request-page .b2d-carousel-dot {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(41, 49, 45, .25);
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease;
}

.b2d-request-page .b2d-carousel-dot.is-active {
  width: 42px;
  background: var(--b2d-accent);
}

.b2d-request-page .b2d-carousel-arrow {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(41, 49, 45, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: var(--b2d-ink);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.b2d-request-page .b2d-carousel-arrow:hover {
  transform: translateY(-2px);
  background: var(--b2d-ink);
  color: #fff;
}

.b2d-request-page .b2d-hero-actions {
  margin-top: 18px;
}

.b2d-request-page .b2d-hero-button,
.b2d-request-page .b2d-learn-button,
.b2d-request-page .b2d-upload-button,
.b2d-request-page .b2d-submit-button {
  min-height: 40px;
  border: 1px solid var(--b2d-ink);
  border-radius: 999px;
  background: transparent;
  color: var(--b2d-ink);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.b2d-request-page .b2d-hero-button.primary,
.b2d-request-page .b2d-submit-button {
  border-color: var(--b2d-accent);
  background: var(--b2d-accent);
  color: #fff;
}

.b2d-request-page .b2d-hero-button:hover,
.b2d-request-page .b2d-learn-button:hover,
.b2d-request-page .b2d-upload-button:hover,
.b2d-request-page .b2d-submit-button:hover {
  transform: translateY(-2px);
  border-color: var(--b2d-accent-2);
  background: var(--b2d-accent-2);
  color: #fff;
  box-shadow: 0 10px 24px rgba(149, 71, 47, .2);
}

/* Compact, editorial advantage rail */
.b2d-request-page .b2d-benefits {
  padding: 46px 0 52px;
  background:
    linear-gradient(90deg, rgba(113, 129, 118, .055) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--b2d-paper);
  color: var(--b2d-ink);
}

.b2d-request-page .b2d-benefits-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 48px;
  margin-bottom: 25px;
  align-items: end;
}

.b2d-request-page .b2d-benefits-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--b2d-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.b2d-request-page .b2d-benefits-heading h2 {
  margin: 0;
  color: var(--b2d-ink);
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.b2d-request-page .b2d-benefits-heading > p {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid rgba(184, 95, 63, .45);
  color: var(--b2d-muted);
  font-size: 14px;
  line-height: 1.6;
}

.b2d-request-page .b2d-benefit-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px 24px;
  margin-top: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  counter-reset: b2d-benefit;
  align-items: start;
}

.b2d-request-page .b2d-benefit {
  position: relative;
  grid-column: span 2;
  min-height: 0;
  padding: 18px 16px 19px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-content: start;
  border: 0;
  border-top: 2px solid rgba(41, 49, 45, .14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  counter-increment: b2d-benefit;
  transition: border-color .22s ease, transform .22s ease;
}

.b2d-request-page .b2d-benefit:nth-child(4),
.b2d-request-page .b2d-benefit:nth-child(5) {
  grid-column: span 3;
}

.b2d-request-page .b2d-benefit::before {
  position: absolute;
  top: 20px;
  right: 4px;
  color: rgba(41, 49, 45, .32);
  content: "0" counter(b2d-benefit);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: .08em;
}

.b2d-request-page .b2d-benefit::after {
  display: none;
}

.b2d-request-page .b2d-benefit:hover {
  transform: translateY(-2px);
  border-color: var(--b2d-accent);
  box-shadow: none;
}

.b2d-request-page .b2d-icon {
  width: 40px;
  height: 40px;
  padding: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(230, 235, 230, .88);
  color: var(--b2d-accent);
  stroke-width: 1.65;
}

.b2d-request-page .b2d-benefit h3 {
  margin: 1px 32px 5px 0;
  color: var(--b2d-ink);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  letter-spacing: .025em;
  line-height: 1.3;
  text-transform: none;
}

.b2d-request-page .b2d-benefit h3 br {
  display: none;
}

.b2d-request-page .b2d-benefit p {
  grid-column: 2;
  margin: 0;
  color: var(--b2d-muted);
  font-size: 12.5px;
  line-height: 1.5;
  text-align: left;
}

/* Shared sections and cards */
.b2d-request-page .b2d-contractor-trust,
.b2d-request-page .b2d-spaces {
  padding: 64px 0;
  background: #fff;
}

.b2d-request-page .b2d-contractor-matters,
.b2d-request-page .b2d-request {
  padding: 64px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(113, 129, 118, .08), transparent 25%),
    var(--b2d-paper);
}

.b2d-request-page .b2d-contractor-trust h2,
.b2d-request-page .b2d-matters-copy h2,
.b2d-request-page .b2d-spaces h2,
.b2d-request-page .b2d-section-title {
  color: var(--b2d-ink);
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: none;
}

.b2d-request-page .b2d-matters-copy h2 span {
  color: var(--b2d-accent);
}

.b2d-request-page .b2d-spaces-subtitle,
.b2d-request-page .b2d-section-intro,
.b2d-request-page .b2d-contractor-trust > .b2d-container > p {
  margin-top: 12px;
  color: var(--b2d-muted);
  font-size: 16px;
  line-height: 1.65;
}

.b2d-request-page .b2d-stats-grid,
.b2d-request-page .b2d-matters-grid,
.b2d-request-page .b2d-matters-grid-3,
.b2d-request-page .b2d-space-grid {
  gap: 18px;
}

.b2d-request-page .b2d-stat-item,
.b2d-request-page .b2d-matters-card,
.b2d-request-page .b2d-space-card {
  border: 1px solid var(--b2d-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(41, 49, 45, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.b2d-request-page .b2d-stat-item:hover,
.b2d-request-page .b2d-matters-card:hover,
.b2d-request-page .b2d-space-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--b2d-shadow);
}

.b2d-request-page .b2d-stat-item {
  padding: 24px 16px;
}

.b2d-request-page .b2d-stat-item strong {
  color: var(--b2d-accent);
  font-size: 32px;
  font-weight: 400;
}

.b2d-request-page .b2d-stat-item span {
  font-size: 13px;
}

.b2d-request-page .b2d-matters-card,
.b2d-request-page .b2d-space-card {
  overflow: hidden;
}

.b2d-request-page .b2d-matters-card img,
.b2d-request-page .b2d-space-card img {
  transition: transform .45s ease;
}

.b2d-request-page .b2d-matters-card:hover img,
.b2d-request-page .b2d-space-card:hover img {
  transform: scale(1.035);
}

.b2d-request-page .b2d-matters-card h3 {
  padding: 16px 17px 5px;
  color: var(--b2d-ink);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
}

.b2d-request-page .b2d-matters-card p {
  padding: 0 17px 18px;
  font-size: 12px;
}

.b2d-request-page .b2d-space-card h3 {
  padding: 15px 12px 4px;
  background: #fff;
  color: var(--b2d-ink);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 13px;
  letter-spacing: .06em;
}

.b2d-request-page .b2d-space-card p {
  min-height: 64px;
  padding: 5px 13px 16px;
  font-size: 12px;
}

/* A quiet, linear project process */
.b2d-request-page .b2d-process-band {
  padding: 28px 0;
  border: 0;
  background: #e9ede8;
  color: var(--b2d-ink);
}

.b2d-request-page .b2d-process-grid {
  gap: 0;
}

.b2d-request-page .b2d-process-intro,
.b2d-request-page .b2d-process-takeoff,
.b2d-request-page .b2d-process-step {
  position: relative;
  padding: 26px 20px;
  border-color: rgba(41, 49, 45, .14);
}

.b2d-request-page .b2d-process-intro h2,
.b2d-request-page .b2d-process-step h3,
.b2d-request-page .b2d-process-takeoff h3 {
  color: var(--b2d-ink);
  text-transform: none;
}

.b2d-request-page .b2d-process-intro h2 {
  font-size: 24px;
}

.b2d-request-page .b2d-process-intro p,
.b2d-request-page .b2d-process-step p,
.b2d-request-page .b2d-process-takeoff p {
  color: var(--b2d-muted);
  font-size: 12px;
}

.b2d-request-page .b2d-process-takeoff strong {
  color: var(--b2d-accent);
}

/* Forms and support panels */
.b2d-request-page .b2d-request-layout {
  gap: 40px;
}

.b2d-request-page .b2d-form,
.b2d-request-page .b2d-side-panel {
  border: 1px solid rgba(41, 49, 45, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--b2d-shadow);
}

.b2d-request-page .b2d-form {
  gap: 20px;
  padding: 30px;
}

.b2d-request-page .b2d-field > label,
.b2d-request-page .b2d-field-label {
  margin-bottom: 8px;
  color: var(--b2d-ink);
  font-size: 13px;
  font-weight: 600;
}

.b2d-request-page input[type=text],
.b2d-request-page input[type=email],
.b2d-request-page input[type=tel],
.b2d-request-page input[type=url],
.b2d-request-page input[type=date],
.b2d-request-page select,
.b2d-request-page textarea {
  height: 48px;
  border: 1px solid #d4d2cb;
  border-radius: 9px;
  background: #fcfbf8;
  color: var(--b2d-ink);
  font-size: 14px;
  padding: 0 14px;
}

.b2d-request-page textarea {
  min-height: 110px;
  padding-top: 13px;
}

.b2d-request-page input:focus,
.b2d-request-page select:focus,
.b2d-request-page textarea:focus {
  border-color: var(--b2d-sage);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(113, 129, 118, .14);
}

.b2d-request-page .b2d-radio {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--b2d-line);
  border-radius: 9px;
  background: #fcfbf8;
  font-size: 13px;
}

.b2d-request-page .b2d-radio input,
.b2d-request-page .b2d-checkline input {
  accent-color: var(--b2d-accent);
}

.b2d-request-page .b2d-upload-box {
  min-height: 136px;
  padding: 22px;
  border: 1px dashed #b6aaa0;
  border-radius: 12px;
  background: #f8f5ef;
}

.b2d-request-page .b2d-upload-box h3 {
  color: var(--b2d-ink);
  font-size: 15px;
}

.b2d-request-page .b2d-upload-button {
  width: 158px;
  min-height: 38px;
  border-color: var(--b2d-accent);
  color: var(--b2d-accent);
}

.b2d-request-page .b2d-submit-button {
  width: 240px;
}

.b2d-request-page .b2d-side-panel {
  overflow: hidden;
}

.b2d-request-page .b2d-takeoff {
  padding: 28px 24px;
  background: var(--b2d-sage-light);
  color: var(--b2d-ink);
}

.b2d-request-page .b2d-takeoff h3,
.b2d-request-page .b2d-takeoff p {
  color: var(--b2d-ink);
}

.b2d-request-page .b2d-takeoff p {
  opacity: .76;
}

.b2d-request-page .b2d-takeoff strong {
  color: var(--b2d-accent);
}

.b2d-request-page .b2d-panel-section {
  padding: 24px;
}

.b2d-request-page .b2d-panel-section h3,
.b2d-request-page .b2d-partnership h3 {
  color: var(--b2d-ink);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  letter-spacing: .05em;
}

.b2d-request-page .b2d-partnership {
  padding: 24px;
  background: #f3e8df;
}

/* Trust, CTA, brand strip, and closing proof points */
.b2d-request-page .b2d-trust {
  padding: 20px 0 60px;
}

.b2d-request-page .b2d-trust-grid {
  gap: 1px;
  border: 1px solid var(--b2d-line);
  border-radius: 16px;
  background: var(--b2d-line);
  box-shadow: 0 10px 30px rgba(41, 49, 45, .05);
}

.b2d-request-page .b2d-trust-item {
  min-height: 140px;
  padding: 25px;
  border: 0;
  background: #fff;
}

.b2d-request-page .b2d-trust-item h3 {
  color: var(--b2d-ink);
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
}

.b2d-request-page .b2d-trust-item p {
  font-size: 12px;
}

.b2d-request-page .b2d-cta {
  min-height: 260px;
  border-top: 1px solid rgba(41, 49, 45, .1);
  border-bottom: 1px solid rgba(41, 49, 45, .1);
  background-color: #d9d2c7;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.b2d-page--commercial .b2d-cta {
  background-image:
    linear-gradient(90deg, #d9d2c7 0%, #d9d2c7 45%, rgba(217, 210, 199, .94) 54%, rgba(217, 210, 199, .06) 82%),
    url("../images/commercial-page-building.png");
}

.b2d-page--hospitality .b2d-cta {
  background-image:
    linear-gradient(90deg, #d9d2c7 0%, #d9d2c7 45%, rgba(217, 210, 199, .94) 54%, rgba(217, 210, 199, .06) 82%),
    url("../images/hospitality-hero-lobby.png");
}

.b2d-request-page .b2d-cta-content {
  width: 57%;
  padding: 52px 0;
}

.b2d-request-page .b2d-cta h2 {
  color: var(--b2d-ink);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-transform: none;
}

.b2d-request-page .b2d-script {
  color: var(--b2d-accent);
  font-size: 20px;
}

.b2d-request-page .b2d-cta p {
  color: #4f5752;
  font-size: 15px;
}

.b2d-request-page .b2d-brand-strip {
  padding: 15px 0;
  background: #fff;
}

.b2d-request-page .b2d-brand-logos {
  color: var(--b2d-ink);
}

.b2d-request-page .b2d-hotel-logo {
  border-color: var(--b2d-line);
  font-size: 21px;
}

.b2d-request-page .b2d-bottom-bar {
  padding: 12px 0;
  background: #29312d;
}

.b2d-request-page .b2d-bottom-item {
  min-height: 86px;
  border-color: rgba(255, 255, 255, .13);
}

.b2d-request-page .b2d-bottom-item h3 {
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 12px;
  letter-spacing: .045em;
}

@media (max-width: 1050px) {
  .b2d-request-page .b2d-hero {
    min-height: 350px;
    background-position: 68% center;
  }

  .b2d-request-page .b2d-hero-inner {
    min-height: 350px;
  }

  .b2d-request-page .b2d-benefit {
    grid-column: auto;
    min-height: 0;
  }

  .b2d-request-page .b2d-benefit:nth-child(4),
  .b2d-request-page .b2d-benefit:nth-child(5) {
    grid-column: auto;
  }

  .b2d-request-page .b2d-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .b2d-request-page .b2d-process-intro,
  .b2d-request-page .b2d-process-takeoff,
  .b2d-request-page .b2d-process-step {
    border-bottom-color: rgba(41, 49, 45, .14);
  }
}

@media (max-width: 760px) {
  .b2d-request-page .b2d-container {
    width: min(100% - 32px, 1180px);
  }

  .b2d-request-page .b2d-hero {
    min-height: 460px;
    background-position: 84% bottom;
    background-size: auto 44%;
  }

  .b2d-request-page .b2d-hero-track {
    min-height: 460px;
  }

  .b2d-request-page .b2d-hero-slide {
    background-image:
      linear-gradient(180deg, rgba(242, 238, 231, 1) 0%, rgba(242, 238, 231, 1) 50%, rgba(242, 238, 231, .83) 65%, rgba(242, 238, 231, .02) 90%),
      var(--b2d-slide-image);
    background-position: right bottom;
    background-size: auto 44%;
  }

  .b2d-page--multi-family .b2d-hero,
  .b2d-page--hospitality .b2d-hero,
  .b2d-page--commercial .b2d-hero {
    background-image:
      linear-gradient(90deg, rgba(242, 238, 231, .98) 0%, rgba(242, 238, 231, .9) 24%, rgba(242, 238, 231, .18) 58%, rgba(242, 238, 231, 0) 76%),
      linear-gradient(180deg, #f2eee7 0%, #f2eee7 53%, rgba(242, 238, 231, .55) 67%, rgba(242, 238, 231, .06) 100%),
      var(--b2d-mobile-hero);
  }

  .b2d-page--multi-family { --b2d-mobile-hero: url("../images/multihome-hero-building.png"); }
  .b2d-page--hospitality { --b2d-mobile-hero: url("../images/hospitality-hero-lobby.png"); }
  .b2d-page--commercial { --b2d-mobile-hero: url("../images/commercial-page-hero.png"); }

  .b2d-request-page .b2d-hero-inner {
    min-height: 460px;
    padding: 30px 0 178px;
    justify-content: flex-start;
  }

  .b2d-request-page .b2d-hero h1 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .b2d-request-page .b2d-hero-lead {
    font-size: 15px;
  }

  .b2d-request-page .b2d-hero-copy {
    font-size: 13px;
  }

  .b2d-page--multi-family .b2d-hero,
  .b2d-page--multi-family .b2d-hero-inner {
    min-height: 520px;
  }

  .b2d-page--multi-family .b2d-hero-track {
    min-height: 520px;
  }

  .b2d-page--multi-family .b2d-hero-inner {
    padding-bottom: 180px;
  }

  .b2d-request-page .b2d-benefits {
    padding: 40px 0 44px;
  }

  .b2d-request-page .b2d-benefits-heading {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 22px;
  }

  .b2d-request-page .b2d-benefits-heading > p {
    padding-left: 15px;
    font-size: 13px;
  }

  .b2d-request-page .b2d-benefit-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .b2d-request-page .b2d-benefit {
    padding-right: 4px;
  }

  .b2d-request-page .b2d-carousel-controls {
    bottom: 12px;
  }

  .b2d-request-page .b2d-carousel-dots {
    padding: 6px 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(8px);
  }

  .b2d-request-page .b2d-benefit,
  .b2d-request-page .b2d-trust-item,
  .b2d-request-page .b2d-bottom-item {
    border-bottom: 0;
  }

  .b2d-request-page .b2d-contractor-trust,
  .b2d-request-page .b2d-contractor-matters,
  .b2d-request-page .b2d-spaces,
  .b2d-request-page .b2d-request {
    padding: 48px 0;
  }

  .b2d-request-page .b2d-form {
    padding: 22px 18px;
  }

  .b2d-request-page .b2d-upload-box {
    padding: 20px;
  }

  .b2d-request-page .b2d-cta {
    min-height: 390px;
    background-position: center bottom;
    background-size: auto 50%;
  }

  .b2d-page--commercial .b2d-cta,
  .b2d-page--hospitality .b2d-cta {
    background-position: center bottom;
    background-size: auto 50%;
  }

  .b2d-page--commercial .b2d-cta {
    background-image:
      linear-gradient(180deg, #d9d2c7 0%, #d9d2c7 48%, rgba(217, 210, 199, .78) 64%, rgba(217, 210, 199, .04) 100%),
      url("../images/commercial-page-building.png");
  }

  .b2d-page--hospitality .b2d-cta {
    background-image:
      linear-gradient(180deg, #d9d2c7 0%, #d9d2c7 48%, rgba(217, 210, 199, .78) 64%, rgba(217, 210, 199, .04) 100%),
      url("../images/hospitality-hero-lobby.png");
  }

  .b2d-request-page .b2d-cta-content {
    width: 100%;
    padding: 42px 0 210px;
  }

  .b2d-request-page .b2d-cta h2 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .b2d-request-page *,
  .b2d-request-page *::before,
  .b2d-request-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
