/* ═══════════════════════════════════════════════════════
   BANK OF KHARTOUM — CSS
   Modelled on archived interbanknetwork.com (Oct 2022)
   ═══════════════════════════════════════════════════════ */

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

:root {
  --bg:        #070505;
  --text:      #f3f1ee;
  --muted:     rgba(243,241,238,0.62);
  --accent:    #8e0806;
  --accent-2:  #c4a654;
  --surface:   rgba(255,255,255,0.06);
  --border:    rgba(255,255,255,0.14);
  font-size:   16px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: var(--bg);
  overflow-x: hidden;
}

body.preloading {
  overflow: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(201,167,67,0.18), transparent 28%),
    linear-gradient(145deg, #050505 0%, #111 46%, #050505 100%);
  color: #fff;
  transition: opacity 0.65s ease, visibility 0.65s ease, transform 0.65s ease;
}

.site-preloader::before,
.site-preloader::after {
  content: "";
  position: absolute;
  inset: auto;
  width: min(62vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
}

.site-preloader::before {
  border: 1px solid rgba(201,167,67,0.22);
  animation: preloaderPulse 2.6s ease-in-out infinite;
}

.site-preloader::after {
  width: min(44vw, 480px);
  border: 1px dashed rgba(255,255,255,0.16);
  animation: preloaderSpin 9s linear infinite;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  pointer-events: none;
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(340px, calc(100vw - 48px));
  text-align: center;
}

.preloader-content img {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.5));
  animation: preloaderLogo 1.8s ease-in-out infinite;
}

.preloader-content p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preloader-progress {
  position: relative;
  width: min(280px, 78vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.preloader-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, #990b0b, #c9a743, #fff);
  animation: preloaderProgress 1.35s ease-in-out infinite;
}

.preloader-orbit {
  position: absolute;
  z-index: 1;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  animation: preloaderSpin 5.6s linear infinite;
}

.preloader-orbit span {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9a743;
  box-shadow: 0 0 28px rgba(201,167,67,0.85);
}

.preloader-orbit span:nth-child(1) {
  top: 0;
  left: 50%;
}

.preloader-orbit span:nth-child(2) {
  right: 16%;
  bottom: 18%;
  background: #990b0b;
  box-shadow: 0 0 28px rgba(153,11,11,0.85);
}

.preloader-orbit span:nth-child(3) {
  left: 14%;
  bottom: 22%;
  background: #fff;
  box-shadow: 0 0 24px rgba(255,255,255,0.7);
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderPulse {
  0%, 100% {
    transform: scale(0.88);
    opacity: 0.42;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes preloaderLogo {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

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

@keyframes preloaderProgress {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(250%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader::before,
  .site-preloader::after,
  .preloader-content img,
  .preloader-progress span,
  .preloader-orbit {
    animation: none;
    transition: none;
  }
}

/* ── Page wrapper (non-hero sections) ─────────────────── */
.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

/* ═══════════════════════════════════════════════════════
   HEADER  —  fixed, transparent, edge-to-edge
   ═══════════════════════════════════════════════════════ */
.c-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease;
}

.c-header.scrolled {
  background: transparent;
}

/* Logo image */
.header_logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
}

/* Nav aside */
.header_nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0px;
  /* background: rgba(255,255,255,0.12); */
  /* backdrop-filter: blur(24px); */
  border-radius: 999px;
  /* box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); */
  flex-wrap: wrap;
}

/* Nav menu list */
.nav_menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Nav links */
.item_label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: lightgray;
  transition: color 0.2s ease;
  position: relative;
}

.item_label::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.item_label:hover {
  color: #fff;
}

.item_label:hover::after {
  transform: scaleX(1);
}

.internet-banking-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-weight: normal;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.internet-banking-link::after {
  display: none;
}

.internet-banking-link:hover,
.internet-banking-link:focus-visible {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.32);
  color: #fff;
  transform: translateY(-1px);
}

/* Contact CTA button */
.nav_cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #8e0806, #b0361e);
  box-shadow: 0 18px 40px rgba(142,8,6,0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav_cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(59,100,255,0.28);
}

/* New navigation enhancements */
.nav_burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  align-items: center;
}
.nav_burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: #d4b14b;
  border-radius: 1px;
}

/* Search dropdown */
.nav_search {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.search_toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: lightgray;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.search_toggle:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

.search_dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--surface);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 12px;
  display: none;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.search_dropdown.open {
  display: block;
}
.search_input {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 0.9rem;
}

/* Language toggle button */
.nav_lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: lightgray;
  background: rgba(255,255,255,0.08);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav_lang:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

/* Mobile open state */
.header_nav.open {
  background: rgba(2, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 24px;
  border-radius: 0;
  transform: translateX(0);
  transition: transform 0.3s ease;
  z-index: 1100;
}
@media (max-width: 860px) {
  .header_nav {
    transform: none;
  }
}

.mobile_drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(26px);
  box-shadow: -20px 0 50px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1200;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile_drawer.open {
  transform: translateX(0);
}

.drawer_close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: #111;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.drawer_menu {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer_menu .item_label {
  font-size: 1rem;
  color: #111;
  letter-spacing: 0.02em;
}

.drawer_menu .item_label:hover {
  color: #c4a654;
}

.drawer_menu .item_label::after {
  display: none;
}

/* Show burger on mobile */
@media (max-width: 860px) {
  .nav_burger {
    display: flex;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION — full viewport, video background
   ═══════════════════════════════════════════════════════ */
.c-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Video layer ───────────────────────────────────────── */
.c_media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.c_media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay on video */
.media_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgb(0 0 0) 0%, rgb(0 0 0 / 37%) 50%, rgb(0 0 0 / 64%) 100%);
}

