/* ══════════════════════════════════════════
   OBUMU · Brand-aligned design
   Primary  : Blue  #1a6fe0 / #1255b8
   Accent   : Orange #f07c00 / #e06a00
   Third    : White  #ffffff
   ══════════════════════════════════════════ */
:root {
  /* Blues */
  --blue: #1a6fe0;
  --blue-deep: #1255b8;
  --blue-dark: #0d3d8a;
  --blue-ink: #071f4a;
  --blue-tint: #e8f1fd;
  --blue-soft: #c8ddf9;
  --blue-mid: #2980e8;

  /* Oranges */
  --orange: #f07c00;
  --orange-deep: #c96500;
  --orange-light: #fff3e0;
  --orange-mid: #e87000;
  --orange-glow: rgba(240, 124, 0, 0.25);

  /* Neutrals */
  --white: #ffffff;
  --ink: #071f4a;
  --text-body: #1a2e50;
  --text-mid: #3d567a;
  --text-dim: #6b88aa;
  --surface: #f4f7fd;

  /* Font */
  --font: "Poppins", system-ui, sans-serif;
  --font-display: "Baloo 2", "Poppins", system-ui, sans-serif;

  /* Radii */
  --r: 10px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Ease */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Glass tokens — brighter, more transparent frosted-glass system */
  --glass-bg: rgba(255, 255, 255, 0.42);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-shadow: 0 8px 32px rgba(13, 61, 138, 0.13);
  --glass-dark-bg: rgba(7, 31, 74, 0.34);
  --glass-dark-border: rgba(255, 255, 255, 0.16);
  --glass-blur: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  /* Slight global zoom-out so text/images read comfortably at 100% browser zoom */
  font-size: 93.5%;
}
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: linear-gradient(180deg, #f7f9ff 0%, #fdfdfd 50%, #ffffff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Simple Obumu page loader */
.obumu-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(5px) saturate(0.9);
  backdrop-filter: blur(5px) saturate(0.9);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.obumu-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.obumu-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid rgba(26, 111, 224, 0.18);
  border-top-color: var(--blue);
  border-right-color: var(--orange);
  border-radius: 50%;
  filter: drop-shadow(0 6px 12px rgba(7, 31, 74, 0.12));
  animation: obumu-spinner 0.75s linear infinite;
}
@keyframes obumu-spinner {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .obumu-spinner {
    animation-duration: 1.5s;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 90%;
  }
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.wrap-sm {
  width: min(740px, calc(100% - 48px));
  margin: 0 auto;
}
.wrap-xs {
  width: min(580px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-sm em {
  font-style: normal;
  color: var(--blue);
  font-weight: 700;
}
.lead {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.78;
  max-width: 520px;
  font-weight: 400;
}
.hi-orange {
  color: var(--orange-deep);
  font-weight: 700;
}
.hi-blue {
  color: var(--blue);
  font-weight: 700;
}
.hi-green {
  color: #1a9e52;
  font-weight: 700;
}

/* ── GLASS ──
   A brighter, more see-through frosted system: higher blur + saturation
   so glass reads as "glass" (you can tell what's behind it) rather than
   a semi-opaque card. Used for hero widgets, dashboards, and buttons. */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--glass-shadow);
}
.glass-card-dark {
  background: var(--glass-dark-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border: 1px solid var(--glass-dark-border);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}
.glass-btn {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
  font-family: var(--font);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: none;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  box-shadow: 0 8px 28px var(--orange-glow);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: 0 8px 28px rgba(26, 111, 224, 0.35);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.35);
  color: var(--blue-dark);
  border-color: rgba(13, 61, 138, 0.18);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.55);
}
.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-lg {
  padding: 17px 34px;
  font-size: 0.98rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── NAV ── */
.site-nav.scrolled {
  background: rgba(7, 31, 74, 0.28);
  box-shadow: 0 24px 60px rgba(4, 16, 38, 0.28);
}
.nav-link {
  color: rgba(255, 255, 255, 0.78);
}
.nav-link:hover,
.nav-link.on {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.nav-cta .btn-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.nav-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.nav-burger {
  border-color: rgba(255, 255, 255, 0.24);
}
.nav-burger span {
  background: #fff;
}
.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 1;
}
.nav-logo img {
  height: 72px;
  width: auto;
}
.nav-logo {
  margin-right: 28px;
}
.nav-links {
  display: flex;
  gap: 14px;
  margin: 0 auto;
}
.nav-link {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dim);
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.nav-link:hover,
.nav-link.on {
  color: var(--blue-dark);
  background: rgba(26, 111, 224, 0.11);
  transform: translateY(-1px);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn-outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--blue-dark);
  border-color: rgba(26, 111, 224, 0.18);
}
.nav-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--blue);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid rgba(26, 111, 224, 0.2);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0 9px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 104px 0 0;
  background: rgba(7, 31, 74, 0.96);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu .nav-link {
  color: #fff;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu .nav-link {
  padding: 15px 16px;
  font-size: 1rem;
  border-radius: var(--r);
  color: #fff;
}
.mobile-menu .btn {
  margin-top: 12px;
}

/* ── HERO ── */
.hero {
  min-height: min(100vh, 920px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Per-page hero photography.
   Each page sets --hero-img inline so every hero has its own distinct
   background image. A gradient is layered in the same declaration (not
   via opacity) so the image itself stays vivid and readable while text
   still has enough contrast to sit on top of it. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(4, 16, 38, 0.88) 0%,
      rgba(6, 24, 56, 0.74) 32%,
      rgba(9, 34, 74, 0.5) 58%,
      rgba(12, 44, 92, 0.32) 78%
    ),
    var(--hero-img, url("/assets/images/events/togetherness.png")) center 30% /
      cover no-repeat;
  animation: heroBgMove 26s ease-in-out infinite alternate;
}
.home-page .hero-main {
  padding-top: 132px;
}
.home-page .hero::before {
  background:
    linear-gradient(
      100deg,
      rgba(4, 16, 38, 0.88) 0%,
      rgba(6, 24, 56, 0.74) 32%,
      rgba(9, 34, 74, 0.5) 58%,
      rgba(12, 44, 92, 0.32) 78%
    ),
    var(--hero-img) center 30% / cover no-repeat;
  animation: heroBgMove 26s ease-in-out infinite alternate;
}
.home-page .hero {
  min-height: min(100vh, 920px);
}
.home-page .hero-main {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  padding: 132px 0 64px;
}
.home-page .hero h1 {
  max-width: none;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 1.05;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.home-page .hero-sub {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.85;
}
.home-page .hero-sub strong {
  color: #fff;
}
.home-page .hero-cta .btn {
  min-width: 0;
  padding-inline: 34px;
}
.home-page .hero-accent-bar {
  display: block;
}
.home-page .hero-visual-wrap {
  width: auto;
  margin-left: 0;
}
.home-page .hero-img-main {
  height: 400px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(13, 61, 138, 0.15);
}
.home-page .event-slider-track {
  position: static;
  display: flex;
  transform: translateX(0);
}
.home-page .event-slide {
  position: relative;
  inset: auto;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: none;
}
.home-page .event-slide-caption {
  display: block;
  padding: 22px 24px;
}
.home-page .event-slide-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 31, 74, 0) 35%,
    rgba(7, 31, 74, 0.85) 100%
  );
}
.home-page .event-slide-title {
  font-size: 1.2rem;
}
.home-page .event-slide-sub {
  max-width: 340px;
  font-size: 0.8rem;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .home-page .hero-main {
    padding-top: 108px;
    padding-bottom: 44px;
    gap: 38px;
  }
  .home-page .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }
  .home-page .hero-img-main {
    height: 320px;
    border-radius: 20px;
  }
}
@media (min-width: 981px) {
  .home-page .site-nav {
    top: 18px;
    background: rgba(7, 31, 74, 0.28);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 56px rgba(4, 16, 38, 0.24);
  }
  .home-page .site-nav .nav-inner {
    height: 72px;
  }
  .home-page .site-nav .nav-logo img {
    height: 72px;
  }
  .home-page .site-nav .nav-link {
    padding: 10px 18px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
  }
  .home-page .site-nav .nav-link:hover,
  .home-page .site-nav .nav-link.on {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }
  .home-page .site-nav .nav-cta .btn-outline {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .home-page .site-nav .nav-cta .btn {
    padding: 10px 20px !important;
    font-size: 0.88rem !important;
  }
}
.home-page .hero-pill {
  display: none;
}
/* Single-column ("solo") heroes have centred text, so the fade needs to
   sit behind the centre of the frame instead of the left edge. */
.hero-solo::before {
  background:
    radial-gradient(
      ellipse 75% 100% at 50% 40%,
      rgba(4, 16, 38, 0.86) 0%,
      rgba(6, 24, 56, 0.72) 46%,
      rgba(9, 34, 74, 0.46) 72%,
      rgba(12, 44, 92, 0.26) 90%
    ),
    var(--hero-img, url("/assets/images/events/togetherness.png")) center 30% /
      cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  top: 4%;
  right: -8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(26, 111, 224, 0.16),
    transparent 55%
  );
  pointer-events: none;
  filter: blur(2px);
}
@keyframes heroBgMove {
  0% {
    background-position: center 22%;
  }
  50% {
    background-position: center 26%;
  }
  100% {
    background-position: center 20%;
  }
}
.hero-blob {
  position: absolute;
  bottom: -90px;
  left: -130px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 124, 0, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 90px 0 64px;
  position: relative;
  z-index: 1;
}
.hero-left {
  padding-right: 24px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(6, 20, 46, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 124, 0, 0.25);
  animation: ping 2.5s ease-in-out infinite;
}
@keyframes ping {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(240, 124, 0, 0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(240, 124, 0, 0.06);
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
}
.hero h1 em,
.hero h1 span {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 34px;
}
.hero-sub strong {
  color: #fff;
  font-weight: 700;
}
.hero-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-cta-aside {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.hero-cta-aside svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
/* Ghost outline button reads as light-on-blue elsewhere; on the photo
   hero it needs to be a translucent white "chip" instead. */
.hero .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}

/* Category chip row — small outlined pill buttons under the hero CTA,
   e.g. "Mobile Money / Bank Transfer / Cards" */
.hero-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.hero-chip svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  flex-shrink: 0;
}
.hero-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  transform: translateY(-2px);
}

/* HERO VISUAL */
.hero-right {
  position: relative;
}
.hero-visual-wrap {
  position: relative;
  z-index: 1;
}
.hero-img-main {
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  position: relative;
  box-shadow: 0 24px 60px rgba(13, 61, 138, 0.15);
}

/* ── EVENTS SLIDER (hero) ── */
.event-slider {
  background: var(--blue-ink);
}
.event-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.event-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.event-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, #0d3d8a 0%, #071f4a 100%);
}
.event-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 31, 74, 0) 35%,
    rgba(7, 31, 74, 0.85) 100%
  );
  pointer-events: none;
}
.event-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px 22px;
  z-index: 1;
}
.event-slide-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.event-slide-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.event-slide-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  max-width: 340px;
}
.event-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(7, 31, 74, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s,
    transform 0.2s;
}
.event-slider-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.event-slider-arrow svg {
  width: 16px;
  height: 16px;
}
.event-slider-arrow.prev {
  left: 14px;
}
.event-slider-arrow.next {
  right: 14px;
}
.event-slider-dots {
  position: absolute;
  bottom: 14px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.event-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    width 0.2s;
}
.event-dot.is-active {
  background: var(--orange);
  width: 20px;
  border-radius: 4px;
}
@media (max-width: 720px) {
  .event-slide-title {
    font-size: 1.05rem;
  }
  .event-slider-arrow {
    width: 32px;
    height: 32px;
  }
}

.hero-accent-bar {
  position: absolute;
  top: 32px;
  left: -16px;
  width: 8px;
  height: 120px;
  background: var(--orange);
  border-radius: 4px;
  opacity: 0.9;
  z-index: 2;
}
.hero-stat-card {
  position: absolute;
  top: -20px;
  left: -32px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  z-index: 3;
}
.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(26, 111, 224, 0.18);
}
.hero-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  stroke-width: 1.6;
  fill: none;
}
.hero-stat-card-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hero-stat-card-text span {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
}
.hero-badge-top {
  position: absolute;
  top: -18px;
  right: -20px;
  background: var(--orange);
  border-radius: 14px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 12px 32px var(--orange-glow);
}
.hero-badge-top-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-badge-top-lbl {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-trust {
  position: absolute;
  bottom: -72px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
}
.hero-trust-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hero-trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(13, 61, 138, 0.15);
}
.pay-pill {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  border: 1px solid rgba(13, 61, 138, 0.15);
  color: var(--text-mid);
  background: var(--white);
}
.pay-pill.mtn {
  background: #ffd700;
  border-color: #ffd700;
  color: #000;
}
.pay-pill.airtel {
  background: #e50000;
  border-color: #e50000;
  color: #fff;
}

