@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap");

:root {
      --bfsi-purple: #7f77dd;
      --bfsi-purple-dark: #2d1b69;
      --bfsi-purple-deeper: #1a1040;
      --bfsi-purple-light: #eeedfe;
      --bfsi-purple-muted: #a89de8;
      --bfsi-orange: #f9874f;
      --bfsi-gold: #fbbf24;
      --bfsi-text: #383842;
      --bfsi-text-muted: #797986;
      --bfsi-border: #e0dbf0;
      --bfsi-white: #ffffff;
      --bfsi-max: 1280px;
      --bfsi-radius-md: 16px;
      --bfsi-radius-pill: 9999px;
      --bfsi-font: "Urbanist", sans-serif;
      --bfsi-header-offset: 80px;
}

*,
*::before,
*::after {
      box-sizing: border-box;
}

body.bfsi-page {
      margin: 0;
      padding-top: var(--bfsi-header-offset);
      font-family: var(--bfsi-font);
      color: var(--bfsi-text);
      background: var(--bfsi-white);
      -webkit-font-smoothing: antialiased;
}

.bfsi-page img {
      max-width: 100%;
      height: auto;
      display: block;
}

.bfsi-container {
      width: 100%;
      max-width: var(--bfsi-max);
      margin: 0 auto;
      padding: 0 20px;
}

.bfsi-context-section .bfsi-container,
.bfsi-problems-section .bfsi-container,
.bfsi-modules-section .bfsi-container,
.bfsi-compliance-section .bfsi-container,
.bfsi-outcomes-section .bfsi-container,
.bfsi-story-section .bfsi-container,
.bfsi-compare-section .bfsi-container {
      padding-left: 0;
      padding-right: 0;
}

.bfsi-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--bfsi-purple);
      margin-bottom: 16px;
}

.bfsi-eyebrow::before {
      content: "";
      width: 32px;
      height: 1px;
      background: var(--bfsi-purple);
      flex-shrink: 0;
}

.bfsi-context-eyebrow,
.bfsi-problems-eyebrow,
.bfsi-modules-eyebrow,
.bfsi-outcomes-eyebrow,
.bfsi-story-eyebrow,
.bfsi-compare-eyebrow,
.bfsi-integrations-eyebrow,
.bfsi-resources-eyebrow,
.bfsi-faq-eyebrow,
.bfsi-compliance-eyebrow {
      letter-spacing: 0.2em;
      margin-bottom: 20px;
}

.bfsi-h2 {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--bfsi-text);
      margin: 0 0 16px;
}

.bfsi-lead,
.bfsi-problems-lead {
      font-size: 14px;
      line-height: 1.5;
      color: var(--bfsi-text-muted);
      margin: 0;
}

.bfsi-problems-header,
.bfsi-modules-header {
      max-width: 768px;
      margin: 0 auto 56px;
      text-align: center;
}

.bfsi-outcomes-header,
.bfsi-compare-header,
.bfsi-integrations-header,
.bfsi-resources-header,
.bfsi-faq-header {
      max-width: 768px;
      margin: 0 auto 48px;
      text-align: center;
}

.bfsi-outcomes-title,
.bfsi-compare-title,
.bfsi-integrations-title,
.bfsi-resources-title,
.bfsi-faq-title {
      font-size: clamp(36px, 5vw, 48px);
      font-weight: 700;
      line-height: 1.25;
      color: var(--bfsi-text);
      margin: 0;
}

/* Header/footer from shared components */
.bfsi-page .header {
      opacity: 1 !important;
      visibility: visible !important;
}

/* Hero */
.bfsi-hero {
      position: relative;
      padding: 48px 16px 96px;
      background: linear-gradient(
            135deg,
            var(--bfsi-purple-deeper) 0%,
            var(--bfsi-purple-dark) 100%
      );
      overflow: hidden;
}

.bfsi-hero-radial {
      position: absolute;
      inset: 0;
      opacity: 0.6;
      background: radial-gradient(
            600px at 82% 20%,
            rgba(127, 119, 221, 0.2),
            transparent 60%
      );
      pointer-events: none;
}

.bfsi-hero-dots {
      position: absolute;
      inset: 0;
      opacity: 0.08;
      background-image: radial-gradient(
            var(--bfsi-purple) 1px,
            transparent 1px
      );
      background-size: 32px 32px;
      pointer-events: none;
}

.bfsi-hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(64px);
      opacity: 0.2;
      pointer-events: none;
}

.bfsi-hero-orb--purple-a {
      width: 280px;
      height: 280px;
      background: var(--bfsi-purple);
      top: 10%;
      left: -10%;
}

.bfsi-hero-orb--orange {
      width: 360px;
      height: 360px;
      background: var(--bfsi-orange);
      top: 35%;
      right: -5%;
}

.bfsi-hero-orb--purple-b {
      width: 440px;
      height: 440px;
      background: var(--bfsi-purple);
      top: 60%;
      left: 0;
}

.bfsi-hero-inner {
      position: relative;
      z-index: 1;
      max-width: var(--bfsi-max);
      margin: 0 auto;
}

.bfsi-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
}

.bfsi-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: var(--bfsi-radius-pill);
      border: 1px solid rgba(127, 119, 221, 0.4);
      background: rgba(127, 119, 221, 0.1);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bfsi-purple-muted);
      margin-bottom: 24px;
}

.bfsi-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--bfsi-gold);
      flex-shrink: 0;
      animation: bfsi-badge-pulse 2s ease-in-out infinite;
}

@keyframes bfsi-badge-pulse {
      0%,
      100% {
            transform: scale(1);
      }

      50% {
            transform: scale(1.08);
      }
}

.bfsi-badge-icon {
      flex-shrink: 0;
      display: block;
}

.bfsi-hero-title {
      font-size: clamp(40px, 5.5vw, 72px);
      font-weight: 700;
      line-height: 1.05;
      color: var(--bfsi-white);
      margin: 0 0 24px;
}

.bfsi-hero-title .bfsi-accent {
      color: var(--bfsi-purple);
      position: relative;
      display: inline-block;
}

.bfsi-hero-title .bfsi-accent::after {
      content: "";
      position: absolute;
      left: 0;
      width: 100%;
      bottom: 4px;
      height: 4px;
      background: var(--bfsi-orange);
      border-radius: 4px;
}

.bfsi-hero-desc {
      font-size: clamp(18px, 2vw, 20px);
      line-height: 1.625;
      color: rgba(255, 255, 255, 0.75);
      max-width: 576px;
      margin: 0 0 32px;
}

.bfsi-hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
}

.bfsi-hero .bfsi-hero-cta {
      height: 56px;
      padding: 0 28px;
      box-shadow:
            0 10px 15px -3px rgba(0, 0, 0, 0.2),
            0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.bfsi-hero .bfsi-hero-cta:hover {
      transform: scale(1.05);
}

.bfsi-hero .bfsi-hero-secondary img {
      transition: transform 0.2s ease;
}

.bfsi-hero .bfsi-hero-secondary:hover img {
      transform: translateX(4px);
}

.bfsi-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 15px 28px;
      background: var(--bfsi-orange);
      color: var(--bfsi-white);
      font-size: 16px;
      font-weight: 600;
      border-radius: var(--bfsi-radius-pill);
      text-decoration: none;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
      transition:
            transform 0.2s ease,
            background 0.2s ease;
      border: none;
      cursor: pointer;
}

.bfsi-btn-primary:hover {
      background: #e8753d;
      transform: translateY(-1px);
}

.bfsi-link-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
}

.bfsi-link-secondary:hover {
      color: var(--bfsi-white);
}

.bfsi-hero-visual {
      position: relative;
}

