/* ============================================================
   Bharat Connect for Business — page styles
   ============================================================ */

/* Bharat Connect official logo */
.bc-brand-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}
.bc-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  display: block;
}
.bc-logo--sm {
  height: 36px;
}
.bc-logo--lg {
  height: 64px;
  margin: 0 auto 1rem;
}
.bc-logo--on-dark {
  height: 56px;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.bc-brand-sep {
  width: 1px;
  height: 28px;
  background: var(--ccd-grey-200);
}
.eyebrow--inline {
  margin-bottom: 0;
}
.eyebrow--inline::before { display: none; }

.bc-cobrand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.section-head--center .bc-cobrand {
  margin-inline: auto;
}

@media (max-width: 480px) {
  .bc-logo { height: 42px; }
  .bc-logo--lg { height: 52px; }
  .bc-logo--on-dark { height: 48px; }
  .bc-brand-sep { display: none; }
}

.bc-hero {
  position: relative;
  padding: clamp(2.5rem, 5.5vw, 4.25rem) 0 clamp(3.25rem, 6vw, 5rem);
  background: var(--grad-hero);
  overflow: hidden;
}
.bc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76, 180, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 180, 212, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 75% 65% at 62% 42%, #000 20%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.bc-hero .atmosphere-waves {
  height: min(55%, 400px);
}
.bc-hero::after {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(180deg, transparent, white);
  pointer-events: none;
}
.bc-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.bc-hero .lead { margin: 0 0 1.35rem; }

.bc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.75rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(76, 180, 212, 0.22);
  box-shadow: 0 2px 10px rgba(15, 40, 60, 0.05);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

/* ---- Hero product visual ---- */
.bc-hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  isolation: isolate;
  padding: 0.85rem 0.5rem 1.25rem;
}
.bc-hero-visual::before {
  content: '';
  position: absolute;
  inset: 12% 4% 8%;
  border-radius: 40%;
  background: radial-gradient(ellipse at center, rgba(76, 180, 212, 0.28) 0%, rgba(11, 28, 42, 0.08) 42%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
  animation: bcGlowBreath 8s ease-in-out infinite;
}
.bc-product {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #0B1C2A, #16384C);
  border: 1px solid rgba(76, 180, 212, 0.28);
  box-shadow:
    0 24px 56px rgba(7, 21, 35, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.35s var(--ease-soft, cubic-bezier(0.22, 1, 0.36, 1));
}
.bc-product__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bc-product__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4A5D6E;
}
.bc-product__chrome span:nth-child(1) { background: #FF6B6B; }
.bc-product__chrome span:nth-child(2) { background: #FFD166; }
.bc-product__chrome span:nth-child(3) { background: #7AC943; }
.bc-product__chrome p {
  margin: 0 0 0 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.bc-product__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #EAF5F9;
}
.bc-product__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
  transition: transform 0.6s var(--ease-soft, cubic-bezier(0.22, 1, 0.36, 1));
}
.bc-hero-visual:hover .bc-product__img {
  transform: scale(1.04);
}
.bc-tag {
  position: absolute;
  z-index: 3;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ccd-navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(76, 180, 212, 0.25);
  box-shadow: 0 8px 20px rgba(15, 40, 60, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bc-tag--a {
  top: 14%;
  left: -2%;
  animation: bcFloatC 6.5s ease-in-out infinite;
}
.bc-tag--b {
  bottom: 18%;
  left: -4%;
  animation: bcFloatA 7.5s ease-in-out infinite;
}

.bc-float {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 22px rgba(15, 40, 60, 0.1);
  font-size: 0.62rem;
  color: var(--ccd-muted);
}
.bc-float strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ccd-navy);
  line-height: 1.15;
}
.bc-float small {
  font-size: 0.58rem;
  color: var(--ccd-soft);
  line-height: 1.3;
}
.bc-float--a {
  top: 18%;
  right: -2%;
  animation: bcFloatA 7s ease-in-out infinite;
}
.bc-float--b {
  bottom: 16%;
  right: -4%;
  animation: bcFloatB 8.5s ease-in-out infinite;
}

@keyframes bcGlowBreath {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@keyframes bcFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes bcFloatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
@keyframes bcFloatC {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* page-bc base polish */
body.page-bc {
  background: #F7FAFC;
}
body.page-bc .final-cta {
  border-radius: 24px;
  padding: clamp(2.75rem, 6vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 60px rgba(7, 21, 35, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
body.page-bc .final-cta::after {
  content: '';
  position: absolute;
  inset: auto -10% -40% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 201, 67, 0.14), transparent 68%);
  pointer-events: none;
}

/* Custom showcase (no screenshots) */
.custom-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.1rem;
}
.custom-panel {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 1.35rem;
  box-shadow: var(--shadow-md);
}
.custom-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}
.custom-metrics div {
  background: var(--ccd-ice);
  border-radius: 12px;
  padding: 0.85rem 0.75rem;
}
.custom-metrics span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ccd-muted);
  margin-bottom: 0.25rem;
}
.custom-metrics strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ccd-navy);
}
.custom-metrics strong.accent { color: var(--ccd-teal-deep); }
.custom-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  height: 110px;
  padding: 0.5rem 0.25rem 0;
}
.custom-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: var(--grad-teal);
  opacity: 0.85;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.7s var(--ease-out);
}
.custom-showcase.is-visible .custom-bars span,
[data-reveal].is-visible .custom-bars span { transform: scaleY(1); }
.custom-panel--list ul {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.custom-panel--list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: var(--ccd-ice);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ccd-charcoal);
}

