.bc-why {
  padding: var(--space-xl) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* ── Background ── */
.bc-why__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bc-why__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,168,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,168,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bc-why__bg-glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,168,0.1) 0%, transparent 65%);
}
.bc-why__bg-glow-2 {
  position: absolute;
  bottom: -100px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,194,168,0.06) 0%, transparent 65%);
}

/* ── Inner layout ── */
.bc-why__inner {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.bc-why__header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: end;
  margin-bottom: 60px;
}

.bc-why__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}
.bc-why__eyebrow-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.bc-why__title {
  font-family: var(--font-primary);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}
.bc-why__title em {
  font-style: normal;
  color: var(--secondary);
}

.bc-why__header-right {
  padding-bottom: 6px;
}

.bc-why__intro {
  font-family: var(--font-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
}

/* Stats strip in header */
.bc-why__header-stats {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.bc-why__header-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bc-why__header-stat strong {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.bc-why__header-stat span {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.bc-why__header-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 4px 0;
}

/* ── Feature grid ── */
.bc-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Each card */
.bc-why__card {
  background: rgba(255,255,255,0.02);
  padding: 32px 28px;
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
  overflow: hidden;
}

/* Hover glow */
.bc-why__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0,194,168,0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bc-why__card:hover::before { opacity: 1; }

/* Top accent line on hover */
.bc-why__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), rgba(0,194,168,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.bc-why__card:hover::after { transform: scaleX(1); }
.bc-why__card:hover { background: rgba(0,194,168,0.05); }

/* Card number */
.bc-why__card-num {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0,194,168,0.22);
  transition: color 0.3s;
}
.bc-why__card:hover .bc-why__card-num { color: rgba(0,194,168,0.55); }

/* Icon wrapper */
.bc-why__card-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(0,194,168,0.1);
  border: 1px solid rgba(0,194,168,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary);
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.bc-why__card:hover .bc-why__card-icon-wrap {
  background: rgba(0,194,168,0.18);
  border-color: rgba(0,194,168,0.45);
  transform: translateY(-3px);
}

/* Card title */
.bc-why__card-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* Teal underline on title */
.bc-why__card-title-line {
  display: block;
  width: 28px; height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  margin-top: 8px;
  margin-bottom: 12px;
  transition: width 0.35s ease;
}
.bc-why__card:hover .bc-why__card-title-line { width: 48px; }

/* Card body */
.bc-why__card-body {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.bc-why__card:hover .bc-why__card-body { color: rgba(255,255,255,0.72); }

/* ── CTA strip below grid ── */
.bc-why__footer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 28px 32px;
  background: rgba(0,194,168,0.06);
  border: 1px solid rgba(0,194,168,0.15);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}
.bc-why__footer-text {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.bc-why__footer-text span { color: var(--secondary); }
.bc-why__footer-sub {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.bc-why__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,194,168,0.3);
  flex-shrink: 0;
}
.bc-why__footer-cta:hover {
  background: #00d9bb;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,194,168,0.45);
}


/* ══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .bc-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-why__header {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: 40px;
  }
}

@media (max-width: 900px) {
  .bc-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bc-why__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: 22px 20px;
  }
  .bc-why__footer-cta { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .bc-why {
    overflow: hidden;
  }
  .bc-why__grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
  }
  .bc-why__card {
    padding: 24px 20px;
  }
  /* Show a subtle separator between stacked cards */
  .bc-why__card + .bc-why__card {
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  /* Always show the top accent line on mobile (no hover) */
  .bc-why__card::after {
    transform: scaleX(1);
    opacity: 0.5;
  }
  .bc-why__card-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 11px;
    margin-bottom: 14px;
  }
  .bc-why__card-title {
    font-size: 0.95rem;
  }
  .bc-why__card-body {
    font-size: 0.83rem;
    /* Show full text on mobile, no truncation */
    color: rgba(255,255,255,0.65);
  }
  .bc-why__card-num {
    font-size: 0.6rem;
  }
  .bc-why__title {
    font-size: 1.75rem;
  }
  .bc-why__header-stats {
    gap: var(--space-sm);
  }
  .bc-why__header-stat strong {
    font-size: 1.3rem;
  }
  .bc-why__footer {
    padding: 18px 16px;
  }
  .bc-why__footer-text {
    font-size: 0.95rem;
  }
}