.bfsi-hero-glow {
      position: absolute;
      inset: -24px;
      border-radius: 24px;
      background: conic-gradient(
            var(--bfsi-purple),
            var(--bfsi-orange),
            var(--bfsi-purple)
      );
      filter: blur(40px);
      opacity: 0.5;
      pointer-events: none;
}

.bfsi-hero-img-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
}

.bfsi-hero-img-wrap img {
      width: 100%;
      height: auto;
      min-height: 200px;
      object-fit: cover;
}

@keyframes bfsi-hero-float {
      0%,
      100% {
            transform: translateY(0);
      }

      50% {
            transform: translateY(-6px);
      }
}

.bfsi-hero-float {
      position: absolute;
      left: -20px;
      bottom: 18px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border-radius: 16px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      animation: bfsi-hero-float 3s ease-in-out infinite;
}

.bfsi-hero-float-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--bfsi-purple-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
}

.bfsi-hero-float-icon img {
      display: block;
}

.bfsi-hero-float small {
      display: block;
      font-size: 12px;
      color: var(--bfsi-text-muted);
}

.bfsi-hero-float strong {
      font-size: 14px;
      color: var(--bfsi-text);
}

.bfsi-hero-stats {
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
}

.bfsi-stat-val {
      font-size: clamp(30px, 4vw, 36px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--bfsi-gold);
      margin: 0 0 4px;
}

.bfsi-count-up {
      font-variant-numeric: tabular-nums;
}

.bfsi-stat-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      margin: 0;
}

/* Logo strip */
.bfsi-logos {
      padding: 56px 0;
      background: #fafafa;
      text-align: center;
}

.bfsi-logos .bfsi-lead {
      margin-bottom: 32px;
}

.bfsi-logo-track-wrap {
      overflow: hidden;
      mask-image: linear-gradient(
            90deg,
            transparent,
            #000 10%,
            #000 90%,
            transparent
      );
}

.bfsi-logo-track {
      display: flex;
      gap: 48px;
      width: max-content;
      animation: bfsi-scroll 40s linear infinite;
}

.bfsi-logo-track span {
      font-size: 20px;
      font-weight: 700;
      color: #c4c4d0;
      white-space: nowrap;
}

@keyframes bfsi-scroll {
      0% {
            transform: translateX(0);
      }
      100% {
            transform: translateX(-50%);
      }
}

/* GCC India Context */
.bfsi-context-section {
      padding: 80px 16px;
      background-color: #eeedfe;
}

.bfsi-context-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
}

.bfsi-context-title {
      font-size: clamp(36px, 5vw, 48px);
      line-height: 1.25;
      margin-bottom: 24px;
}

.bfsi-context-text {
      line-height: 1.625;
      margin-bottom: 16px;
}

.bfsi-context-text--last {
      margin-bottom: 0;
}

.bfsi-context-cards {
      display: grid;
      gap: 20px;
}

.bfsi-context-section .bfsi-stat-card {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 28px;
      background: var(--bfsi-white);
      border: none;
      border-left: 4px solid var(--bfsi-purple);
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(108, 108, 143, 0.1);
      cursor: default;
}

.bfsi-context-section .bfsi-stat-card-val {
      font-size: clamp(36px, 5vw, 48px);
      font-weight: 700;
      color: var(--bfsi-purple);
      line-height: 1;
      min-width: 0;
      flex-shrink: 0;
      white-space: nowrap;
}

.bfsi-context-section .bfsi-stat-card-body h3 {
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 4px;
      color: var(--bfsi-text);
}

.bfsi-context-section .bfsi-stat-card-body p {
      font-size: 12px;
      color: var(--bfsi-text-muted);
      margin: 0;
}

.bfsi-body-text {
      font-size: 18px;
      line-height: 1.55;
      color: var(--bfsi-text-muted);
      margin: 0 0 20px;
}

/* GCC Hiring Reality */
.bfsi-problems-section {
      padding: 80px 16px;
}

.bfsi-problems-title {
      font-size: clamp(36px, 5vw, 48px);
      line-height: 1.25;
      margin-bottom: 16px;
}

.bfsi-problems-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: stretch;
}

.bfsi-problem-nav {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 100%;
}

.bfsi-problem-track-bg {
      position: absolute;
      left: 40px;
      top: 16px;
      bottom: 16px;
      width: 2px;
      transform: translateX(-50%);
      background: var(--bfsi-border);
      pointer-events: none;
}

.bfsi-problem-track-fill {
      position: absolute;
      left: 40px;
      top: 16px;
      width: 2px;
      height: calc(25% - 32px);
      transform: translateX(-50%);
      background: var(--bfsi-purple);
      transition: height 0.22s ease;
      pointer-events: none;
}

.bfsi-problem-tabs {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 12px;
}

.bfsi-problem-tab {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
      min-height: 80px;
      flex: 1;
      padding: 12px;
      border: none;
      border-radius: 12px;
      background: transparent;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      transition: background 0.2s ease;
}

.bfsi-problem-tab:hover:not(.is-active) {
      background: #f8f7fc;
}

.bfsi-problem-tab.is-active {
      background: var(--bfsi-white);
}

.bfsi-problem-num {
      position: relative;
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      border-radius: 50%;
      border: 2px solid rgba(127, 119, 221, 0.33);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      color: var(--bfsi-purple);
      background: var(--bfsi-white);
      z-index: 1;
      transition:
            transform 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease,
            box-shadow 0.2s ease,
            color 0.2s ease;
}

.bfsi-problem-num-text {
      position: relative;
      z-index: 1;
}

.bfsi-problem-tab.is-active .bfsi-problem-num {
      background: var(--bfsi-purple);
      border-color: var(--bfsi-purple);
      color: var(--bfsi-white);
      box-shadow: 0 0 0 6px rgba(127, 119, 221, 0.13);
      transform: scale(1.1);
}

.bfsi-problem-tab-copy {
      flex: 1;
      min-width: 0;
}

.bfsi-problem-tab-kicker {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bfsi-text-muted);
      margin: 0 0 2px;
      transition: color 0.2s ease;
}

.bfsi-problem-tab.is-active .bfsi-problem-tab-kicker {
      color: var(--bfsi-purple);
}

.bfsi-problem-tab-title {
      display: block;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.25;
      color: var(--bfsi-text-muted);
      margin: 0;
      transition: color 0.2s ease;
}

.bfsi-problem-tab.is-active .bfsi-problem-tab-title {
      color: var(--bfsi-text);
}

.bfsi-problem-tab-arrow {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      opacity: 0;
      transform: translateX(-4px);
      transition:
            opacity 0.2s ease,
            transform 0.2s ease;
      pointer-events: none;
}

.bfsi-problem-tab.is-active .bfsi-problem-tab-arrow {
      opacity: 1;
      transform: translateX(0);
}

.bfsi-problem-tab-arrow img {
      display: block;
}

.bfsi-problem-panel-wrap {
      position: relative;
      min-height: 100%;
}

.bfsi-problem-panel {
      position: relative;
      height: 100%;
      padding: 32px;
      background: var(--bfsi-white);
      border: 2px solid rgba(127, 119, 221, 0.2);
      border-radius: 24px;
      box-shadow: 0 4px 24px rgba(108, 108, 143, 0.1);
      overflow: hidden;
}

.bfsi-problem-panel-inner {
      position: relative;
      z-index: 1;
      transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

.bfsi-problem-panel:not(.is-visible) .bfsi-problem-panel-inner {
      opacity: 0;
      transform: translateY(12px);
}

.bfsi-problem-panel.is-visible .bfsi-problem-panel-inner {
      opacity: 1;
      transform: translateY(0);
}

.bfsi-problem-panel-num {
      position: absolute;
      top: -40px;
      right: -24px;
      font-size: clamp(180px, 20vw, 240px);
      font-weight: 900;
      line-height: 1;
      color: var(--bfsi-purple);
      opacity: 0.06;
      pointer-events: none;
      user-select: none;
      transition: opacity 0.2s ease;
}

.bfsi-problem-panel:not(.is-visible) .bfsi-problem-panel-num {
      opacity: 0;
}

.bfsi-problem-panel-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      background: #eeedfe;
      border-radius: var(--bfsi-radius-pill);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bfsi-purple);
      margin-bottom: 24px;
}