/* ── Hero inner content ────────────────────────────────── */
.c_inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
}

.c_content {
  position: absolute;
  bottom: 28%;
  left: -6%;
  /* width: min(1000px, 44vw); */
  max-width: 100%;
  padding-top: 90px;
}

/* ── Hero headline ─────────────────────────────────────── */
.content_title {
  font-size: clamp(3rem, 5vw, 2.8rem);
  font-weight: normal;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: lightgray;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  max-width: 100%;
}

.content_title .title_line {
  display: block;
}

.content_title strong {
  font-weight: 700;
}

/* ── Hero sub-headline ─────────────────────────────────── */
.c_descr {
  position: absolute;
  top: auto;
  left: -6%;
  right: auto;
  bottom: 9%;
  width: min(720px, 58vw);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.content_descr {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: lightgray;
  text-align: left;
}

.content_descr p { margin: 0; }

.content_descr strong {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

/* ── Discover more scroll button ───────────────────────── */
.c_bottom {
  position: relative;
  margin-top: 0;
  left: auto;
  bottom: auto;
}

@media (max-width: 860px) {
  .c_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .c_content,
  .c_descr {
    position: relative;
    bottom: auto;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    padding-top: 100px;
  }

  .c_descr {
    margin-top: 28px;
  }

  .content_descr {
    position: relative;
    width: 100%;
    margin-top: 0;
    text-align: left;
  }
}

.bottom_scroll {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.65);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.25s ease;
  border: 1px solid white !important;
  color: white !important;  
}

.bottom_scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.35);
  transition: height 0.3s ease, background 0.3s ease;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; height: 48px; }
  50%       { opacity: 1;   height: 60px; }
}

.bottom_scroll:hover {
  color: #fff;
}

/* ── Sticky right-side action icons ─────────────────────── */
.c_vert {
  position: absolute;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.vert_actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vert_actions li {
  list-style: none;
}

.vert_actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #c9a743;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.vert_actions a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(-2px);
}

.vert_actions .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid;
}

.vert_actions .icon i {
  color: #d4b14b;
  font-size: 1rem;
}

@media (max-width: 860px) {
  .c_vert {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   BELOW-HERO SECTIONS (light background, dark text)
   ═══════════════════════════════════════════════════════ */
body > section:not(.c-hero),
.section {
  background: #ffffff;
  color: #ece8e4;
}

/* Section padding */
.section {
  padding: 84px 48px;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* letter-spacing: 0.18em; */
  color: var(--accent-2);
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 14px;
}

/* Section heading */
.section-header {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: #1a1a1a;
}

/* ── Grids ────────────────────────────────────────────── */
.feature-grid,
.account-grid,
.news-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── Cards ────────────────────────────────────────────── */
.feature-card,
.news-card {
  padding: 32px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover,
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.10);
}

.feature-card h3,
.news-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.feature-card p,
.news-card p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
}

/* ── Buttons ──────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--accent), #b92e14);
  color: #fff;
  box-shadow: 0 10px 30px rgba(142,8,6,0.28);
}

.primary:hover {
  box-shadow: 0 16px 40px rgba(142,8,6,0.40);
}

.secondary {
  background: transparent;
  color: #8e0806;
  border: 1px solid rgba(142,8,6,0.25);
  font-size: 0.85rem;
}

.secondary:hover {
  background: rgba(142,8,6,0.06);
  border-color: rgba(142,8,6,0.55);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* ── Highlight / accent wrappers ─────────────────────── */
.highlight {
  background: #ffffff;
  padding: 72px 48px;
}

.accent {
  background: linear-gradient(180deg, #f8f7f3 0%, #eeece5 100%);
  padding: 72px 48px;
}

.accounts-section {
  background: #090707;
  padding: 80px 50px;
}

.accounts-header {
  margin-bottom: 56px;
}

.accounts-copy {
  max-width: 640px;
}

.accounts-copy .eyebrow {
  letter-spacing: 0.2em;
  color: #8d8d8d;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.accounts-copy h2 {
  font-size: clamp(3rem, 5vw, 2.8rem);
  line-height: 1.02;
  margin: 0;
  color: black;
}

.accounts-copy h2 span {
  display: block;
  color: #951717;
}

.accounts-copy p {
  margin: 14px 0 0;
  /* max-width: 420px; */
  color: black;
  line-height: 1.75;
}

.accounts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.account-card {
  min-height: 400px;
  padding: 32px;
  border-radius: 28px;
  background: transparent;
  border-left: 1px solid rgba(0,0,0,0.12);
  border-right: 1px solid rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.account-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  border-left-color: rgba(149, 23, 23, 0.16);
  border-right-color: rgba(149, 23, 23, 0.16);
}

.card-media {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.26) 42%, #543c2a 100%), linear-gradient(135deg, rgba(244, 180, 101, 0.08), rgba(153, 11, 11, 0.18));
  opacity: 1;
  transition: background 0.35s ease, opacity 0.35s ease;
}

.account-card:hover .card-overlay {
  opacity: 1;
  /* background:
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.9) 100%),
    linear-gradient(135deg, rgba(244,180,101,0.16), rgba(153,11,11,0.28)); */
}

.card-head,
.card-info {
  position: relative;
  z-index: 2;
}

.card-head {
  color: lightgrey;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 15px;
  margin-bottom: 0;
  transition: transform 0.35s ease;
  font-size: 20px;
}