@media (max-width: 980px) {
  .bc-hero-grid { grid-template-columns: 1fr; }
  .bc-hero-visual {
    order: -1;
    max-width: min(100%, 440px);
  }
  .bc-float--a { right: 0; }
  .bc-tag--a,
  .bc-tag--b { left: 0; }
  .custom-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bc-hero-visual { padding: 0.5rem 0 1rem; }
  .bc-float {
    padding: 0.45rem 0.55rem;
    font-size: 0.56rem;
  }
  .bc-float strong { font-size: 0.78rem; }
  .bc-float--b,
  .bc-tag--b { display: none; }
  .custom-metrics { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .bc-hero-visual::before,
  .bc-float,
  .bc-tag {
    animation: none;
  }
  .bc-hero-visual:hover .bc-product__img {
    transform: scale(1.01);
  }
  .custom-bars span { transform: none; }
}

/* Problem cards */
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.bc-pain {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  padding: 1.2rem 1.15rem 1.25rem;
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.98), rgba(247,252,255,0.94)),
    #fff;
  border: 1px solid rgba(76, 180, 212, 0.14);
  box-shadow: 0 8px 22px rgba(11, 28, 42, 0.04);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-soft, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.bc-pain::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(76, 180, 212, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bc-pain::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: -40%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 180, 212, 0.14), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.45s ease;
}
.bc-pain:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 180, 212, 0.4);
  box-shadow:
    0 16px 36px rgba(11, 28, 42, 0.09),
    0 0 0 1px rgba(76, 180, 212, 0.08);
  background: linear-gradient(165deg, #ffffff, #eef8fb);
}
.bc-pain:hover::before { opacity: 1; }
.bc-pain:hover::after {
  opacity: 1;
  transform: translate(-10px, -14px) scale(1.1);
}
.bc-pain__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}
.bc-pain__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #2A8FA8;
  background: linear-gradient(145deg, rgba(76, 180, 212, 0.18), rgba(76, 180, 212, 0.06));
  border: 1px solid rgba(76, 180, 212, 0.22);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}
.bc-pain__icon svg { width: 18px; height: 18px; }
.bc-pain:hover .bc-pain__icon {
  transform: scale(1.08) rotate(-4deg);
  color: #1A7A92;
  background: linear-gradient(145deg, rgba(76, 180, 212, 0.32), rgba(76, 180, 212, 0.1));
  box-shadow: 0 8px 18px rgba(76, 180, 212, 0.22);
}
.bc-pain__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8A5A2B;
  background: rgba(232, 168, 86, 0.14);
  border: 1px solid rgba(232, 168, 86, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  white-space: nowrap;
}
.bc-pain h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ccd-navy, #0B1C2A);
  margin: 0;
  line-height: 1.3;
}
.bc-pain p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-secondary, #5A6B7A);
  line-height: 1.55;
}