.bfsi-problem-panel-tag-icon {
      flex-shrink: 0;
      display: block;
      width: 12px;
      height: 12px;
}

.bfsi-problem-quote {
      font-size: clamp(24px, 3vw, 30px);
      font-weight: 600;
      line-height: 1.375;
      color: var(--bfsi-text);
      margin: 0 0 24px;
      padding-left: 20px;
      border-left: 4px solid var(--bfsi-orange);
}

.bfsi-problem-body {
      font-size: clamp(16px, 2vw, 18px);
      line-height: 1.625;
      color: var(--bfsi-text-muted);
      margin: 0 0 32px;
}

.bfsi-problem-metrics {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 24px;
}

.bfsi-metric-impact {
      padding: 20px;
      background: #eeedfe;
      border: none;
      border-left: 4px solid var(--bfsi-purple);
      border-radius: 16px;
}

.bfsi-metric-impact label,
.bfsi-metric-urgency label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bfsi-purple);
      margin-bottom: 8px;
}

.bfsi-problem-impact-val {
      font-size: 30px;
      font-weight: 700;
      line-height: 1;
      color: var(--bfsi-text);
      margin: 0 0 4px;
}

.bfsi-problem-impact-label {
      font-size: 12px;
      color: var(--bfsi-text-muted);
      margin: 0;
}

.bfsi-metric-urgency {
      padding: 20px;
      border: 1px solid var(--bfsi-border);
      border-radius: 16px;
      background: var(--bfsi-white);
}

.bfsi-urgency-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
}

.bfsi-urgency-row label {
      margin-bottom: 0;
}

.bfsi-problem-urgency-val {
      font-size: 12px;
      font-weight: 700;
      color: var(--bfsi-orange);
}

.bfsi-urgency-bar {
      height: 8px;
      background: #f0eefc;
      border-radius: var(--bfsi-radius-pill);
      overflow: hidden;
      margin-bottom: 8px;
}

.bfsi-problem-urgency-bar {
      display: block;
      height: 100%;
      width: 90%;
      background: linear-gradient(
            90deg,
            var(--bfsi-purple),
            var(--bfsi-orange)
      );
      border-radius: var(--bfsi-radius-pill);
      transition: width 0.35s ease;
}

.bfsi-problem-urgency-note {
      font-size: 12px;
      color: var(--bfsi-text-muted);
      margin: 0;
}

.bfsi-solutions-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bfsi-text-muted);
      margin: 0 0 12px;
}

.bfsi-problem-solutions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
}

.bfsi-pill-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: 2px solid rgba(127, 119, 221, 0.33);
      border-radius: var(--bfsi-radius-pill);
      font-size: 14px;
      font-weight: 600;
      color: var(--bfsi-purple);
      text-decoration: none;
      background: var(--bfsi-white);
      transition:
            background 0.2s ease,
            border-color 0.2s ease;
}

.bfsi-pill-link:hover {
      background: var(--bfsi-purple-light);
      border-color: var(--bfsi-purple);
}

.bfsi-pill-link img,
.bfsi-resource-link img,
.bfsi-btn-primary img,
.bfsi-link-secondary img {
      flex-shrink: 0;
      display: block;
}

/* What MyAnatomy Gives a GCC */
.bfsi-modules-section {
      --bfsi-module-auto-duration: 6s;
      padding: 80px 16px;
      background-color: #eeedfe;
}

.bfsi-modules-title {
      font-size: clamp(36px, 5vw, 48px);
      line-height: 1.25;
      margin-bottom: 0;
}

.bfsi-modules-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: stretch;
}

.bfsi-module-tabs {
      display: flex;
      flex-direction: column;
      gap: 8px;
}

.bfsi-module-tab {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
      padding: 16px;
      border: 2px solid transparent;
      border-radius: 16px;
      background: transparent;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      position: relative;
      transition:
            background 0.2s ease,
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.bfsi-module-tab:hover:not(.is-active) {
      background: rgba(255, 255, 255, 0.45);
}

.bfsi-module-tab.is-active {
      background: var(--bfsi-white);
      border-color: var(--bfsi-purple);
      box-shadow: 0 4px 24px rgba(108, 108, 143, 0.1);
}

.bfsi-module-tab-indicator {
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 4px;
      border-radius: 0 4px 4px 0;
      background: rgba(127, 119, 221, 0.2);
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
}

.bfsi-module-tab.is-active .bfsi-module-tab-indicator {
      opacity: 1;
}

.bfsi-module-tab-indicator-fill {
      display: block;
      width: 100%;
      height: 100%;
      background: var(--bfsi-purple);
      border-radius: 0 4px 4px 0;
      transform: scaleY(0);
      transform-origin: top;
}

.bfsi-module-tab.is-active .bfsi-module-tab-indicator-fill.is-running {
      animation: bfsi-module-indicator-fill var(--bfsi-module-auto-duration)
            linear forwards;
}

@keyframes bfsi-module-indicator-fill {
      to {
            transform: scaleY(1);
      }
}

.bfsi-module-tab-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 12px;
      background: #eeedfe;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease;
}

.bfsi-module-tab.is-active .bfsi-module-tab-icon {
      background: var(--bfsi-purple);
}

.bfsi-module-tab-icon img {
      display: block;
      width: 20px;
      height: 20px;
      object-fit: contain;
      transition: filter 0.2s ease;
}

.bfsi-module-tab.is-active .bfsi-module-tab-icon img {
      filter: brightness(0) invert(1);
}

.bfsi-module-tab-copy {
      flex: 1;
      min-width: 0;
}

.bfsi-module-tab-title-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
}

.bfsi-module-tab-title {
      display: block;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.25;
      color: var(--bfsi-text);
      margin: 0;
}

.bfsi-module-lead-badge {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 2px 8px;
      background: var(--bfsi-orange);
      color: var(--bfsi-white);
      border-radius: 4px;
      flex-shrink: 0;
}

.bfsi-module-tab-chevron {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
}

.bfsi-module-tab-chevron img {
      display: block;
}

.bfsi-module-tab.is-active .bfsi-module-tab-chevron {
      transform: rotate(-90deg);
}

.bfsi-module-panel-wrap {
      position: relative;
      min-height: 480px;
}

.bfsi-module-panel {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 480px;
      padding: 32px;
      background: var(--bfsi-white);
      border: 2px solid rgba(127, 119, 221, 0.2);
      border-radius: 24px;
      box-shadow: 0 4px 24px rgba(108, 108, 143, 0.1);
      overflow: hidden;
}

.bfsi-module-panel-glow {
      position: absolute;
      top: -80px;
      right: -80px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: var(--bfsi-purple);
      opacity: 0.2;
      filter: blur(48px);
      pointer-events: none;
}

.bfsi-module-panel-inner {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 0;
}

.bfsi-module-hero {
      position: relative;
      flex: 1;
      min-height: 180px;
      max-height: 280px;
      margin: -32px -32px 24px;
      overflow: hidden;
}

.bfsi-module-hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.bfsi-module-hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(
            180deg,
            transparent 40%,
            var(--bfsi-white) 100%
      );
      pointer-events: none;
}

.bfsi-module-panel-head {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      flex-shrink: 0;
}

.bfsi-module-panel-icon {
      width: 56px;
      height: 56px;
      flex-shrink: 0;
      border-radius: 16px;
      background: var(--bfsi-purple);
      display: flex;
      align-items: center;
      justify-content: center;
}

