/* Blog post — end-of-article contextual CTA box */

.bp-cta {
  position: relative;
  margin: 48px 0 32px;
  background: linear-gradient(135deg, #0a0d0c 0%, #1f2528 100%);
  color: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px -20px rgba(10,13,12,.22), 0 8px 20px -12px rgba(10,13,12,.1);
}
@media (min-width: 640px) {
  .bp-cta { padding: 44px 40px; }
}
.bp-cta::after {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,122,0,.28) 0%, transparent 70%);
  pointer-events: none;
}

.bp-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: #ff7a00;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bp-cta-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: #ff7a00;
  display: inline-block;
}

.bp-cta-headline {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .bp-cta-headline { font-size: 28px; }
}

.bp-cta-sub {
  font-size: 15px;
  color: #b8bfc4;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.bp-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.bp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
  border: 1px solid transparent;
  font-family: inherit;
  white-space: nowrap;
}
.bp-cta-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.bp-cta-btn--primary {
  background: #ff7a00;
  color: #fff;
}
.bp-cta-btn--primary:hover {
  background: #e6610e;
  box-shadow: 0 8px 20px -6px rgba(230,97,14,.55);
}

.bp-cta-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,.16);
}
.bp-cta-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,.32);
}

.bp-cta-trust {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: #919aa0;
  position: relative;
  z-index: 1;
}
.bp-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bp-cta-trust svg {
  width: 13px; height: 13px;
  color: #3aa75a;
}

/* =========== FAQ section (inline before CTA box) =========== */
.bp-faq {
  margin: 48px 0 32px;
  padding-top: 36px;
  border-top: 1px solid #e6e9eb;
}
.bp-faq-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: #6b7479;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bp-faq-eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: #3aa75a;
  display: inline-block;
}
.bp-faq h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0a0d0c;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  line-height: 1.2;
}
.bp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.bp-faq-item {
  border-left: 3px solid #d1fae5;
  padding: 2px 0 2px 20px;
}
.bp-faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0a0d0c;
  margin: 0 0 8px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.bp-faq-item p {
  font-size: 15px;
  color: #4a5258;
  line-height: 1.65;
  margin: 0;
}
.bp-faq-item p a {
  color: #047857;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bp-faq-item p a:hover { color: #065f46; }