/* HERO STATS BAR */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(
    90deg,
    var(--blue-dark) 0%,
    var(--blue-deep) 100%
  );
  position: relative;
  z-index: 2;
}
.hstat {
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hstat:last-child {
  border-right: none;
}
.hstat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hstat-num.orange {
  color: var(--orange);
}
.hstat-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── APP MOCKUP: hero ── */
.app-mockup-hero {
  background: linear-gradient(135deg, #071f4a 0%, #0d3d8a 100%);
  display: flex;
  gap: 16px;
  padding: 24px;
  align-items: flex-end;
}
.mockup-phone {
  width: 160px;
  flex-shrink: 0;
  background: #050f2a;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.mockup-phone-notch {
  height: 16px;
  background: #000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-phone-notch::after {
  content: "";
  width: 40px;
  height: 8px;
  background: #111;
  border-radius: 4px;
}
.mockup-phone-screen {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-app-name {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}
.mockup-notif {
  font-size: 0.75rem;
}
.mockup-screen-event {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
}
.mockup-event-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.mockup-event-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}
.mockup-event-meta {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.mockup-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mockup-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.mockup-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 1.4s var(--ease);
}
.mockup-progress-nums {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
}
.mockup-stat-row {
  display: flex;
  justify-content: space-between;
}
.mockup-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.mockup-stat-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
}
.mockup-stat-val.hi-orange {
  color: var(--orange);
}
.mockup-stat-val.hi-green {
  color: #4ade80;
}
.mockup-stat-lbl {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}
.mockup-btn-row {
  display: flex;
  gap: 6px;
}
.mockup-action-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 0;
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  cursor: pointer;
}
.mockup-action-btn.orange {
  background: var(--orange);
  color: var(--white);
}
.mockup-tablet {
  flex: 1;
  background: #050f2a;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 14px;
}
.mockup-tab-header {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-tab-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 6px;
  font-size: 0.62rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mockup-tab-row span {
  color: rgba(255, 255, 255, 0.6);
}
.mockup-tab-row span.hi-orange {
  color: var(--orange);
  font-weight: 700;
}
.mockup-tab-row span.hi-green {
  color: #4ade80;
  font-weight: 700;
}
.mockup-tab-row.dim span {
  color: rgba(255, 255, 255, 0.3);
}
.mockup-tab-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.mockup-chart-bar {
  flex: 1;
  background: rgba(26, 111, 224, 0.5);
  border-radius: 3px 3px 0 0;
  min-width: 0;
}
.mockup-chart-bar.orange {
  background: var(--orange);
  opacity: 0.85;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 72px 0;
  background: var(--white);
}
.how-header {
  text-align: center;
  margin-bottom: 44px;
}
.how-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-col {
  background: var(--white);
  border: 1px solid rgba(26, 111, 224, 0.12);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    box-shadow 0.25s;
}
.how-col.vis {
  opacity: 1;
  transform: none;
}
.how-col:nth-child(2) {
  transition-delay: 0.1s;
}
.how-col:nth-child(3) {
  transition-delay: 0.2s;
}
.how-col:hover {
  box-shadow: 0 20px 56px rgba(13, 61, 138, 0.1);
  transform: translateY(-4px);
}
.how-col-num {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(26, 111, 224, 0.07);
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: -0.04em;
  font-style: normal;
}
.how-col-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-tint);
  border: 1px solid rgba(26, 111, 224, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.how-col-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how-col h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.how-col p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.74;
  margin-bottom: 18px;
}
.how-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-col-list li {
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.how-col-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Dashboard preview */
.how-dashboard {
  padding: 36px 40px;
  margin-top: 44px;
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue-ink) 100%
  );
}
.how-db-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.how-db-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.how-db-badge svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.5);
}
.how-db-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.how-db-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-db-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.how-db-stat-lbl {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.how-db-stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.how-db-stat-val.orange {
  color: var(--orange);
}
.how-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.how-bar-lbl {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.how-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.how-bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
}
.how-ui-badge {
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
}
.how-ui-badge.success {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.how-ui-badge.pending {
  background: rgba(240, 124, 0, 0.15);
  color: var(--orange);
  border: 1px solid rgba(240, 124, 0, 0.25);
}

/* ── INTERCEPT ── */
.intercept {
  background: linear-gradient(
    135deg,
    var(--blue-dark) 0%,
    var(--blue-ink) 100%
  );
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.intercept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(240, 124, 0, 0.08) 0%,
    transparent 60%
  );
}
.intercept-inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.intercept h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.intercept h2 em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
}
.intercept-pull {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.78;
  margin-bottom: 36px;
}

/* ── ROLES ── */
.roles-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, var(--white) 100%);
}
.roles-header {
  text-align: center;
  margin-bottom: 44px;
}
.roles-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.role-col {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(26, 111, 224, 0.12);
  background: var(--white);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    box-shadow 0.25s;
}
.role-col.vis {
  opacity: 1;
  transform: none;
}
.role-col:nth-child(2) {
  transition-delay: 0.1s;
}
.role-col:nth-child(3) {
  transition-delay: 0.2s;
}
.role-col:hover {
  box-shadow: 0 20px 56px rgba(13, 61, 138, 0.1);
}
.featured-role {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(26, 111, 224, 0.12);
}
.role-col-top {
  padding: 32px 28px 24px;
  position: relative;
}
.organiser-top {
  background: linear-gradient(
    135deg,
    rgba(240, 124, 0, 0.08) 0%,
    rgba(240, 124, 0, 0.02) 100%
  );
}
.contributor-top {
  background: linear-gradient(
    135deg,
    rgba(26, 111, 224, 0.1) 0%,
    rgba(26, 111, 224, 0.02) 100%
  );
}
.pledger-top {
  background: linear-gradient(
    135deg,
    rgba(240, 124, 0, 0.06) 0%,
    rgba(26, 111, 224, 0.06) 100%
  );
}
.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.role-badge.organiser {
  background: rgba(240, 124, 0, 0.12);
  color: var(--orange-deep);
  border: 1px solid rgba(240, 124, 0, 0.28);
}
.role-badge.contributor {
  background: var(--blue-tint);
  color: var(--blue-deep);
  border: 1px solid rgba(26, 111, 224, 0.22);
}
.role-badge.pledger {
  background: rgba(240, 124, 0, 0.07);
  color: var(--orange-deep);
  border: 1px solid rgba(240, 124, 0, 0.18);
}
.role-col-top h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.role-col-top p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.74;
}
.role-steps {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
}
.role-step {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 111, 224, 0.06);
  align-items: flex-start;
}
.role-step:last-child {
  border-bottom: none;
}
.role-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.role-step-dot.orange {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(240, 124, 0, 0.18);
}
.role-step-dot.blue {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 111, 224, 0.15);
}
.role-step-dot.blue-orange {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 0 0 3px rgba(26, 111, 224, 0.12);
}
.role-step strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.role-step p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.role-mockup {
  margin: 20px 20px 24px;
  padding: 20px;
}
.role-mockup-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.role-mockup-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.role-mockup-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  stroke-linecap: round;
  fill: none;
}
.orange-bg {
  background: rgba(240, 124, 0, 0.12);
  border: 1px solid rgba(240, 124, 0, 0.25);
}
.orange-bg svg {
  stroke: var(--orange-deep);
}
.blue-bg {
  background: var(--blue-tint);
  border: 1px solid rgba(26, 111, 224, 0.2);
}
.blue-bg svg {
  stroke: var(--blue);
}
.mix-bg {
  background: linear-gradient(
    135deg,
    var(--blue-tint),
    rgba(240, 124, 0, 0.08)
  );
  border: 1px solid rgba(26, 111, 224, 0.15);
}
.mix-bg svg {
  stroke: var(--blue);
}
.role-mockup-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.role-mockup-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
}
.role-mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(26, 111, 224, 0.05);
  font-size: 0.8rem;
}
.role-mockup-row span {
  color: var(--text-mid);
}
.role-mockup-row strong {
  color: var(--ink);
  font-weight: 600;
}
.role-mockup-row:last-of-type {
  border-bottom: none;
}
.role-mockup .how-bar-lbl {
  color: var(--text-mid);
}
.role-mockup .how-bar-track {
  background: rgba(26, 111, 224, 0.08);
}
.role-mockup .how-bar-fill {
  background: var(--orange);
}

/* ── FAQ ── */
.faq-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, var(--white) 100%);
}
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(26, 111, 224, 0.1);
  border-left: 4px solid transparent;
  border-radius: var(--r-lg);
  padding: 4px 28px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    border-left-color 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(26, 111, 224, 0.18);
  border-left-color: var(--orange);
  box-shadow: 0 14px 36px rgba(13, 61, 138, 0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-item:hover summary {
  color: var(--blue-dark);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition:
    transform 0.3s var(--ease),
    color 0.2s ease;
}
.faq-item[open] summary svg {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq-item p {
  padding: 0 0 26px;
  margin: 0;
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.85;
}

/* ── APP SECTION ── */
.app-section {
  padding: 72px 0;
  background: var(--white);
  overflow: hidden;
}
.app-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.app-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.app-list-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-tint);
  border: 1px solid rgba(26, 111, 224, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.app-list-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}
.app-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.app-list p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
/* webapp mockup */
.app-mockups {
  position: relative;
  height: 440px;
}
.webapp-mockup {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  overflow: hidden;
}
.webapp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(26, 111, 224, 0.06);
}
.webapp-dots {
  display: flex;
  gap: 5px;
}
.webapp-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(26, 111, 224, 0.12);
}
.webapp-dots span:first-child {
  background: #ff5f57;
}
.webapp-dots span:nth-child(2) {
  background: #febc2e;
}
.webapp-dots span:nth-child(3) {
  background: #28c840;
}
.webapp-url {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 500;
  background: rgba(26, 111, 224, 0.05);
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
  text-align: center;
}
.webapp-content {
  display: flex;
  height: 290px;
}
.webapp-sidebar {
  width: 120px;
  padding: 12px 0;
  border-right: 1px solid rgba(26, 111, 224, 0.06);
  background: rgba(26, 111, 224, 0.02);
  flex-shrink: 0;
}
.webapp-nav-item {
  padding: 8px 14px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
}
.webapp-nav-item.active {
  color: var(--blue-dark);
  background: var(--blue-tint);
  border-left: 2px solid var(--blue);
}
.webapp-main {
  flex: 1;
  padding: 16px;
  overflow: hidden;
}
.webapp-main-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.webapp-stats-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.webapp-stat-card {
  flex: 1;
  background: var(--blue-tint);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid rgba(26, 111, 224, 0.1);
}
.webapp-stat-val {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.webapp-stat-val.orange {
  color: var(--orange-deep);
}
.webapp-stat-val.blue {
  color: var(--blue);
}
.webapp-stat-lbl {
  font-size: 0.58rem;
  color: var(--text-dim);
  font-weight: 500;
}
.webapp-table-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid rgba(26, 111, 224, 0.08);
  margin-bottom: 4px;
}
.webapp-table-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  font-size: 0.68rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(26, 111, 224, 0.04);
  color: var(--text-body);
}
.webapp-table-row.dim {
  color: var(--text-dim);
}
.badge-active {
  background: var(--blue-tint);
  color: var(--blue-deep);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
}
.badge-done {
  background: rgba(240, 124, 0, 0.12);
  color: var(--orange-deep);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
}
/* mobile float */
.mobile-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 190px;
  background: linear-gradient(135deg, #071f4a, #0d3d8a) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(13, 61, 138, 0.3) !important;
}
.mobile-float-notch {
  height: 14px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-float-notch::after {
  content: "";
  width: 36px;
  height: 6px;
  background: #111;
  border-radius: 3px;
}
.mobile-float-screen {
  padding: 12px 14px 16px;
}
.mobile-float-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.mobile-float-amount {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
}
.mobile-float-sub {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}
.mobile-float-btn {
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
}

/* ── FEATURES ── */
.features-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, var(--white) 80%);
}
.feat-header {
  text-align: center;
  margin-bottom: 56px;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
/* Used where a grid may hold a different item count than 3
   (e.g. the 4-up "Our values" grid) so cards stay evenly spaced. */
.feat-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

/* ── PAYMENT PARTNERS STRIP ── */
.partners-strip {
  padding: 40px 0 64px;
  text-align: center;
}
.partners-strip-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.partners-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  opacity: 0.75;
}
.partners-strip-logos img {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: grayscale(35%);
}
.feat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(247, 249, 255, 0.92)
  );
  border-radius: 32px;
  padding: 34px 30px 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 50px rgba(13, 61, 138, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    box-shadow 0.25s,
    border-color 0.2s;
}
.feat-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(26, 111, 224, 0.12),
    transparent 60%
  );
  filter: blur(2px);
  pointer-events: none;
}
.feat-card::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: -10px;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(240, 124, 0, 0.12),
    transparent 58%
  );
  pointer-events: none;
}
.feat-card.vis {
  opacity: 1;
  transform: none;
}
.feat-card:nth-child(2) {
  transition-delay: 0.08s;
}
.feat-card:nth-child(3) {
  transition-delay: 0.16s;
}
.feat-card:nth-child(4) {
  transition-delay: 0.24s;
}
.feat-card:nth-child(5) {
  transition-delay: 0.32s;
}
.feat-card:nth-child(6) {
  transition-delay: 0.4s;
}
.feat-card:hover {
  box-shadow: 0 26px 65px rgba(13, 61, 138, 0.14);
  border-color: rgba(26, 111, 224, 0.24);
  transform: translateY(-4px);
}
.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(26, 111, 224, 0.08);
  border: 1px solid rgba(26, 111, 224, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
}
.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.feat-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 100%;
}

