/* ============================================================
 * Breakthroughs & Digouts service page
 * Scoped under .ccd-bd to keep the page-specific design isolated.
 *
 * Inherits site typography (DM Sans). Adds a deeper navy + warm cream
 * surface alongside the existing brand red.
 * ============================================================ */

.ccd-bd {
  --bd-red:        #C91C1F;
  --bd-red-dark:   #A91518;
  --bd-red-pale:   #FFE4E4;
  --bd-navy:       #102A4A;
  --bd-navy-mid:   #1A3760;
  --bd-navy-card:  #16314F;
  --bd-cream:      #F8F4ED;
  --bd-cream-2:    #EDE6D6;
  --bd-ink:        #1F2937;
  --bd-muted:      #6B7280;
  --bd-border:     #E2E5EC;

  font-family: "DM Sans", Arial, sans-serif;
  color: var(--bd-ink);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.ccd-bd-wrap { padding: 0 !important; }

.ccd-bd a { color: inherit; }

/* shared subheading kicker */
.ccd-bd .bd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bd-red);
  margin: 0 0 1em;
}
.ccd-bd .bd-kicker::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--bd-red);
}

/* ---------- HERO ---------- */
.ccd-bd .bd-hero {
  background: var(--bd-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ccd-bd .bd-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
}
@media (min-width: 900px) {
  .ccd-bd .bd-hero-inner {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 5rem 1.5rem 4rem;
  }
}
.ccd-bd .bd-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.7em;
  color: #fff;
  font-weight: 800;
}
.ccd-bd .bd-hero h1 .bd-accent { color: var(--bd-red); display: inline-block; }
.ccd-bd .bd-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
  margin: 0 0 1.75rem;
  max-width: 480px;
}
.ccd-bd .bd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2.25rem;
}
.ccd-bd .bd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 480px;
}
.ccd-bd .bd-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.ccd-bd .bd-stat-num .bd-accent { color: var(--bd-red); }
.ccd-bd .bd-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 0.5em;
}
.ccd-bd .bd-stat-stars {
  display: inline-flex;
  gap: 1px;
  color: #FFC83A;
  margin-right: 0.6em;
  font-size: 0.85rem;
}

.ccd-bd .bd-hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 380px;
  background: #0a1e34;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.ccd-bd .bd-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.ccd-bd .bd-hero-media .bd-stars {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: #FFC83A;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.ccd-bd .bd-hero-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  background: rgba(16, 42, 74, 0.92);
  border-left: 3px solid var(--bd-red);
  padding: 0.7rem 0.9rem;
  border-radius: 4px;
  color: rgba(255,255,255,0.92);
  font-family: "DM Sans", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.ccd-bd .bd-hero-caption strong { color: #fff; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.68rem; display: block; opacity: 0.7; margin-bottom: 0.25em; }

/* ---------- BUTTONS ---------- */
.ccd-bd .bd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.9em 1.5em;
  border-radius: 4px;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.ccd-bd .bd-btn-primary {
  background: var(--bd-red);
  color: #fff !important;
}
.ccd-bd .bd-btn-primary:hover { background: var(--bd-red-dark); }
.ccd-bd .bd-btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.4);
}
.ccd-bd .bd-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.ccd-bd .bd-btn-arrow::after { content: " →"; }

/* ---------- TRUST BAR ---------- */
.ccd-bd .bd-trust {
  background: var(--bd-cream);
}
.ccd-bd .bd-trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.75rem;
  align-items: center;
}
@media (min-width: 640px) {
  .ccd-bd .bd-trust-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .ccd-bd .bd-trust-inner { grid-template-columns: repeat(5, 1fr); }
}
.ccd-bd .bd-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--bd-ink);
}
.ccd-bd .bd-trust-icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  background: var(--bd-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
}
.ccd-bd .bd-trust-item strong { font-weight: 700; }

/* ---------- TWO SERVICES ---------- */
.ccd-bd .bd-services {
  background: var(--bd-cream);
  padding: 4rem 1.5rem 4.5rem;
}
.ccd-bd .bd-services-inner { max-width: 1180px; margin: 0 auto; }
.ccd-bd .bd-services h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--bd-navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  max-width: 880px;
}
.ccd-bd .bd-services-intro {
  font-size: 1.05rem;
  color: var(--bd-ink);
  margin: 0 0 3rem;
  max-width: 760px;
}
.ccd-bd .bd-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 840px) {
  .ccd-bd .bd-service-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.ccd-bd .bd-service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(50,75,114,0.08);
}
.ccd-bd .bd-service-card .bd-service-img {
  position: relative;
  height: 260px;
  background: var(--bd-navy-mid);
  overflow: hidden;
}
.ccd-bd .bd-service-card .bd-service-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ccd-bd .bd-service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bd-navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55em 1em;
  border-radius: 3px;
}
.ccd-bd .bd-service-card.bd-svc-breakthrough .bd-service-tag {
  background: var(--bd-red);
}
.ccd-bd .bd-service-body {
  padding: 1.75rem 1.75rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ccd-bd .bd-service-body h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--bd-navy);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