.bfsi-module-panel-icon img {
      display: block;
      width: 28px;
      height: 28px;
      object-fit: contain;
      filter: brightness(0) invert(1);
}

.bfsi-module-num {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bfsi-purple);
      margin: 0 0 4px;
}

.bfsi-module-title {
      font-size: clamp(20px, 3vw, 24px);
      font-weight: 700;
      line-height: 1.25;
      margin: 0;
      color: var(--bfsi-text);
}

.bfsi-module-desc {
      font-size: 16px;
      line-height: 1.625;
      color: var(--bfsi-text-muted);
      margin: 0 0 16px;
      flex-shrink: 0;
}

.bfsi-module-best {
      flex-shrink: 0;
      padding: 16px;
      border: none;
      border-left: 4px solid var(--bfsi-purple);
      background: #eeedfe;
      border-radius: 16px;
}

.bfsi-module-best label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--bfsi-purple);
      margin-bottom: 4px;
}

.bfsi-module-bestfor {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.45;
      color: var(--bfsi-text);
      margin: 0;
}

/* Built Audit-Ready */
.bfsi-compliance-section {
      padding: 64px 16px;
}

.bfsi-compliance {
      position: relative;
      padding: 40px;
      border-radius: 24px;
      background: #1a1040;
      color: var(--bfsi-white);
      overflow: hidden;
}

.bfsi-compliance-decor {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
}

.bfsi-compliance-dots {
      position: absolute;
      inset: 0;
      opacity: 0.1;
      background-image: radial-gradient(#fff 1px, transparent 1px);
      background-size: 24px 24px;
}

.bfsi-compliance-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
}

.bfsi-compliance-glow--br {
      right: -128px;
      bottom: -128px;
      width: 384px;
      height: 384px;
      background: var(--bfsi-purple);
      opacity: 0.3;
      filter: blur(48px);
}

.bfsi-compliance-glow--tl {
      left: -80px;
      top: -80px;
      width: 288px;
      height: 288px;
      background: var(--bfsi-purple);
      opacity: 0.25;
      filter: blur(48px);
}

.bfsi-compliance-glow--mid {
      left: 33%;
      top: 50%;
      width: 224px;
      height: 224px;
      background: var(--bfsi-purple-muted);
      opacity: 0.2;
      filter: blur(32px);
      transform: translate(-50%, -50%);
}

.bfsi-compliance-sparkle {
      position: absolute;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 24px rgba(255, 255, 255, 0.5);
      animation: bfsi-compliance-sparkle-float 3.5s ease-in-out infinite;
}

@keyframes bfsi-compliance-sparkle-float {
      0%,
      100% {
            transform: translateY(0);
            opacity: 0.35;
      }

      50% {
            transform: translateY(-8px);
            opacity: 1;
      }
}

.bfsi-compliance-sparkle--1 {
      width: 14px;
      height: 14px;
      top: 12%;
      left: 18%;
      animation-delay: 0s;
}
.bfsi-compliance-sparkle--2 {
      width: 10px;
      height: 10px;
      top: 70%;
      left: 8%;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
      animation-delay: 0.6s;
}
.bfsi-compliance-sparkle--3 {
      width: 18px;
      height: 18px;
      top: 22%;
      left: 82%;
      box-shadow: 0 0 36px rgba(255, 255, 255, 0.5);
      animation-delay: 1.2s;
}
.bfsi-compliance-sparkle--4 {
      width: 8px;
      height: 8px;
      top: 82%;
      left: 70%;
      box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
      animation-delay: 0.3s;
}
.bfsi-compliance-sparkle--5 {
      width: 12px;
      height: 12px;
      top: 55%;
      left: 92%;
      box-shadow: 0 0 24px rgba(255, 255, 255, 0.5);
      animation-delay: 0.9s;
}
.bfsi-compliance-sparkle--6 {
      width: 6px;
      height: 6px;
      top: 40%;
      left: 4%;
      box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
      animation-delay: 1.5s;
}

.bfsi-compliance-shape {
      position: absolute;
      border: 1px solid rgba(255, 255, 255, 0.15);
      pointer-events: none;
}

.bfsi-compliance-shape--square {
      top: 32px;
      right: 33%;
      width: 64px;
      height: 64px;
      border-radius: 16px;
      transform: rotate(12deg);
      animation: bfsi-compliance-shape-square-float 4s ease-in-out infinite;
}

@keyframes bfsi-compliance-shape-square-float {
      0%,
      100% {
            transform: rotate(12deg) translateY(0);
      }

      50% {
            transform: rotate(12deg) translateY(-10px);
      }
}

.bfsi-compliance-shape--ring {
      bottom: 40px;
      left: 40px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border-color: rgba(255, 255, 255, 0.1);
}

.bfsi-compliance-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
}

.bfsi-compliance-eyebrow {
      color: var(--bfsi-purple-muted);
}

.bfsi-compliance-eyebrow::before {
      background: var(--bfsi-purple-muted);
}

.bfsi-compliance-title {
      font-size: clamp(30px, 4vw, 36px);
      font-weight: 700;
      line-height: 1.25;
      color: var(--bfsi-white);
      margin: 0 0 16px;
}

.bfsi-compliance-desc {
      font-size: 16px;
      line-height: 1.625;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
      max-width: 520px;
}

.bfsi-compliance-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      padding: 12px 24px;
      font-size: 14px;
      text-decoration: none;
}

.bfsi-compliance-badges {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
}

.bfsi-compliance-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      backdrop-filter: blur(8px);
      font-size: 14px;
      font-weight: 600;
      color: var(--bfsi-white);
}

.bfsi-compliance-badge img {
      flex-shrink: 0;
      display: block;
}

/* Outcomes */
.bfsi-outcomes-section {
      padding: 80px 16px;
      background-color: #eeedfe;
      overflow: visible;
}

.bfsi-outcomes-section .bfsi-container {
      overflow: visible;
}

.bfsi-outcomes-list {
      max-width: 768px;
      margin: 0 auto;
      display: block;
      position: relative;
}

.bfsi-outcome-wrap {
      position: -webkit-sticky;
      position: sticky;
      display: block;
      top: calc(var(--bfsi-header-offset, 80px) + 24px);
      z-index: 10;
}

.bfsi-outcome-wrap:nth-of-type(1) {
      top: calc(var(--bfsi-header-offset, 80px) + 24px);
      z-index: 10;
}
.bfsi-outcome-wrap:nth-of-type(2) {
      top: calc(var(--bfsi-header-offset, 80px) + 48px);
      z-index: 11;
}
.bfsi-outcome-wrap:nth-of-type(3) {
      top: calc(var(--bfsi-header-offset, 80px) + 72px);
      z-index: 12;
}
.bfsi-outcome-wrap:nth-of-type(4) {
      top: calc(var(--bfsi-header-offset, 80px) + 96px);
      z-index: 13;
}
.bfsi-outcome-wrap:nth-of-type(5) {
      top: calc(var(--bfsi-header-offset, 80px) + 120px);
      z-index: 14;
}

.bfsi-outcome-card {
      position: relative;
      margin: -10px;
      padding: 32px 40px;
      background: var(--bfsi-white);
      border: 1px solid var(--bfsi-border);
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(108, 108, 143, 0.1);
      overflow: hidden;
}

.bfsi-outcome-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--bfsi-purple);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
}

.bfsi-outcome-card.is-progress-on::before {
      transform: scaleX(1);
}

.bfsi-outcome-inner {
      display: flex;
      align-items: flex-start;
      gap: 24px;
}

.bfsi-outcome-num {
      flex-shrink: 0;
      padding-top: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: rgba(121, 121, 134, 0.5);
}

.bfsi-outcome-body {
      flex: 1;
      min-width: 0;
}