.card-info {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.account-card:hover .card-head {
  transform: translateY(-128px);
}

.account-card:hover .card-info {
  opacity: 1;
  transform: translateY(0);
}

.card-info p {
  color: lightgrey;
  line-height: 1.4;
  margin: 0 0 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: lightgrey;
  border: 1px solid rgba(255,255,255,0.8);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.read-more:hover {
  background: rgba(255,255,255,0.12);
}

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

@media (max-width: 860px) {
  .accounts-section {
    padding: 72px 24px;
  }

  .accounts-grid {
    grid-template-columns: 1fr;
  }
}

.scroll-showcase {
  position: relative;
  min-height: 100vh;
  background: #f7f6f2;
  color: #111;
  overflow: hidden;
}

.showcase-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 48px;
  overflow: hidden;
  background-color: #ffffff;
}

.showcase-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(800px, calc(100vw - 48px));
  height: min(76vh, 620px);
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: width, height;
  z-index: 1;
}

.showcase-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  max-width: none;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
}

.account-steps-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* padding: clamp(90px, 10vw, 130px) clamp(32px, 6vw, 108px) 74px; */
  padding: 70px 50px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.account-steps-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #543c2a 0%, #543c2a99 42%, rgba(153, 91, 8, 0.82) 100%), linear-gradient(90deg, #543c2a5c, rgba(0, 0, 0, 0.08));
}

.steps-copy {
  max-width: 760px;
}

.steps-copy .eyebrow {
  color: lightgray;
}

.steps-copy h2 {
  color: lightgray;
  font-size: clamp(3rem, 5vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.steps-copy p:not(.eyebrow) {
  max-width: 760px;
  color: lightgray;
  /* font-size: clamp(1rem, 1.35vw, 1.25rem); */
  line-height: 1.65;
}

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1140px, 78vw);
  margin-top: auto;
  padding: 0 0 10px;
  min-height: 132px;
}

.track-line {
  position: absolute;
  left: 21px;
  right: 0;
  bottom: 31px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.55));
  transform-origin: left center;
}

.track-step {
  position: relative;
  min-height: 132px;
  padding: 0 16px 62px 0;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

.track-step::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 42px;
  height: 42px;
  border: 2px solid lightgray;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  backdrop-filter: blur(6px);
}

.track-step.active::after {
  background: lightgray;
  box-shadow: inset 0 0 0 10px var(--accent-2), 0 8px 28px rgba(0,0,0,0.18);
}

.track-step span,
.track-step strong {
  display: block;
  max-width: 210px;
  font-size: clamp(0.98rem, 1.12vw, 1.18rem);
  font-weight: normal;
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28);
  padding-left: 0;
  color: lightgray;
}

.track-step span {
  margin-bottom: 4px;
}

.steps-button {
  position: absolute;
  right: clamp(32px, 6vw, 108px);
  bottom: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 14px;
  background: #fff;
  color: #5d625f;
  font-weight: 500;
  border: 1px solid white !important;
  color: white !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.content_title,
.content_title strong,
.section-header h2,
.feature-card h3,
.news-card h3,
.accounts-copy h2,
.card-head,
.steps-copy h2 {
  font-weight: 400;
}

@media (max-width: 860px) {
  .scroll-showcase {
    min-height: 100vh;
  }

  .showcase-stage {
    min-height: 100vh;
    padding: 72px 24px;
  }

  .showcase-image {
    position: relative;
    width: min(68vw, 300px);
    height: 58vh;
    min-height: 360px;
    left: auto;
    top: auto;
    transform: none;
  }

  .showcase-image img {
    width: 100%;
    height: 100%;
    transform: none;
    left: 0;
    top: 0;
  }

  .account-steps-overlay {
    position: absolute;
    opacity: 1;
    pointer-events: auto;
    padding: 82px 24px 42px;
  }

  .steps-track {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .track-step {
    opacity: 1;
    transform: none;
    min-height: auto;
    padding: 0 0 0 58px;
  }

  .track-step::after {
    left: 0;
    top: 0;
    bottom: auto;
  }

  .track-line {
    display: none;
  }

  .steps-button {
    position: static;
    width: fit-content;
    margin-top: 28px;
  }
}

.insights-section {
  --insights-x: 48px;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 86px var(--insights-x) 74px;
  background: #571615 !important;
  color: #101415;
}

.insights-section::before {
  display: none;
}

.bankak-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  text-align: center;
}

.bankak-main-heading {
  max-width: 760px;
  margin: 0 auto 34px;
color: lightgray;
    font-size: clamp(3rem, 5vw, 2.8rem);
  line-height: 1.08;
  font-weight: normal;
}

.bankak-logo-mark {
  display: grid;
  justify-items: center;
  width: fit-content;
  margin: 0 auto 42px;
  line-height: 0.82;
}

.bankak-ar {
  color: #c21d2a;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: 0;
}

.bankak-en {
  color: #c21d2a;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 800;
  letter-spacing: 0;
}

.bankak-en::first-letter {
  color: #c9a33c;
}

.bankak-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  margin-bottom: 30px;
  padding-inline: var(--insights-x);
}

.bankak-card-container {
  position: relative;
  width: min(430px, 68vw);
  height: 335px;
}

.bankak-service-card {
  position: absolute;
  inset: 0;
  display: block;
  /* overflow: hidden; */
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
  opacity: 0;
  filter: none;
  transform: translateX(0);
  transition: transform 0.55s ease, opacity 0.55s ease, filter 0.55s ease;
}

.bankak-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* background: linear-gradient(135deg, rgba(0,92,255,0.34), rgba(4,18,56,0.72)); */
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.bankak-service-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.bankak-service-card.active img {
  object-fit: contain;
  background: transparent;
  transform: scale(1.5);
}

.bankak-service-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 42px 16px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.86) 72%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bankak-service-card.active {
  z-index: 5;
  opacity: 1;
  filter: none;
  transform: translateX(0) scale(1.04);
  box-shadow: none;
}

.bankak-service-card.active::after {
  opacity: 0;
}

.bankak-service-card.active h3 {
  opacity: 1;
  transform: translateY(0);
}

