/* ============================================================
   FinSense — Global Stylesheet
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
table,
body,
html {
  margin: 0px;
  padding: 0px;
}

/* ── Local Font Declarations ── */
@font-face {
  font-family: "Geist Sans";
  src: url("../fonts/Geist-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Sans";
  src: url("../fonts/Geist-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Sans";
  src: url("../fonts/Geist-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Sans";
  src: url("../fonts/Geist-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Sans";
  src: url("../fonts/Geist-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Sans";
  src: url("../fonts/Geist-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Sans";
  src: url("../fonts/Geist-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinsans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinsans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinsans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Parkinsans";
  src: url("../fonts/Parkinsans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ── */
:root {
  /* Colors */
  --color-bg-dark: #000000;
  /* Pure black background as in screenshot */
  --color-bg-header: rgba(0, 0, 0, 0.7);
  --color-text-primary: #ffffff;
  --color-text-secondary: #9e9eae;
  /* Muted nav/badge text */
  --color-text-muted: #6b6b7b;
  --color-accent-green: #00f59b;
  /* Vibrant mint green-cyan */
  --color-accent-blue-purple: #2d1cff;
  /* Vibrant royal blue-purple for CTA buttons */
  --color-border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-primary:
    "Geist Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-size-h1: clamp(2.5rem, 5vw, 4.5rem);
  --font-size-body: 1rem;
  --font-size-nav: 0.875rem;
  /* 14px */
  --font-size-badge: 0.875rem;
  /* 14px */
  --font-size-btn: 1rem;

  /* Spacing */
  --header-height: 70px;
  --container-max-width: 1400px;
  --container-padding: 0 24px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  color: var(--color-text-primary);
  background-color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   HEADER — .site-header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  height: var(--header-height);
  background: var(--color-bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header--hidden {
  transform: translateY(-100%);
}

/* Scroll background adjustment */
.site-header--scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Absolute navigation centering on desktop */
.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.header-logo {
  justify-self: start;
  display: flex;
  align-items: center;
}

.header-logo__img {
  height: auto;
  width: 177px;
}

/* Navigation */
.header-nav {
  justify-self: center;
  display: flex;
  align-items: center;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0px;
}

.header-nav__link {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  font-family: "Geist Sans";
  transition: color 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.header-nav__link--external {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.header-nav__link--external .icon-external {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  color: var(--color-text-secondary);
}

.header-nav__link--external:hover .icon-external {
  transform: translate(2px, -2px);
  color: #3913fc;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;

  padding: 18px 28px;
  background: #3913fc;
  box-shadow: inset 0px 4px 4px rgba(0, 255, 207, 0.35);
  border-radius: 12px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  font-family: "Parkinsans";
}

.btn:hover {
  background-color: #2f09ec;
  box-shadow:
    0 0 25px rgba(57, 19, 252, 0.45),
    inset 0px 4px 4px rgba(0, 255, 207, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn:active {
  transform: translateY(0);
}

/* Header CTA Button */
.header-cta {
  justify-self: end;
  font-style: normal;
  border-radius: 9px;
  font-weight: 500;
  font-size: 14px;
  padding: 9px 16px;
  line-height: 150%;
  color: #ffffff;
}

.btn__icon {
  margin-left: 4px;
  transition: transform 0.2s ease;
  filter: brightness(0) invert(1);
  /* Ensure the arrow is white */
}

.btn:hover .btn__icon {
  transform: translateX(3px);
}

/* Mobile Menu Toggle (hidden on desktop) */
.header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.header-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* ============================================================
   HERO SECTION — .hero-section
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--header-height) + 70px);
  overflow: visible;
  background: #000000;
  overflow: hidden;
}

/* Subtle background glow centered in hero section */
.hero-section::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
      rgba(123, 97, 255, 0.08) 0%,
      rgba(0, 245, 155, 0.03) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Hero Content Wrapper */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
}

/* Trust Badges */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-badge__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  font-family: "Geist Sans";
}

.hero-badge__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Headline */
.hero-title {
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 120%;
  font-family: "Geist Sans";
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: -0.035em;
}

.hero-highlight {
  font-style: normal;
  color: #00ffcf;
}

/* Hero CTA Button */
.hero-cta {
  padding: 18px 28px;
  gap: 8px;
  background: #3913fc;
  box-shadow: inset 0px 4px 4px rgba(0, 255, 207, 0.35);
  border-radius: 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  font-family: "Parkinsans";
}

/* ============================================================
   HERO VISUAL COMPOSITION (PIXEL-TO-PIXEL ALIGNED)
   ============================================================ */
.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1188px;
  justify-content: space-between;
  z-index: 15;
  padding: 0 20px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Left card — Loan card */
.hero-visual__loan-card {
  width: 100%;
  max-width: 423px;
  flex-shrink: 0;
  /* margin-right: -45px; */
  /* Symmetrical overlap behind center coin */
  z-index: 1;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.35);
  /* Subtle purple outline */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  margin-bottom: 37px;
  animation: floatCard 5s ease-in-out infinite;
  will-change: transform;
}

.hero-visual__loan-card img.loan-card-bg {
  width: 100%;
  height: auto;
  display: block;
}

.loan-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.loan-card-badge {
  align-self: flex-start;
  background: #000000;
  border-radius: 10.2484px;
  padding: 6px 14px;
  font-family: "Geist Sans", sans-serif;
  letter-spacing: -0.01em;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 32px;
  color: #ffffff;
}

.loan-card-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.loan-card-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loan-card-label {
  font-style: normal;
  font-weight: 500;
  font-size: 17.9346px;
  line-height: 23px;
  color: #ffffff;
  font-family: "Geist Sans";
}

.loan-card-value {
  font-style: normal;
  font-weight: 600;
  font-family: "Geist Sans";
  font-size: 25px;
  line-height: 33px;
  color: #ffffff;
}

/* Center coin (stands out and floats higher) */
.hero-visual__coin {
  width: 250px;
  aspect-ratio: 1;
  flex-shrink: 0;
  z-index: 3;
  align-self: flex-start;
  /* On top of both left and right cards */
  position: relative;
}

.hero-visual__coin img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(45, 28, 255, 0.25));
}

.hero-visual__coin dotlottie-wc,
.wrap dotlottie-wc {
  width: 100%;
  height: 100%;
  display: block;
  /* filter: drop-shadow(0 15px 35px rgba(45, 28, 255, 0.25)); */
}

/* Right group — Credit card + phone */
.hero-visual__credit-group {
  width: 100%;
  max-width: 342px;
  flex-shrink: 0;
  /* margin-left: -55px; */
  /* Symmetrical overlap behind center coin */
  z-index: 2;
  animation: floatCard 5s ease-in-out infinite;
  animation-delay: -2.5s;
  will-change: transform;
}

.hero-visual__credit-group img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Large screens (shrink layouts slightly) */
@media (max-width: 1200px) {
  .hero-visual {
    max-width: 960px;
    margin-bottom: -90px;
  }

  .hero-visual__loan-card {
    width: 320px;
    margin-right: -35px;
    border-radius: 14px;
  }

  .loan-card-overlay {
    padding: 20px;
  }

  .loan-card-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .loan-card-label {
    font-size: 10px;
  }

  .loan-card-value {
    font-size: 18px;
  }

  .hero-visual__coin {
    width: 220px;
  }

  .hero-visual__credit-group {
    width: 370px;
    margin-left: -45px;
  }
}

/* Tablet (collapse nav to hamburger menu) */
@media (max-width: 992px) {

  /* Site Header Flex Layout for mobile */
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
  }

  .header-nav {
    display: none;
    /* Hide standard nav list */
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 999;
    animation: fadeInDown 0.3s ease;
  }

  .header-nav--open {
    display: block;
  }

  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .header-menu-toggle {
    display: flex;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 50px);
    min-height: auto;
  }

  .hero-visual {
    max-width: 720px;
    margin-top: 50px;
    margin-bottom: -70px;
  }

  .hero-visual__loan-card {
    width: 240px;
    margin-right: -25px;
    border-radius: 11px;
  }

  .loan-card-overlay {
    padding: 14px;
  }

  .loan-card-badge {
    font-size: 9px;
    padding: 4px 8px;
  }

  .loan-card-label {
    font-size: 9px;
    gap: 2px;
  }

  .loan-card-value {
    font-size: 14px;
  }

  .hero-visual__coin {
    width: 170px;
  }

  .hero-visual__credit-group {
    width: 280px;
    margin-left: -35px;
  }
}

/* Small tablets / landscape phones */
@media (max-width: 768px) {
  .hero-badges {
    gap: 16px;
  }

  .hero-visual {
    max-width: 540px;
    margin-bottom: 0;
  }

  .hero-visual__loan-card {
    width: 180px;
    margin-right: -20px;
    border-radius: 8px;
  }

  .loan-card-overlay {
    padding: 10px;
  }

  .loan-card-badge {
    font-size: 8px;
    padding: 3px 6px;
  }

  .loan-card-label {
    font-size: 7px;
  }

  .loan-card-value {
    font-size: 11px;
  }

  .hero-visual__coin {
    width: 130px;
  }

  .hero-visual__credit-group {
    width: 210px;
    margin-left: -25px;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  :root {
    --header-height: 70px;
  }

  .header-logo__img {
    height: auto;
  }

  .hero-badges {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-badge__item {
    font-size: 13px !important;
    gap: 6px !important;
  }

  .hero-title {
    font-size: 34px !important;
    line-height: 120% !important;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
  }

  .hero-visual {
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: -35px;
  }

  .hero-visual__loan-card {
    width: 130px;
    margin-right: -15px;
    border-radius: 6px;
  }

  .loan-card-overlay {
    padding: 7px;
  }

  .loan-card-badge {
    font-size: 6px;
    padding: 2px 4px;
  }

  .loan-card-label {
    font-size: 6px;
    margin-bottom: 0px;
  }

  .loan-card-value {
    font-size: 8px;
  }

  .hero-visual__coin {
    width: 95px;
  }

  .hero-visual__credit-group {
    width: 150px;
    margin-left: -20px;
  }
}

/* ============================================================
   LOGO SLIDER SECTION (WHITE BAND)
   ============================================================ */
.logo-slider-section {
  background-color: #ffffff;
  padding: 60px 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.logo-swiper {
  width: 100%;
  padding: 5px 0;
  /* Premium fade-out shadow at left and right edges */
  mask-image: linear-gradient(to right,
      transparent,
      #000 12%,
      #000 88%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      #000 12%,
      #000 88%,
      transparent);
}

/* Force linear animation for smooth ticker movement in Swiper */
.logo-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.logo-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.partner-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-slider-section {
    padding: 15px 0;
  }

  .partner-logo {
    height: 50px;
  }
}

/* ============================================================
   FEATURES GRID SECTION
   ============================================================ */
.features-grid-section {
  padding: 112px 0;
  background-color: #ffffff;
}

.features-container {
  border-radius: 16px !important;
  padding: 60px 40px !important;
}

/* Section Title CSS */
.features-title-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 80px;
  text-align: center;
}

.features-title-line1 {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #0e0e0f;
  font-family: "Geist Sans";
}

.features-title-line1 span {
  color: #737378;
}

/* Cards Grid */
.features-row {
  --bs-gutter-x: 24px !important;
  --bs-gutter-y: 24px !important;
}

.feature-card {
  padding: 24px;
  background: #fafafa;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 62px;
  min-height: 200px;
  height: 100%;
  border: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-card__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.card-text-custom {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #28282a;
  font-family: "Geist Sans";
}

/* Special Coin Card */
.feature-card--coin {
  justify-content: center;
  align-items: center;
  gap: 0;
  background: #fafafa;
}

.feature-card__coin-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  animation: spinCoinSlow 16s linear infinite;
}

@keyframes spinCoinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .features-container {
    padding: 40px 24px !important;
  }

  .features-title-line1,
  .features-title-line2 {
    font-size: 32px;
  }

  .feature-card {
    min-height: 180px;
    padding: 20px;
    gap: 30px;
  }

  .card-text-custom {
    font-size: 18px;
  }
}

@media (max-width: 576px) {

  .features-title-line1,
  .features-title-line2 {
    font-size: 28px !important;
  }

  .feature-card {
    min-height: auto !important;
    padding: 16px !important;
    gap: 16px !important;
    border-radius: 16px !important;
  }

  .card-text-custom {
    font-size: 15px !important;
  }
}

/* ============================================================
   CORE OFFERINGS SECTION (BENTO GRID)
   ============================================================ */
:root {
  --card-retail-bg: #d6eefb;
  --card-corporate-bg: #f1e4f7;
  --card-branch-bg: #f9e9ce;
  --btn-indigo-bg: #4f39f6;
  --badge-mint-bg: #e3f5ea;
  --badge-mint-text: #0f7a4c;
}

.core-offerings-section {
  padding: 112px 0;
  background: #ffffff;
}

/* Badge style */
.badge-core {
  background: #fafafa;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 40px;
  margin-bottom: 18px;
}

.b-icon {
  width: 40px;
  height: 40px;
  flex: 0 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-right: 2px solid #ffffff;
}

.badge-core span {
  padding: 8px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #0e6b61;
  font-family: "Geist Sans";
}

.badge-core__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Heading & Subtext */
.offerings-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  font-family: "Geist Sans";
  line-height: 120%;
  color: #0e0e0f;
}

.offerings-subtext {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #414144;
  margin-top: 24px;
}

/* Button style */
.btn-indigo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  border: none;
  text-decoration: none;
  padding: 18px 28px;
  background: #3913fc;
  box-shadow: inset 0px 4px 4px rgba(0, 255, 207, 0.35);
  border-radius: 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  font-family: "Parkinsans";
}

.btn-indigo-pill:hover {
  background-color: #2f09ec;
  box-shadow:
    0 0 25px rgba(57, 19, 252, 0.45),
    inset 0px 4px 4px rgba(0, 255, 207, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

/* Bento Grid */

.core-offerings-head {
  margin-bottom: 80px;
}

.card-bento {
  border-radius: 24px;
  padding: 40px;
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 0px;
}

.card-bento--retail {
  background-color: #d1f0fc;
  justify-content: space-between;
  min-height: 768px;
}

.card-bento--retail .card-bento__title {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  color: #053d55;
  font-family: "Geist Sans";
}

.card-bento--retail .card-bento__desc {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #0e0e0f;
  margin: 24px 0px 48px;
}

.card-bento__retail-img {
  width: 100%;
  max-width: 446px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Card 2: Corporate */
/* Card 2: Corporate */
.card-bento--corporate {
  background-color: #f2dff4;
  min-height: 374px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding-right: 0px;
}

.card-bento__content-split {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 256px;
}

.card-bento--corporate .card-bento__title {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
  color: #520554;
  font-family: "Geist Sans";
  margin-bottom: 8px;
}

.card-bento--corporate .card-bento__desc {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  font-family: "Geist Sans";
  line-height: 150%;
  color: #0e0e0f;
}

.card-bento__corp-img {
  max-width: 306px;
  width: 100%;
}

.card-bento--corporate:hover .card-bento__corp-img {
  transform: rotate(-1deg) scale(1.02);
}

/* Card 3: Branch */
.card-bento--branch {
  background-color: #faeace;
  min-height: 295px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  padding-right: 0px;
}

.card-bento--branch .card-bento__title {
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
  color: #622804;
  font-family: "Geist Sans";
  margin-bottom: 8px;
}

.card-bento--branch .card-bento__desc {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #0e0e0f;
}

.card-bento__branch-img-wrapper {
  width: 100%;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.card-bento__branch-img {
  position: absolute;
  right: 15px;
  top: 40px;
  width: 100%;
  max-width: 270px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card-bento--branch:hover .card-bento__branch-img {
  transform: translateY(-5px);
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .core-offerings-section {
    padding: 60px 20px;
  }

  .offerings-heading {
    font-size: 32px;
  }

  .card-bento--corporate,
  .card-bento--branch {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 24px;
    min-height: auto;
  }

  .card-bento__content-split {
    width: 55%;
  }

  .card-bento__corp-img-wrapper,
  .card-bento__branch-img-wrapper {
    width: 45%;
    margin-top: 0;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .card-bento__corp-img,
  .card-bento__branch-img {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    max-height: 100%;
    width: auto;
    margin-left: auto;
  }

  .card-bento--corporate:hover .card-bento__corp-img,
  .card-bento--branch:hover .card-bento__branch-img {
    transform: none;
  }
}

@media (max-width: 576px) {
  .offerings-heading {
    font-size: 28px;
  }

  .card-bento {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .card-bento__title,
  .card-bento--retail .card-bento__title,
  .card-bento--corporate .card-bento__title,
  .card-bento--branch .card-bento__title {
    font-size: 22px !important;
  }

  .card-bento__desc,
  .card-bento--retail .card-bento__desc,
  .card-bento--corporate .card-bento__desc,
  .card-bento--branch .card-bento__desc {
    font-size: 14px !important;
    margin: 12px 0 20px !important;
  }
}

/* ============================================================
   ADMIN CONSOLE SECTION
   ============================================================ */
.admin-console-section {
  padding: 112px 0;
  background-color: #ffffff;
}

.admin-console-section .card-text-custom {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #28282a;
  font-family: "Geist Sans";
}

.admin-console-heading {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: #0e0e0f;
  font-family: "Geist Sans";
  margin-top: 12px;
}

.admin-head {
  margin-bottom: 80px;
}

.feature-card--admin {
  background-color: #fafafa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
  min-height: 290px;
}

.feature-card--admin:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(45, 28, 255, 0.12) !important;
  box-shadow: 0 12px 30px rgba(45, 28, 255, 0.06) !important;
}

@media (max-width: 991px) {
  .admin-console-section {
    padding: 80px 20px;
  }

  .admin-console-heading {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .admin-console-section {
    padding: 56px 0px !important;
  }

  .admin-console-section .badge-core {
    background: #eaf6f5 !important;
    height: 32px !important;
    border-radius: 10px !important;
    margin-bottom: 16px !important;
  }

  .admin-console-section .b-icon {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    border-right: 2px solid #ffffff !important;
  }

  .admin-console-section .b-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .admin-console-section .badge-core span {
    font-size: 13px !important;
    padding: 0 10px !important;
  }

  .admin-console-heading {
    font-size: 32px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-top: 12px !important;
    margin-bottom: 24px !important;
    /* max-width: 290px !important; */
  }

  .admin-console-heading br {
    display: none !important;
  }

  .admin-console-section .admin-head {
    margin-bottom: 40px !important;
  }

  .admin-console-section .hero-cta {
    padding: 14px 24px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    width: fit-content !important;
    display: inline-flex !important;
  }

  .admin-console-section .hero-cta svg {
    width: 18px !important;
    height: 18px !important;
  }

  .feature-card--admin {
    min-height: 230px !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  .admin-console-section .card-text-custom {
    font-size: 20px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
  }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding: 112px 0px;
  background-color: #ffffff;
  --badge-bg: #e3f5ea;
  --badge-text: #0f7a4c;
  --step-divider: #e5e7eb;
  --highlight-bg: #fdf3e7;
  --highlight-border: #f5e1c8;
  --btn-primary-bg: #4f39f6;
  --illustration-card-bg: #f5f5f7;
}

.process-heading {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: #0e0e0f;
  font-family: "Geist Sans";
  margin-top: 12px;
}

.process-step-item {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: flex-start;
  display: flex;
  gap: 20px;
}

.process-step-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: #f5f5f5;
  border-radius: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #0e0e0f;
  font-family: "Parkinsans";
}

.process-step-title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #0e0e0f;
  font-family: "Parkinsans";
  margin-bottom: 12px;
}

.process-step-desc {
  font-style: normal;
  font-weight: 400;
  font-family: "Parkinsans";
  font-size: 18px;
  line-height: 25px;
  color: #414144;
}

.process-callout {
  background: linear-gradient(to bottom,
      rgb(225, 88, 246) 0%,
      rgb(136, 0, 255) 100%);
  border-radius: 12px;
  padding: 1px;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
  display: inline-flex;
}

.pro-inn-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pro-inn-card::after {
  content: "";
  position: absolute;
  width: 764px;
  height: 764px;
  background: #faeace;
  opacity: 0.4;
  filter: blur(100px);
  border-radius: 50%;
  left: 0%;
  top: -40px;
}

.process-callout-text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #0e0e0f;
  font-family: "Geist Sans";
}

.process-callout-text span {
  font-style: normal;
  font-weight: 500;
  font-family: "Geist Sans";
  font-size: 22px;
  line-height: 120%;
  color: #0e0e0f;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;

  padding: 18px 28px;
  background: #3913fc;
  box-shadow: inset 0px 4px 4px rgba(0, 255, 207, 0.35);
  border-radius: 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  font-family: "Parkinsans";
}

.btn-primary-custom:hover {
  background-color: #2f09ec;
  box-shadow:
    0 0 25px rgba(57, 19, 252, 0.45),
    inset 0px 4px 4px rgba(0, 255, 207, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

.process-illustration-card {
  background-color: #fafafa;
  border-radius: 24px;
  padding: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: auto;
  max-width: 656px;
}

.process-card-logo {
  width: 100%;
  max-width: 470px;
  height: auto;
  margin-bottom: 40px;
  display: block;
  filter: grayscale(100%);
}

.coin-lottie {
  width: 250px;
  height: 250px;
}

.process-card-plane {
  width: 100%;
  max-width: 277px;
  height: auto;
  display: block;
  margin-top: 93px;
  animation: floatPlane 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatPlane {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  25% {
    transform: translate3d(35px, -40px, 0) rotate(5deg);
  }

  50% {
    transform: translate3d(-45px, -15px, 0) rotate(-6deg);
  }

  75% {
    transform: translate3d(25px, 35px, 0) rotate(3deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@media (max-width: 991px) {
  .process-section {
    padding: 60px 20px;
  }

  .process-heading {
    font-size: 28px;
  }

  .process-illustration-card {
    min-height: auto;
    padding: 40px 32px;
  }

  .process-card-logo {
    max-width: 240px;
    margin-bottom: 30px;
  }

  .process-card-plane {
    max-width: 180px;
  }
}

@media (max-width: 576px) {
  .process-section {
    padding: 56px 0px !important;
  }

  .process-section .badge-core {
    background: #eaf6f5 !important;
    height: 32px !important;
    border-radius: 10px !important;
    margin-bottom: 16px !important;
  }

  .process-section .b-icon {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    border-right: 2px solid #ffffff !important;
  }

  .process-section .b-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .process-section .badge-core span {
    font-size: 13px !important;
    padding: 0 10px !important;
  }

  .process-heading {
    font-size: 32px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-top: 12px !important;
    margin-bottom: 32px !important;
    /* max-width: 210px !important; */
  }

  .process-heading br {
    display: none !important;
  }

  .process-section .process-callout {
    display: none !important;
  }

  .process-section .col-lg-6 {
    display: none !important;
  }

  .process-step-item {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 32px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .process-step-num {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  .process-step-title {
    font-size: 20px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
  }

  .process-step-desc {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
  }

  .process-section .btn-primary-custom {
    padding: 14px 24px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
}

/* ============================================================
   TESTIMONIALS SLIDER SECTION
   ============================================================ */
:root {
  --card-quote-bg: #fafafa;
  --badge-yellow: #ffc229;
  --company-text-color: #1e3a8a;
}

.testimonials-section {
  padding: 112px 0px;
  background-color: #ffffff;
}

.testimonials-heading {
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: #0e0e0f;
  font-family: "Geist Sans";
}

/* Custom Swiper Pagination bullets styling */
.swiper-pagination-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static !important;
  width: auto !important;
}

.swiper-pagination-custom .swiper-pagination-bullet {
  width: 32px;
  height: 8px;
  background: #d1d5db;
  opacity: 1;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin: 0 !important;
  cursor: pointer;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  width: 76px;
  height: 8px;
  background: #000000;
  border-radius: 4px;
}

/* Slide Card Structure */
.testimonial-slide {
  height: auto;
  margin-top: 80px;
}

.testimonial-card {
  width: 100%;
  border-radius: 24px;
  overflow: visible;
  gap: 12px;
}

/* Left Image Box */
.testimonial-img-box {
  width: 360px;
  height: 412px;
  flex-shrink: 0;
  border-radius: 24px;
  position: relative;
}

.testimonial-img-box img {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Quote Box */
.testimonial-quote-box {
  background-color: #fafafa;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.testimonial-quote-icon {
  width: 58px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.testimonial-con-box {
  display: flex;
  flex: 1;
  align-items: flex-end;
  padding-bottom: 20px;
}

.testimonial-quote-text {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #0e0e0f;
  font-family: "Geist Sans";
}

/* Card Footer */
.testimonial-author-name {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  font-family: "Geist Sans";
}

.testimonial-author-title {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
}

.testimonial-vertical-divider {
  width: 1px;
  height: 32px;
  background-color: #d1d5db;
}

.testimonial-company-logo {
  color: var(--company-text-color);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.testimonial-company-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Responsiveness overrides */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-heading {
    font-size: 32px;
  }

  .testimonial-card {
    flex-direction: row;
    align-items: stretch;
  }

  .testimonial-img-box {
    width: 240px;
    height: 320px;
  }

  .testimonial-quote-text {
    font-size: 16px;
  }

  .testimonial-quote-icon {
    width: 25px;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-img-box {
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 360 / 412;
    margin-bottom: -16px;
    z-index: 2;
  }

  .testimonial-quote-box {
    width: 100%;
    padding-top: 40px;
    /* space for overlap offset */
    border-radius: 24px;
  }

  .testimonial-quote-icon {
    width: 58px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 56px 0px !important;
  }

  .testimonials-section .badge-core {
    background: #eaf6f5 !important;
    height: 32px !important;
    border-radius: 10px !important;
    margin-bottom: 16px !important;
  }

  .testimonials-section .b-icon {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    border-right: 2px solid #ffffff !important;
  }

  .testimonials-section .b-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .testimonials-section .badge-core span {
    font-size: 13px !important;
    padding: 0 10px !important;
  }

  .testimonials-heading {
    font-size: 32px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
  }

  .testimonials-section .swiper-pagination-custom {
    display: none !important;
  }

  .testimonials-swiper {
    overflow: visible !important;
  }

  .testimonials-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
    gap: 32px !important;
  }

  .testimonials-swiper .swiper-slide {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }

  .testimonials-swiper .testimonial-slide {
    margin-top: 0 !important;
  }

  .testimonials-swiper .testimonial-slide:first-child {
    margin-top: 32px !important;
  }

  .testimonial-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    background: transparent !important;
    box-shadow: none !important;
    gap: 16px !important;
  }

  .testimonial-img-box {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 360 / 340 !important;
    margin-bottom: 0 !important;
    z-index: 1 !important;
  }

  .testimonial-quote-box {
    width: 100% !important;
    padding: 28px 24px !important;
    border-radius: 24px !important;
  }

  .testimonial-quote-icon {
    width: 44px !important;
    margin-bottom: 16px !important;
  }

  .testimonial-con-box {
    padding-bottom: 16px !important;
  }

  .testimonial-quote-text {
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .testimonial-author-name {
    font-size: 15px !important;
  }

  .testimonial-author-title {
    font-size: 13px !important;
  }

  .testimonial-company-logo img {
    height: 32px !important;
  }
}

/* ============================================================
   CTA & FOOTER SECTION
   ============================================================ */
.footer-cta-block {
  padding: 112px 0px;
}

.footer-card-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  border-radius: 24px;
  color: #ffffff;
  padding-bottom: 80px;
  z-index: 1;
}

.footer-card-wrapper .container {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.footer-grid-dots {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 450px;
  height: 648px;
  z-index: -1;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(25, 18px);
  grid-template-rows: repeat(36, 18px);
}

.footer-grid-dots .grid-cell {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  padding: 4.5px;
  background-color: #0d0d0d;
  background-clip: content-box;
  transition: background-color 0.8s ease;
}

.footer-grid-dots .grid-cell.active {
  background-color: #5b4bff;
  transition: background-color 0s;
}

.footer-grid-dots .grid-cell.hidden-cell {
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer-cta-heading {
  font-style: normal;
  font-weight: 600;
  font-size: 64px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
  font-family: "Geist Sans";
}

.footer-cta-subtext {
  font-style: normal;
  font-weight: 400;
  font-family: "Geist Sans";
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: #ffffff;
  margin: 24px 0px 32px;
}

/* Part 2: Columns */
.footer-brand-title img {
  max-width: 204px;
  width: 100%;
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  font-family: "Geist Sans";
  color: #ffffff;
  margin-bottom: 40px;
}

.f-btm-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.f-btm-info .footer-section-label {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  font-family: "Geist Sans";
  line-height: 150%;
  color: #ffffff;
}

.footer-section-label {
  font-size: 11px;
  font-family: "Geist Sans";
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-address {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  font-family: "Geist Sans";
  color: #ffffff;
}

.footer-email {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-decoration-line: underline;
  color: #ffffff;
}

.footer-email:hover {
  color: #ffffff;
}

/* Column 2 Navigation Links */
.footer-nav-list {
  list-style: none;
}

.footer-nav-link {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
  font-family: "Geist Sans";
}

.footer-news-title {
  font-style: normal;
  font-weight: 600;
  font-family: "Geist Sans";
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
}

.footer-news-sub {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
  margin: 16px 0px 24px;
}

.footer-newsletter-row {
  max-width: 420px;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-newsletter-input {
  height: 48px;
  background: #0e0e0f;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #dadadc;
  width: 100%;
  flex: 1;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.footer-subscribe-btn {
  padding: 12px 24px;
  width: 121px;
  height: 48px;
  background: #ffffff;
  border-radius: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-family: "Geist Sans";
  color: #000000;
}

.footer-subscribe-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Social icons */
.footer-social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
  text-decoration: none;
}

.footer-social-circle:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.footer-social-circle svg {
  width: 16px;
  height: 16px;
}

.footer-social-circle svg path {
  fill: #000000 !important;
}

/* Part 3: Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #ffffff;
  font-family: "Geist Sans";
}

.footer-policy-links {
  display: flex;
  gap: 24px;
}

.footer-policy-links a {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-decoration-line: underline;
  color: #ffffff;
}

.footer-policy-links a:hover {
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-card-wrapper {
    padding: 60px 24px 32px 24px;
    margin: 20px 10px;
  }

  .footer-cta-block {
    margin-bottom: 60px;
    padding: 0px;
  }

  .footer-cta-heading {
    font-size: 32px;
  }

  .footer-columns-row {
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .footer-card-wrapper {
    padding: 0px 0px 40px 0px !important;
    margin: 0px 0px !important;
  }

  .xs-links {
    margin: 0px !important;
  }

  .footer-cta-block {
    padding: 48px 0 0 0 !important;
    margin-bottom: 48px !important;
  }

  .footer-cta-heading {
    font-size: 32px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
  }

  .footer-cta-subtext {
    font-size: 15px !important;
    line-height: 1.5 !important;
    max-width: 300px !important;
    margin: 16px auto 28px !important;
  }

  .footer-cta-block .btn-primary-custom {
    padding: 14px 24px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    width: fit-content !important;
    display: inline-flex !important;
  }

  .footer-columns-row {
    gap: 0px !important;
  }

  .footer-brand-title img {
    max-width: 128px !important;
    margin-bottom: 16px !important;
  }

  .footer-brand-desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
  }

  .f-btm-info {
    gap: 20px !important;
  }

  .f-btm-info .footer-section-label {
    margin-bottom: 4px !important;
  }

  .footer-address {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .footer-email {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }

  /* Spacing between brand/info column and navigation links column */
  .footer-columns-row>div:nth-child(1) {
    margin-bottom: 8px !important;
  }

  .footer-nav-list {
    gap: 16px !important;
    margin-bottom: 16px !important;
  }

  .footer-news-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
  }

  .footer-news-sub {
    font-size: 14px !important;
    margin: 8px 0 20px !important;
  }

  .footer-newsletter-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-newsletter-input {
    height: 48px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    padding: 12px 16px !important;
    min-width: 0 !important;
    flex-grow: 1 !important;
  }

  .footer-subscribe-btn {
    height: 48px !important;
    width: auto !important;
    padding: 0 20px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .footer-social-row {
    gap: 12px !important;
    margin-bottom: 8px !important;
  }

  .footer-social-circle {
    width: 36px !important;
    height: 36px !important;
  }

  .footer-social-circle svg {
    width: 18px !important;
    height: 18px !important;
  }

  .footer-bottom-bar {
    margin-top: 40px !important;
    padding-top: 24px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 16px !important;
  }

  .footer-policy-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .footer-policy-links a {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .footer-copyright {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-top: 4px !important;
  }
}

/* ============================================================
   OMNICHANNEL JOURNEYS INTERACTIVE TABS (NEW SECTION)
   ============================================================ */
.omnichannel-journeys-section {
  padding: 112px 0;
  background-color: #ffffff;
}

.tabs-header-wrapper {
  margin-top: 20px;
}

.tabs-capsule-container {
  background: #fafafa;
  border-radius: 50px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.tab-indicator {
  position: absolute;
  background: #000000 !important;
  border-radius: 50px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
  pointer-events: none;
  /* Make sure clicking on the indicator doesn't block buttons */
  left: 6px;
  top: 6px;
  height: 44px;
  width: 172px;
}

.tab-btn {
  background: transparent !important;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 4px 20px 4px 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
  font-family: "Geist Sans";
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.25s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.tab-btn.active {
  color: #ffffff !important;
  font-weight: 500;
}

.tab-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  transition: all 0.25s ease;
}

.tab-btn.active .tab-icon-wrapper {
  background: #2d1cff;
  color: #ffffff;
}

#retail-tab.tab-btn.active svg path {
  stroke: #ffffff !important;
}

#corporate-tab.tab-btn.active svg path,
#branch-tab.tab-btn.active svg path {
  fill: #ffffff !important;
  stroke: none;
}

.tabs-header-line {
  height: 1px;
  background: linear-gradient(90deg,
      #5f8eff 0%,
      #8fb2ff 35%,
      #c7d8ff 65%,
      #f5f7ff 100%);
  margin-left: 24px;
}

.tab-pane-custom {
  opacity: 1;
}

@media (min-width: 992px) {
  #journeysTabContent {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    width: 100% !important;
    position: relative !important;
  }

  #journeysTabContent .tab-pane-custom {
    display: block !important;
    opacity: 1 !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
}

.tab-content-badge {
  background: #eaf9f1;
  color: #0e6b61;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  text-transform: capitalize;
  margin-bottom: 24px;
}

.badge-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
}

.tab-content-title {
  font-family: "Geist Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  color: #0e0e0f;
  margin-bottom: 24px;
}

.pill-badge-cluster {
  margin-bottom: 32px;
}

.pill-badge-item {
  padding: 16px;
  background: #f5f5f5;
  border-radius: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #0e0e0f;
  font-family: "Parkinsans";
}

.tab-cta-btn {
  margin-top: 10px;
}

.tab-content-img {
  transition: transform 0.3s ease;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .omnichannel-journeys-section {
    padding: 80px 20px;
  }

  .tab-content-title {
    font-size: 32px;
  }

  .tab-content-img {
    margin-top: 30px;
  }

  .tabs-header-line {
    display: none;
  }
}

@media (max-width: 576px) {
  .omnichannel-journeys-section {
    padding: 48px 10px !important;
  }

  .tabs-capsule-container {
    width: 100%;
    overflow-x: auto;
    display: flex;
    justify-content: flex-start;
    padding: 4px;
    border-radius: 24px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 20px;
  }

  .tab-content-title {
    font-size: 28px !important;
  }

  .pill-badge-item {
    font-size: 13px;
    padding: 6px 14px;
  }
}

/* ============================================================
   RESPONSIVE IMPROVEMENTS (APPENDED FOR MOBILE & TABLET MATCH)
   ============================================================ */

/* Mobile Navigation CTA adjustment */
@media (max-width: 992px) {
  .header-cta {
    display: none !important;
    /* Hide Request a Demo button in header on mobile */
  }
}

/* Feature grid reordering: place the Rupee coin card at the top on mobile */
@media (max-width: 992px) {
  .features-row {
    display: flex !important;
    flex-direction: column !important;
  }

  .features-row>div:nth-child(3) {
    order: -1 !important;
    /* Move coin card to the top */
  }

  .features-row>div {
    width: 100% !important;
  }
}

/* Responsive Tablet View Overrides (768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {

  /* Hero Section Title <br> line breaks active on tablet view */
  .hero-section .hero-title br,
  .hero-title br {
    display: inline !important;
  }

  /* 1. Features Grid 3-column layout with centered Coin card */
  .features-row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .features-row>div {
    width: 33.33333333% !important;
    max-width: 33.33333333% !important;
  }

  .features-row>div:nth-child(1) {
    order: 1 !important;
  }

  .features-row>div:nth-child(3) {
    order: 2 !important;
    /* Place coin card in center column (Column 2) */
  }

  .features-row>div:nth-child(2) {
    order: 3 !important;
  }

  .features-row>div:nth-child(n + 4) {
    order: 4 !important;
  }

  /* 2. Core Offerings Bento Cards: Image aligned to the right */
  .card-bento--retail {
    min-height: auto !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .card-bento--retail>div:first-child {
    width: 55% !important;
    max-width: 55% !important;
  }

  .card-bento--retail .card-bento__desc {
    margin-bottom: 0 !important;
  }

  .card-bento__retail-img {
    width: 45% !important;
    max-width: 45% !important;
    height: auto !important;
    margin: 0 0 0 auto !important;
    display: block !important;
  }

  .card-bento--corporate,
  .card-bento--branch {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-right: 24px !important;
  }

  .card-bento__content-split {
    width: 55% !important;
    max-width: 55% !important;
  }

  .card-bento__corp-img-wrapper,
  .card-bento__branch-img-wrapper {
    width: 45% !important;
    margin-top: 0 !important;
    height: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
  }

  .card-bento__corp-img,
  .card-bento__branch-img {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    max-width: 100% !important;
    width: auto !important;
    margin-left: auto !important;
  }

  /* 3. Build Stack Section Tablet View (768px to 992px) Overrides */
  .build-stack-section {
    padding: 80px 0 !important;
  }

  .build-stack-section .heading {
    position: static !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .build-stack-section .heading h3 {
    font-size: 40px !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .build-stack-section .heading h3 span {
    font-size: 44px !important;
    line-height: 1.2 !important;
    display: block !important;
    text-align: center !important;
  }

  /* 4. Admin Console Section Tablet View: Fix empty card gap by unifying 2-column grid flow */
  .admin-console-section .row.mb-4 {
    margin-bottom: 0 !important;
  }

  .admin-console-section .container {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  .admin-console-section .admin-head {
    width: 100% !important;
    margin-bottom: 32px !important;
  }

  .admin-console-section .row.row-cols-md-2 {
    display: contents !important;
  }

  .admin-console-section .row.row-cols-md-2>.col {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }
}

/* Bento Grid - Retail Card Height Correction */
@media (max-width: 991px) {
  .card-bento--retail {
    min-height: auto !important;
  }
}

/* Omnichannel Journeys Section - Stacked Tabs Layout on Mobile */
@media (max-width: 991px) {
  .tabs-header-wrapper {
    display: none !important;
    /* Hide tab switcher capsule on mobile */
  }

  /* Make all tab panes visible, stacked vertically, with card backgrounds */
  #journeysTabContent .tab-pane {
    display: block !important;
    opacity: 1 !important;
    margin-bottom: 32px !important;
  }

  #tab-retail {
    background-color: var(--card-retail-bg, #d1f0fc) !important;
    border-radius: 24px !important;
    padding: 32px 24px !important;
  }

  #tab-corporate {
    background-color: var(--card-corporate-bg, #f2dff4) !important;
    border-radius: 24px !important;
    padding: 32px 24px !important;
  }

  #tab-branch {
    background-color: var(--card-branch-bg, #faeace) !important;
    border-radius: 24px !important;
    padding: 32px 24px !important;
  }
}

/* Process Section Column Spacing on Mobile */
@media (max-width: 991px) {
  .process-section .col-lg-6.offset-lg-1 {
    margin-top: 40px !important;
  }

  .process-callout {
    display: flex !important;
    width: 100% !important;
  }

  .pro-inn-card {
    width: 100% !important;
  }
}

/* Footer Newsletter & Social alignment */
@media (max-width: 576px) {
  .footer-newsletter-row {
    flex-direction: row !important;
    gap: 12px !important;
  }

  .footer-subscribe-btn {
    width: auto !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }

  .footer-columns-row>div {
    margin-bottom: 24px !important;
  }

  .footer-columns-row>div:last-child {
    margin-bottom: 0 !important;
  }
}

/* Small Screens Button Padding Refinement to Prevent Wrap */
@media (max-width: 375px) {

  .btn,
  .btn-indigo-pill,
  .btn-primary-custom {
    padding: 14px 20px !important;
    font-size: 14px !important;
  }
}

/* =============== Build Stack box animation ================ */
.build-stack-section {
  background-color: #fafafa;
  padding: 250px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.build-stack-section .heading {
  position: static;
  text-align: center;
  z-index: 1;
  pointer-events: auto;
  width: 100%;
  opacity: 1;
  transform: none;
  transition: none;
}

.build-stack-section .heading h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 56px;
  line-height: 120%;
  text-align: center;
  color: #0e0e0f;
  font-family: "Geist Sans";
  margin: 0;
}

.build-stack-section .heading h3 span {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 120%;
  font-family: "Geist Sans";
  text-align: center;
  color: #0e0e0f;
  display: inline-block;
}



/* Premium Button Hover Text Slide Up Swap Animation */
.btn,
.btn-indigo-pill,
.btn-primary-custom,
.footer-subscribe-btn {
  overflow: hidden;
}

.btn-text-wrapper {
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}

.btn-text-original,
.btn-text-hover {
  grid-area: 1 / 1 / 2 / 2;
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.btn-text-hover {
  transform: translateY(100%);
}

.btn:hover .btn-text-original,
.btn-indigo-pill:hover .btn-text-original,
.btn-primary-custom:hover .btn-text-original,
.footer-subscribe-btn:hover .btn-text-original {
  transform: translateY(-100%);
}

.btn:hover .btn-text-hover,
.btn-indigo-pill:hover .btn-text-hover,
.btn-primary-custom:hover .btn-text-hover,
.footer-subscribe-btn:hover .btn-text-hover {
  transform: translateY(0);
}

/* Hero Cards Floating Animation */
@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

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

.contact-hero-section {
  min-height: 484px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.main-content {
  background-color: #000000;
  padding: 112px 0px;
}

.icon-box {
  width: 56px;
  height: 56px;
  background: #2e2e30;
  border: 1px solid transparent;
  border-radius: 12px;
}

.icon-box svg path {
  fill: #ffffff !important;
}

.contact-option h4 {
  font-style: normal;
  font-family: "Parkinsans";
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 10px;
}

.connect-form {
  max-width: 600px;
  width: 100%;
}

.connect-form .form-label {
  font-style: normal;
  font-weight: 500;
  font-family: "Parkinsans";
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}

.custom-input {
  font-style: normal;
  font-family: "Parkinsans";
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}

.contact-option p {
  font-style: normal;
  font-weight: 400;
  font-family: "Parkinsans";
  font-size: 16px;
  line-height: 150%;
  color: #b5b5be;
}

/* Form Styles */
.form-label {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.custom-input {
  background-color: #2e2e30;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.custom-input::placeholder {
  color: #7c7c80;
}

.custom-input:focus {
  background-color: #3e3e42;
  border-color: #5a5a5e;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
  outline: none;
  color: #ffffff;
}

.privacy-text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: "Parkinsans";
}

.privacy-link {
  color: #0022ff;
}

.privacy-link:hover {
  text-decoration: underline !important;
}

.btn-submit {
  padding: 13px 20px;
  background: linear-gradient(180deg, #1c60ff 0%, #0022ff 100%);
  border-radius: 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  font-family: "Parkinsans";
  line-height: 150%;
  color: #ffffff;
  flex: 1;
  height: 68px;
  border: none;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-download {
  padding: 13px 20px;
  background: linear-gradient(180deg, #5a5a5e 0%, #0e0e0f 100%);
  border-radius: 12px;
  font-style: normal;
  font-weight: 500;
  font-family: "Parkinsans";
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.btn-download:active {
  transform: scale(0.98);
}

/* ==========================================================================
   Contact Page – Responsive Typography & Layout
   ========================================================================== */

/* Fluid typography for hero title */
.hero-title {
  font-size: clamp(32px, 5vw, 64px) !important;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px) !important;
}

/* ---- Tablet (≤ 991px) ---- */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 8rem !important;
    padding-bottom: 0rem !important;
  }

  .main-content {
    padding: 80px 0px;
  }

  .connect-form .form-label {
    font-size: 18px;
  }

  .custom-input {
    font-size: 18px;
  }

  .privacy-text {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #ffffff;
    margin-bottom: 24px;
  }

  .contact-option h4 {
    font-size: 18px;
  }

  .contact-option p {
    font-size: 15px;
  }

  .btn-submit,
  .btn-download {
    height: 58px;
    font-size: 15px;
  }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 6rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Hero Visual Overrides for Mobile (<= 767px) */
  .hero-section .hero-visual {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: flex-end !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 40px !important;
    margin-bottom: 0px !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .hero-section .hero-visual__loan-card {
    width: 60vw !important;
    margin-right: -15vw !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 6px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .hero-section .hero-visual__coin {
    width: 38vw !important;
    height: 38vw !important;
    aspect-ratio: 1 !important;
    align-self: center !important;
    position: relative !important;
    top: -5vw !important;
    z-index: 3 !important;
  }

  .hero-section .hero-visual__coin .wrap {
    width: 100% !important;
    height: 100% !important;
  }

  .hero-section .hero-visual__credit-group {
    width: 60vw !important;
    margin-left: -15vw !important;
    margin-right: 0 !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .hero-section .loan-card-overlay {
    padding: 3vw !important;
  }

  .hero-section .loan-card-badge {
    font-size: 2.2vw !important;
    padding: 1vw 2vw !important;
    line-height: 1.2 !important;
    border-radius: 4px !important;
  }

  .hero-section .loan-card-details {
    gap: 1vw !important;
  }

  .hero-section .loan-card-label {
    font-size: 1.8vw !important;
    line-height: 1.2 !important;
  }

  .hero-section .loan-card-value {
    font-size: 2.5vw !important;
    line-height: 1.2 !important;
  }

  .hero-title br {
    display: none !important;
  }

  .hero-subtitle {
    margin-top: 16px;
  }

  .main-content {
    padding: 48px 0px;
  }

  .connect-form {
    max-width: 100%;
  }

  .connect-form .form-label {
    font-size: 16px;
  }

  .custom-input {
    font-size: 16px;
  }

  .privacy-text {
    font-size: 16px;
  }

  .contact-option h4 {
    font-size: 17px;
  }

  .contact-option p {
    font-size: 14px;
  }

  .contact-option .icon-box {
    width: 48px;
    height: 48px;
  }

  .contact-option .icon-box svg {
    width: 20px;
    height: 20px;
  }

  .btn-submit,
  .btn-download {
    height: 52px;
    font-size: 15px;
  }

  .contact-option.mb-5 {
    margin-bottom: 2rem !important;
  }

  /* Features Grid Section Mobile (<= 767px) Overrides */
  .features-grid-section {
    padding: 60px 0 !important;
  }

  .features-title-container {
    margin-bottom: 48px !important;
  }

  .features-title-line1 {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }

  .features-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .features-row>div {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 12px !important;
  }

  .features-grid-section .feature-card {
    min-height: 200px !important;
    height: 200px !important;
    padding: 24px !important;
    background: #fafafa !important;
    border-radius: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    border: none !important;
  }

  .features-grid-section .card-text-custom {
    font-size: 18px !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .features-grid-section .feature-card__icon-wrapper {
    width: 48px !important;
    height: 48px !important;
  }

  .features-grid-section .feature-card--coin {
    justify-content: center !important;
    align-items: center !important;
    background: #fafafa !important;
    height: 200px !important;
    min-height: 200px !important;
    border-radius: 24px !important;
  }

  /* Core Offerings Bento Section Mobile (<= 767px) Overrides */
  .core-offerings-section {
    padding: 60px 0 !important;
  }

  .core-offerings-head {
    margin-bottom: 40px !important;
  }

  .offerings-heading {
    font-size: 34px !important;
    line-height: 1.22 !important;
  }

  .offerings-heading br {
    display: none !important;
  }

  .offerings-subtext {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-top: 16px !important;
  }

  .core-offerings-head .col-md-5 {
    margin-top: 24px !important;
  }

  .core-offerings-head .btn-indigo-pill {
    padding: 14px 24px !important;
    font-size: 15px !important;
  }

  .card-bento {
    padding: 24px !important;
    border-radius: 24px !important;
    min-height: auto !important;
  }

  .card-bento--retail {
    background-color: #d1f0fc !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  .card-bento--corporate {
    background-color: #f2dff4 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-right: 24px !important;
  }

  .card-bento--branch {
    background-color: #faeace !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding-right: 24px !important;
  }

  .card-bento__title,
  .card-bento--retail .card-bento__title,
  .card-bento--corporate .card-bento__title,
  .card-bento--branch .card-bento__title {
    font-size: 24px !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }

  .card-bento__desc,
  .card-bento--retail .card-bento__desc,
  .card-bento--corporate .card-bento__desc,
  .card-bento--branch .card-bento__desc {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin: 12px 0 24px !important;
  }

  .card-bento__retail-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-top: 24px !important;
  }

  .card-bento__corp-img-wrapper {
    margin-top: 24px !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .card-bento__corp-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
  }

  .card-bento__branch-img-wrapper {
    margin-top: 24px !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
  }

  .card-bento__branch-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    border-radius: 24px !important;
  }

  /* Omnichannel Journeys Section Mobile (<= 767px) Overrides */
  .omnichannel-journeys-section {
    padding: 60px 0 !important;
    overflow: hidden;
  }

  .tab-content-container {
    padding: 50px 0px 0px;
  }

  .tabs-header-wrapper {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 0px !important;
    scrollbar-width: none !important;
  }

  .tabs-header-wrapper::-webkit-scrollbar {
    display: none !important;
  }

  .tabs-capsule-container {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    background: #fafafa !important;
    border-radius: 50px !important;
    padding: 6px !important;
    gap: 8px !important;
    width: auto !important;
    overflow-x: visible !important;
  }

  .tab-btn {
    padding: 6px 18px 6px 6px !important;
    font-size: 14px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
  }

  .tabs-header-line {
    display: none !important;
  }

  #journeysTabContent .tab-pane {
    display: none !important;
    opacity: 0 !important;
    background-color: transparent !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }

  #journeysTabContent .tab-pane.active {
    display: block !important;
    opacity: 1 !important;
  }

  .tab-pane-custom>.row {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 32px !important;
  }

  .omnichannel-journeys-section .col-lg-6.text-center {
    margin-top: 0 !important;
    margin-bottom: 32px !important;
    padding: 0 12px !important;
  }

  .tab-content-img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    margin-top: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  }

  .tab-pane-custom .badge-core {
    margin-bottom: 16px !important;
  }

  .tab-content-title {
    font-size: 32px !important;
    line-height: 1.22 !important;
    margin-bottom: 24px !important;
  }

  .pill-badge-cluster {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .pill-badge-item {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    padding: 14px 16px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    border-radius: 12px !important;
    background: #f5f5f5 !important;
  }

  .omnichannel-journeys-section .tab-cta-btn {
    display: inline-flex !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    margin-top: 16px !important;
  }

  /* Build Stack Section Mobile (<= 767px) Overrides */
  .build-stack-section {
    padding: 60px 0 !important;
    background-color: #fafafa !important;
    overflow: hidden !important;
  }

  .build-stack-section .container {
    padding: 0 16px !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .build-stack-section .heading {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .build-stack-section .heading h3 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    width: 100% !important;
  }

  .build-stack-section .heading h3 span {
    font-size: 36px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }
}

/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .hero-section {
    padding-top: 5.5rem !important;
    padding-bottom: 0rem !important;
    min-height: auto;
  }

  .main-content {
    padding: 32px 0px;
  }

  .connect-form .form-label {
    font-size: 15px;
  }

  .custom-input {
    font-size: 15px;
  }

  .privacy-text {
    font-size: 14px;
  }

  .contact-option h4 {
    font-size: 16px;
  }

  .contact-option p {
    font-size: 13px;
  }

  .btn-submit,
  .btn-download {
    height: 48px;
    font-size: 14px;
    border-radius: 10px;
  }
}

/* Appended Responsiveness Rules for Mobile Apps Feel */
@media (max-width: 576px) {

  #tab-retail,
  #tab-corporate,
  #tab-branch {
    padding: 24px 16px !important;
  }

  .btn,
  .btn-indigo-pill,
  .btn-primary-custom,
  .footer-subscribe-btn {
    padding: 12px 20px !important;
    font-size: 15px !important;
    border-radius: 8px !important;
  }
}

/* Hide all heading <br> elements in responsive view */
@media (max-width: 991px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br,
  [class*="heading"] br,
  .heading br {
    display: none !important;
  }

  .testimonials-scroll-wrapper {
    height: auto !important;
  }

  .testimonials-section {
    position: static !important;
  }
}

/* ============================================================
   992px to 1024px Screen Viewport Adjustments
   ============================================================ */
@media (min-width: 992px) and (max-width: 1024px) {

  /* 1. All Section Titles / Headings: Reduce font-size by 5px */
  .features-title-line1 {
    font-size: 35px !important;
  }

  .offerings-heading {
    font-size: 59px !important;
  }

  .admin-console-heading {
    font-size: 43px !important;
  }

  .build-stack-section .heading h3 {
    font-size: 51px !important;
  }

  .build-stack-section .heading h3 span {
    font-size: 59px !important;
  }

  .omnichannel-journeys-section .section-title,
  .omnichannel-heading {
    font-size: 43px !important;
  }

  .process-heading,
  .testimonials-heading,
  .faq-heading,
  .section-title {
    font-size: 35px !important;
  }

  /* 2. All Cards Text & Titles: Reduce font-size by 3px */
  /* Feature cards */
  .feature-card .card-text-custom,
  .card-text-custom {
    font-size: 17px !important;
  }

  /* Bento Cards */
  .card-bento--retail .card-bento__title {
    font-size: 35px !important;
  }

  .card-bento--corporate .card-bento__title,
  .card-bento--branch .card-bento__title {
    font-size: 27px !important;
  }

  .card-bento__desc,
  .card-bento--retail .card-bento__desc,
  .card-bento--corporate .card-bento__desc,
  .card-bento--branch .card-bento__desc {
    font-size: 15px !important;
  }

  /* Journey / Tab Pane / Process / Admin / Testimonial Cards */
  .tab-pane h3,
  .journey-card-title,
  .process-card h4,
  .feature-card--admin .card-text-custom {
    font-size: 21px !important;
  }

  .tab-pane p,
  .journey-card-desc,
  .process-card p,
  .testimonial-card p,
  .accordion-button,
  .accordion-body {
    font-size: 15px !important;
  }

  /* 3. Features Grid Section Cards: 3 per row (3-3 layout) */
  .features-grid-section .features-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }

  .features-grid-section .features-row>div {
    width: 33.33333333% !important;
    max-width: 33.33333333% !important;
    flex: 0 0 33.33333333% !important;
  }

  .features-grid-section .features-row>div:nth-child(1) {
    order: 1 !important;
  }

  .features-grid-section .features-row>div:nth-child(3) {
    order: 2 !important;
    /* Place coin card in center column (Column 2) */
  }

  .features-grid-section .features-row>div:nth-child(2) {
    order: 3 !important;
  }

  .features-grid-section .features-row>div:nth-child(n + 4) {
    order: 4 !important;
  }

  /* 4. Hide section title <br> linebreaks for 992px to 1024px (except build-stack-section) */
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br,
  .features-title-line1 br {
    display: none !important;
  }

  .build-stack-section .heading br,
  .hero-title br,
  .hero-section .hero-title br {
    display: inline !important;
  }
}

/* Hero title <br> line breaks & visual cards width increase from 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {

  .hero-section .hero-title br,
  .hero-title br {
    display: inline !important;
  }

  .hero-visual__loan-card {
    width: 230px !important;
    max-width: 240px !important;
    margin-right: -20px !important;
  }

  .hero-visual__credit-group {
    width: 260px !important;
    max-width: 270px !important;
    margin-left: -25px !important;
  }

  .hero-visual__coin {
    width: 150px !important;
  }

  .loan-card-overlay {
    padding: 12px !important;
  }

  .loan-card-badge {
    font-size: 9px !important;
    padding: 3px 8px !important;
  }

  .loan-card-label {
    font-size: 8.5px !important;
  }

  .loan-card-value {
    font-size: 13.5px !important;
  }
}

/* ============================================================
   HERO SECTION Desktop Natural Fit (No Bottom Empty Space & No Header Stick)
   ============================================================ */
@media (min-width: 992px) {
  .hero-section {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-top: calc(var(--header-height) + 70px) !important;
    padding-bottom: 0px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .hero-content {
    flex: none !important;
    margin-bottom: 0 !important;
  }

  .hero-badges {
    margin-bottom: 20px !important;
  }

  .hero-title {
    font-size: clamp(40px, 4.5vw, 60px) !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
  }

  .hero-cta {
    padding: 16px 28px !important;
    font-size: 16px !important;
  }

  .hero-visual {
    flex: none !important;
    width: 100% !important;
    max-width: 1100px !important;
    align-items: flex-end !important;
    justify-content: center !important;
    margin-top: 30px !important;
    margin-bottom: 0 !important;
    transform: none !important;
  }
}