.bfsi-outcome-metric {
      margin: 0 0 8px;
      font-size: clamp(48px, 8vw, 60px);
      font-weight: 700;
      line-height: 1;
      color: var(--bfsi-purple);
}

.bfsi-outcome-unit {
      margin-left: 8px;
      font-size: 20px;
      font-weight: 600;
      color: var(--bfsi-text-muted);
}

.bfsi-outcome-title {
      margin: 12px 0 8px;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
      color: var(--bfsi-text);
}

.bfsi-outcome-note {
      margin: 0;
      font-size: 14px;
      font-style: italic;
      line-height: 1.625;
      color: var(--bfsi-text-muted);
}

/* Customer story */
.bfsi-story-section {
      padding: 80px 16px;
}

.bfsi-story-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
}

.bfsi-story-visual-wrap {
      position: relative;
      margin: 0 0 24px;
      padding-bottom: 24px;
}

.bfsi-story-glow {
      position: absolute;
      inset: -16px;
      border-radius: 24px;
      opacity: 0.3;
      filter: blur(30px);
      background: conic-gradient(
            from 0deg,
            var(--bfsi-purple),
            transparent,
            var(--bfsi-orange),
            transparent,
            var(--bfsi-purple)
      );
      pointer-events: none;
}

.bfsi-story-picture {
      position: relative;
      z-index: 1;
      display: block;
}

.bfsi-story-img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 24px;
}

.bfsi-story-badge {
      position: absolute;
      right: -24px;
      bottom: -24px;
      z-index: 2;
      padding: 16px 24px;
      background: var(--bfsi-white);
      border: 2px solid var(--bfsi-purple);
      border-radius: 16px;
      box-shadow: 0 4px 24px rgba(108, 108, 143, 0.1);
      animation: bfsi-badge-float 3s ease-in-out infinite;
      will-change: transform;
}

@keyframes bfsi-badge-float {
      0%,
      100% {
            transform: translateY(0);
      }

      50% {
            transform: translateY(-6px);
      }
}

.bfsi-story-badge strong {
      display: block;
      font-size: 30px;
      font-weight: 700;
      line-height: 1;
      color: var(--bfsi-purple);
}

.bfsi-story-badge span {
      display: block;
      margin-top: 4px;
      font-size: 12px;
      font-weight: 600;
      color: var(--bfsi-text-muted);
}

.bfsi-story-title {
      font-size: clamp(30px, 4vw, 36px);
      font-weight: 700;
      line-height: 1.25;
      color: var(--bfsi-text);
      margin: 0 0 20px;
}

.bfsi-story-desc {
      font-size: 16px;
      line-height: 1.625;
      color: var(--bfsi-text-muted);
      margin: 0 0 24px;
}

.bfsi-story-quote {
      margin: 24px 0;
      padding: 0 0 0 24px;
      border-left: 4px solid var(--bfsi-purple);
      font-size: 16px;
      line-height: 1.5;
      font-style: italic;
      color: var(--bfsi-text);
}

.bfsi-story-checks {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
}

.bfsi-story-checks li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 16px;
      font-weight: 500;
      color: var(--bfsi-text);
}

.bfsi-story-checks li:last-child {
      margin-bottom: 0;
}

.bfsi-story-checks img {
      flex-shrink: 0;
      margin-top: 2px;
      display: block;
}

.bfsi-story-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 38px;
      border: 2px solid var(--bfsi-purple);
      border-radius: var(--bfsi-radius-pill);
      background: var(--bfsi-white);
      color: var(--bfsi-purple);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition:
            transform 0.2s ease,
            background 0.2s ease;
}

.bfsi-story-cta:hover {
      background: #f8f7fc;
      transform: scale(1.05);
}

.bfsi-story-cta img {
      flex-shrink: 0;
      display: block;
}

/* Comparison */
.bfsi-compare-section {
      padding: 80px 16px;
      background-color: #eeedfe;
}

.bfsi-compare-card {
      max-width: 896px;
      margin: 0 auto;
      background: var(--bfsi-white);
      border: 2px solid var(--bfsi-border);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(108, 108, 143, 0.1);
}

.bfsi-compare-row {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      align-items: center;
      padding: 16px 24px;
      cursor: pointer;
      transition: background-color 0.15s ease;
}

.bfsi-compare-row--head {
      padding: 20px 24px;
      font-weight: 700;
      font-size: 16px;
      color: var(--bfsi-text);
      background: #eeedfe;
      border-bottom: 2px solid var(--bfsi-border);
}

.bfsi-compare-card
      > .bfsi-compare-row:nth-child(odd):not(.bfsi-compare-row--head) {
      background: rgba(247, 240, 255, 0.3);
}

.bfsi-compare-card > .bfsi-compare-row:nth-child(n):hover {
      background-color: #eeedfe;
}

.bfsi-compare-cell--center {
      text-align: center;
}

.bfsi-compare-cell--center img {
      display: block;
      margin: 0 auto;
}

.bfsi-compare-cell--muted {
      color: var(--bfsi-text-muted);
}

.bfsi-compare-cap {
      font-size: 16px;
      font-weight: 500;
      color: var(--bfsi-text);
}

/* Integrations */
.bfsi-integrations-section {
      padding: 80px 16px;
}

.bfsi-integrations-marquee {
      position: relative;
      overflow: hidden;
      padding: 6px 0;
      -webkit-mask-image: linear-gradient(
            90deg,
            transparent,
            #000 10%,
            #000 90%,
            transparent
      );
      mask-image: linear-gradient(
            90deg,
            transparent,
            #000 10%,
            #000 90%,
            transparent
      );
}

.bfsi-integrations-marquee:has(.bfsi-integration-pill:hover)
      .bfsi-integration-track {
      animation-play-state: paused;
}

.bfsi-integrations-marquee--second {
      margin-top: 12px;
}

.bfsi-integration-track {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: bfsi-scroll 45s linear infinite;
}

.bfsi-integration-track--reverse {
      animation-direction: reverse;
}

.bfsi-integration-pill {
      flex-shrink: 0;
      padding: 16px 24px;
      border: 1px solid var(--bfsi-border);
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      color: var(--bfsi-text);
      white-space: nowrap;
      background: var(--bfsi-white);
      cursor: pointer;
      user-select: none;
      transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.bfsi-integration-pill:hover {
      position: relative;
      z-index: 1;
      border-color: var(--bfsi-purple);
      box-shadow: 0 6px 20px rgba(127, 119, 221, 0.2);
}

.bfsi-integrations-note {
      margin: 32px 0 0;
      text-align: center;
      font-size: 14px;
      font-style: italic;
      color: var(--bfsi-text-muted);
}

/* Resources */
.bfsi-resources-section {
      padding: 80px 16px;
      background-color: #eeedfe;
}

.bfsi-resources-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
}

.bfsi-resource-card {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 28px;
      border: 2px solid var(--bfsi-border);
      border-radius: 16px;
      background: var(--bfsi-white);
      box-shadow: 0 1px 3px rgba(108, 108, 143, 0.08);
      overflow: hidden;
      cursor: pointer;
      transition:
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.bfsi-resource-card-glow {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #eeedfe, transparent);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
}

.bfsi-resource-card:hover {
      border-color: rgba(127, 119, 221, 0.5);
      box-shadow: 0 4px 24px rgba(108, 108, 143, 0.12);
}

.bfsi-resource-card:hover .bfsi-resource-card-glow {
      opacity: 1;
}

.bfsi-resource-head {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
}

.bfsi-resource-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: #eeedfe;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
}

.bfsi-resource-icon img {
      display: block;
      object-fit: contain;
}

.bfsi-resource-type {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 4px;
      background: var(--bfsi-purple-deeper);
      color: var(--bfsi-white);
}