.bankak-service-card.prev-1,
.bankak-service-card.next-1 {
  z-index: 4;
  opacity: 0.54;
  /* filter: blur(4px) saturate(0.75) hue-rotate(178deg) brightness(0.78); */
  box-shadow: none;
}

.bankak-service-card.prev-1::after,
.bankak-service-card.next-1::after {
  opacity: 0.55;
}

.bankak-service-card.prev-2,
.bankak-service-card.next-2 {
  z-index: 3;
  opacity: 0.22;
  filter: blur(7px) saturate(0.68) hue-rotate(178deg) brightness(0.68);
  box-shadow: none;
}

.bankak-service-card.prev-2::after,
.bankak-service-card.next-2::after {
  opacity: 0.72;
}

.bankak-service-card.prev-3,
.bankak-service-card.next-3 {
  z-index: 2;
  opacity: 0;
}

.bankak-service-card.prev-1 {
  transform: translateX(-315px) rotate(-10deg) translateY(24px);
}

.bankak-service-card.next-1 {
  transform: translateX(315px) rotate(10deg) translateY(24px);
}

.bankak-service-card.prev-2 {
  transform: translateX(-640px) rotate(-20deg) translateY(88px);
}

.bankak-service-card.next-2 {
  transform: translateX(640px) rotate(20deg) translateY(88px);
}

.bankak-service-card.prev-3 {
  transform: translateX(-700px) rotate(-30deg) translateY(170px);
}

.bankak-service-card.next-3 {
  transform: translateX(700px) rotate(30deg) translateY(170px);
}

.bankak-arrow {
  position: relative;
  z-index: 20;
  display: inline-grid;
  place-items: center;
  width: 80px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 28px rgba(0,0,0,0.35);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bankak-arrow:hover,
.bankak-arrow:focus-visible {
  background: rgba(34,34,34,0.92);
  border-color: rgba(255,255,255,0.42);
  color: #fff;
  transform: translateY(-2px);
}

.bankak-arrow i {
  font-size: 1rem;
  line-height: 1;
}

.bankak-arrow-left {
  margin-right: clamp(170px, 26vw, 360px);
}

.bankak-arrow-right {
  margin-left: clamp(170px, 26vw, 360px);
}

.bankak-tab-panel {
  max-width: 780px;
  margin: 0 auto;
}

.bankak-tab-panel h2 {
    color: lightgray;
    font-size: clamp(1rem, 5vw, 1.8rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.bankak-tab-panel p {
  color: lightgray;
  /* font-size: clamp(1rem, 1.18vw, 1.12rem); */
  line-height: 1.7;
  margin-bottom: 18px;
}

.bankak-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 4px;
  background: #d0ad45;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}

@media (max-width: 860px) {
  .insights-section {
    --insights-x: 24px;
    min-height: auto;
    padding: 68px var(--insights-x);
  }

  .bankak-logo-mark {
    margin-bottom: 34px;
  }

  .bankak-main-heading {
    margin-bottom: 24px;
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .bankak-carousel {
    min-height: 315px;
    margin-bottom: 22px;
    padding-inline: var(--insights-x);
  }

  .bankak-card-container {
    width: min(300px, 72vw);
    height: 250px;
  }

  .bankak-service-card.prev-1 {
    transform: translateX(-135px) rotate(-9deg) translateY(26px) scale(0.86);
  }

  .bankak-service-card.next-1 {
    transform: translateX(135px) rotate(9deg) translateY(26px) scale(0.86);
  }

  .bankak-service-card.prev-2,
  .bankak-service-card.next-2,
  .bankak-service-card.prev-3,
  .bankak-service-card.next-3 {
    opacity: 0;
  }

  .bankak-arrow {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
  }

  .bankak-arrow:hover,
  .bankak-arrow:focus-visible {
    transform: translateY(calc(-50% - 2px));
  }

  .bankak-arrow-left {
    left: 0;
    margin-right: 0;
  }

  .bankak-arrow-right {
    right: 0;
    margin-left: 0;
  }
}

.bankak-reveal-section {
  min-height: 220vh;
  background: #f4f4f1;
  color: #141414;
  overflow: visible;
}

.bankak-reveal-stage {
  position: sticky;
  top: 0;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 52.5vw) minmax(380px, 1fr);
  background: #f4f4f1;
}

.bankak-reveal-image-side {
  position: relative;
  min-height: 100vh;
  overflow: visible;
  background: transparent;
}

.bankak-reveal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgb(7 13 14 / 77%) 0%, rgb(7 13 14 / 83%) 42%, rgba(153, 91, 8, 0.82) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08)); */
  pointer-events: none;
}

.bankak-reveal-media {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 52.5vw;
  height: 100%;
  margin: 0;
  overflow: hidden;
  clip-path: none;
  transform: none;
  transform-origin: center;
  will-change: width;
}

.bankak-reveal-media img {
  width: 100vw;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.bankak-reveal-tabs {
  display: inline-flex;
  align-items: flex-end;
  width: fit-content;
  margin: 24px 0 34px;
  border-bottom: 2px solid rgba(20,20,20,0.24);
}

.bankak-reveal-tab {
  min-width: 118px;
  padding: 0 16px 13px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 1.18rem;
  line-height: 1;
  transform: translateY(2px);
}

.bankak-reveal-tab.active {
  color: #d71925;
  border-bottom-color: #d71925;
  font-weight: 800;
}

.bankak-reveal-content-side {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 9vw, 120px) clamp(42px, 8vw, 154px);
  transition: color 0.25s ease;
}

