/*
  CB Recovery Services + How It Works
  No background, black text, blue accents (#2563eb)
  All classes prefixed with cb- to avoid conflicts
*/

/* ── Fade-in animation ── */
.cb-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.cb-fade-in.cb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shared section header ── */
.cb-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.cb-section-label {
  color: #2563eb;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  margin: 0 0 .75rem;
}
.cb-section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #111;
  margin: 0 0 .75rem;
}
.cb-section-bar {
  width: 4rem;
  height: 4px;
  background: #2563eb;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
}
.cb-section-desc {
  color: #475569;
  font-size: 1.1rem;
  margin: 0;
}

/* ── Services Section ── */
.cb-services-section {
  padding: 4rem 0;
}
.cb-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.cb-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.cb-service-card:hover {
  border-color: rgba(37,99,235,.3);
  box-shadow: 0 4px 20px rgba(37,99,235,.08);
}
.cb-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: .875rem;
  border-radius: .75rem;
  background: rgba(37,99,235,.1);
}
.cb-service-icon svg {
  width: 28px;
  height: 28px;
  color: #2563eb;
}
.cb-service-body h3 {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.3;
  color: #111;
  margin: 0 0 .75rem;
}
.cb-service-body p {
  font-size: .875rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
.cb-service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  gap: .375rem;
  color: #2563eb;
  text-decoration: none;
  transition: gap .2s;
}
.cb-service-card:hover .cb-service-link { gap: .625rem; }

/* CTA bar under services */
.cb-services-cta {
  margin-top: 2.5rem;
  text-align: center;
}
.cb-services-cta a {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: .75rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,99,235,.2);
  transition: background .2s, transform .15s;
}
.cb-services-cta a:hover { background: #1d4ed8; color: #fff; text-decoration: none; }
.cb-services-cta a:active { transform: scale(.95); }
.cb-services-cta svg { width: 20px; height: 20px; }

/* ── How It Works Section ── */
.cb-how-section {
  padding: 4rem 0;
}
.cb-how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}
.cb-how-connector {
  display: none;
  position: absolute;
  top: 3.5rem;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(37,99,235,.3), transparent);
  z-index: 0;
}
.cb-step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  transition: border-color .2s;
}
.cb-step-card:hover { border-color: rgba(37,99,235,.25); }
.cb-step-number {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  border: 2px solid #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(37,99,235,.12);
}
.cb-step-icon {
  width: 24px;
  height: 24px;
  color: #2563eb;
  margin-bottom: .75rem;
}
.cb-step-card h3 {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #111;
  margin: 0 0 .75rem;
}
.cb-step-card p {
  font-size: .875rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* CTA row under how-it-works */
.cb-how-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.cb-how-cta-call {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: .75rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,99,235,.2);
  transition: background .2s, transform .15s;
}
.cb-how-cta-call:hover { background: #1d4ed8; color: #fff; text-decoration: none; }
.cb-how-cta-call:active { transform: scale(.95); }
.cb-how-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: .75rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.15);
  transition: background .2s, transform .15s;
}
.cb-how-cta-whatsapp:hover { background: #20bd5a; color: #fff; text-decoration: none; }
.cb-how-cta-whatsapp:active { transform: scale(.95); }

/* ── Final CTA ── */
.cb-final-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: #2563eb;
}
.cb-final-cta-stripe {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,.15) 8px,
    rgba(0,0,0,.15) 16px
  );
}
.cb-final-cta-glow-r {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.12);
  filter: blur(64px);
  pointer-events: none;
}
.cb-final-cta-glow-l {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.08);
  filter: blur(64px);
  pointer-events: none;
}
.cb-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.cb-final-cta-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.cb-final-cta-title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1;
  color: #fff;
  margin: 0 0 .75rem;
}
.cb-final-cta-desc {
  color: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 2.5rem;
}
.cb-final-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.cb-final-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: #000;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  transition: transform .15s;
}
.cb-final-cta-call:hover { color: #fff; text-decoration: none; transform: scale(1.05); }
.cb-final-cta-call:active { transform: scale(.95); }
.cb-final-cta-call svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  animation: cb-pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
.cb-final-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,.2);
  transition: background .2s, transform .15s;
}
.cb-final-cta-whatsapp:hover { background: #20bd5a; color: #fff; text-decoration: none; transform: scale(1.05); }
.cb-final-cta-whatsapp:active { transform: scale(.95); }
.cb-final-cta-footnote {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .15em;
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .cb-services-grid { grid-template-columns: repeat(3, 1fr); }
  .cb-how-grid { grid-template-columns: repeat(3, 1fr); }
  .cb-how-connector { display: block; }
  .cb-how-cta { flex-direction: row; }
  .cb-final-cta-row { flex-direction: row; }
  .cb-final-cta-call { font-size: 1.875rem; padding: 1.5rem 3rem; }
  .cb-final-cta-whatsapp { font-size: 1.875rem; padding: 1.5rem 3rem; }
  .cb-final-cta-call svg { width: 32px; height: 32px; }
}

/* ── Why Us ── */
.cb-why-section {
  padding: 4rem 0;
}
.cb-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.cb-why-header {
  margin-bottom: 2.5rem;
}
.cb-why-label {
  color: #2563eb;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  margin: 0 0 .75rem;
}
.cb-why-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #111;
  margin: 0 0 .75rem;
  line-height: 1.1;
}
.cb-why-bar {
  width: 4rem;
  height: 4px;
  background: #2563eb;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.cb-why-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.cb-why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.cb-why-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.2);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cb-why-item h4 {
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #111;
  margin: 0 0 .25rem;
}
.cb-why-item p {
  font-size: .875rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}
.cb-why-cta {
  margin-top: 2.5rem;
}
.cb-why-cta a {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: .75rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,99,235,.2);
  transition: background .2s, transform .15s;
}
.cb-why-cta a:hover { background: #1d4ed8; color: #fff; text-decoration: none; }
.cb-why-cta a:active { transform: scale(.95); }

/* Coverage card */
.cb-why-coverage {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  background: #fff;
}
.cb-why-coverage-head {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.cb-why-coverage-head h3 {
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #111;
  margin: 0;
}
.cb-why-coverage p {
  font-size: .875rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 1.25rem;
}
.cb-why-coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-bottom: 1.25rem;
  list-style: none;
  padding: 0;
}
.cb-why-coverage-grid li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: #333;
}
.cb-why-coverage-grid li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
  flex-shrink: 0;
}
.cb-why-coverage-note {
  font-size: .75rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 1rem;
}
.cb-why-coverage-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .75rem;
  background: #2563eb;
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: .75rem;
  text-decoration: none;
  transition: background .2s;
}
.cb-why-coverage-call:hover { background: #1d4ed8; color: #fff; text-decoration: none; }

/* Emergency card */
.cb-why-emergency {
  margin-top: 1.25rem;
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 1rem;
  padding: 1.5rem;
  background: rgba(239,68,68,.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cb-why-emergency-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cb-why-emergency h4 {
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #111;
  margin: 0 0 .25rem;
}
.cb-why-emergency p {
  font-size: .875rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 .5rem;
}
.cb-why-emergency a {
  color: #2563eb;
  font-weight: 900;
  font-size: .875rem;
  text-decoration: none;
}
.cb-why-emergency a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .cb-why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