.bfsi-resource-card-title {
      position: relative;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.3;
      margin: 0 0 8px;
      color: var(--bfsi-text);
}

.bfsi-resource-card-desc {
      position: relative;
      flex: 1;
      font-size: 14px;
      line-height: 1.625;
      color: var(--bfsi-text-muted);
      margin: 0 0 20px;
}

.bfsi-resource-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      align-self: flex-start;
      font-size: 14px;
      font-weight: 700;
      color: var(--bfsi-purple);
      text-decoration: none;
      transition: gap 0.2s ease;
}

.bfsi-resource-link:hover {
      gap: 8px;
}

/* CTA */
.bfsi-cta {
      position: relative;
      overflow: hidden;
      padding: 96px 16px;
      background: var(--bfsi-purple-deeper);
      text-align: center;
      color: var(--bfsi-white);
}

.bfsi-cta-dots {
      position: absolute;
      inset: 0;
      opacity: 0.1;
      background-image: radial-gradient(
            var(--bfsi-purple) 1.5px,
            transparent 1.5px
      );
      background-size: 28px 28px;
      pointer-events: none;
}

.bfsi-cta-glow {
      position: absolute;
      top: -80px;
      left: 50%;
      width: 600px;
      height: 600px;
      margin-left: -300px;
      border-radius: 50%;
      background: var(--bfsi-purple);
      filter: blur(64px);
      opacity: 0.35;
      pointer-events: none;
}

.bfsi-cta-inner {
      position: relative;
      max-width: 896px;
      margin: 0 auto;
}

.bfsi-cta-title {
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--bfsi-white);
      margin: 0 0 20px;
}

.bfsi-cta-highlight {
      color: var(--bfsi-purple);
}

.bfsi-cta-lead {
      max-width: 672px;
      margin: 0 auto 32px;
      font-size: 18px;
      line-height: 1.5;
      font-style: italic;
      color: rgba(255, 255, 255, 0.7);
}

.bfsi-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 56px;
      padding: 0 32px;
      margin-bottom: 20px;
      background: var(--bfsi-orange);
      color: var(--bfsi-white);
      font-size: 16px;
      font-weight: 600;
      border-radius: var(--bfsi-radius-pill);
      text-decoration: none;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
      transition:
            transform 0.3s ease,
            background 0.2s ease;
}

.bfsi-cta-btn:hover {
      background: #e8753d;
      transform: scale(1.1);
}

.bfsi-cta-btn img {
      flex-shrink: 0;
      display: block;
}

.bfsi-cta-note {
      margin: 0;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
}

/* FAQ */
.bfsi-faq-section {
      padding: 80px 16px;
}

.bfsi-faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 768px;
      margin: 0 auto;
}

.bfsi-faq-item {
      border: 2px solid var(--bfsi-border);
      border-radius: 16px;
      overflow: hidden;
      background: var(--bfsi-white);
      transition: border-color 0.2s ease;
}

.bfsi-faq-item[open] {
      border-color: var(--bfsi-purple);
}

.bfsi-faq-item summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      transition: background-color 0.2s ease;
}

.bfsi-faq-item summary:hover {
      background: rgba(247, 240, 255, 0.3);
}

.bfsi-faq-item summary::-webkit-details-marker {
      display: none;
}

.bfsi-faq-question {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--bfsi-text);
      text-align: left;
}

.bfsi-faq-toggle {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      border-radius: 50%;
      background: #eeedfe;
      display: flex;
      align-items: center;
      justify-content: center;
      transition:
            background-color 0.2s ease,
            transform 0.2s ease;
}

.bfsi-faq-toggle img {
      display: block;
      transition: filter 0.2s ease;
}

.bfsi-faq-item[open] .bfsi-faq-toggle {
      background: var(--bfsi-purple);
      transform: rotate(180deg);
}

.bfsi-faq-item[open] .bfsi-faq-toggle img {
      filter: brightness(0) invert(1);
}

.bfsi-faq-answer {
      border-top: 1px solid var(--bfsi-border);
      padding: 16px 24px 24px;
}

.bfsi-faq-answer p {
      margin: 0;
      font-size: 16px;
      line-height: 1.625;
      color: var(--bfsi-text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 640px) {
      .bfsi-problem-metrics {
            grid-template-columns: 1fr 1fr;
      }

      .bfsi-compliance-badges {
            grid-template-columns: 1fr 1fr;
      }
}

@media (min-width: 768px) {
      .bfsi-outcome-card {
            padding: 40px 48px;
      }

      .bfsi-resources-grid {
            grid-template-columns: repeat(3, 1fr);
      }
}

@media (min-width: 1024px) {
      .bfsi-hero {
            padding: 64px 32px 128px;
      }

      .bfsi-stat-val {
            font-size: 36px;
      }

      .bfsi-context-section,
      .bfsi-problems-section,
      .bfsi-modules-section,
      .bfsi-story-section,
      .bfsi-compare-section,
      .bfsi-integrations-section,
      .bfsi-resources-section,
      .bfsi-faq-section {
            padding: 112px 32px;
      }

      .bfsi-outcomes-section {
            padding: 112px 32px 96px;
      }

      .bfsi-compliance-section {
            padding: 64px 32px;
      }

      .bfsi-context-grid {
            grid-template-columns: 1fr 1fr;
            gap: 56px;
      }

      .bfsi-problems-layout {
            grid-template-columns: 340px 1fr;
            gap: 32px;
      }

      .bfsi-problem-panel {
            padding: 40px;
      }

      .bfsi-modules-layout {
            grid-template-columns: 1fr 1.4fr;
            gap: 32px;
      }

      .bfsi-module-panel-wrap {
            min-height: 100%;
      }

      .bfsi-module-panel {
            position: absolute;
            inset: 0;
            min-height: 0;
            padding: 40px;
      }

      .bfsi-module-hero {
            margin: -40px -40px 24px;
            min-height: 220px;
            max-height: none;
      }

      .bfsi-compliance {
            padding: 56px;
      }

      .bfsi-compliance-grid {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
      }

      .bfsi-outcome-card {
            padding: 40px;
      }

      .bfsi-story-grid {
            grid-template-columns: 1fr 1fr;
            gap: 48px;
      }

      .bfsi-story-visual-wrap {
            margin: 0;
            padding-bottom: 0;
            padding-right: 24px;
      }

      .bfsi-cta {
            padding: 96px 32px;
      }
}

@media (max-width: 1024px) {
      .bfsi-hero-grid {
            grid-template-columns: 1fr;
      }

      .bfsi-problems-layout {
            gap: 24px;
      }

      .bfsi-problem-track-bg,
      .bfsi-problem-track-fill {
            display: none;
      }

      .bfsi-problem-tabs {
            gap: 8px;
      }

      .bfsi-problem-tab {
            flex: none;
            min-height: 72px;
      }

      .bfsi-modules-section .bfsi-modules-layout {
            gap: 24px;
      }

      .bfsi-hero-stats {
            grid-template-columns: 1fr;
            text-align: center;
      }

      .bfsi-problem-metrics {
            grid-template-columns: 1fr;
      }
}

@media (max-width: 767px) {
      .bfsi-hero {
            padding: 32px 16px 64px;
      }

      .bfsi-hero-orb--purple-b {
            width: 280px;
            height: 280px;
      }

      .bfsi-hero-float {
            position: static;
            margin-top: 16px;
            left: auto;
            bottom: auto;
      }

      .bfsi-hero-actions {
            flex-direction: column;
            align-items: stretch;
      }

      .bfsi-btn-primary {
            justify-content: center;
      }

      .bfsi-link-secondary {
            justify-content: center;
      }

      .bfsi-problems-section .bfsi-problem-panel {
            padding: 24px;
      }

      .bfsi-modules-section .bfsi-module-panel {
            position: relative;
            padding: 24px;
            min-height: auto;
      }

      .bfsi-modules-section .bfsi-module-hero {
            margin: -24px -24px 20px;
            min-height: 160px;
            max-height: 220px;
      }

      .bfsi-compliance {
            padding: 32px 24px;
      }

      .bfsi-outcome-card {
            padding: 28px 24px;
      }

      .bfsi-outcome-inner {
            gap: 16px;
      }

      .bfsi-outcome-wrap,
      .bfsi-outcome-wrap:nth-of-type(1),
      .bfsi-outcome-wrap:nth-of-type(2),
      .bfsi-outcome-wrap:nth-of-type(3),
      .bfsi-outcome-wrap:nth-of-type(4),
      .bfsi-outcome-wrap:nth-of-type(5) {
            margin-bottom: 0;
      }

      .bfsi-story-badge {
            right: 16px;
            bottom: 16px;
      }

      .bfsi-story-cta {
            width: 100%;
      }

      .bfsi-integration-pill {
            padding: 14px 18px;
            font-size: 14px;
      }

      .bfsi-compare-row {
            grid-template-columns: 1fr 0.75fr 0.75fr;
            padding: 14px 12px;
            gap: 8px;
      }

      .bfsi-compare-row--head {
            padding: 16px 12px;
            font-size: 14px;
      }

      .bfsi-compare-cap {
            font-size: 14px;
      }

      .bfsi-compare-cell--center img {
            width: 20px;
            height: 20px;
      }

      .bfsi-faq-item summary {
            padding: 18px 16px;
      }

      .bfsi-faq-question {
            font-size: 16px;
      }

      .bfsi-faq-answer {
            padding: 14px 16px 20px;
      }

      .bfsi-context-section .bfsi-stat-card {
            gap: 20px;
            padding: 24px;
      }

      .bfsi-context-section .bfsi-stat-card-val {
            font-size: 36px;
      }
}

.bfsi-scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      z-index: 1500;
      pointer-events: none;
      background: rgba(255, 255, 255, 0.12);
}