.ccd-bd .bd-service-body p { margin: 0 0 1.2em; color: var(--bd-ink); }
/* Make sure no native markers leak through for any custom-bulleted list */
.ccd-bd ul.bd-service-bullets,
.ccd-bd ul.bd-service-bullets li { list-style: none !important; }
.ccd-bd .bd-service-bullets {
  padding: 0;
  margin: 0 0 1.4em;
}
.ccd-bd .bd-service-bullets li {
  position: relative;
  padding: 0.65em 0 0.65em 1.4em;
  border-bottom: 1px dashed var(--bd-border);
  font-size: 0.97rem;
}
.ccd-bd .bd-service-bullets li:last-child { border-bottom: 0; }
.ccd-bd .bd-service-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--bd-red);
  font-weight: 700;
}
.ccd-bd .bd-service-foot {
  background: var(--bd-cream);
  margin: auto -1.75rem -1.25rem;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--bd-border);
}
.ccd-bd .bd-service-foot .bd-when {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bd-muted);
  line-height: 1.5;
}
.ccd-bd .bd-service-foot .bd-when strong { color: var(--bd-ink); }
.ccd-bd .bd-service-foot .bd-service-quote {
  border: 1.5px solid var(--bd-ink);
  background: #fff;
  color: var(--bd-ink) !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.7em 1em;
  border-radius: 3px;
  text-decoration: none !important;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
}
.ccd-bd .bd-service-foot .bd-service-quote:hover {
  background: var(--bd-ink);
  color: #fff !important;
}

/* ---------- PROCESS ---------- */
.ccd-bd .bd-process {
  background: var(--bd-navy);
  color: #fff;
  padding: 4rem 1.5rem 4.5rem;
}
.ccd-bd .bd-process-inner { max-width: 1180px; margin: 0 auto; }
.ccd-bd .bd-process h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  max-width: 920px;
}
.ccd-bd .bd-process h2 .bd-accent { color: var(--bd-red); }
.ccd-bd .bd-process-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.84);
  margin: 0 0 3rem;
  max-width: 760px;
}
.ccd-bd .bd-process-section + .bd-process-section { margin-top: 3.5rem; }
.ccd-bd .bd-process-section-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bd-red);
  margin: 0 0 1.5rem;
}
.ccd-bd .bd-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 820px) {
  .ccd-bd .bd-process-grid { grid-template-columns: repeat(3, 1fr); }
}
.ccd-bd .bd-process-step .bd-process-img {
  position: relative;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bd-navy-mid);
  margin-bottom: 1.25rem;
}
.ccd-bd .bd-process-step .bd-process-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ccd-bd .bd-process-step .bd-step-num {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 44px;
  height: 44px;
  background: var(--bd-red);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccd-bd .bd-step-meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 0.5em;
}
.ccd-bd .bd-process-step h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.6em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ccd-bd .bd-process-step p {
  color: rgba(255,255,255,0.84);
  margin: 0;
  font-size: 0.97rem;
}