/* ── TESTIMONIALS ── */
.trust-section {
  background: linear-gradient(160deg, #041c35 0%, #081f43 55%, #0d2f61 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(240, 124, 0, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 78% 16%, rgba(26, 111, 224, 0.1), transparent 30%);
  opacity: 0.85;
}
.trust-section .wrap {
  position: relative;
  z-index: 1;
}
.trust-header {
  position: relative;
  z-index: 1;
  margin-bottom: 42px;
}
.trust-heroes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.trust-hero {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  padding: 36px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 32px 90px rgba(2, 16, 42, 0.22);
}
.trust-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(240, 124, 0, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.trust-pillar-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}
.trust-pillar-h {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.stars svg {
  width: 14px;
  height: 14px;
}
.trust-hero-quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 26px;
}
.trust-hero-who {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-hero-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}
.trust-hero-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.trust-hero-loc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
}
.trust-hero-amount {
  margin-left: auto;
  text-align: right;
}
.trust-hero-amount strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--orange);
}
.trust-hero-amount span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.trust-cta {
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 96px 0;
  background: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.testimonial-card {
  padding: 30px 28px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid rgba(26, 111, 224, 0.1);
}
.testimonial-stars {
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-person strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}
.testimonial-person span {
  font-size: 0.78rem;
  color: var(--text-dim);
}
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(140deg, #0b2148 0%, #0b3165 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(240, 124, 0, 0.1),
    transparent 42%
  );
}
.cta-glass {
  position: relative;
  z-index: 1;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cta-h em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
}
.cta-p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── FOOTER ── */
.site-footer {
  background: linear-gradient(180deg, #071a39 0%, #031027 100%);
  position: relative;
  overflow: hidden;
}
.footer-wave {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -1px;
}
.footer-wave svg {
  display: block;
  width: 100%;
}
.footer-main {
  padding: 84px 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 90px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo {
  margin-bottom: 22px;
}
.footer-brand-logo img {
  height: 98px;
  width: auto;
  object-fit: contain;
}
.footer-brand-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.88;
  margin-bottom: 36px;
  max-width: 360px;
}
.footer-brand-desc em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.94);
}
.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.fsocial {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.fsocial:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}
.fsocial svg,
.fsocial img {
  width: 20px;
  height: 20px;
}
.fsocial img {
  object-fit: contain;
}
.footer-payments {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.fpay {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.fpay img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.fcol h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.fcol a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
  transition: color 0.18s;
}
.fcol a:hover {
  color: #ffffff;
}
.footer-bottom {
  padding: 28px 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.18s;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}
.footer-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ftrust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.ftrust-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.footer-orange-line {
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ff9a30);
}

/* ── REVEALS ── */
[data-r] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
[data-r="l"] {
  transform: translateX(-22px);
}
[data-r="r"] {
  transform: translateX(22px);
}
[data-r].vis {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .roles-cols {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .how-db-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .app-section-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .app-mockups {
    height: auto;
    display: flex;
    gap: 20px;
    flex-direction: column;
  }
  .webapp-mockup {
    position: static;
    right: auto;
  }
  .mobile-float {
    position: static;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .how-cols {
    grid-template-columns: 1fr 1fr;
  }
  .feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .hero-main {
    grid-template-columns: 1fr;
    padding: 56px 0 44px;
    gap: 40px;
  }
  .home-page .hero-main {
    padding-top: 124px;
  }
  .hero-left {
    padding-right: 0;
  }
  .hero-img-main {
    height: auto;
    min-height: 300px;
  }
  .event-slider {
    height: 320px;
  }
  .hero-stat-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -36px;
  }
  .hero-trust {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hstat:nth-child(2) {
    border-right: none;
  }
  .hstat:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .trust-heroes {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.6rem;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .feat-card {
    padding: 28px 24px 32px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .how-cols {
    grid-template-columns: 1fr;
  }
  .how-db-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-trust-row {
    justify-content: center;
    flex-wrap: wrap;
  }
  .app-mockup-hero {
    flex-direction: column;
    height: auto;
  }
  .mockup-tablet {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ══════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   Inner-page hero variants, contact form, split sections
   ══════════════════════════════════════════ */

/* ── INNER PAGE HERO (About / How it works) ── */
.hero-inner {
  min-height: auto;
  padding-bottom: 8px;
}
.hero-inner .hero-main {
  padding: 44px 0 64px;
}
.hero-inner .hero-img-main {
  height: 420px;
}

/* ── SOLO HERO (no image: Features / Contact) ── */
.hero-solo .hero-main {
  grid-template-columns: 1fr;
}
.hero-solo .hero-left {
  padding-right: 0;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hero-solo .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.hero-solo .hero-cta {
  justify-content: center;
}

/* ── DOWNLOAD HERO ── */
.download-hero .wrap {
  margin-left: 0;
  margin-right: auto;
  max-width: 1100px;
}
.hero-solo .hero-cta-aside {
  margin: 0 auto;
}
.hero-solo .hero-pill {
  margin-left: auto;
  margin-right: auto;
}

/* ── DOWNLOAD PAGE ── */
.download-section {
  padding: 84px 0 112px;
  background:
    linear-gradient(
      120deg,
      rgba(4, 16, 38, 0.92) 0%,
      rgba(7, 31, 74, 0.85) 45%,
      rgba(13, 61, 138, 0.62) 100%
    ),
    url("/assets/images/download1.png") center / cover no-repeat;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 48px;
}

.download-card {
  background: transparent;
  border: none;
  border-radius: var(--r-xl);
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.download-card-body {
  padding: 0 0 18px 0;
}

.download-card-body h2 {
  margin: 10px 0 0;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: #ffffff;
}

.download-card-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 520px;
}

.download-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.download-stat-card {
  padding: 18px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fbff;
}

.download-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.download-stat-card strong {
  font-size: 1.2rem;
  line-height: 1.1;
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
}

.progress-pill {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress-pill span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.badge-active {
  background: rgba(26, 111, 224, 0.16);
  color: #d7e7ff;
}

.badge-success {
  background: rgba(14, 194, 113, 0.16);
  color: #c5ffe7;
}

.badge-pending {
  background: rgba(255, 171, 0, 0.16);
  color: #fff1b1;
}

.download-card-visual {
  flex: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  width: auto;
  max-width: 280px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(9, 25, 58, 0.18);
  display: block;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.badge-store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.badge-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.badge-store small {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3px;
}

.badge-store strong {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.badge-store img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .download-grid {
    grid-template-columns: 1fr;
  }

  .download-stats-row {
    grid-template-columns: 1fr;
  }

  .download-badges {
    flex-direction: column;
    align-items: center;
  }

  .download-card-visual {
    padding: 0 20px 20px;
  }

  .download-card-body {
    padding: 24px;
  }

  .card-img {
    max-width: 240px;
  }
}

@media (max-width: 720px) {
  .download-card-body {
    padding: 24px;
  }

  .card-img {
    width: 100%;
  }
}

/* ── DOWNLOAD: requirements strip ── */
.req-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 88px;
}
.req-card {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(26, 111, 224, 0.1);
  box-shadow: 0 14px 40px rgba(13, 61, 138, 0.06);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    border-color 0.22s;
}
.req-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 61, 138, 0.1);
  border-color: rgba(26, 111, 224, 0.22);
}
.req-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    rgba(26, 111, 224, 0.14),
    rgba(26, 111, 224, 0.06)
  );
  color: var(--blue);
  border: 1px solid rgba(26, 111, 224, 0.16);
}
.req-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}
.req-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.req-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

/* ── DOWNLOAD: compare table ── */
.compare-section {
  padding: 20px 0 88px;
}
.compare-table {
  margin-top: 40px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(26, 111, 224, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 20px 50px rgba(13, 61, 138, 0.06);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  transition: background 0.2s ease;
}
.compare-row + .compare-row {
  border-top: 1px solid rgba(26, 111, 224, 0.08);
}
.compare-row:not(.head):hover {
  background: rgba(26, 111, 224, 0.04);
}
.compare-row.head {
  background: var(--blue);
}
.compare-row.head .compare-cell {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 24px;
}
.compare-cell {
  padding: 18px 24px;
  font-size: 0.98rem;
  color: var(--text-body);
}
.compare-row:not(.head) .compare-cell:first-child {
  font-weight: 600;
  color: var(--ink);
}
.compare-row:not(.head) .compare-cell:not(:first-child) {
  text-align: center;
}
.compare-yes,
.compare-no {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 194, 113, 0.18);
}
.compare-no {
  box-shadow: 0 4px 12px rgba(107, 136, 170, 0.1);
}
.compare-yes {
  background: rgba(14, 194, 113, 0.16);
  color: #0e9a56;
}
.compare-no {
  background: rgba(107, 136, 170, 0.12);
  color: var(--text-dim);
}
.compare-yes svg,
.compare-no svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}
@media (max-width: 720px) {
  .req-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compare-row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .compare-cell {
    padding: 14px 12px;
    font-size: 0.82rem;
  }
}
@media (max-width: 480px) {
  .req-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PAGE INTRO (small eyebrow header reused site-wide) ── */
.page-eyebrow-wrap {
  text-align: center;
  margin-bottom: 12px;
}

/* ── ABOUT: split text/image section ── */
.about-split {
  padding: 72px 0;
  background: var(--white);
}
.about-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-split-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13, 61, 138, 0.14);
  height: 380px;
}
.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-split-text h2 {
  margin-bottom: 18px;
}
.about-split-text p {
  margin-bottom: 16px;
}
.about-split-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .about-split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-split-img {
    height: 280px;
    order: -1;
  }
}

/* ── ABOUT: impact stats strip ── */
.stats-strip {
  padding: 56px 0;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-deep));
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.stats-strip-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.stats-strip-item:last-child {
  border-right: none;
}
.stats-strip-item strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.stats-strip-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 720px) {
  .stats-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .stats-strip-item {
    border-right: none;
  }
}

/* ── ABOUT: milestones timeline ── */
.milestones-section {
  padding: 88px 0;
  background: var(--surface);
}
.milestones-list {
  max-width: 720px;
  margin: 40px auto 0;
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(26, 111, 224, 0.16);
}
.milestone {
  position: relative;
  padding-bottom: 40px;
}
.milestone:last-child {
  padding-bottom: 0;
}
.milestone-dot {
  position: absolute;
  left: -39px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px var(--orange-light);
}
.milestone-year {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue-deep);
  background: var(--blue-tint);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.milestone-body h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.milestone-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
}

/* ── CONTACT ── */
.contact-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f0f6ff 0%, var(--white) 60%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1px solid rgba(26, 111, 224, 0.1);
  box-shadow: 0 8px 32px rgba(13, 61, 138, 0.08);
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r);
  border: 1.5px solid rgba(26, 111, 224, 0.15);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-body);
  background: var(--white);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 111, 224, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--r);
  background: rgba(26, 158, 82, 0.1);
  border: 1px solid rgba(26, 158, 82, 0.25);
  color: #157a3f;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show {
  display: flex;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  display: flex;
  gap: 14px;
  padding: 22px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid rgba(26, 111, 224, 0.1);
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
}
.contact-info-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-info-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   SITE REFRESH · v2 — richer blue/orange duo-tone
   (No new hues added — deeper shades, gradients,
   and alternating accents of the existing brand
   colors, used for a more premium/modern feel)
   ══════════════════════════════════════════ */
:root {
  --brand-diag: linear-gradient(
    120deg,
    var(--blue-dark) 0%,
    var(--blue) 45%,
    var(--orange-mid) 100%
  );
  --brand-diag-soft: linear-gradient(
    120deg,
    rgba(13, 61, 138, 0.08) 0%,
    rgba(26, 111, 224, 0.06) 45%,
    rgba(240, 124, 0, 0.07) 100%
  );
  --accent-line: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
}

/* Small reusable gradient underline for headings */
.accent-underline {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-line);
  margin: 14px auto 0;
}
.accent-underline.left {
  margin: 14px 0 0;
}

/* ── Global polish: focus states, card lift, button shimmer ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
::selection {
  background: var(--orange);
  color: #fff;
}
.btn-orange,
.btn-blue {
  position: relative;
  overflow: hidden;
}
.btn-orange::after,
.btn-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}
.btn-orange:hover::after,
.btn-blue:hover::after {
  transform: translateX(120%);
}
.feat-card,
.contact-info-card,
.trust-hero {
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(13, 61, 138, 0.1);
}
.site-nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  margin: 0 24px;
  padding: 0 14px;
  background: rgba(7, 31, 74, 0.18);
  backdrop-filter: blur(30px) saturate(1.5);
  -webkit-backdrop-filter: blur(30px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 22px 56px rgba(4, 16, 38, 0.24);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}
.site-nav .nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  z-index: 1;
}
.site-nav .nav-logo img {
  height: 72px;
  width: auto;
}
.site-nav .nav-logo {
  margin-right: 28px;
}
.site-nav .nav-links {
  display: flex;
  gap: 14px;
  margin: 0 auto;
}
.site-nav .nav-link {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.on {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.site-nav .nav-cta .btn-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.site-nav .nav-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.site-nav .nav-burger {
  border-color: rgba(255, 255, 255, 0.24);
}
.site-nav .nav-burger span {
  background: #fff;
}
.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: -8px 0 28px;
}
.footer-contact > a,
.footer-contact > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
}
.footer-contact > a > span,
.footer-contact > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}
.footer-contact svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-contact small,
.footer-contact strong {
  display: block;
}
.footer-contact small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-contact strong {
  overflow-wrap: normal;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 650;
}
.footer-contact a:hover strong {
  color: #fff;
}
.footer-social-bottom {
  flex-wrap: nowrap;
  justify-content: center;
}

/* Keep the final desktop nav rules from leaking into mobile layouts. */
@media (max-width: 980px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 24px);
    border-radius: 22px;
  }
  .site-nav .nav-inner {
    width: 100%;
    height: 62px;
    padding: 0 14px;
    gap: 12px;
  }
  .site-nav .nav-links,
  .site-nav .nav-cta {
    display: none;
  }
  .site-nav .nav-logo {
    margin-right: auto;
  }
  .site-nav .nav-logo img {
    height: 56px;
    max-width: 150px;
    object-fit: contain;
  }
  .site-nav .nav-burger {
    display: flex;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }
  .mobile-menu {
    inset: 82px 12px auto;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(4, 16, 38, 0.35);
  }
}
@media (max-width: 420px) {
  .site-nav {
    width: calc(100% - 16px);
  }
  .site-nav .nav-inner {
    padding-inline: 10px;
  }
  .site-nav .nav-logo img {
    height: 52px;
    max-width: 132px;
  }
  .mobile-menu {
    inset-inline: 8px;
  }
}