.bfsi-scroll-progress-fill {
      display: block;
      width: 100%;
      height: 100%;
      transform-origin: 0 50%;
      transform: scaleX(0);
      transition: transform 0.22s ease-out;
      background: linear-gradient(90deg, #7f77dd 0%, #f9874f 100%);
}

.bfsi-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition:
            transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
            opacity 0.6s ease;
      transition-delay: var(--reveal-delay, 0ms);
}

.bfsi-reveal.is-revealed {
      opacity: 1;
      transform: translateY(0);
}

.bfsi-context-copy.bfsi-reveal {
      transform: translateX(-28px);
}

.bfsi-context-copy.bfsi-reveal.is-revealed {
      transform: translateX(0);
}

.bfsi-context-cards .bfsi-stat-card.bfsi-reveal {
      transform: translateX(28px);
}

.bfsi-context-cards .bfsi-stat-card.bfsi-reveal.is-revealed {
      transform: translateX(0);
}

.bfsi-hero-radial {
      --hero-x: 82%;
      --hero-y: 20%;
      background: radial-gradient(
            640px at var(--hero-x) var(--hero-y),
            rgba(127, 119, 221, 0.24),
            transparent 62%
      );
      transition: background 0.25s ease-out;
}

.bfsi-hero-orb--purple-a,
.bfsi-hero-orb--purple-b {
      animation: bfsi-hero-orb-float-a 12s ease-in-out infinite;
}

.bfsi-hero-orb--orange {
      animation: bfsi-hero-orb-float-b 14s ease-in-out infinite;
}

@keyframes bfsi-hero-orb-float-a {
      0%,
      100% {
            transform: translate3d(0, 0, 0);
      }
      50% {
            transform: translate3d(20px, -18px, 0);
      }
}

@keyframes bfsi-hero-orb-float-b {
      0%,
      100% {
            transform: translate3d(0, 0, 0);
      }
      50% {
            transform: translate3d(-24px, 20px, 0);
      }
}

.bfsi-hero-title .bfsi-accent::after {
      transform-origin: left center;
      transform: scaleX(0);
      transition: transform 0.75s ease;
}

.bfsi-hero-title .bfsi-accent.is-underline-on::after {
      transform: scaleX(1);
}

.bfsi-hero-img-wrap img {
      transition: transform 0.5s ease;
}

.bfsi-hero-img-wrap:hover img {
      transform: scale(1.02);
}

.bfsi-hero-glow {
      animation: bfsi-hero-glow-rotate 15s linear infinite;
}

@keyframes bfsi-hero-glow-rotate {
      from {
            transform: rotate(0deg) scale(1);
      }
      50% {
            transform: rotate(180deg) scale(1.06);
      }
      to {
            transform: rotate(360deg) scale(1);
      }
}

.bfsi-logo-track-wrap {
      -webkit-mask-image: linear-gradient(
            to right,
            transparent 0,
            black 12%,
            black 88%,
            transparent 100%
      );
      mask-image: linear-gradient(
            to right,
            transparent 0,
            black 12%,
            black 88%,
            transparent 100%
      );
}

.bfsi-problem-tab.is-active {
      transform: translateX(4px) scale(1.01);
}

.bfsi-problem-num.is-ripple-on::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 999px;
      border: 1px solid rgba(127, 119, 221, 0.45);
      transform-origin: center;
      z-index: 0;
      pointer-events: none;
      animation: bfsi-problem-ripple 1.6s ease-out infinite;
}

@keyframes bfsi-problem-ripple {
      0% {
            transform: scale(1);
            opacity: 0.4;
      }
      100% {
            transform: scale(1.6);
            opacity: 0;
      }
}

.bfsi-problem-panel {
      --problem-x: 50%;
      --problem-y: 50%;
      position: relative;
}

.bfsi-problem-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: radial-gradient(
            220px at var(--problem-x) var(--problem-y),
            rgba(127, 119, 221, 0.18),
            transparent 65%
      );
      opacity: 0.8;
}

.bfsi-problem-urgency-bar {
      transition: width 0.65s ease;
}

.bfsi-pill-link {
      transform: translateY(8px);
      opacity: 0;
      animation: bfsi-chip-in 0.45s ease forwards;
      animation-delay: var(--chip-delay, 0ms);
}

@keyframes bfsi-chip-in {
      to {
            opacity: 1;
            transform: translateY(0);
      }
}

.bfsi-pill-link:hover {
      transform: translateY(-2px);
}

.bfsi-module-tab {
      transition: transform 0.25s ease;
}

.bfsi-module-tab:hover {
      transform: translateX(4px);
}

.bfsi-module-tab-chevron {
      transition: transform 0.25s ease;
}

.bfsi-module-tab.is-active .bfsi-module-tab-chevron {
      transform: translateX(2px) rotate(90deg);
}

.bfsi-module-hero-img {
      opacity: 0.5;
      transform: scale(0.985);
}

.bfsi-module-hero-img.is-module-hero-on {
      opacity: 1;
      transform: scale(1);
      transition:
            opacity 0.45s ease,
            transform 0.45s ease;
}

.bfsi-module-panel-icon img {
      transform: rotate(-8deg) scale(0.88);
      opacity: 0.7;
}

.bfsi-module-panel-icon img.is-module-icon-on {
      opacity: 1;
      transform: rotate(0) scale(1);
      transition:
            transform 0.35s ease,
            opacity 0.35s ease;
}

.bfsi-compliance-glow {
      animation: bfsi-compliance-drift 16s ease-in-out infinite;
}

@keyframes bfsi-compliance-drift {
      0%,
      100% {
            transform: translate3d(0, 0, 0) scale(1);
      }
      50% {
            transform: translate3d(16px, -18px, 0) scale(1.05);
      }
}

.bfsi-compare-row {
      transition:
            background-color 0.25s ease,
            transform 0.25s ease;
}