.pillar-card,
.use-cards .card,
.trust-cards .card,
.identity-benefits .card {
  padding: 1.15rem 1.1rem;
}
.pillar-card h3,
.use-cards h3,
.trust-cards h3,
.identity-benefits h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}
.pillar-card p,
.use-cards p,
.trust-cards p,
.identity-benefits p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.transition-banner {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  text-align: center;
  padding: 1.1rem 1.35rem;
  border-radius: 18px;
  background:
    linear-gradient(105deg, rgba(232, 246, 250, 0.95), #fff 42%, rgba(232, 246, 250, 0.9));
  border: 1px solid rgba(76, 180, 212, 0.22);
  box-shadow: 0 10px 28px rgba(11, 28, 42, 0.05);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.transition-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(76, 180, 212, 0.12) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: bcBannerSheen 4.5s ease-in-out infinite;
  pointer-events: none;
}
.transition-banner:hover {
  border-color: rgba(76, 180, 212, 0.4);
  box-shadow: 0 14px 34px rgba(11, 28, 42, 0.08);
  transform: translateY(-2px);
}
.transition-banner__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ccd-navy);
  position: relative;
  z-index: 1;
}
.transition-banner__path {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.transition-banner__step {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: #1A7A92;
  background: rgba(76, 180, 212, 0.12);
  border: 1px solid rgba(76, 180, 212, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.transition-banner__step--accent {
  color: #fff;
  background: linear-gradient(135deg, #4CB4D4, #2A8FA8);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(76, 180, 212, 0.35);
}
.transition-banner:hover .transition-banner__step {
  transform: translateY(-1px);
}
.transition-banner__arrow {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(76, 180, 212, 0.35), #4CB4D4);
  position: relative;
  flex-shrink: 0;
}
.transition-banner__arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #4CB4D4;
  border-top: 2px solid #4CB4D4;
  transform: translateY(-50%) rotate(45deg);
}
@keyframes bcBannerSheen {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

@media (max-width: 900px) {
  .problem-cards { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .bc-pain:hover { transform: none; }
  .bc-pain:hover .bc-pain__icon { transform: none; }
  .transition-banner::before { animation: none; }
  .transition-banner:hover { transform: none; }
  .transition-banner:hover .transition-banner__step { transform: none; }
}

/* Identity flow */
.identity-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 420px;
  margin-inline: auto;
  background: linear-gradient(165deg, #fff, #F4FAFC);
  border: 1px solid rgba(76, 180, 212, 0.16);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 32px rgba(11, 28, 42, 0.05);
}
.identity-node {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(15, 40, 60, 0.07);
  box-shadow: none;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--ccd-navy);
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.identity-node:hover {
  transform: translateX(3px);
  border-color: rgba(76, 180, 212, 0.3);
}
.identity-node--accent {
  background: linear-gradient(135deg, rgba(76,180,212,0.16), rgba(76,180,212,0.05));
  border-color: rgba(76,180,212,0.4);
  color: var(--ccd-cyan-deep);
  box-shadow: 0 6px 16px rgba(76, 180, 212, 0.12);
}
.identity-arrow {
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, #4CB4D4, rgba(76,180,212,0.2));
  position: relative;
}
.identity-arrow::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ccd-cyan);
}
.identity-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.identity-benefits .card {
  padding: 1.35rem 1.25rem;
}
.identity-benefits h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.identity-benefits p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 700px) {
  .identity-benefits { grid-template-columns: 1fr; }
}

/* Command center */
.command-panel {
  background: linear-gradient(165deg, #fff, #F4FAFC);
  border: 1px solid rgba(76, 180, 212, 0.16);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(11, 28, 42, 0.06);
  padding: 1.1rem 1.15rem 1.15rem;
  overflow: hidden;
}
.command-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}
.command-metrics .metric-tile {
  background: linear-gradient(165deg, #F7FBFC, #EEF6F9);
  border: 1px solid rgba(15, 40, 60, 0.05);
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
}
@media (max-width: 900px) {
  .command-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* Reconciliation visual */
.recon-visual {
  background: linear-gradient(165deg, #fff, #F4FAFC);
  border: 1px solid rgba(76, 180, 212, 0.16);
  border-radius: 16px;
  padding: 1.35rem 1.15rem;
  box-shadow: 0 12px 32px rgba(11, 28, 42, 0.05);
  text-align: center;
}
.recon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 280px;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--ccd-ice);
  border: 1px solid var(--border-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.recon-arrow {
  height: 36px;
  width: 2px;
  margin: 0.35rem auto;
  background: var(--grad-brand);
  position: relative;
}
.recon-arrow::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ccd-cyan-deep);
}
.recon-match {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--ccd-success-bg);
  color: var(--ccd-success);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.recon-visual.is-visible .recon-row {
  animation: pulseSoft 2.8s ease-in-out infinite;
}
.recon-visual.is-visible .recon-row:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes pulseSoft {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 4px rgba(76,180,212,0.12); }
}

/* Firm use-case list */
#for-firms .feature-list {
  max-width: 760px;
  margin-inline: auto;
}

/* Automation diagram */
.auto-diagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem 0.35rem;
  padding: 1.25rem 1.1rem;
  background: linear-gradient(165deg, #fff, #F4FAFC);
  border: 1px solid rgba(76, 180, 212, 0.16);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(11, 28, 42, 0.05);
}
.auto-node {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(76, 180, 212, 0.18);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--ccd-navy);
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.auto-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(15, 40, 60, 0.08);
}
.auto-node--accent {
  background: linear-gradient(135deg, #4CB4D4, #2A8FA8);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(76, 180, 212, 0.3);
}
.auto-connector {
  width: 22px;
  height: 2px;
  background: #D2ECF4;
  position: relative;
  flex-shrink: 0;
}
.auto-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--ccd-cyan);
}
.auto-diagram.is-visible .auto-connector {
  background: linear-gradient(90deg, var(--ccd-sky), var(--ccd-cyan));
}