/* Footer — compact, stable mobile layout */
@media (max-width: 720px) {
  .site-footer .footer-wave svg {
    height: 34px;
  }
  .site-footer .footer-main {
    padding-top: 42px;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 42px;
  }
  .site-footer .footer-grid > div:first-child {
    text-align: center;
  }
  .site-footer .footer-brand-logo {
    margin-bottom: 14px;
  }
  .site-footer .footer-brand-logo img {
    height: 72px;
    max-width: 190px;
  }
  .site-footer .footer-brand-desc {
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: 0.87rem;
    line-height: 1.7;
  }
  .site-footer .footer-contact {
    max-width: 430px;
    margin: 0 auto 26px;
    text-align: left;
  }
  .site-footer .footer-social {
    justify-content: center;
    gap: 10px;
  }
  .site-footer .fsocial {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
  .site-footer .footer-payments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    max-width: 410px;
    margin: 24px auto 0;
  }
  .site-footer .fpay {
    min-width: 0;
    padding: 9px 10px;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.7rem;
  }
  .site-footer .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
    text-align: left;
  }
  .site-footer .fcol:last-child {
    grid-column: 1 / -1;
  }
  .site-footer .fcol h4 {
    margin-bottom: 14px;
  }
  .site-footer .fcol a {
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 0.83rem;
    line-height: 1.45;
  }
  .site-footer .footer-bottom {
    padding: 24px 20px 22px;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }
  .site-footer .footer-bottom p {
    max-width: 320px;
    font-size: 0.72rem;
    line-height: 1.55;
  }
  .site-footer .footer-trust-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .site-footer .ftrust-badge {
    font-size: 0.64rem;
  }
  .site-footer .footer-bottom-links {
    justify-content: center;
    gap: 18px;
  }
  .site-footer .footer-bottom-links a {
    font-size: 0.75rem;
  }
}
@media (max-width: 380px) {
  .site-footer .footer-contact {
    grid-template-columns: 1fr;
    max-width: 230px;
  }
  .site-footer .footer-payments {
    grid-template-columns: 1fr;
    max-width: 230px;
  }
  .site-footer .footer-links {
    gap: 30px 16px;
  }
}

/* ══════════════════════════════════════════
   BANKS & PAYMENT PARTNERS — sliding marquee
   ══════════════════════════════════════════ */
.banks-marquee-section {
  padding: 44px 0 64px;
  text-align: center;
  overflow: hidden;
  background: var(--brand-diag-soft);
}
.banks-marquee-section .partners-strip-label {
  margin-bottom: 6px;
}
.banks-marquee {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.banks-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: banksScroll 34s linear infinite;
}
.banks-marquee:hover .banks-track {
  animation-play-state: paused;
}
@keyframes banksScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.bank-badge,
.bank-badge-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(26, 111, 224, 0.12);
  box-shadow: 0 6px 18px rgba(13, 61, 138, 0.06);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.bank-badge {
  padding: 8px 20px 8px 8px;
}
.bank-badge-logo {
  padding: 10px 22px;
}
.bank-badge-logo img {
  height: 22px;
  width: auto;
  object-fit: contain;
  filter: grayscale(15%);
}
.bank-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.bank-badge-icon.b {
  background: var(--blue-tint);
  color: var(--blue-deep);
}
.bank-badge-icon.o {
  background: var(--orange-light);
  color: var(--orange-deep);
}
@media (max-width: 720px) {
  .bank-badge,
  .bank-badge-logo {
    font-size: 0.78rem;
  }
}

/* ══════════════════════════════════════════
   CONTACT PAGE — v2 polish
   ══════════════════════════════════════════ */
.hero-solo.contact-hero::before {
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(240, 124, 0, 0.28),
      transparent 38%
    ),
    radial-gradient(
      circle at 88% 25%,
      rgba(26, 111, 224, 0.3),
      transparent 42%
    ),
    radial-gradient(
      ellipse 75% 100% at 50% 40%,
      rgba(4, 16, 38, 0.86) 0%,
      rgba(6, 24, 56, 0.72) 46%,
      rgba(9, 34, 74, 0.46) 72%,
      rgba(12, 44, 92, 0.26) 90%
    ),
    var(--hero-img, url("/assets/images/events/togetherness.png")) center 30% /
      cover no-repeat;
}
.contact-hero .hero-pill {
  background: #fff;
  color: var(--blue-dark);
  border-color: rgba(13, 61, 138, 0.14);
  box-shadow: 0 8px 24px rgba(4, 16, 38, 0.12);
}
.contact-hero h1 span {
  background: var(--brand-diag);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-solo.contact-hero {
  min-height: 560px;
}
.hero-solo.contact-hero .hero-main {
  min-height: 552px;
}
@media (max-width: 820px) {
  .hero-solo.contact-hero {
    min-height: 520px;
  }
  .hero-solo.contact-hero .hero-main {
    min-height: 512px;
  }
}

/* Quick contact banner (call / whatsapp) */
.quick-contact-banner {
  margin: -34px auto 56px;
  position: relative;
  z-index: 3;
  max-width: 1180px;
  width: min(1180px, calc(100% - 48px));
  background: var(--brand-diag);
  border-radius: var(--r-xl);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(13, 61, 138, 0.22);
}
.qcb-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 6px;
}
.qcb-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.qcb-title a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}
.qcb-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .quick-contact-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    margin-top: -24px;
    padding: 26px 24px;
  }
  .qcb-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Alternate blue / orange accent per info card */
.contact-info-card:nth-child(odd) .contact-info-icon {
  background: var(--blue-tint);
}
.contact-info-card:nth-child(odd) .contact-info-icon svg {
  stroke: var(--blue);
}
.contact-info-card:nth-child(even) .contact-info-icon {
  background: var(--orange-light);
}
.contact-info-card:nth-child(even) .contact-info-icon svg {
  stroke: var(--orange-deep);
}

/* Form top accent bar */
.contact-form {
  position: relative;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: var(--accent-line);
}

/* Map / office card */
.contact-map-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 111, 224, 0.1);
  background: var(--brand-diag-soft);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-map-pin {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--brand-diag);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(13, 61, 138, 0.18);
}
.contact-map-pin svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
}
.contact-map-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-map-card p {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.contact-map-card a.map-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.contact-map-card a.map-link:hover {
  color: var(--orange-deep);
}

/* ══════════════════════════════════════════
   BIG CONTACT PANEL — no form, large & self-explanatory
   ══════════════════════════════════════════ */
.contact-big {
  position: relative;
  padding: 90px 0 76px;
  overflow: hidden;
  background: var(--big-img, url("/assets/images/events/togetherness.png"))
    center 30% / cover no-repeat;
}
.contact-big-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(240, 124, 0, 0.22),
      transparent 40%
    ),
    linear-gradient(
      120deg,
      rgba(4, 16, 38, 0.92) 0%,
      rgba(7, 31, 74, 0.85) 45%,
      rgba(13, 61, 138, 0.62) 100%
    );
}
.contact-big-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.contact-big-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-bottom: 22px;
}
.contact-big-label {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}
.contact-big-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.contact-big-phones a {
  color: #fff;
  text-decoration: none;
}
.contact-big-phones a:hover {
  color: var(--orange-mid, #ffb347);
}
.contact-big-or {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 4px;
}
.contact-big-link {
  color: #fff;
  text-decoration: none;
}
.contact-big-link:hover {
  color: var(--orange-mid, #ffb347);
}
.contact-big-link.underline {
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}
.contact-big-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 14px 26px;
  margin: 6px 0 30px;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.contact-big-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}
.cbw-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cbw-text strong {
  color: #128c4a;
}
.contact-big-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 30px 0 34px;
  max-width: 480px;
}
.contact-big-socials {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}
.cbs-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.cbs-icon:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.cbs-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 640px) {
  .contact-big {
    padding: 64px 0 56px;
  }
  .contact-big-value {
    font-size: 1.4rem;
  }
  .contact-big-or {
    font-size: 0.9rem;
  }
}

/* ══════════════════════════════════════════
   REAL-MOMENTS PHOTO GALLERY — reusable across pages
   ══════════════════════════════════════════ */
.gallery-section {
  padding: 84px 0;
  background: var(--white);
}
.gallery-section .feat-header {
  margin-bottom: 44px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 30px rgba(13, 61, 138, 0.1);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-card:hover img {
  transform: scale(1.06);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(4, 16, 38, 0.86) 100%
  );
}
.gallery-card-cap h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-card-cap p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Features — real-world circular story timeline */
.features-page .feature-stories {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 106px) 0;
  background: #fff;
}
.features-page .feature-stories::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -260px;
  right: -180px;
  border: 1px solid rgba(26, 111, 224, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(26, 111, 224, 0.025),
    0 0 0 140px rgba(240, 124, 0, 0.02);
}
.features-page .feature-stories .feat-header {
  max-width: 850px;
  margin: 0 auto 62px;
}
.features-page .feature-stories-intro {
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.features-page .feature-stories .gallery-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(26px, 5vw, 70px);
  max-width: 1040px;
  margin: 0 auto;
}
.features-page .feature-stories .gallery-grid::before {
  content: "";
  position: absolute;
  top: 93px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff8b35 15%,
    #6b4be9 50%,
    #20ad73 85%,
    transparent
  );
}
.features-page .feature-stories .gallery-card {
  position: relative;
  height: auto;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.features-page .feature-stories .gallery-card > img {
  position: relative;
  z-index: 2;
  width: 186px;
  height: 186px;
  flex: 0 0 186px;
  padding: 7px;
  object-fit: cover;
  border: 2px solid #ff8b35;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 38px rgba(13, 61, 138, 0.15);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}
.features-page .feature-stories .gallery-card:nth-child(2) > img {
  border-color: #6b4be9;
}
.features-page .feature-stories .gallery-card:nth-child(3) > img {
  border-color: #20ad73;
}
.features-page .feature-stories .gallery-card:hover > img {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 24px 46px rgba(13, 61, 138, 0.2);
}
.features-page .feature-story-no {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: calc(50% - 93px);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  background: #ff7a1a;
  border: 4px solid #fff;
  border-radius: 50%;
}
.features-page .feature-stories .gallery-card:nth-child(2) .feature-story-no {
  background: #6b4be9;
}
.features-page .feature-stories .gallery-card:nth-child(3) .feature-story-no {
  background: #20ad73;
}
.features-page .feature-stories .gallery-card-overlay {
  position: static;
  width: 100%;
  padding: 25px 8px 0;
  background: none;
}
.features-page .feature-stories .gallery-card-cap {
  position: static;
  padding: 0;
}
.features-page .feature-stories .gallery-card-cap h4 {
  margin-bottom: 10px;
  color: #081d42;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.features-page .feature-stories .gallery-card-cap p {
  max-width: 290px;
  margin: 0 auto;
  color: #68758d;
  font-size: 0.82rem;
  line-height: 1.65;
}
@media (max-width: 760px) {
  .features-page .feature-stories .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .features-page .feature-stories .gallery-grid::before {
    top: 94px;
    bottom: 94px;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
  }
  .features-page .feature-stories .gallery-card {
    min-height: 0;
  }
  .features-page .feature-stories .gallery-card-overlay {
    position: relative;
    z-index: 2;
    max-width: 360px;
    background: #fff;
  }
}

/* Download hero — mirror the Features hero structure exactly. */
.download-page .download-hero {
  background: #061838;
  min-height: 560px;
}
.download-page .download-hero .wrap {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  margin-inline: auto;
}
.download-page .download-hero::before {
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(4, 16, 38, 0.88) 0%,
      rgba(6, 24, 56, 0.74) 32%,
      rgba(9, 34, 74, 0.5) 58%,
      rgba(12, 44, 92, 0.32) 78%
    ),
    var(--hero-img) center 30% / cover no-repeat;
}
.download-page .download-hero .hero-main {
  grid-template-columns: minmax(0, 570px) 1fr;
  min-height: 552px;
}
.download-page .download-hero .hero-left {
  position: relative;
  z-index: 2;
}
.download-page .hero-store-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.download-page .hero-store-badge {
  width: min(250px, calc(50% - 7px));
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 14px;
  backdrop-filter: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.download-page .hero-store-badge:hover {
  transform: translateY(-3px) scale(1.015);
  background: transparent;
}
.download-page .hero-store-badge img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen !important;
}
.download-page .hero-store-badge small,
.download-page .hero-store-badge strong {
  display: block;
}
.download-page .hero-store-badge small {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.72);
}
.download-page .hero-store-badge strong {
  font-size: 1.08rem;
  line-height: 1.15;
}
@media (max-width: 820px) {
  .download-page .download-hero {
    min-height: 520px;
  }
  .download-page .download-hero::before {
    inset: 0;
    background:
      linear-gradient(100deg, rgba(4, 16, 38, 0.9), rgba(8, 34, 76, 0.62)),
      var(--hero-img) 64% center / cover no-repeat;
  }
  .download-page .download-hero .hero-main {
    grid-template-columns: 1fr;
    min-height: 512px;
  }
}
@media (max-width: 520px) {
  .download-page .download-hero .wrap {
    width: min(100% - 32px, 1180px);
  }
  .download-page .hero-store-badges {
    gap: 8px;
  }
  .download-page .hero-store-badge {
    width: calc(50% - 4px);
    min-width: 0;
    padding: 0;
  }
}

