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

/* ── Background decorations ── */
.bc-whyus__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bc-whyus__bg-glow {
  position: absolute;
  top: -100px; left: -80px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0,194,168,0.07) 0%, transparent 65%);
}
.bc-whyus__bg-glow-2 {
  position: absolute;
  bottom: -80px; right: -60px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(11,31,58,0.04) 0%, transparent 65%);
}
/* Subtle diagonal stripe texture */
.bc-whyus__bg-stripe {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,194,168,0.03) 25%, transparent 25%) -20px 0,
              linear-gradient(225deg, rgba(0,194,168,0.03) 25%, transparent 25%) -20px 0,
              linear-gradient(315deg, rgba(0,194,168,0.03) 25%, transparent 25%),
              linear-gradient(45deg, rgba(0,194,168,0.03) 25%, transparent 25%);
  background-size: 40px 40px;
  opacity: 0.6;
}

/* ── Inner layout ── */
.bc-whyus__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ══════════════════════════════════════════
   LEFT — Content
════════════════════════════════════════════ */
.bc-whyus__content {}

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

.bc-whyus__title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.bc-whyus__title em {
  font-style: normal;
  color: var(--secondary);
  position: relative;
}
.bc-whyus__title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--secondary), rgba(0,194,168,0));
  border-radius: 2px;
}

.bc-whyus__lead {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

/* Trust badges row */
.bc-whyus__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-lg);
}
.bc-whyus__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-light);
  border: 1.5px solid rgba(0,194,168,0.18);
  border-radius: 50px;
  padding: 7px 16px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.bc-whyus__trust-badge:hover {
  border-color: var(--secondary);
  background: rgba(0,194,168,0.06);
  transform: translateY(-2px);
}
.bc-whyus__trust-badge svg { color: var(--secondary); flex-shrink: 0; }

/* Stats row */
.bc-whyus__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,194,168,0.12);
  border: 1px solid rgba(0,194,168,0.14);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.bc-whyus__stat {
  background: var(--white);
  padding: 20px 16px;
  text-align: center;
  transition: background 0.25s;
}
.bc-whyus__stat:hover { background: rgba(0,194,168,0.04); }

.bc-whyus__stat strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}
.bc-whyus__stat strong span {
  color: var(--secondary);
}
.bc-whyus__stat p {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   RIGHT — Services card
════════════════════════════════════════════ */
.bc-whyus__services-wrap {
  position: relative;
}

/* Decorative floating card behind */
.bc-whyus__services-wrap::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  background: rgba(0,194,168,0.06);
  border: 1px solid rgba(0,194,168,0.12);
  border-radius: var(--radius-md);
  z-index: 0;
}

.bc-whyus__services-card {
  position: relative;
  z-index: 1;
  background: var(--primary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11,31,58,0.14);
}

/* Card header */
.bc-whyus__services-header {
  padding: 28px 32px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.bc-whyus__services-header::after {
  content: '';
  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: 32px 32px;
  pointer-events: none;
}
.bc-whyus__services-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.bc-whyus__services-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(0,194,168,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 6px rgba(0,194,168,0.5); }
  50%      { box-shadow: 0 0 16px rgba(0,194,168,0.9); }
}
.bc-whyus__services-label span {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}
.bc-whyus__services-heading {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}

/* Services list */
.bc-whyus__services-list {
  list-style: none;
  padding: 8px 0;
}

.bc-whyus__service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: default;
  transition: background 0.25s, padding-left 0.3s;
  position: relative;
  overflow: hidden;
}
.bc-whyus__service-item:last-child { border-bottom: none; }

/* Sweep bg on hover */
.bc-whyus__service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,194,168,0.06);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.bc-whyus__service-item:hover::before { transform: translateX(0); }
.bc-whyus__service-item:hover { padding-left: 36px; }

/* Step number */
.bc-whyus__service-step {
  font-family: var(--font-primary);
  font-size: 0.62rem;
  font-weight: 800;
  color: rgba(0,194,168,0.35);
  letter-spacing: 0.08em;
  min-width: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}
.bc-whyus__service-item:hover .bc-whyus__service-step {
  color: var(--secondary);
}

/* Icon */
.bc-whyus__service-icon {
  width: 36px; height: 36px;
  background: rgba(0,194,168,0.08);
  border: 1px solid rgba(0,194,168,0.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.bc-whyus__service-item:hover .bc-whyus__service-icon {
  background: rgba(0,194,168,0.16);
  border-color: rgba(0,194,168,0.4);
  transform: rotate(5deg) scale(1.05);
}

/* Label */
.bc-whyus__service-name {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  flex: 1;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}
.bc-whyus__service-item:hover .bc-whyus__service-name {
  color: var(--white);
}

/* Arrow */
.bc-whyus__service-arrow {
  color: rgba(0,194,168,0.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: color 0.25s, transform 0.25s;
}
.bc-whyus__service-item:hover .bc-whyus__service-arrow {
  color: var(--secondary);
  transform: translateX(4px);
}

/* Card footer */
.bc-whyus__services-footer {
  padding: 18px 32px;
  background: rgba(0,194,168,0.06);
  border-top: 1px solid rgba(0,194,168,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bc-whyus__services-footer-text {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.bc-whyus__services-footer-text strong {
  color: var(--secondary);
  display: block;
  font-size: 0.82rem;
}
.bc-whyus__services-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(0,194,168,0.3);
}
.bc-whyus__services-footer-cta:hover {
  background: #00d9bb;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,194,168,0.45);
}

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

@media (max-width: 1100px) {
  .bc-whyus__inner { gap: 48px; }
}

@media (max-width: 900px) {
  .bc-whyus__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .bc-whyus__services-wrap::before {
    display: none; /* hide shadow card on mobile */
  }
  .bc-whyus__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .bc-whyus {
    overflow: hidden;
  }
  .bc-whyus__title {
    font-size: 1.8rem;
  }
  .bc-whyus__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .bc-whyus__stat {
    padding: 16px 10px;
  }
  .bc-whyus__stat strong {
    font-size: 1.4rem;
  }
  .bc-whyus__stat p {
    font-size: 0.68rem;
  }
  .bc-whyus__services-header {
    padding: 22px 20px 18px;
  }
  .bc-whyus__service-item {
    padding: 13px 20px;
    gap: 12px;
  }
  .bc-whyus__service-item:hover {
    padding-left: 24px;
  }
  .bc-whyus__service-name {
    font-size: 0.85rem;
  }
  .bc-whyus__services-footer {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .bc-whyus__services-footer-cta {
    width: 100%;
    justify-content: center;
  }
  .bc-whyus__trust {
    gap: 8px;
  }
  .bc-whyus__trust-badge {
    font-size: 0.73rem;
    padding: 6px 12px;
  }
}