@media (max-width: 720px) {
  .auto-diagram {
    flex-direction: column;
  }
  .auto-connector {
    width: 2px;
    height: 22px;
  }
  .auto-connector::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--ccd-cyan);
  }
}

/* Benefits / outcomes grid */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.bc-outcome {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255,255,255,0.98), rgba(247,252,255,0.94)),
    #fff;
  border: 1px solid rgba(76, 180, 212, 0.14);
  box-shadow: 0 8px 22px rgba(11, 28, 42, 0.04);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-soft, cubic-bezier(0.22, 1, 0.36, 1)),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.bc-outcome::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(76, 180, 212, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bc-outcome::after {
  content: "";
  position: absolute;
  right: -24%;
  top: -36%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 180, 212, 0.16), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.45s ease;
}
.bc-outcome:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 180, 212, 0.4);
  box-shadow:
    0 14px 34px rgba(11, 28, 42, 0.08),
    0 0 0 1px rgba(76, 180, 212, 0.08);
  background: linear-gradient(165deg, #ffffff, #eef8fb);
}
.bc-outcome:hover::before { opacity: 1; }
.bc-outcome:hover::after {
  opacity: 1;
  transform: translate(-8px, 12px) scale(1.12);
}
.bc-outcome__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
}
.bc-outcome__icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #2A8FA8;
  background: linear-gradient(145deg, rgba(76, 180, 212, 0.18), rgba(76, 180, 212, 0.06));
  border: 1px solid rgba(76, 180, 212, 0.22);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.bc-outcome__icon svg {
  width: 17px;
  height: 17px;
}
.bc-outcome:hover .bc-outcome__icon {
  transform: scale(1.06);
  color: #1A7A92;
  background: linear-gradient(145deg, rgba(76, 180, 212, 0.3), rgba(76, 180, 212, 0.1));
  box-shadow: 0 8px 16px rgba(76, 180, 212, 0.18);
}
.bc-outcome__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2A8FA8;
  background: rgba(76, 180, 212, 0.1);
  border: 1px solid rgba(76, 180, 212, 0.18);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  white-space: nowrap;
}
.bc-outcome h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ccd-navy, #0B1C2A);
  margin: 0;
  line-height: 1.3;
}
.bc-outcome p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-secondary, #5A6B7A);
  line-height: 1.5;
  flex: 1;
}
.bc-outcome--accent {
  border-color: rgba(76, 180, 212, 0.28);
  background:
    linear-gradient(165deg, #ffffff, #e8f6fa),
    #fff;
}
.bc-outcome--accent .bc-outcome__tag {
  color: #1A7A92;
  background: rgba(76, 180, 212, 0.16);
  border-color: rgba(76, 180, 212, 0.28);
}

@media (max-width: 900px) {
  .benefit-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .benefit-cards { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .bc-outcome:hover { transform: none; }
  .bc-outcome:hover .bc-outcome__icon { transform: none; }
}

/* Trust/security */
.trust-cards .card {
  padding: 1.65rem 1.4rem;
  text-align: left;
}
.trust-cards h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.trust-cards p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- How it works: phased journey (replaces dashed card strip) ---- */
.bc-journey {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: stretch;
  margin-top: 0.5rem;
}

.bc-journey__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.bc-journey__phase {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 0.7rem 0.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 40, 60, 0.07);
}

.bc-journey__phase-label {
  margin: 0 0 0.15rem 0.35rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2A8FA8;
}

.bc-journey__step {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.bc-journey__step:hover {
  background: #fff;
  border-color: rgba(56, 169, 197, 0.2);
}

.bc-journey__step.is-active {
  background: #fff;
  border-color: rgba(56, 169, 197, 0.35);
  box-shadow: 0 10px 28px rgba(15, 40, 60, 0.08);
}

.bc-journey__idx {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #8A97A5;
  padding-top: 0.1rem;
  transition: color 0.25s ease;
}

.bc-journey__step.is-active .bc-journey__idx {
  color: #2A8FA8;
}

.bc-journey__step-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.bc-journey__step-text strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1A2B3C;
  line-height: 1.25;
}

.bc-journey__step-text small {
  font-size: 0.72rem;
  color: #6B7A88;
  line-height: 1.35;
}

.bc-journey__panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(1.6rem, 3.5vw, 2.25rem);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(56, 169, 197, 0.28), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(122, 201, 67, 0.16), transparent 45%),
    linear-gradient(155deg, #0B1C2A 0%, #12324A 48%, #1A4F66 100%);
  color: #fff;
  box-shadow: 0 24px 60px rgba(7, 21, 35, 0.28);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.bc-journey__panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.bc-journey__badge {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7AD4EA;
}

.bc-journey__counter {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}

.bc-journey__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: #fff;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.bc-journey__body {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.bc-journey__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}

.bc-journey__points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(8px);
  animation: bcPointIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bc-journey__points li:nth-child(1) { animation-delay: 0.05s; }
.bc-journey__points li:nth-child(2) { animation-delay: 0.14s; }
.bc-journey__points li:nth-child(3) { animation-delay: 0.23s; }

.bc-journey__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CB4D4, #7AC943);
}

.bc-journey__bar {
  margin-top: 1.5rem;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.bc-journey__bar > span {
  display: block;
  height: 100%;
  width: 16.66%;
  border-radius: 3px;
  background: linear-gradient(90deg, #4CB4D4, #7AC943);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bc-journey__panel.is-switching .bc-journey__title,
.bc-journey__panel.is-switching .bc-journey__body {
  opacity: 0;
  transform: translateY(6px);
}

@keyframes bcPointIn {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .bc-journey {
    grid-template-columns: 1fr;
  }
  .bc-journey__panel {
    min-height: 280px;
    order: -1;
  }
}

@media (max-width: 720px) {
  .bc-journey__rail {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recon-visual.is-visible .recon-row { animation: none; }
  .bc-journey__points li {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .bc-journey__step,
  .bc-journey__title,
  .bc-journey__body,
  .bc-journey__bar > span {
    transition: none;
  }
}