/* Download — concise access journey */
.download-page .download-access-head {
  max-width: 760px;
  margin: 0 auto 42px;
}
.download-page .download-access-head .lead {
  max-width: 620px;
  margin: 15px auto 0;
  text-align: center;
}
.download-page .download-card-body p {
  max-width: 390px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.6;
}
.download-page .download-benefits {
  padding: 70px 0 !important;
  background: linear-gradient(180deg, #f5f8ff, #fff) !important;
}
.download-page .download-benefits .feat-header {
  margin-bottom: 38px;
}
.download-page .download-benefits .req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: access-benefit;
  overflow: hidden;
  background: linear-gradient(120deg, #071d45, #0b3975);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 22px 55px rgba(13, 61, 138, 0.16);
}
.download-page .download-benefits .req-card {
  counter-increment: access-benefit;
  position: relative;
  min-height: 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 25px;
  color: #fff;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
  transition: background 0.3s ease;
}
.download-page .download-benefits .req-card:last-child {
  border-right: 0;
}
.download-page .download-benefits .req-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: none;
}
.download-page .download-benefits .req-card::before {
  content: "0" counter(access-benefit);
  position: absolute;
  top: 24px;
  right: 22px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.download-page .download-benefits .req-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9f45);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(240, 124, 0, 0.24);
}
.download-page .download-benefits .req-card-icon svg {
  stroke: #fff;
}
.download-page .download-benefits .req-card span {
  margin: 24px 0 7px;
  color: #ff9b50;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.download-page .download-benefits .req-card strong {
  max-width: 220px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.45;
}
@media (max-width: 720px) {
  .download-page .download-access-head {
    margin-bottom: 30px;
  }
  .download-page .download-benefits {
    padding: 54px 0 !important;
  }
  .download-page .download-benefits .req-grid {
    grid-template-columns: 1fr 1fr;
  }
  .download-page .download-benefits .req-card:nth-child(2) {
    border-right: 0;
  }
  .download-page .download-benefits .req-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
@media (max-width: 460px) {
  .download-page .download-benefits .req-grid {
    grid-template-columns: 1fr;
  }
  .download-page .download-benefits .req-card {
    min-height: 175px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .download-page .download-benefits .req-card:last-child {
    border-bottom: 0;
  }
}

/* Download benefits — product-led visual composition */
.download-page .download-benefits {
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 58%, rgba(92, 62, 225, 0.1), transparent 25%),
    linear-gradient(180deg, #fff, #f4f8ff) !important;
}
.download-page .download-benefit-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(45px, 8vw, 105px);
  max-width: 1080px;
  margin: 0 auto;
}
.download-page .download-benefit-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}
.download-page .download-benefit-visual::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, #e8efff, #f9fbff 67%);
  border-radius: 50%;
  box-shadow: 0 26px 70px rgba(13, 61, 138, 0.13);
}
.download-page .download-benefit-visual img {
  position: relative;
  z-index: 2;
  display: block;
  width: 230px;
  max-height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(4, 24, 58, 0.2));
}
.download-page .download-benefit-orbit {
  position: absolute;
  z-index: 1;
  border: 1px dashed rgba(26, 111, 224, 0.28);
  border-radius: 50%;
}
.download-page .orbit-one {
  width: 365px;
  height: 365px;
}
.download-page .orbit-two {
  width: 285px;
  height: 285px;
  border-color: rgba(240, 124, 0, 0.3);
  transform: rotate(28deg);
}
.download-page .benefit-float {
  position: absolute;
  z-index: 3;
  padding: 8px 13px;
  color: #0b2857;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 61, 138, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(13, 61, 138, 0.12);
}
.download-page .float-live {
  top: 23%;
  right: 0;
}
.download-page .float-sync {
  bottom: 19%;
  left: -8px;
}
.download-page .download-benefits .req-grid {
  display: block;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.download-page .download-benefits .req-card,
.download-page .download-benefits .req-card:nth-child(n) {
  min-height: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 17px;
  padding: 20px 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13, 61, 138, 0.12);
  border-radius: 0;
}
.download-page .download-benefits .req-card:last-child {
  border-bottom: 0;
}
.download-page .download-benefits .req-card:hover {
  padding-left: 12px;
  background: transparent;
}
.download-page .download-benefits .req-card::before {
  top: 22px;
  right: 4px;
  color: rgba(13, 61, 138, 0.2);
}
.download-page .download-benefits .req-card-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  margin: 0;
  background: color-mix(in srgb, var(--orange) 12%, white);
  border: 1px solid rgba(240, 124, 0, 0.18);
  border-radius: 14px;
  box-shadow: none;
}
.download-page .download-benefits .req-card-icon svg {
  stroke: var(--orange);
}
.download-page .download-benefits .req-card span {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 4px;
  color: var(--orange-deep);
  font-size: 0.64rem;
}
.download-page .download-benefits .req-card strong {
  grid-column: 2;
  grid-row: 2;
  max-width: none;
  color: #0a2149;
  font-size: 0.95rem;
}
@media (max-width: 820px) {
  .download-page .download-benefit-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .download-page .download-benefit-visual {
    min-height: 360px;
  }
  .download-page .download-benefit-visual img {
    max-height: 325px;
  }
  .download-page .download-benefits .req-grid {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .download-page .download-benefit-visual {
    min-height: 315px;
  }
  .download-page .download-benefit-visual::before {
    width: 240px;
    height: 240px;
  }
  .download-page .orbit-one {
    width: 285px;
    height: 285px;
  }
  .download-page .orbit-two {
    width: 220px;
    height: 220px;
  }
  .download-page .download-benefit-visual img {
    width: 180px;
    max-height: 280px;
  }
  .download-page .float-live {
    right: 2%;
  }
}

/* Features — focused closing action */
.features-page .features-final-cta {
  padding: clamp(54px, 6vw, 76px) 0;
  text-align: left;
  background:
    radial-gradient(
      circle at 18% 30%,
      rgba(240, 124, 0, 0.14),
      transparent 25%
    ),
    radial-gradient(circle at 84% 76%, rgba(86, 55, 226, 0.2), transparent 28%),
    linear-gradient(125deg, #061938, #0b326b);
}
.features-page .features-final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
}
.features-page .features-final-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 17px;
}
.features-page .features-final-copy .cta-h {
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.2vw, 3.8rem);
}
.features-page .features-final-copy .cta-p {
  max-width: 510px;
  margin: 0;
  line-height: 1.7;
}
.features-page .features-final-action {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.features-page .features-final-points {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.features-page .features-final-points span::first-letter {
  color: #4ade80;
}
.features-page .features-final-action .cta-btns {
  justify-content: flex-start;
}
.features-page .toolkit-section .feat-card:nth-child(1) {
  transition-delay: 0ms;
}
.features-page .toolkit-section .feat-card:nth-child(2) {
  transition-delay: 55ms;
}
.features-page .toolkit-section .feat-card:nth-child(3) {
  transition-delay: 110ms;
}
.features-page .toolkit-section .feat-card:nth-child(4) {
  transition-delay: 165ms;
}
.features-page .toolkit-section .feat-card:nth-child(5) {
  transition-delay: 220ms;
}
.features-page .toolkit-section .feat-card:nth-child(6) {
  transition-delay: 275ms;
}
@media (max-width: 760px) {
  .features-page .features-final-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .features-page .features-final-copy .cta-p {
    margin-inline: auto;
  }
  .features-page .features-final-points {
    flex-wrap: wrap;
    justify-content: center;
  }
  .features-page .features-final-action .cta-btns {
    justify-content: center;
  }
  .features-page .feature-stories .gallery-card-overlay {
    padding-top: 18px;
  }
  .features-page .feature-stories .gallery-card-cap p {
    line-height: 1.5;
  }
}

/* Features page — dedicated product hero artwork */
.features-page .features-hero {
  background: #061838;
}
.features-page .features-hero::before {
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(4, 16, 38, 0.88) 0%,
      rgba(6, 24, 56, 0.74) 32%,
      rgba(9, 34, 74, 0.5) 58%,
      rgba(12, 44, 92, 0.32) 78%
    ),
    var(--hero-img) center 30% / cover no-repeat;
}
.features-page .features-hero .hero-main {
  grid-template-columns: minmax(0, 570px) 1fr;
}
.features-page .features-hero .hero-left {
  position: relative;
  z-index: 2;
}
.features-page .features-hero .hero-left h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.features-page .features-hero .hero-sub {
  color: rgba(255, 255, 255, 0.82);
}
.features-page .features-hero .hero-sub strong {
  color: #fff;
}
.features-page .features-hero .hero-pill {
  color: #fff;
  background: rgba(6, 20, 46, 0.45);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
.features-page .features-hero .btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
.features-page .features-hero .btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border-color: #fff;
}
@media (max-width: 820px) {
  .features-page .features-hero {
    background-position: 64% center;
  }
  .features-page .features-hero::before {
    inset: 0;
    background:
      linear-gradient(100deg, rgba(4, 16, 38, 0.9), rgba(8, 34, 76, 0.62)),
      var(--hero-img) 64% center / cover no-repeat;
  }
  .features-page .features-hero .hero-main {
    grid-template-columns: 1fr;
  }
}

/* Features — asymmetric editorial toolkit */
.features-page .toolkit-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #eef4ff 55%,
    #fff8ef 100%
  ) !important;
}
.features-page .toolkit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(255, 116, 20, 0.12),
      transparent 22%
    ),
    radial-gradient(circle at 91% 72%, rgba(82, 52, 230, 0.12), transparent 25%);
}
.features-page .toolkit-section .wrap {
  position: relative;
  z-index: 1;
}
.features-page .toolkit-section .feat-header {
  max-width: 880px;
  margin: 0 auto 48px;
}
.features-page .toolkit-section .display-sm {
  font-size: clamp(2.15rem, 4vw, 3.65rem) !important;
}
.features-page .toolkit-intro {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}
.features-page .toolkit-section .feat-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}
.features-page .toolkit-section .feat-card {
  --panel-accent: #ff7214;
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(13, 61, 138, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(13, 61, 138, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.features-page .toolkit-section .feat-card:nth-child(1) {
  grid-column: span 7;
  min-height: 330px;
  background: linear-gradient(145deg, #071d46, #0c4182);
}
.features-page .toolkit-section .feat-card:nth-child(2) {
  grid-column: span 5;
  --panel-accent: #6540ec;
  background: linear-gradient(145deg, #f2efff, #fff);
}
.features-page .toolkit-section .feat-card:nth-child(3) {
  grid-column: span 4;
  --panel-accent: #ee4f8b;
  background: linear-gradient(145deg, #fff1f6, #fff);
}
.features-page .toolkit-section .feat-card:nth-child(4) {
  grid-column: span 8;
  min-height: 300px;
  --panel-accent: #20ad73;
  background: linear-gradient(125deg, #eafaf3 0%, #fff 68%);
}
.features-page .toolkit-section .feat-card:nth-child(5) {
  grid-column: span 5;
  --panel-accent: #1687ee;
  background: linear-gradient(145deg, #edf6ff, #fff);
}
.features-page .toolkit-section .feat-card:nth-child(6) {
  grid-column: span 7;
  --panel-accent: #f29a25;
  background: linear-gradient(125deg, #fff5e5, #fff);
}
.features-page .toolkit-section .feat-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -55px;
  left: auto;
  width: 210px;
  height: 210px;
  border: 1px solid color-mix(in srgb, var(--panel-accent) 28%, transparent);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--panel-accent) 15%, transparent),
    transparent 68%
  ) !important;
}
.features-page .toolkit-section .feat-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: auto;
  width: 44px;
  height: 8px;
  border-radius: 99px;
  background: var(--panel-accent);
  opacity: 0.85;
}
.features-page .toolkit-no {
  position: absolute;
  top: 23px;
  left: 26px;
  color: var(--panel-accent);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.features-page .toolkit-section .feat-icon {
  width: 62px !important;
  height: 62px !important;
  margin-bottom: auto;
  color: #fff;
  background: var(--panel-accent) !important;
  border-radius: 19px !important;
  box-shadow: 0 12px 25px
    color-mix(in srgb, var(--panel-accent) 28%, transparent);
}
.features-page .toolkit-section .feat-card h3 {
  max-width: 82%;
  margin: 24px 0 8px;
  color: #071a3a;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
.features-page .toolkit-section .feat-card p {
  max-width: 86%;
  color: #53617b;
  font-size: 0.86rem;
  line-height: 1.65;
}
.features-page .toolkit-section .feat-card:first-child .toolkit-no {
  color: #ff9d58;
}
.features-page .toolkit-section .feat-card:first-child h3 {
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}
.features-page .toolkit-section .feat-card:first-child p {
  color: rgba(255, 255, 255, 0.72);
}
.features-page .toolkit-section .feat-card:hover {
  transform: translateY(-6px) rotate(0.15deg);
  box-shadow: 0 26px 60px rgba(13, 61, 138, 0.15);
}
@media (max-width: 900px) {
  .features-page .toolkit-section .feat-card:nth-child(n) {
    grid-column: span 6;
    min-height: 270px;
  }
}

/* Final homepage hero responsive authority. */
@media (max-width: 1100px) {
  .home-page .hero-main {
    padding-top: 104px;
    padding-bottom: 46px;
  }
}
@media (max-width: 640px) {
  .home-page .hero-main {
    padding-top: 94px;
    padding-bottom: 42px;
  }
}
@media (max-width: 620px) {
  .features-page .toolkit-section .feat-grid {
    grid-template-columns: 1fr;
  }
  .features-page .toolkit-section .feat-card:nth-child(n) {
    grid-column: 1;
    min-height: 250px;
  }
  .features-page .toolkit-section .feat-card {
    padding: 24px;
  }
}

/* Features toolkit — clean editorial index */
.features-page .toolkit-section {
  padding: clamp(72px, 8vw, 108px) 0 !important;
  background: #f7f9fd !important;
}
.features-page .toolkit-section::before {
  background:
    linear-gradient(90deg, rgba(13, 61, 138, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(13, 61, 138, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, #000, transparent 48%);
}
.features-page .toolkit-section > .wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}
.features-page .toolkit-section .feat-header {
  position: sticky;
  top: 110px;
  margin: 0;
  text-align: left;
}
.features-page .toolkit-section .feat-header .eyebrow {
  display: inline-flex;
}
.features-page .toolkit-section .display-sm {
  max-width: 430px;
  margin-top: 18px;
  font-size: clamp(2.25rem, 3.8vw, 3.7rem) !important;
  line-height: 1.02 !important;
}
.features-page .toolkit-intro {
  max-width: 400px;
  margin: 22px 0 0;
  color: #66738c;
  font-size: 0.96rem;
}
.features-page .toolkit-section .feat-grid {
  display: block;
  counter-reset: toolkit;
  border-top: 1px solid rgba(13, 61, 138, 0.16);
}
.features-page .toolkit-section .feat-card,
.features-page .toolkit-section .feat-card:nth-child(n) {
  --panel-accent: #1a6fe0;
  counter-increment: toolkit;
  min-height: 0;
  display: grid;
  grid-template-columns: 58px 64px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 20px;
  padding: 27px 12px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(13, 61, 138, 0.16);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.features-page .toolkit-section .feat-card:nth-child(2) {
  --panel-accent: #6847e8;
}
.features-page .toolkit-section .feat-card:nth-child(3) {
  --panel-accent: #e45487;
}
.features-page .toolkit-section .feat-card:nth-child(4) {
  --panel-accent: #16a66a;
}
.features-page .toolkit-section .feat-card:nth-child(5) {
  --panel-accent: #1687d9;
}
.features-page .toolkit-section .feat-card:nth-child(6) {
  --panel-accent: #e88a17;
}
.features-page .toolkit-section .feat-card::before {
  content: counter(toolkit, decimal-leading-zero);
  position: static;
  grid-column: 1;
  grid-row: 1 / 3;
  width: auto;
  height: auto;
  color: var(--panel-accent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  background: none !important;
  border: 0;
  border-radius: 0;
}
.features-page .toolkit-section .feat-card::after {
  display: none;
}
.features-page .toolkit-no {
  display: none;
}
.features-page .toolkit-section .feat-icon {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 52px !important;
  height: 52px !important;
  margin: 0;
  background: color-mix(in srgb, var(--panel-accent) 12%, white) !important;
  border: 1px solid color-mix(in srgb, var(--panel-accent) 22%, white) !important;
  border-radius: 15px !important;
  box-shadow: none;
}
.features-page .toolkit-section .feat-icon svg {
  stroke: var(--panel-accent) !important;
}
.features-page .toolkit-section .feat-card h3,
.features-page .toolkit-section .feat-card:first-child h3 {
  grid-column: 3;
  grid-row: 1;
  max-width: none;
  margin: 0 0 5px;
  color: #081d42;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.features-page .toolkit-section .feat-card p,
.features-page .toolkit-section .feat-card:first-child p {
  grid-column: 3;
  grid-row: 2;
  max-width: 560px;
  color: #68758d;
  font-size: 0.84rem;
  line-height: 1.55;
}
.features-page .toolkit-section .feat-card:hover {
  padding-left: 22px;
  transform: none;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 4px 0 0 var(--panel-accent);
}
@media (max-width: 900px) {
  .features-page .toolkit-section > .wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .features-page .toolkit-section .feat-header {
    position: static;
    text-align: center;
  }
  .features-page .toolkit-section .display-sm,
  .features-page .toolkit-intro {
    margin-inline: auto;
  }
}
@media (max-width: 560px) {
  .features-page .toolkit-section .feat-card,
  .features-page .toolkit-section .feat-card:nth-child(n) {
    grid-template-columns: 38px 48px minmax(0, 1fr);
    column-gap: 12px;
    padding: 22px 4px;
  }
  .features-page .toolkit-section .feat-icon {
    width: 44px !important;
    height: 44px !important;
  }
  .features-page .toolkit-section .feat-card h3,
  .features-page .toolkit-section .feat-card:first-child h3 {
    font-size: 1.05rem;
  }
}

/* Home — compact final CTA with integrated contact details */
.home-page .home-final-cta {
  min-height: 540px;
  padding: 48px 0 0;
  text-align: left;
  background:
    radial-gradient(
      circle at 32% 70%,
      rgba(18, 91, 205, 0.25),
      transparent 33%
    ),
    linear-gradient(135deg, #031632 0%, #04234c 55%, #031630 100%);
}
.home-page .home-final-cta::before {
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 1.5px,
    transparent 1.5px
  );
  background-size: 20px 20px;
  inset: 24px 22px auto auto;
  width: 120px;
  height: 72px;
  opacity: 0.45;
}
.home-page .home-final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(44px, 7vw, 100px);
}
.home-page .home-final-start {
  position: relative;
  min-height: 492px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-page .home-final-pill {
  display: inline-flex;
  padding: 7px 17px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(17, 57, 109, 0.35);
  border: 1px solid rgba(48, 117, 217, 0.22);
  border-radius: 999px;
}
.home-page .home-final-start h2 {
  max-width: 520px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.5vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
}
.home-page .home-final-start h2 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}
.home-page .home-final-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: 34px;
}
.home-page .home-final-actions .btn {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 12px;
  font-size: 0.76rem;
}
.home-page .home-final-actions .btn span {
  margin-left: 12px;
  font-size: 1rem;
}
.home-page .home-final-people-wrap {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 112px;
  width: min(340px, 72%);
  height: 175px;
  overflow: hidden;
  transform: translateX(-50%);
  border-radius: 48% 52% 42% 46% / 38% 42% 12% 14%;
  -webkit-mask-image: radial-gradient(
    ellipse 74% 82% at 53% 58%,
    #000 68%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 74% 82% at 53% 58%,
    #000 68%,
    transparent 100%
  );
}
.home-page .home-final-people {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 22%;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.22));
}
.home-page .home-final-contact {
  padding: 42px 0 38px;
  color: #fff;
}
.home-page .home-final-kicker {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-page .home-final-contact h3 {
  margin: 8px 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.4rem;
}
.home-page .home-final-line {
  width: 48px;
  height: 3px;
  margin-bottom: 17px;
  background: #2379ef;
  border-radius: 999px;
}
.home-page .home-final-contact > p {
  max-width: 460px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.6;
}
.home-page .home-contact-list a {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.home-page .home-contact-list i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 1.18rem;
  font-style: normal;
  background: rgba(44, 91, 157, 0.22);
  border-radius: 50%;
}
.home-page .home-contact-list a:nth-child(2) i {
  color: #27d773;
}
.home-page .home-contact-list a:nth-child(3) i {
  color: #2584ff;
}
.home-page .home-contact-list small,
.home-page .home-contact-list strong {
  display: block;
}
.home-page .home-contact-list small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
}
.home-page .home-contact-list strong {
  font-size: 0.98rem;
}
.home-page .home-contact-hours {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  color: #2884f5;
  font-size: 1rem;
}
.home-page .home-contact-hours span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .home-page .home-final-cta {
    padding-top: 52px;
  }
  .home-page .home-final-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-page .home-final-start {
    min-height: 530px;
    text-align: center;
  }
  .home-page .home-final-start {
    align-items: center;
  }
  .home-page .home-final-start h2 {
    margin-inline: auto;
  }
  .home-page .home-final-actions {
    justify-content: center;
  }
  .home-page .home-final-people-wrap {
    width: min(360px, 76%);
  }
  .home-page .home-final-contact {
    width: min(100%, 600px);
    margin-inline: auto;
    padding-top: 35px;
  }
}
@media (max-width: 560px) {
  .home-page .home-final-start {
    min-height: 500px;
  }
  .home-page .home-final-people-wrap {
    width: min(320px, 78%);
    height: 160px;
    bottom: 116px;
  }
  .home-page .home-final-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Small photo tucked into a feature card */
.feat-card-photo {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 14px 0 16px;
}
.feat-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════
   BOLD FINTECH REFRESH — punchier type, solid color-filled icon
   badges, colored section bands, chunkier CTAs. Cascades across
   every page automatically (no markup depends on this working).
   ══════════════════════════════════════════════════════════ */

/* Bolder, bigger display type everywhere */
.display-sm {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}
.lead {
  font-size: 1.05rem !important;
  font-weight: 450;
}

/* Eyebrow becomes a bold filled chip instead of plain uppercase text */
.eyebrow {
  background: var(--orange-light);
  color: var(--orange-deep) !important;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
}
.trust-header .eyebrow,
.cta-section .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--orange) !important;
}

/* Solid, gradient-filled icon badges (was: faint tinted outline circles) */
.feat-icon,
.how-col-icon,
.trust-pillar-icon,
.contact-info-icon {
  background: var(--brand-diag) !important;
  border: none !important;
  box-shadow: 0 10px 26px rgba(13, 61, 138, 0.28);
  border-radius: 16px !important;
}
.feat-icon svg,
.how-col-icon svg,
.trust-pillar-icon svg,
.contact-info-icon svg {
  stroke: #fff !important;
}
.feat-icon {
  width: 58px !important;
  height: 58px !important;
}
.how-col-icon {
  width: 58px !important;
  height: 58px !important;
}

/* Step numerals: solid bold chip instead of faint ghost numeral */
.how-col-num {
  color: #fff !important;
  background: var(--orange);
  font-size: 1.1rem !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(240, 124, 0, 0.35);
  top: 24px !important;
  right: 26px !important;
}

/* Colored top-accent bar on cards for extra pop */
.feat-card,
.how-col {
  position: relative;
}
.feat-card::before,
.how-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  width: auto !important;
  height: 4px !important;
  border-radius: 0 0 6px 6px;
  background: var(--accent-line) !important;
  filter: none !important;
}
/* the pre-existing radial blob ::before on .feat-card is replaced above;
   keep the second blur layer alive via ::after only */

/* Section backgrounds: alternate tint bands instead of flat white */
.how-section {
  background: var(--brand-diag-soft) !important;
}
.features-section {
  background: linear-gradient(180deg, var(--white) 0%, #fff7ec 100%) !important;
}

/* Chunkier, bolder buttons */
.btn {
  padding: 15px 30px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-width: 2px !important;
}
.btn-lg {
  padding: 17px 34px !important;
  font-size: 1rem !important;
}
.btn-orange {
  box-shadow: 0 10px 26px rgba(240, 124, 0, 0.3);
}
.btn-blue {
  box-shadow: 0 10px 26px rgba(26, 111, 224, 0.28);
}

/* Bolder stat numbers */
.stats-strip-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 800 !important;
}

/* Thicker, longer accent underline for a bolder signature mark */
.accent-underline {
  width: 72px !important;
  height: 5px !important;
}

/* ── BIG BOLD CLAIM BANNER — SchoolPay-style oversized statement,
   used right under the hero on key pages ── */
.claim-banner {
  background: var(--brand-diag);
  padding: 34px 0;
  position: relative;
  overflow: hidden;
}
.claim-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 85% 20%,
    rgba(255, 255, 255, 0.14),
    transparent 45%
  );
}
.claim-banner-text {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.claim-banner-text em {
  font-style: normal;
  color: #04122b;
  background: #fff;
  padding: 2px 10px;
  border-radius: 8px;
}

/* Keep the How It Works highlight and claim visually continuous. */
.how-it-works-page .obumu-strip,
.how-it-works-page .claim-banner {
  background: linear-gradient(
    90deg,
    rgba(13, 61, 138, 0.96),
    rgba(26, 111, 224, 0.92) 50%,
    rgba(240, 124, 0, 0.92)
  );
}
.how-it-works-page .obumu-strip {
  box-shadow: none;
}

.bridge-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 44px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(26, 111, 224, 0.16),
      transparent 22%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(240, 124, 0, 0.16),
      transparent 22%
    ),
    linear-gradient(180deg, #fdfefe 0%, #f4f8ff 100%);
}
.bridge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 31, 74, 0.04), transparent 36%),
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 255, 255, 0.75),
      transparent 42%
    );
  pointer-events: none;
}
.bridge-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: center;
}
.bridge-copy {
  text-align: left;
  max-width: 520px;
  margin: 0;
  padding-right: 8px;
}
.bridge-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
}
.bridge-copy .display-sm {
  margin-bottom: 14px;
}
.bridge-copy .lead {
  max-width: 560px;
  margin: 0;
}
.bridge-scene {
  position: relative;
  min-height: 360px;
  border-radius: 34px;
  padding: 22px;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(26, 111, 224, 0.2),
      transparent 18%
    ),
    radial-gradient(circle at 82% 24%, rgba(240, 124, 0, 0.2), transparent 18%),
    linear-gradient(
      135deg,
      rgba(7, 31, 74, 0.98),
      rgba(13, 61, 138, 0.94) 55%,
      rgba(240, 124, 0, 0.78)
    );
  box-shadow: 0 30px 68px rgba(7, 31, 74, 0.2);
  overflow: hidden;
}
.bridge-scene::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.bridge-scene::after {
  content: "";
  position: absolute;
  inset: 11% 10%;
  border-radius: 28px;
  background:
    linear-gradient(
      90deg,
      transparent 0 24%,
      rgba(255, 255, 255, 0.18) 24% 25%,
      transparent 25% 100%
    ),
    linear-gradient(
      90deg,
      transparent 0 72%,
      rgba(255, 255, 255, 0.16) 72% 73%,
      transparent 73% 100%
    ),
    linear-gradient(
      180deg,
      transparent 0 32%,
      rgba(255, 255, 255, 0.15) 32% 33%,
      transparent 33% 100%
    );
  opacity: 0.55;
  pointer-events: none;
}
.bridge-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  animation: bridgeGlow 8s ease-in-out infinite;
}
.bridge-glow-one {
  width: 180px;
  height: 180px;
  left: -36px;
  top: -30px;
  background: rgba(26, 111, 224, 0.28);
}
.bridge-glow-two {
  width: 220px;
  height: 220px;
  right: -42px;
  bottom: -52px;
  background: rgba(240, 124, 0, 0.24);
}
.bridge-path {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.08),
    transparent
  );
  opacity: 0.9;
  pointer-events: none;
}
.bridge-path-left {
  top: 84px;
  left: 18%;
  width: 28%;
  transform: rotate(10deg);
}
.bridge-path-right {
  right: 14%;
  bottom: 88px;
  width: 30%;
  transform: rotate(-8deg);
}
.bridge-node {
  position: absolute;
  width: min(220px, 41vw);
  padding: 16px 16px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}