/* ---------- ANATOMY OF A BUILD (gallery) ---------- */
.ccd-bd .bd-anatomy {
  background: var(--bd-cream);
  padding: 4rem 1.5rem 4.5rem;
}
.ccd-bd .bd-anatomy-inner { max-width: 1180px; margin: 0 auto; }
.ccd-bd .bd-anatomy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--bd-navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
}
.ccd-bd .bd-anatomy-intro {
  font-size: 1.05rem;
  color: var(--bd-ink);
  margin: 0 0 2.5rem;
  max-width: 760px;
}
.ccd-bd .bd-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ccd-bd .bd-gallery-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #1a3760;
  min-height: 220px;
}
.ccd-bd .bd-gallery-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (min-width: 720px) {
  .ccd-bd .bd-gallery {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    grid-template-rows: 320px 240px;
  }
  .ccd-bd .bd-gallery .bd-tile-feature { grid-column: 1 / span 2; grid-row: 1; min-height: 0; }
  .ccd-bd .bd-gallery .bd-tile-2       { grid-column: 3 / span 2; grid-row: 1; min-height: 0; }
  .ccd-bd .bd-gallery .bd-tile-3       { grid-column: 1 / span 2; grid-row: 2; min-height: 0; }
  .ccd-bd .bd-gallery .bd-tile-4       { grid-column: 3 / span 1; grid-row: 2; min-height: 0; }
  .ccd-bd .bd-gallery .bd-tile-5       { grid-column: 4 / span 1; grid-row: 2; min-height: 0; }
}
.ccd-bd .bd-gallery-tile::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(16,42,74,0) 0%, rgba(16,42,74,0.85) 100%);
  pointer-events: none;
}
.ccd-bd .bd-gallery-caption {
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.85rem;
  z-index: 2;
  color: #fff;
}
.ccd-bd .bd-gallery-caption .bd-tile-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 0.25em;
}
.ccd-bd .bd-gallery-caption .bd-tile-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- BENEFITS / WHY ---------- */
.ccd-bd .bd-why {
  background: #fff;
  padding: 4rem 1.5rem 4.5rem;
}
.ccd-bd .bd-why-inner { max-width: 1180px; margin: 0 auto; }
.ccd-bd .bd-why h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--bd-navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.ccd-bd .bd-why-intro { font-size: 1.05rem; color: var(--bd-ink); margin: 0 0 2.5rem; max-width: 760px; }
.ccd-bd .bd-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .ccd-bd .bd-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .ccd-bd .bd-benefits-grid { grid-template-columns: repeat(4, 1fr); } }
.ccd-bd .bd-benefit {
  background: var(--bd-cream);
  border-radius: 6px;
  padding: 1.5rem 1.4rem 1.3rem;
}
.ccd-bd .bd-benefit .bd-benefit-icon {
  width: 44px; height: 44px;
  background: var(--bd-navy);
  color: var(--bd-red);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1em;
}
.ccd-bd .bd-benefit h3 {
  color: var(--bd-navy);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 0.5em;
}
.ccd-bd .bd-benefit p { margin: 0; font-size: 0.93rem; color: var(--bd-ink); }

.ccd-bd .bd-advantage {
  margin: 3.5rem 0 0;
  background: var(--bd-navy);
  color: #fff;
  border-radius: 8px;
  padding: 3rem 2rem;
  border-left: 6px solid var(--bd-red);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 800px) {
  .ccd-bd .bd-advantage { grid-template-columns: 1fr 1fr; padding: 3.5rem 3rem; }
}
.ccd-bd .bd-advantage .bd-kicker { color: var(--bd-red); }
.ccd-bd .bd-advantage h3 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  color: #fff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 800;
}
.ccd-bd .bd-advantage p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1rem; }

.ccd-bd .bd-benefits-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) { .ccd-bd .bd-benefits-2 { grid-template-columns: 1fr 1fr; } }
.ccd-bd .bd-benefits-2 .bd-benefit { background: var(--bd-cream); }

.ccd-bd .bd-benefits-section-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bd-red);
  margin: 0 0 1rem;
}