.bfsi-compare-row:hover {
      transform: translateX(2px);
}

.bfsi-compare-row .bfsi-compare-cell img {
      transform: scale(0.85) rotate(-10deg);
      opacity: 0;
      transition:
            transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            opacity 0.35s ease;
}

.bfsi-compare-row.is-revealed .bfsi-compare-cell img {
      transform: scale(1) rotate(0);
      opacity: 1;
}

.bfsi-resource-card {
      overflow: hidden;
}

.bfsi-resource-card:hover {
      transform: translateY(-6px);
}

.bfsi-resource-card:hover .bfsi-resource-icon img {
      transform: rotate(8deg) scale(1.06);
}

.bfsi-resource-icon img {
      transition: transform 0.25s ease;
}

.bfsi-resource-link img {
      transition: transform 0.25s ease;
}

.bfsi-resource-card:hover .bfsi-resource-link img {
      transform: translateX(4px);
}

.bfsi-cta-glow {
      animation: bfsi-cta-glow-pulse 3.8s ease-in-out infinite;
}

@keyframes bfsi-cta-glow-pulse {
      0%,
      100% {
            transform: scale(1);
            opacity: 0.45;
      }
      50% {
            transform: scale(1.08);
            opacity: 0.75;
      }
}

.bfsi-cta-btn {
      transition: transform 0.25s ease;
}

.bfsi-cta-btn:hover {
      transform: scale(1.03);
}

.bfsi-faq-toggle img {
      transition: transform 0.25s ease;
}

.bfsi-faq-item[open] .bfsi-faq-toggle img {
      transform: rotate(180deg);
}

.bfsi-faq-answer {
      overflow: hidden;
      opacity: 0;
      transition:
            height 0.28s ease,
            opacity 0.28s ease;
}

.bfsi-faq-item[open] .bfsi-faq-answer {
      opacity: 1;
}

.bfsi-faq-item {
      transition:
            border-color 0.25s ease,
            box-shadow 0.25s ease;
}

.bfsi-faq-item[open] {
      border-color: rgba(127, 119, 221, 0.55);
      box-shadow: 0 10px 32px rgba(45, 27, 105, 0.12);
}

/* Exact compare-table and tick motion tuning */
.bfsi-compare-row:not(.bfsi-compare-row--head).bfsi-reveal {
      opacity: 0;
      transform: translateX(-20px);
      transition:
            opacity 450ms cubic-bezier(0.22, 1, 0.36, 1),
            transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bfsi-compare-row:not(.bfsi-compare-row--head).bfsi-reveal.is-revealed {
      opacity: 1;
      transform: translateX(0);
}

.bfsi-compare-row:not(.bfsi-compare-row--head):nth-child(2).bfsi-reveal {
      transition-delay: 0ms;
}
.bfsi-compare-row:not(.bfsi-compare-row--head):nth-child(3).bfsi-reveal {
      transition-delay: 80ms;
}
.bfsi-compare-row:not(.bfsi-compare-row--head):nth-child(4).bfsi-reveal {
      transition-delay: 160ms;
}
.bfsi-compare-row:not(.bfsi-compare-row--head):nth-child(5).bfsi-reveal {
      transition-delay: 240ms;
}
.bfsi-compare-row:not(.bfsi-compare-row--head):nth-child(6).bfsi-reveal {
      transition-delay: 320ms;
}
.bfsi-compare-row:not(.bfsi-compare-row--head):nth-child(7).bfsi-reveal {
      transition-delay: 400ms;
}
.bfsi-compare-row:not(.bfsi-compare-row--head):nth-child(8).bfsi-reveal {
      transition-delay: 480ms;
}
.bfsi-compare-row:not(.bfsi-compare-row--head):nth-child(9).bfsi-reveal {
      transition-delay: 560ms;
}

.bfsi-compare-row {
      transition: background-color 220ms ease;
}

.bfsi-compare-row:hover {
      transform: none;
      background-color: #f5f0ff;
}

.bfsi-compare-row .bfsi-compare-cell img {
      transform: scale(0) rotate(-90deg);
      opacity: 1;
      transition:
            transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1),
            filter 220ms ease;
}

.bfsi-compare-row.is-revealed .bfsi-compare-cell img {
      transform: scale(1) rotate(0deg);
}

.bfsi-compare-row:nth-child(2).is-revealed .bfsi-compare-cell img {
      transition-delay: 300ms;
}
.bfsi-compare-row:nth-child(3).is-revealed .bfsi-compare-cell img {
      transition-delay: 380ms;
}
.bfsi-compare-row:nth-child(4).is-revealed .bfsi-compare-cell img {
      transition-delay: 460ms;
}
.bfsi-compare-row:nth-child(5).is-revealed .bfsi-compare-cell img {
      transition-delay: 540ms;
}
.bfsi-compare-row:nth-child(6).is-revealed .bfsi-compare-cell img {
      transition-delay: 620ms;
}
.bfsi-compare-row:nth-child(7).is-revealed .bfsi-compare-cell img {
      transition-delay: 700ms;
}
.bfsi-compare-row:nth-child(8).is-revealed .bfsi-compare-cell img {
      transition-delay: 780ms;
}
.bfsi-compare-row:nth-child(9).is-revealed .bfsi-compare-cell img {
      transition-delay: 860ms;
}

.bfsi-compare-row:hover .bfsi-compare-cell img {
      filter: brightness(1.08) saturate(1.12);
      animation: bfsi-tick-pulse 220ms ease;
}

@keyframes bfsi-tick-pulse {
      0% {
            transform: scale(1) rotate(0deg);
      }
      50% {
            transform: scale(1.05) rotate(0deg);
      }
      100% {
            transform: scale(1) rotate(0deg);
      }
}

/* BFSI results stack hover behavior */
.bfsi-outcome-card {
      transition:
            transform 220ms ease-out,
            box-shadow 180ms ease-out;
}

.bfsi-outcome-card:hover {
      transform: scale(1.01);
      box-shadow: 0 18px 42px rgba(45, 27, 105, 0.16);
}

@media (prefers-reduced-motion: reduce) {
      .bfsi-module-tab.is-active .bfsi-module-tab-indicator-fill.is-running {
            animation: none;
            transform: scaleY(1);
      }

      .bfsi-logo-track,
      .bfsi-integration-track {
            animation: none;
      }

      .bfsi-badge-dot,
      .bfsi-hero-float,
      .bfsi-story-badge {
            animation: none;
      }

      .bfsi-outcome-card::before {
            transition: none !important;
            transform: scaleX(1) !important;
      }

      .bfsi-compliance-sparkle,
      .bfsi-compliance-shape--square {
            animation: none;
            opacity: 1;
            transform: none;
      }

      .bfsi-compliance-shape--square {
            transform: rotate(12deg);
      }

      .bfsi-problem-panel-inner,
      .bfsi-problem-panel-num,
      .bfsi-problem-track-fill,
      .bfsi-problem-tab,
      .bfsi-problem-num,
      .bfsi-problem-tab-kicker,
      .bfsi-problem-tab-title,
      .bfsi-problem-tab-arrow,
      .bfsi-problem-urgency-bar {
            transition: none !important;
      }

      .bfsi-scroll-progress-fill,
      .bfsi-reveal,
      .bfsi-hero-orb,
      .bfsi-hero-glow,
      .bfsi-problem-tab,
      .bfsi-pill-link,
      .bfsi-module-tab,
      .bfsi-module-hero-img,
      .bfsi-module-panel-icon img,
      .bfsi-resource-card,
      .bfsi-cta-glow,
      .bfsi-faq-answer {
            animation: none !important;
            transition: none !important;
            transform: none !important;
      }

      .bfsi-reveal {
            opacity: 1 !important;
      }
}