.bridge-node strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.bridge-node p {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.bridge-node-badge {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.bridge-node-collect {
  top: 24px;
  left: 18px;
  transform: rotate(-3deg);
}
.bridge-node-track {
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(1deg);
}
.bridge-node-payout {
  bottom: 22px;
  left: 20px;
  transform: rotate(2deg);
}
.bridge-phone {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(250px, 45vw);
  height: min(340px, 64vw);
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.08)
    ),
    rgba(6, 18, 44, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.18);
}
.bridge-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 86px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.bridge-phone::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.bridge-phone-screen {
  height: 100%;
  border-radius: 24px;
  padding: 28px 18px 20px;
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(26, 111, 224, 0.34),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 110%,
      rgba(240, 124, 0, 0.22),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(7, 31, 74, 0.98), rgba(4, 18, 42, 0.98));
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bridge-phone-badge {
  display: inline-flex;
  align-self: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bridge-phone strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 10px;
}
.bridge-phone p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 190px;
  margin: 0 auto;
}
.bridge-phone-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.bridge-phone-stats span {
  padding: 12px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bridge-phone-stats strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--orange);
}
.bridge-phone-stats small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.bridge-ghost {
  position: absolute;
  width: min(170px, 34vw);
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  filter: saturate(0.9);
}
.bridge-ghost span {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.bridge-ghost strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.76);
}
.bridge-ghost-left {
  left: 22px;
  bottom: 28px;
  transform: rotate(-6deg);
}
.bridge-ghost-right {
  right: 18px;
  top: 26px;
  transform: rotate(5deg);
}
@keyframes bridgeGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}
@media (max-width: 900px) {
  .bridge-inner {
    grid-template-columns: 1fr;
  }
  .bridge-copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-right: 0;
  }
  .bridge-scene {
    min-height: 0;
    padding: 18px;
  }
  .bridge-node,
  .bridge-phone,
  .bridge-ghost {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    transform: none;
    animation: none;
    margin-bottom: 12px;
  }
  .bridge-phone {
    padding: 12px;
  }
  .bridge-phone-screen {
    min-height: 240px;
  }
  .bridge-node-collect,
  .bridge-node-track,
  .bridge-node-payout {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  .bridge-scene::after,
  .bridge-path,
  .bridge-glow {
    display: none;
  }
  .bridge-ghost-left,
  .bridge-ghost-right {
    transform: none;
  }
  .bridge-section {
    padding: 28px 0 34px;
  }
  .bridge-copy {
    margin-bottom: 16px;
  }
}