.bankak-reveal-section.image-expanded .bankak-reveal-content-side,
.bankak-reveal-section.image-expanded .bankak-reveal-panel h2,
.bankak-reveal-section.image-expanded .bankak-reveal-panel p,
.bankak-reveal-section.image-expanded .bankak-reveal-tab,
.bankak-reveal-section.image-expanded .bankak-reveal-downloads p {
  color: lightgray;
}

.bankak-reveal-section.image-expanded .bankak-reveal-tabs {
  border-bottom-color: rgba(255,255,255,0.62);
}

.bankak-reveal-section.image-expanded .bankak-reveal-tab.active {
  color: #ff2734;
}

.bankak-reveal-section.image-expanded .bankak-reveal-panel {
  border-top-color: rgba(255,255,255,0.28);
}

.bankak-reveal-logo {
  width: clamp(100px, 6vw, 100px);
  height: auto;
  /* margin: 0 0 clamp(44px, 7vh, 70px); */
}

.bankak-reveal-panel {
  max-width: 680px;
  /* border-top: 1px solid rgba(20,20,20,0.12); */
  padding-top: 22px;
}

.bankak-reveal-panel h2 {
  color: #111;
  font-size: clamp(3rem, 5vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 16px;
  font-weight: normal;
  transition: color 0.25s ease;
}

.bankak-reveal-panel p {
  color: #1b1b1b;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bankak-reveal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 4px;
  background: #d0ad45;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}

.bankak-reveal-downloads {
  margin-top: clamp(58px, 10vh, 92px);
}

.bankak-reveal-downloads p {
  margin-bottom: 10px;
  color: #111;
  font-size: 1rem;
}

.bankak-reveal-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bankak-reveal-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  height: 45px;
  padding: 5px 12px;
  border-radius: 5px;
  background: #050505;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.bankak-reveal-store-badge i {
  font-size: 1.75rem;
}

.bankak-reveal-store-badge span {
  display: grid;
  line-height: 1.05;
  font-size: 1.08rem;
  font-weight: 700;
  white-space: nowrap;
}

.bankak-reveal-store-badge small {
  font-size: 0.54rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .bankak-reveal-section {
    min-height: auto;
    overflow: hidden;
  }

  .bankak-reveal-stage {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bankak-reveal-image-side {
    min-height: 62vh;
  }

  .bankak-reveal-media {
    transform: none;
    width: 100%;
  }

  .bankak-reveal-media img {
    width: 100%;
  }

  .bankak-reveal-tabs {
    margin: 22px 0 28px;
  }

  .bankak-reveal-tab {
    min-width: 96px;
    font-size: 1.05rem;
  }

  .bankak-reveal-content-side {
    min-height: auto;
    padding: 56px 24px 72px;
  }

  .bankak-reveal-store-links {
    flex-direction: column;
    align-items: flex-start;
  }
}

.finance-calculators-section {
  background: #fff;
  /* padding: clamp(34px, 6vw, 86px) clamp(20px, 3vw, 48px); */
  padding: 60px 50px;
}

.finance-section-header {
  margin: 0 0 clamp(26px, 3vw, 42px);
  color: #152927;
}

.finance-section-header h2 {
  margin: 0 0 12px;
  color: #000;
  font-size: clamp(3rem, 5vw, 2.8rem);
  line-height: 1.12;
  font-weight: normal;
}

.finance-section-header h2 span {
  color: #990b0b;
}

.finance-section-header p {
  margin: 0;
  color: #000;
  /* font-size: clamp(0.95rem, 1.05vw, 1.1rem); */
  line-height: 1.5;
}

.finance-calculators-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.finance-calculator-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 32px;
  padding: clamp(28px, 3vw, 42px) clamp(22px, 3.5vw, 48px) 34px;
  color: lightgray;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.car-finance {
  background: #995b08d1;
}

.home-finance {
  background: #995b08d1;
}

.finance-calculator-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02)),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.2), transparent 28%);
  pointer-events: none;
}

.finance-calculator-card h2 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 1.8rem);
  line-height: 1;
  font-weight: normal;
  text-align: center;
}

.finance-card-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 560px;
  min-height: clamp(250px, 32vw, 380px);
  margin: 0 auto 38px;
  overflow: visible;
}

.finance-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  filter: none;
  transform: none;
  pointer-events: none;
}

.car-finance .finance-card-visual::before {
  background: url("assets/carfinanance.png") center / contain no-repeat;
}

.home-finance .finance-card-visual::before {
  background: url("assets/homefinance.png") center / contain no-repeat;
}

.finance-card-visual > img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  max-height: 150px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  filter: none;
  transition: transform 0.35s ease;
  top: 50px;
}

.finance-calculator-card:hover .finance-card-visual > img {
  transform: scale(1.55);
}

.finance-mini-calculator {
  position: relative;
  width: min(290px, 100%);
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 14px;
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  color: #202020;
  box-shadow: 0 24px 60px rgba(38,30,8,0.18), inset 0 1px 0 rgba(255,255,255,0.72);
}

.finance-mini-calculator label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  font-weight: 800;
}

.finance-mini-calculator input[type="range"] {
  --range-progress: 0%;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4d73ff 0 var(--range-progress), #c9cdd0 var(--range-progress) 100%);
  outline: 0;
}

.finance-mini-calculator input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 3px solid #4d73ff;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.finance-mini-calculator input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 3px solid #4d73ff;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.finance-mini-calculator strong {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 6px;
  background: #fff;
  color: #2f63ff;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.finance-mini-calculator p {
  margin: 0 0 8px;
  color: #202020;
  font-size: 0.86rem;
  font-weight: 800;
}

.finance-card-copy {
  max-width: 520px;
  margin: auto auto 22px;
  color: #fff;
  /* font-size: clamp(1.05rem, 1.2vw, 1.28rem); */
  line-height: 1.55;
  text-align: center;
}