/* ---------- REVIEWS ---------- */
.ccd-bd .bd-reviews {
  background: var(--bd-cream);
  padding: 4rem 1.5rem 4.5rem;
}
.ccd-bd .bd-reviews-inner { max-width: 1180px; margin: 0 auto; }
.ccd-bd .bd-reviews h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--bd-navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
}
.ccd-bd .bd-reviews h2 .bd-accent { color: var(--bd-red); }
.ccd-bd .bd-rating-card {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 1rem 1.4rem;
  gap: 1.4rem;
  border: 1px solid var(--bd-border);
  margin: 0 0 2.5rem;
}
.ccd-bd .bd-rating-stars { color: #FFC83A; font-size: 1.1rem; letter-spacing: 2px; }
.ccd-bd .bd-rating-source { font-size: 0.82rem; color: var(--bd-muted); margin-top: 0.25em; }
.ccd-bd .bd-rating-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bd-navy);
  border-left: 1px solid var(--bd-border);
  padding-left: 1.4rem;
  line-height: 1;
}
.ccd-bd .bd-rating-count {
  font-size: 0.82rem;
  color: var(--bd-muted);
  margin-top: 0.4em;
  padding-left: 1.4rem;
  border-left: 1px solid transparent;
}
.ccd-bd .bd-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 760px) { .ccd-bd .bd-review-grid { grid-template-columns: repeat(3, 1fr); } }
.ccd-bd .bd-review-card {
  background: #fff;
  border-radius: 6px;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--bd-border);
}
.ccd-bd .bd-review-card .bd-stars { color: #FFC83A; font-size: 1rem; letter-spacing: 2px; margin: 0 0 1rem; }
.ccd-bd .bd-review-card p { font-style: italic; margin: 0 0 1.4rem; color: var(--bd-ink); font-size: 0.97rem; }
.ccd-bd .bd-review-card .bd-review-attr {
  border-top: 1px solid var(--bd-border);
  padding-top: 0.85rem;
  font-size: 0.85rem;
}
.ccd-bd .bd-review-card .bd-review-attr strong { color: var(--bd-ink); font-weight: 700; }
.ccd-bd .bd-review-card .bd-review-attr .bd-review-loc {
  display: inline-block;
  margin-left: 0.5em;
  color: var(--bd-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.ccd-bd .bd-faq {
  background: #fff;
  padding: 4rem 1.5rem 4.5rem;
}
.ccd-bd .bd-faq-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 880px) {
  .ccd-bd .bd-faq-inner { grid-template-columns: 1fr 1.4fr; gap: 3rem; }
}
.ccd-bd .bd-faq-intro h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--bd-navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.8em;
}
.ccd-bd .bd-faq-intro p { color: var(--bd-ink); margin: 0; }
.ccd-bd .bd-faq-intro a { color: var(--bd-navy); font-weight: 700; }

.ccd-bd .bd-faq-list { margin: 0; padding: 0; }
.ccd-bd .bd-faq-item {
  border-top: 1px solid var(--bd-border);
  padding: 1.5rem 0;
}
.ccd-bd .bd-faq-item:last-child { border-bottom: 1px solid var(--bd-border); }
.ccd-bd .bd-faq-item h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bd-navy);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
.ccd-bd .bd-faq-item p { margin: 0; color: var(--bd-ink); font-size: 0.97rem; }

/* ---------- QUOTE FORM ---------- */
.ccd-bd .bd-form {
  background: var(--bd-navy);
  color: #fff;
  padding: 4rem 1.5rem 4.5rem;
  position: relative;
}
.ccd-bd .bd-form-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .ccd-bd .bd-form-inner { grid-template-columns: 0.85fr 1.15fr; gap: 3rem; }
}
.ccd-bd .bd-form-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.7em;
}
.ccd-bd .bd-form-copy h2 .bd-accent { color: var(--bd-red); }
.ccd-bd .bd-form-copy p {
  color: rgba(255,255,255,0.86);
  font-size: 1.02rem;
  margin: 0 0 1.5rem;
  max-width: 460px;
}
.ccd-bd ul.bd-form-bullets,
.ccd-bd ul.bd-form-bullets li { list-style: none !important; }
.ccd-bd ul.bd-form-bullets { margin: 0; padding: 0; }
.ccd-bd ul.bd-form-bullets li {
  padding: 0.4em 0 0.4em 1.6em;
  position: relative;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  background-image: none !important; /* Salient sometimes injects a marker as bg */
}
.ccd-bd .bd-form-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 1.05em; height: 1.05em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23C91C1F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3.5 3.5L13 4.5'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}

.ccd-bd .bd-form-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 2rem 1.5rem;
  color: var(--bd-ink);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.ccd-bd .bd-form-card h3 {
  color: var(--bd-navy);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.3em;
}
.ccd-bd .bd-form-card .bd-form-sub {
  color: var(--bd-muted);
  margin: 0 0 1.5rem;
  font-size: 0.93rem;
}
.ccd-bd .bd-form-card iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
  border-radius: 4px;
}

/* ---------- $700 OFFER ---------- */
.ccd-bd .bd-offer {
  background: var(--bd-navy);
  padding: 0 1.5rem 4.5rem;
}
.ccd-bd .bd-offer-inner { max-width: 1180px; margin: 0 auto; }
.ccd-bd .bd-offer-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bd-navy-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 5px solid var(--bd-red);
  border-radius: 8px;
  padding: 1.4rem 1.6rem;
  max-width: 460px;
  color: #fff;
}
.ccd-bd .bd-offer-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--bd-red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ccd-bd .bd-offer-body { flex: 1; }
.ccd-bd .bd-offer-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}
.ccd-bd .bd-offer-body p {
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
}

/* Override Salient page wrapper bleeds */
.ccd-bd-wrap > .container-wrap { padding: 0 !important; }
body .ccd-bd-wrap { background: #fff; }