/* â”€â”€ OBUMU STRIP â€” short auto-slider under hero â”€â”€ */
.obumu-strip {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  background: linear-gradient(
    90deg,
    rgba(13, 61, 138, 0.96),
    rgba(26, 111, 224, 0.92) 50%,
    rgba(240, 124, 0, 0.92)
  );
  box-shadow: 0 16px 34px rgba(7, 31, 74, 0.16);
}
.obumu-strip::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 50%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    );
  opacity: 0.9;
  pointer-events: none;
}
.obumu-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  pointer-events: none;
}
.obumu-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 108px;
  position: relative;
  z-index: 1;
}
.obumu-strip-side {
  display: none;
}
.obumu-strip-media {
  position: relative;
  flex: 0 0 168px;
  width: 168px;
  height: 124px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.obumu-strip-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  transition:
    opacity 0.95s ease,
    transform 0.95s ease;
  filter: drop-shadow(0 14px 26px rgba(7, 31, 74, 0.2));
}
.obumu-strip-image.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.obumu-strip-image.is-transitioning {
  opacity: 0;
  transform: translateX(-18px) scale(0.98);
}
.obumu-strip-copy {
  flex: 1 1 auto;
  min-width: 0;
  color: #fff;
  text-align: center;
  max-width: 460px;
  position: relative;
  transition:
    opacity 0.95s ease,
    transform 0.95s ease;
}
.obumu-strip-copy.is-transitioning {
  opacity: 0;
  transform: translateX(18px);
}
.obumu-strip-kicker {
  display: block;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 6px;
}
.obumu-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2vw, 1.68rem);
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}
.obumu-strip-desc {
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

/* How It Works — visual process cards */
.how-it-works-page .how-section {
  padding: clamp(56px, 6vw, 78px) 0 !important;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(91, 50, 235, 0.055),
      transparent 34%
    ),
    #fff !important;
}
.how-it-works-page .how-header {
  margin: 0 auto 34px;
}
.how-it-works-page .how-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.how-it-works-page .how-header .eyebrow span {
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}
.how-it-works-page .how-header .display-sm {
  font-size: clamp(1.8rem, 3.5vw, 3.15rem) !important;
  max-width: 1120px;
  margin: 0 auto 18px;
}
.how-it-works-page .how-title-accent {
  color: transparent;
  background: linear-gradient(90deg, #ff6500 0%, #ef3c70 45%, #5425ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.how-it-works-page .how-header > p {
  color: var(--text-mid);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.55;
}
.how-it-works-page .how-cols {
  gap: 18px;
  align-items: stretch;
  max-width: 1020px;
  margin-inline: auto;
}
.how-it-works-page .how-col {
  --step-color: #ff6500;
  display: flex;
  flex-direction: column;
  padding: 0 20px 22px;
  overflow: hidden;
  border-color: rgba(8, 23, 67, 0.1);
  border-bottom: 3px solid var(--step-color);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(12, 28, 70, 0.08);
}
.how-it-works-page .how-col:nth-child(2) {
  --step-color: #6540ec;
}
.how-it-works-page .how-col:nth-child(3) {
  --step-color: #1cac6b;
}
.how-it-works-page .how-col::before {
  left: 0;
  right: 58%;
  height: 4px;
  background: var(--step-color) !important;
}
.how-it-works-page .how-col-num {
  top: 14px !important;
  left: 18px;
  right: auto !important;
  z-index: 2;
  width: 42px;
  height: 42px;
  font-size: 1.15rem !important;
  border-radius: 11px;
  background: var(--step-color);
  box-shadow: 0 9px 18px color-mix(in srgb, var(--step-color) 30%, transparent);
}
.how-it-works-page .how-col-visual {
  height: 205px;
  margin: 0 -20px 16px;
  padding: 30px 18px 4px;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--step-color) 10%, white),
    white 68%
  );
}
.how-it-works-page .how-col-visual img {
  display: block;
  width: 100%;
  max-width: 195px;
  max-height: 175px;
  object-fit: contain;
}
.how-it-works-page .how-col:nth-child(3) .how-col-visual img {
  max-width: 215px;
}
.how-it-works-page .how-col h3 {
  font-size: 1.08rem;
}
.how-it-works-page .how-col p {
  min-height: 70px;
  padding-bottom: 15px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(8, 23, 67, 0.12);
}
.how-it-works-page .how-col-list {
  margin-top: auto;
}
.how-it-works-page .how-col-list li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--step-color);
}
@media (max-width: 1024px) {
  .how-it-works-page .how-col-visual {
    height: 210px;
  }
}
@media (max-width: 720px) {
  .how-it-works-page .how-header {
    margin-bottom: 32px;
  }
  .how-it-works-page .how-col {
    padding-inline: 24px;
  }
  .how-it-works-page .how-col-visual {
    height: 245px;
    margin-inline: -24px;
  }
  .how-it-works-page .how-col p {
    min-height: 0;
  }
}

/* How It Works — compact live collection preview */
.how-it-works-page .how-dashboard {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 61, 138, 0.11);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(13, 61, 138, 0.1);
}
.how-it-works-page .how-result-intro {
  max-width: 640px;
  margin: 34px auto 0;
  text-align: center;
}
.how-it-works-page .how-result-intro span {
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.how-it-works-page .how-result-intro h3 {
  margin: 7px 0 5px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.how-it-works-page .how-result-intro p {
  color: var(--text-mid);
  font-size: 0.84rem;
  line-height: 1.6;
}
.how-it-works-page .how-db-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(13, 61, 138, 0.09);
}
.how-it-works-page .how-db-identity {
  display: flex;
  align-items: center;
  gap: 11px;
}
.how-it-works-page .how-db-identity strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.94rem;
}
.how-it-works-page .how-db-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--brand-diag);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(26, 111, 224, 0.2);
}
.how-it-works-page .how-db-badge {
  gap: 5px;
  color: #16865a;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}
.how-it-works-page .how-db-badge svg {
  width: 13px;
  height: 13px;
  stroke: #16865a;
}
.how-it-works-page .how-db-live {
  padding: 6px 10px;
  color: #16865a;
  background: #eaf9f2;
  border: 1px solid #c9efde;
  border-radius: 999px;
}
.how-it-works-page .how-db-live span {
  width: 7px;
  height: 7px;
  background: #20ad73;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(32, 173, 115, 0.12);
}
.how-it-works-page .how-db-grid {
  gap: 10px;
}
.how-it-works-page .how-db-stat {
  gap: 7px;
  padding: 14px 15px;
  background: #f7f9fd;
  border: 1px solid rgba(13, 61, 138, 0.07);
  border-radius: 13px;
}
.how-it-works-page .how-db-stat-lbl {
  color: #72809b;
  font-size: 0.6rem;
}
.how-it-works-page .how-db-stat-val,
.how-it-works-page .how-db-stat-val.orange {
  color: var(--ink);
  font-size: 1.12rem;
}
.how-it-works-page .how-db-stat:first-child .how-db-stat-val {
  color: #14935e;
}
.how-it-works-page .how-bar-wrap {
  margin-top: 16px;
  padding: 15px;
  gap: 9px;
  background: linear-gradient(90deg, #f7f9fd, #fff8f1);
  border-radius: 13px;
}
.how-it-works-page .how-bar-lbl {
  color: #61708e;
  font-weight: 700;
}
.how-it-works-page .how-bar-lbl span:last-child {
  color: var(--orange);
}
.how-it-works-page .how-bar-track {
  height: 8px;
  background: #e8edf5;
  border-radius: 999px;
}
.how-it-works-page .how-bar-fill {
  background: linear-gradient(90deg, #ff7214, #6440ec);
  border-radius: 999px;
}
.how-it-works-page .how-db-activity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.how-it-works-page .how-ui-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 0.7rem;
}
.how-it-works-page .how-ui-badge i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  color: #fff;
  font-size: 0.65rem;
  font-style: normal;
  border-radius: 50%;
}
.how-it-works-page .how-ui-badge.success {
  color: #176b4b;
  background: #effaf5;
  border-color: #d4f0e3;
}
.how-it-works-page .how-ui-badge.success i {
  background: #20ad73;
}
.how-it-works-page .how-ui-badge.pending {
  color: #9b5b13;
  background: #fff7ea;
  border-color: #f6e2bf;
}
.how-it-works-page .how-ui-badge.pending i {
  background: #e99a28;
}
@media (max-width: 620px) {
  .how-it-works-page .how-dashboard {
    padding: 16px;
  }
  .how-it-works-page .how-db-activity {
    grid-template-columns: 1fr;
  }
}

/* How It Works — smooth, reversible scroll choreography below the hero. */
.how-it-works-page .hero-rotating-copy {
  display: inline-block;
  color: var(--orange);
  transition:
    opacity 0.38s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease;
}
.how-it-works-page .hero-rotating-copy.is-changing {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(10px);
}
@media (max-width: 620px) {
  .how-it-works-page .hero h1 {
    min-height: 3.15em;
  }
}
.how-it-works-page [data-flow] {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s ease;
  will-change: opacity, transform, filter;
}
.how-it-works-page [data-flow="left"] {
  transform: translate3d(-32px, 16px, 0);
}
.how-it-works-page [data-flow="right"] {
  transform: translate3d(32px, 16px, 0);
}
.how-it-works-page [data-flow="scale"] {
  transform: translate3d(0, 22px, 0) scale(0.975);
}
.how-it-works-page [data-flow].flow-in {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
.how-it-works-page .how-col:nth-child(2),
.how-it-works-page .gallery-card:nth-child(2) {
  transition-delay: 90ms;
}
.how-it-works-page .how-col:nth-child(3),
.how-it-works-page .gallery-card:nth-child(3) {
  transition-delay: 180ms;
}
.how-it-works-page .how-col-visual img,
.how-it-works-page .gallery-card img {
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease;
}
.how-it-works-page [data-flow]:not(.flow-in) .how-col-visual img,
.how-it-works-page [data-flow]:not(.flow-in).gallery-card img {
  opacity: 0.6;
  transform: scale(0.94);
}
.how-it-works-page [data-flow].flow-in .how-col-visual img,
.how-it-works-page [data-flow].flow-in.gallery-card img {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .how-it-works-page [data-flow],
  .how-it-works-page .how-col-visual img,
  .how-it-works-page .gallery-card img {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* How It Works — final action and support panel */
.how-it-works-page .cta-section {
  padding: clamp(64px, 7vw, 92px) 0;
  text-align: left;
  background:
    radial-gradient(
      circle at 12% 25%,
      rgba(240, 124, 0, 0.16),
      transparent 30%
    ),
    radial-gradient(circle at 88% 70%, rgba(74, 43, 214, 0.2), transparent 32%),
    linear-gradient(135deg, #071b3d 0%, #0b3268 100%);
  margin-top: -22px;
  border-radius: 42px 42px 0 0;
}
.how-it-works-page .how-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}
.how-it-works-page .how-final-cta-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
}
.how-it-works-page .how-final-cta-copy .cta-h {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.98;
}
.how-it-works-page .how-final-cta-copy .cta-p {
  max-width: 520px;
  margin: 0 0 30px;
  line-height: 1.7;
}
.how-it-works-page .how-final-cta-copy .cta-btns {
  justify-content: flex-start;
}
.how-it-works-page .how-contact-card {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 9, 31, 0.3);
}
.how-it-works-page .how-contact-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.how-it-works-page .how-contact-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
}
.how-it-works-page .how-contact-card > p {
  margin-bottom: 20px;
  color: var(--text-mid);
  font-size: 0.84rem;
  line-height: 1.6;
}
.how-it-works-page .how-contact-links {
  display: grid;
  gap: 8px;
}
.how-it-works-page .how-contact-links a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 11px;
  color: var(--ink);
  background: #f6f8fc;
  border: 1px solid rgba(13, 61, 138, 0.07);
  border-radius: 13px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}