.finance-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 214px;
  min-height: 50px;
  padding: 12px 28px;
  border: 1.5px solid #fff !important;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 800;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .finance-calculators-grid {
    grid-template-columns: 1fr;
  }

  .finance-calculator-card {
    min-height: 580px;
  }
}

@media (max-width: 640px) {
  .finance-calculator-card {
    min-height: auto;
    padding: 34px 18px 36px;
    border-radius: 22px;
  }

  .finance-card-visual {
    flex-direction: column;
    width: min(360px, 100%);
    margin-bottom: 34px;
  }

  .finance-mini-calculator {
    width: 100%;
    margin: 0 auto;
  }
}

/* ── Footer ──────────────────────────────────────────── */
.legacy-timeline-section {
  position: relative;
  min-height: 100vh;
  background: #080808;
  color: #fff;
  overflow: hidden;
}

.legacy-timeline-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 48px;
  overflow: hidden;
  background: #fff;
}

.legacy-timeline-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(800px, calc(100vw - 48px));
  height: min(72vh, 600px);
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  transform: translate(-50%, -50%);
  box-shadow: 0 26px 70px rgba(0,0,0,0.42);
}

.legacy-timeline-image::after {
  display: none;
}

.legacy-timeline-image img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100vw;
  max-width: none;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%);
}

.legacy-timeline-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* padding: clamp(86px, 9vw, 132px) clamp(42px, 6vw, 112px) clamp(54px, 8vw, 86px); */
  padding: 80px 50px;
  opacity: 0;
  pointer-events: none;
}

.legacy-timeline-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #543c2a 0%, #543c2a99 42%, rgba(153, 91, 8, 0.82) 100%), linear-gradient(90deg, #543c2a5c, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.legacy-years-shell,
.legacy-timeline-copy {
  position: relative;
  z-index: 1;
}

.legacy-years-shell {
  position: relative;
}

.legacy-years-window {
  position: relative;
  overflow: hidden;
}

.legacy-years-track {
  position: relative;
  display: flex;
  align-items: end;
  gap: clamp(44px, 7vw, 112px);
  width: max-content;
  min-width: 100%;
  padding-bottom: 1px;
  transition: transform 0.45s ease;
}

.legacy-track-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.72);
}

.legacy-year-step {
  position: relative;
  flex: 0 0 clamp(150px, 16vw, 250px);
  min-height: 124px;
  display: flex;
  align-items: flex-start;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.legacy-year-step::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.74);
}

.legacy-year-step span {
  color: rgba(255,255,255,0.9);
  font-size: clamp(2.45rem, 4.1vw, 3.9rem);
  line-height: 1;
  font-weight: 300;
  transform: translateY(0);
  transition: color 0.25s ease, opacity 0.25s ease, font-size 0.25s ease, transform 0.25s ease;
}

.legacy-year-step.active span {
  color: #f4b465;
  opacity: 1;
  font-size: clamp(4.8rem, 8.5vw, 7.2rem);
  transform: translateY(-8px);
}

.legacy-year-step[aria-selected="false"] span,
.legacy-year-step:not(.active) span {
  color: #fff;
  font-size: clamp(2.45rem, 4.1vw, 3.9rem);
  opacity: 0.88;
  transform: translateY(0);
}

.legacy-timeline-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 22px;
}

.legacy-timeline-arrows button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.legacy-timeline-arrows button:hover,
.legacy-timeline-arrows button:focus-visible {
  color: #f4b465;
  transform: translateY(-2px);
}

.legacy-timeline-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: clamp(34px, 8vw, 120px);
}

.legacy-timeline-copy h2 {
  max-width: 620px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3rem, 5vw, 2.8rem);
  line-height: 1.06;
  font-weight: normal;
}

.legacy-timeline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 194px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 12px;
  background: #fff;
  color: #6c665d;
  font-weight: 600;
  border: 1px solid white !important;
  color: white !important;
}

.legacy-milestone-card {
  max-width: 560px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.76);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.legacy-milestone-card i {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 2.05rem;
}

.legacy-milestone-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.1rem, 1.35vw, 1.4rem);
  line-height: 1.2;
  font-weight: normal;
}

.legacy-milestone-card p {
  margin: 0;
  color: #fff;
  font-size: clamp(0.95rem, 1.08vw, 1.1rem);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .legacy-timeline-stage {
    min-height: auto;
    padding: 72px 24px;
  }

  .legacy-timeline-image {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 70vh;
    min-height: 520px;
    transform: none;
  }

  .legacy-timeline-image img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
  }

  .legacy-timeline-overlay {
    opacity: 1;
    padding: 92px 24px 48px;
    pointer-events: auto;
  }

  .legacy-years-track {
    gap: 12px;
  }

  .legacy-years-window {
    overflow: visible;
  }

  .legacy-track-line,
  .legacy-year-step::after {
    display: none;
  }

  .legacy-year-step {
    flex: 0 0 auto;
    min-height: auto;
  }

  .legacy-year-step span {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
  }

  .legacy-timeline-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.news-slider-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: #050505;
  color: #fff;
  overflow: hidden;
  padding-bottom: clamp(240px, 24vw, 340px);
}

.news-slider-stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
  gap: clamp(26px, 3.2vw, 44px);
  /* padding: clamp(36px, 4.5vw, 64px) clamp(28px, 5vw, 72px) clamp(54px, 5vw, 74px); */
  padding: 80px 50px;
  background: #fff;
}

.news-slider-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 92px);
  width: 100%;
}

.news-slider-intro > div {
  max-width: 860px;
}

.news-slider-intro p {
  display: none;
}

.news-slider-intro h2 {
  margin: 0 0 16px;
  color: #000;
  font-size: clamp(3rem, 5vw, 2.8rem);
  line-height: 1.06;
  font-weight: normal;
}

.news-slider-intro h2::first-line {
  color: #000;
}

.news-slider-intro span {
  display: block;
  max-width: 760px;
  color: #000;
  /* font-size: clamp(1rem, 1.35vw, 1.35rem); */
  line-height: 1.55;
}

.news-slider-viewport {
  width: 100%;
  overflow: hidden;
  align-self: start;
}

.news-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  padding: 6px 0 12px;
}

.news-slide-card {
  flex: 0 0 calc((100vw - (clamp(28px, 5vw, 72px) * 2) - 48px) / 3);
  min-width: 210px;
  max-width: none;
  height: 400px;
  display: grid;
  grid-template-rows: 1fr;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: #171717;
  color: #fff;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.news-slide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.26) 42%, #543c2a 100%), linear-gradient(135deg, rgba(244, 180, 101, 0.08), rgba(153, 11, 11, 0.18));
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.news-slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.18) 42%, rgba(0,0,0,0.88) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.news-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  grid-row: 1 / -1;
  grid-column: 1;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.news-slide-card:nth-child(3) img {
  object-fit: contain;
  background: #111;
}

.news-slide-body {
  position: relative;
  z-index: 3;
  grid-row: 1;
  grid-column: 1;
  align-self: end;
  padding: 0 34px 104px;
  background: transparent;
  transition: padding 0.28s ease, transform 0.28s ease;
}