.how-it-works-page .how-contact-links a:hover {
  transform: translateX(4px);
  background: #fff8f1;
  border-color: rgba(240, 124, 0, 0.24);
}
.how-it-works-page .how-contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  background: var(--brand-diag);
  border-radius: 11px;
}
.how-it-works-page .how-contact-links small,
.how-it-works-page .how-contact-links strong {
  display: block;
}
.how-it-works-page .how-contact-links small {
  margin-bottom: 2px;
  color: #75819a;
  font-size: 0.62rem;
}
.how-it-works-page .how-contact-links strong {
  font-size: 0.78rem;
}
.how-it-works-page .how-contact-links b {
  color: var(--orange);
  font-size: 1rem;
}
.how-it-works-page .how-contact-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #6e7a92;
  font-size: 0.66rem;
  font-weight: 600;
}
.how-it-works-page .how-contact-hours span {
  width: 7px;
  height: 7px;
  background: #20ad73;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(32, 173, 115, 0.12);
}
@media (max-width: 860px) {
  .how-it-works-page .how-final-cta {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .how-it-works-page .how-final-cta-copy {
    text-align: center;
  }
  .how-it-works-page .how-final-cta-copy .cta-p {
    margin-inline: auto;
  }
  .how-it-works-page .how-final-cta-copy .cta-btns {
    justify-content: center;
  }
  .how-it-works-page .how-contact-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }
}
@media (max-width: 480px) {
  .how-it-works-page .how-contact-card {
    padding: 20px;
  }
  .how-it-works-page .how-contact-links strong {
    font-size: 0.7rem;
  }
}

/* Reference-matched photo CTA treatment. */
.how-it-works-page .cta-section {
  min-height: 0;
  padding: 38px 0;
  display: grid;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(3, 22, 54, 0.72) 0%,
      rgba(4, 28, 65, 0.48) 46%,
      rgba(7, 35, 76, 0.58) 100%
    ),
    url("/assets/images/events/healthcare.png");
  background-size: cover;
  background-position: center;
}
.how-it-works-page .cta-section::before {
  background: linear-gradient(
    180deg,
    rgba(4, 22, 52, 0.04),
    rgba(3, 21, 51, 0.28)
  );
}
.how-it-works-page .how-final-cta {
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
  gap: clamp(30px, 4vw, 54px);
}
.how-it-works-page .how-final-cta-copy {
  text-align: center;
}
.how-it-works-page .how-final-cta-copy .cta-p {
  margin-inline: auto;
}
.how-it-works-page .how-final-cta-copy .cta-btns,
.how-it-works-page .how-cta-assurances {
  justify-content: center;
}
.how-it-works-page .how-final-cta-copy .eyebrow {
  color: var(--orange) !important;
  background: transparent;
  border: 1px solid rgba(240, 124, 0, 0.65);
}
.how-it-works-page .how-final-cta-copy .cta-h {
  font-size: clamp(2.5rem, 4.3vw, 4rem);
  margin-bottom: 16px;
}
.how-it-works-page .how-final-cta-copy .cta-p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}
.how-it-works-page .how-final-cta-copy .btn {
  min-width: 220px;
  min-height: 50px;
  border-radius: 999px;
}
.how-it-works-page .how-cta-assurances {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
}
.how-it-works-page .how-cta-assurances span {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}
.how-it-works-page .how-cta-assurances span:first-child {
  padding-left: 0;
}
.how-it-works-page .how-cta-assurances span:last-child {
  border-right: 0;
}
.how-it-works-page .how-contact-card {
  padding: 22px;
  color: #fff;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(13, 42, 82, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.22),
    0 18px 45px rgba(0, 10, 30, 0.2);
  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
}
.how-it-works-page .how-contact-kicker {
  color: var(--orange);
}
.how-it-works-page .how-contact-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.how-it-works-page .how-contact-card > p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  margin-bottom: 13px;
}
.how-it-works-page .how-contact-links {
  gap: 6px;
}
.how-it-works-page .how-contact-links a {
  min-height: 54px;
  grid-template-columns: 38px 1fr auto;
  padding: 8px 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 13px;
}
.how-it-works-page .how-contact-links a:hover {
  background: rgba(30, 67, 116, 0.72);
  border-color: rgba(255, 255, 255, 0.25);
}
.how-it-works-page .how-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.how-it-works-page .how-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.how-it-works-page .how-contact-links a:nth-child(1) .how-contact-icon {
  background: #24cf6b;
}
.how-it-works-page .how-contact-links a:nth-child(2) .how-contact-icon {
  background: #1687ee;
}
.how-it-works-page .how-contact-links a:nth-child(3) .how-contact-icon {
  background: #6654f4;
}
.how-it-works-page .how-contact-links small {
  color: #72a9f8;
  font-size: 0.7rem;
}
.how-it-works-page .how-contact-links a:first-child small {
  color: #34d87a;
}
.how-it-works-page .how-contact-links a:last-child small {
  color: #8e7cff;
}
.how-it-works-page .how-contact-links strong {
  color: #fff;
  font-size: 0.76rem;
}
.how-it-works-page .how-contact-links b {
  color: rgba(255, 255, 255, 0.85);
}
.how-it-works-page .how-contact-hours {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 860px) {
  .how-it-works-page .cta-section {
    min-height: auto;
    background-position: 44% center;
  }
  .how-it-works-page .how-final-cta {
    grid-template-columns: 1fr;
  }
  .how-it-works-page .how-cta-assurances {
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .how-it-works-page .how-cta-assurances {
    gap: 10px;
  }
  .how-it-works-page .how-cta-assurances span {
    width: 100%;
    padding: 0;
    border: 0;
  }
  .how-it-works-page .how-contact-card {
    padding: 24px;
  }
}
.obumu-strip-slides {
  display: none;
}
@media (min-width: 1100px) {
  .obumu-strip-inner {
    justify-content: space-between;
    gap: 18px;
  }
  .obumu-strip-side {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 220px;
    max-width: 220px;
    opacity: 0.38;
    transform: scale(0.88);
    filter: blur(0.15px);
  }
  .obumu-strip-side-prev {
    justify-content: flex-start;
    text-align: left;
  }
  .obumu-strip-side-next {
    justify-content: flex-end;
    text-align: right;
  }
  .obumu-strip-side-image {
    width: 72px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 16px rgba(7, 31, 74, 0.22));
  }
  .obumu-strip-side-copy {
    min-width: 0;
    color: rgba(255, 255, 255, 0.95);
  }
  .obumu-strip-side-kicker {
    display: block;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.72);
  }
  .obumu-strip-side-copy strong {
    display: block;
    font-size: 0.66rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .obumu-strip-side-copy p {
    font-size: 0.56rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.68);
  }
}
@media (max-width: 720px) {
  .obumu-strip {
    padding: 7px 0;
  }
  .obumu-strip-inner {
    gap: 12px;
    min-height: 96px;
  }
  .obumu-strip-media {
    flex-basis: 120px;
    width: 120px;
    height: 92px;
  }
  .obumu-strip-title {
    font-size: 1.03rem;
  }
  .obumu-strip-desc {
    font-size: 0.68rem;
  }
  .obumu-strip-side {
    display: none;
  }
}

/* â”€â”€ HOME SHOWCASE â€” phone + marquee promo under hero â”€â”€ */
.promo-showcase {
  position: relative;
  overflow: hidden;
  padding: 16px 0 18px;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(240, 124, 0, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 24%,
      rgba(26, 111, 224, 0.18),
      transparent 30%
    ),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #eef4ff 100%);
}
.promo-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 31, 74, 0.02), transparent 35%);
  pointer-events: none;
}
.promo-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}
.promo-copy {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}
.promo-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 12px;
  font-size: 0.58rem !important;
}
.promo-copy .display-sm {
  font-size: clamp(1.05rem, 1.8vw, 1.45rem) !important;
  line-height: 1.05 !important;
}
.promo-copy .lead {
  max-width: none;
  margin-top: 8px;
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
  max-width: 42ch;
}
.promo-points {
  display: none;
}
.promo-point {
  display: grid;
  gap: 4px;
  padding: 18px 18px 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 111, 224, 0.12);
  box-shadow: 0 12px 28px rgba(13, 61, 138, 0.06);
}
.promo-point strong {
  font-size: 0.98rem;
  color: var(--ink);
}
.promo-point span {
  font-size: 0.92rem;
  color: var(--text-mid);
}
.promo-visual {
  position: relative;
  flex: 0 0 min(440px, 42vw);
}
.promo-phone-stage {
  position: relative;
  padding: 12px 14px 12px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.75),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(7, 31, 74, 0.94) 0%,
      rgba(13, 61, 138, 0.92) 100%
    );
  box-shadow: 0 20px 42px rgba(7, 31, 74, 0.2);
  overflow: hidden;
}
.promo-phone-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(240, 124, 0, 0.22),
      transparent 18%
    ),
    radial-gradient(
      circle at 82% 24%,
      rgba(255, 255, 255, 0.16),
      transparent 24%
    );
  pointer-events: none;
}
.promo-phone-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promo-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 8px;
  border-radius: 24px;
  background: #0c1630;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.promo-phone-notch {
  width: 100px;
  height: 16px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.promo-phone-screen {
  border-radius: 18px;
  padding: 12px;
  min-height: 150px;
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 124, 0, 0.18), transparent 28%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.06) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.promo-app-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.promo-app-name {
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.promo-app-live {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: rgba(240, 124, 0, 0.95);
  box-shadow: 0 8px 20px rgba(240, 124, 0, 0.22);
}
.promo-app-card {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}
.promo-app-card-label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}
.promo-app-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1;
  margin-bottom: 4px;
}
.promo-app-card p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.76);
}
.promo-marquee {
  margin: 10px 0 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.promo-marquee-track {
  display: flex;
  width: max-content;
  gap: 8px;
  animation: promoMarquee 16s linear infinite;
}
.promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.promo-chip svg {
  width: 13px;
  height: 13px;
  stroke: var(--orange);
  flex-shrink: 0;
}
.promo-app-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.promo-footer-pill {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promo-phone-caption {
  margin-top: 10px;
  color: rgba(7, 31, 74, 0.74);
  font-size: 0.7rem;
  line-height: 1.4;
}
.promo-copy .btn {
  margin-top: 10px;
  padding: 9px 16px !important;
  font-size: 0.72rem !important;
}
@keyframes promoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 980px) {
  .promo-showcase {
    padding: 14px 0 16px;
  }
  .promo-shell {
    flex-direction: column;
    align-items: stretch;
  }
  .promo-copy .lead {
    max-width: none;
  }
  .promo-phone-screen {
    min-height: 140px;
  }
}
@media (max-width: 640px) {
  .promo-showcase {
    padding: 12px 0 14px;
  }
  .promo-point {
    padding: 16px;
  }
  .promo-phone-stage {
    padding: 10px 10px 10px;
    border-radius: 20px;
  }
  .promo-phone {
    border-radius: 18px;
  }
  .promo-phone-screen {
    min-height: 132px;
    padding: 10px;
  }
}

/* Bridge override: image-led editorial layout */
.bridge-section {
  position: relative;
  overflow: hidden;
  padding: 44px 0 56px;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(26, 111, 224, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 84% 22%,
      rgba(240, 124, 0, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}
.bridge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 31, 74, 0.03), transparent 34%),
    radial-gradient(
      circle at 50% 32%,
      rgba(255, 255, 255, 0.95),
      transparent 42%
    );
  pointer-events: none;
}
.bridge-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}
.bridge-copy {
  text-align: left;
  max-width: 560px;
  margin: 0;
  padding-right: 12px;
}
.bridge-copy .eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
}
.bridge-copy .display-sm {
  margin-bottom: 16px;
}
.bridge-copy .lead {
  max-width: 520px;
  margin: 0;
}
.bridge-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.bridge-point {
  padding: 16px 16px 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 111, 224, 0.08);
  box-shadow: 0 16px 36px rgba(13, 61, 138, 0.07);
}
.bridge-point-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(
    135deg,
    rgba(26, 111, 224, 0.14),
    rgba(240, 124, 0, 0.12)
  );
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.bridge-point strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
}
.bridge-point p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.bridge-visual {
  position: relative;
}
.bridge-visual::before {
  content: "";
  position: absolute;
  inset: 10% 8% 8%;
  border-radius: 44px;
  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(26, 111, 224, 0.15),
      transparent 32%
    ),
    radial-gradient(circle at 75% 22%, rgba(240, 124, 0, 0.14), transparent 30%);
  filter: blur(8px);
}
.bridge-visual-frame {
  position: relative;
  z-index: 1;
  border-radius: 36px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(26, 111, 224, 0.08);
  box-shadow: 0 30px 70px rgba(13, 61, 138, 0.12);
}
.bridge-visual-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}
@media (max-width: 900px) {
  .bridge-inner {
    grid-template-columns: 1fr;
  }
  .bridge-copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-right: 0;
  }
  .bridge-points {
    grid-template-columns: 1fr;
  }
  .bridge-visual::before {
    inset: 14% 2% 4%;
  }
  .bridge-visual-frame {
    padding: 10px;
  }
  .bridge-section {
    padding: 28px 0 34px;
  }
  .bridge-copy {
    margin-bottom: 16px;
  }
}