.news-slide-body h3 {
  margin: 0 0 12px;
  color: lightgray;
  font-size: clamp(1.15rem, 1.35vw, 1.55rem);
  line-height: 1.15;
  font-weight: 600;
  text-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

.news-slide-body p {
  margin: 0;
  color: lightgray;
  font-size: 0.98rem;
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
}

.news-slide-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 30px;
  margin: 0;
  min-height: 42px;
  min-width: 132px;
  padding: 10px 16px;
  border: 1px solid rgba(244,180,101,0.62);
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #f4b465;
  font-weight: 700;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.news-slide-card:hover,
.news-slide-card:focus-within {
  transform: translateY(-10px);
  /* box-shadow: 0 28px 58px rgba(0,0,0,0.38); */
}

.news-slide-card:hover::after,
.news-slide-card:focus-within::after {
  opacity: 1;
}

.news-slide-card:hover img,
.news-slide-card:focus-within img {
  transform: scale(1.08);
  filter: brightness(0.62) saturate(1.08);
}

.news-slide-card:hover .news-slide-body,
.news-slide-card:focus-within .news-slide-body {
  transform: translateY(-24px);
}

.news-slide-card:hover .news-slide-body p,
.news-slide-card:focus-within .news-slide-body p {
  max-height: 96px;
  opacity: 1;
  transform: translateY(0);
}

.news-slide-card:hover > a,
.news-slide-card:focus-within > a {
  opacity: 1;
  transform: translateY(0);
}

.news-slide-card > a::after {
  content: "\f061";
  margin-left: auto;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.84rem;
  transform: translateX(-6px);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.news-slide-card:hover > a::after,
.news-slide-card:focus-within > a::after {
  opacity: 1;
  transform: translateX(0);
}

.news-explore-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 150px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 7px;
  background: #c9a743;
  color: #fff;
  font-weight: 700;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  border: 1px solid #000 !important;
  color: #000 !important;
}
.news-explore-more:hover {
  background: #000 !important;
  color: #c9a743 !important;
}
.news-slider-section.news-complete .news-explore-more {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

@media (max-width: 980px) {
  .news-slider-stage {
    align-content: center;
  }

  .news-slider-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-slide-card {
    flex-basis: min(420px, 78vw);
    min-height: 460px;
  }
}

@media (max-width: 640px) {
  .news-slider-stage {
    min-height: auto;
    padding: 64px 20px;
  }

  .news-slider-viewport {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .news-slider-track {
    transform: none !important;
    gap: 18px;
  }

  .news-slide-card {
    min-height: 420px;
  }

  .news-slide-body {
    padding: 0 24px 96px;
  }

  .news-slide-card > a {
    left: 24px;
    bottom: 24px;
  }
}

.site-footer {
  position: relative;
  z-index: 30;
  margin-top: clamp(-340px, -24vw, -240px);
  background: #571615 !important;
  color: #fff;
  overflow: hidden;
  /* border-radius: 34px 34px 0 0; */
  border-top: 1px solid #ffffff3b;
  /* box-shadow: 0 -42px 90px rgba(0,0,0,0.72); */
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

.footer-utility {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 0vw, 80px);
  align-items: start;
  /* padding: 28px clamp(28px, 5vw, 72px) 36px; */
  padding: 40px 50px;
  /* background: #bba052; */
  color: lightgray;
      border-bottom: 1px solid #ffffff3b;
}

.footer-subscribe label,
.footer-experience p,
.footer-apps p {
  display: block;
  margin: 0 0 18px;
  color:  lightgray;
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.4;
  font-weight: normal;
}

.footer-subscribe > div {
  display: flex;
  max-width: 520px;
  overflow: hidden;
  border-radius: 6px;
  background:  lightgray;
}

.footer-subscribe input {
  width: 100%;
  min-height: 48px;
  border: 0;
  padding: 0 16px;
  color: #111;
  font: inherit;
  outline: 0;
}

.footer-subscribe input::placeholder {
  color: rgba(0,0,0,0.32);
}

.footer-subscribe button {
  min-width: 102px;
  border: 3px solid #fff;
  border-radius: 6px;
  background: #c9a743;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.footer-experience {
  text-align: center;
}

.footer-experience > div {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.footer-experience button {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  color:  lightgray;
  cursor: pointer;
  font-size: 1.75rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-experience button:hover,
.footer-experience button:focus-visible {
  background: #fff;
  color: #bba052;
  transform: translateY(-2px);
}

.footer-apps {
  text-align: center;
}

.footer-apps > div {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.footer-apps a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 138px;
  height: 42px;
  padding: 5px 10px;
  border-radius: 5px;
  background: #030303;
  color: #fff;
  text-align: left;
}

.footer-apps i {
  font-size: 1.65rem;
}

.footer-apps span {
  display: grid;
  line-height: 1.05;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.footer-apps small {
  font-size: 0.5rem;
  font-weight: 800;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) repeat(4, minmax(150px, 1fr));
  column-gap: clamp(52px, 6vw, 110px);
  /* row-gap: clamp(36px, 5vw, 72px); */
  align-items: start;
  /* padding: clamp(54px, 7vw, 78px) clamp(28px, 8vw, 130px) 28px; */
  padding: 60px 50px 30px 50px;
}

.footer-links {
  display: contents;
}

.footer-links > div {
  min-width: 0;
  padding-left: 0;
}

.footer-links > div:nth-child(1) {
  grid-column: 2;
}

.footer-links > div:nth-child(2) {
  grid-column: 3;
}

.footer-links > div:nth-child(3) {
  grid-column: 4;
}

.footer-links > div:nth-child(4) {
  grid-column: 5;
}

.footer-links h2 {
  margin: 0 0 16px;
  color: lightgray;
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: normal;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  color: lightgray;
  font-weight: normal;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #c9a743;
  transform: translateX(3px);
}

.footer-brand-row {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  min-width: 0;
  margin-bottom: 0;
}

.footer-logo img {
  width: min(240px, 100%);
  height: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social strong {
  margin-right: 4px;
  color: lightgray;
  font-weight: normal;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: #990b0b;
  background: #990b0b;
  color: #fff;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  color: lightgray;
  font-weight: normal;
  line-height: 1.45;
}

.footer-contact i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: lightgray;
  font-size: 1.55rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(20px, 3vw, 34px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-bottom p {
  margin: 0;
  font-weight: normal;
  color: lightgray;
}

@media (max-width: 980px) {
  .footer-utility {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-row,
  .footer-links > div:nth-child(1),
  .footer-links > div:nth-child(2),
  .footer-links > div:nth-child(3),
  .footer-links > div:nth-child(4) {
    grid-column: auto;
  }

  .footer-experience,
  .footer-apps {
    text-align: left;
  }

  .footer-experience > div,
  .footer-apps > div,
  .footer-social,
  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-utility {
    padding: 28px 20px 34px;
  }

  .footer-main {
    padding: 46px 20px 26px;
  }

  .footer-subscribe > div,
  .footer-apps > div,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-subscribe button {
    min-height: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .c-header {
    padding: 20px 24px;
  }

  .c-header.scrolled {
    padding: 20px 24px;
  }

  .nav_menu {
    display: none; /* hide on mobile, show burger if needed */
  }

  .header_nav {
    gap: 16px;
  }

  .c_inner {
    padding: 0 24px;
  }

  .c_bottom {
    left: 24px;
    bottom: 32px;
  }

  .c_vert {
    display: none;
  }

  .content_title {
    font-size: clamp(2.4rem, 9vw, 4rem);
  }

  .feature-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .highlight,
  .accent {
    padding: 56px 24px;
  }
}

@media (max-width: 560px) {
  .account-grid {
    grid-template-columns: 1fr;
  }

  .c-header {
    padding: 16px 20px;
  }

  .content_title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

.steps-button,
.bottom_scroll,
.bankak-read-more,
.bankak-reveal-button,
.finance-card-button,
.legacy-timeline-button,
.news-explore-more,
.read-more,
.button.primary {
      font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
gap: 15px;
    min-width: 45px;
    min-height: 35px;
    padding: 10px 20px;
  border: 1px solid #d4b14b;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: #d4b14b;
  box-shadow: none;
  font-weight: normal;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.steps-button::after,
.bottom_scroll::after,
.bankak-read-more::after,
.bankak-reveal-button::after,
.legacy-timeline-button::after,
.news-explore-more::after,
.read-more::after,
.button.primary::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.bottom_scroll::before {
  display: none;
}

.finance-card-button i {
  color: currentColor;
  transition: transform 0.25s ease;
}

.steps-button:hover,
.steps-button:focus-visible,
.bottom_scroll:hover,
.bottom_scroll:focus-visible,
.bankak-read-more:hover,
.bankak-read-more:focus-visible,
.bankak-reveal-button:hover,
.bankak-reveal-button:focus-visible,
.finance-card-button:hover,
.finance-card-button:focus-visible,
.legacy-timeline-button:hover,
.legacy-timeline-button:focus-visible,
.news-explore-more:hover,
.news-explore-more:focus-visible,
.read-more:hover,
.read-more:focus-visible,
.button.primary:hover,
.button.primary:focus-visible {
  background: #c9a743;
  color: #111;
  border-color: #c9a743;
  transform: translateY(-2px);
}

.steps-button:hover::after,
.steps-button:focus-visible::after,
.bottom_scroll:hover::after,
.bottom_scroll:focus-visible::after,
.bankak-read-more:hover::after,
.bankak-read-more:focus-visible::after,
.bankak-reveal-button:hover::after,
.bankak-reveal-button:focus-visible::after,
.legacy-timeline-button:hover::after,
.legacy-timeline-button:focus-visible::after,
.news-explore-more:hover::after,
.news-explore-more:focus-visible::after,
.read-more:hover::after,
.read-more:focus-visible::after,
.button.primary:hover::after,
.button.primary:focus-visible::after,
.finance-card-button:hover i,
.finance-card-button:focus-visible i {
  transform: translateX(6px);
}
