:root {
  --bg: #cdf1ff;
  --bg-deep: #bfe8ff;
  --text: #1e1e1e;
  --text-muted: #515151;
  --navy: #060b2e;
  --navy-soft: #1d2a74;
  --blue: #2f5dff;
  --blue-soft: #7c9ef8;
  --yellow: #ffe135;
  --white: #ffffff;
  --border: rgba(6, 11, 46, 0.14);
  --shadow: 0 18px 35px rgba(29, 42, 116, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.page-shell {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    url("../assets/images/bg-sphere-yellow.png"),
    url("../assets/images/bg-sphere-blue.png"),
    url("../assets/images/bg-star.png"),
    url("../assets/images/bg-star.png"),
    url("../assets/images/bg-vertical.png");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-y;
  background-position:
    left -18px top 10px,
    right -28px top 54px,
    left 150px top 8px,
    right 148px bottom 288px,
    center top;
  background-size:
    84px 84px,
    132px 132px,
    42px 42px,
    42px 42px,
    100% auto;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("../assets/images/bg-circles-top.png") no-repeat center top / min(178vw, 2560px) auto,
    url("../assets/images/bg-horizontal.png") no-repeat center 44% / 100% auto,
    url("../assets/images/bg-looper.png") no-repeat left 60px bottom 680px / 520px auto;
  opacity: 0.45;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 11% 12%, rgba(255, 225, 53, 0.16) 0, rgba(255, 225, 53, 0) 22%),
    radial-gradient(circle at 88% 10%, rgba(24, 71, 244, 0.12) 0, rgba(24, 71, 244, 0) 20%),
    radial-gradient(circle at 20% 100%, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0) 14%);
  opacity: 0.8;
}

.page-shell>* {
  position: relative;
  z-index: 1;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0;
  background: linear-gradient(180deg, rgba(24, 71, 244, 0.45) 0%, rgba(205, 241, 255, 0.21) 100%);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 73px;
  gap: 24px;
  padding: 14px 0;
}

.topbar-logo {
  flex: 0 0 136px;
  width: 136px;
  height: 53px;
}

.topbar-logo img {
  width: 136px;
  height: 53px;
  object-fit: contain;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.31;
}

.topbar-cta,
.primary-button,
.secondary-button,
.role-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.topbar-cta,
.primary-button {
  background: var(--yellow);
  color: var(--navy);
}

.topbar-cta {
  min-height: 45px;
  padding: 12px 26px;
  box-shadow: 3px 3px 0 0 var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28px;
  white-space: nowrap;
}

.topbar-mobile-actions,
.topbar-mobile-nav {
  display: none;
}

.topbar-menu-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.topbar-menu-button span {
  width: 20px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar.is-mobile-nav-open .topbar-menu-button span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.topbar.is-mobile-nav-open .topbar-menu-button span:nth-child(2) {
  opacity: 0;
}

.topbar.is-mobile-nav-open .topbar-menu-button span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.topbar-mobile-nav {
  width: min(100% - 40px, var(--container));
  margin: 0 auto 12px;
  padding: 12px 16px 16px;
  border: 2px solid rgba(6, 11, 46, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(6, 11, 46, 0.08);
}

.topbar-mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.secondary-button {
  margin-top: 22px;
  background: var(--yellow);
  color: var(--navy);
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}

.section-title-center {
  text-align: center;
}

.hero {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 120px;
  text-align: center;
  background: url(../assets/images/background.png) no-repeat top center / 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 28%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-circles,
.hero-bg-sphere,
.hero-bg-star,
.hero-bg-sparkle {
  position: absolute;
}

.hero-bg-circles {
  top: -419px;
  left: 50%;
  width: 2559.54px;
  height: 1584.49px;
  transform: translateX(-50%);
  opacity: 1;
}

.hero-bg-glow {
  position: absolute;
  display: block;
  filter: blur(100px);
}

.hero-bg-glow-left {
  left: -74px;
  top: -124px;
  width: 697px;
  height: 614px;
  background:
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.42) 16%, rgba(255, 225, 53, 0.09) 34%, rgba(255, 225, 53, 0) 62%);
  transform: rotate(154.55deg);
}

.hero-bg-glow-right {
  right: -176px;
  top: 0;
  width: 539px;
  height: 760px;
  background:
    radial-gradient(circle at 78% 54%, rgba(23, 74, 255, 0.25) 0, rgba(23, 74, 255, 0.12) 18%, rgba(23, 74, 255, 0) 54%);
}

.hero-bg-sphere-yellow {
  left: 76px;
  top: 142px;
  width: 110px;
  height: 110px;
}

.hero-bg-sphere-blue {
  right: -58px;
  top: 325px;
  width: 176px;
  height: 176px;
}

.hero-bg-star-left {
  left: 220px;
  top: 98px;
  width: 64px;
  height: 64px;
}

.hero-bg-star-right {
  right: 220px;
  top: 144px;
  width: 64px;
  height: 64px;
}

.hero-bg-sparkle-small {
  left: 211px;
  bottom: 145px;
  width: 38px;
  height: 38px;
  opacity: 0.95;
}

.hero-bg-sparkle-tiny {
  left: 300px;
  bottom: 210px;
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 40px;
}

.hero-logo-image {
  width: 294px;
  height: 166px;
  object-fit: contain;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(64px, 9vw, 140px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.4px;
  line-height: 123px;
  white-space: nowrap;
}

.hero-title-outline {
  color: transparent;
  -webkit-text-stroke: 3px #1264d2;
}

.hero-title-fill {
  position: relative;
  color: var(--yellow);
  text-shadow: 5px 5px 0 #0a0a0a;
}

.hero-copy {
  width: min(100%, 834px);
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border: 2px solid var(--navy);
  border-radius: 10px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 0 var(--navy);
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 33px;
  text-transform: uppercase;
}

.hero-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero-down-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.reason-card,
.reason-feature,
.benefit-card,
.journey-card,
.process-card,
.role-card,
.gallery-card,
.profile-photo {
  border: 2px solid var(--navy);
  box-shadow: var(--shadow);
}

.reasons-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.reasons-copy {
  width: 476px;
}

.reasons-pill {
  min-height: 54px;
  padding: 0 26px;
  border-width: 2px;
  border-radius: 50px;
  box-shadow: 3px 3px 0 0 var(--navy);
  background: #1847f4;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2.5px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.reason-card {
  min-height: 225px;
  padding: 18px 16px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.28);
}

.reason-no {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.reason-card h3 {
  margin-top: 4px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.reason-card p {
  margin-top: 8px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.reason-card-light {
  background: #c5dcff;
  color: var(--navy);
}

.reason-card-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.reason-card-primary {
  background: #1847f4;
  color: var(--white);
  border: 3px solid var(--yellow);
  box-shadow: 0 0 32px rgba(255, 225, 53, 0.3), 6px 6px 0 0 rgba(0, 0, 0, 0.35);
}

.reason-card-dark {
  background: var(--navy);
  color: var(--white);
}

.reason-card-dark h3 {
  color: var(--yellow);
}

.reason-feature {
  position: relative;
  width: 628px;
  height: 524px;
  overflow: visible;
  border: none;
  box-shadow: inherit;
}

.reason-feature-frame {
  position: relative;
  width: 628px;
  height: 496px;
  overflow: hidden;
  border: 3px solid #1847f4;
  border-radius: 24px;
  box-shadow: 14px 14px 0 0 var(--navy);
  background: #1847f4;
}

.reason-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 16px;
}

.window-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.window-dot-red {
  background: #ff5f57;
}

.window-dot-yellow {
  background: #ffe135;
}

.window-dot-green {
  background: #28ca41;
}

.reason-window-url {
  margin-left: 8px;
  flex: 1;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  font-family: "Be Vietnam Pro", sans-serif;
}

.reason-feature-stage {
  position: absolute;
  inset: 50px 0 0 0;
  overflow: hidden;
}

.reason-feature-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(24, 71, 244, 0.25) 100%);
}

.reason-feature-grid,
.reason-feature-people {
  position: absolute;
  inset: 0;
}

.reason-feature-grid {
  width: 138%;
  left: -0.06%;
  object-fit: cover;
}

.reason-feature-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 234px;
  height: 132px;
  object-fit: cover;
}

.reason-feature-people {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-floating-qr {
  position: absolute;
  left: -24px;
  bottom: -28px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 129px;
}

.reason-qr-label {
  min-height: 34px;
  padding: 8px 12px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 0 var(--navy);
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reason-qr-box {
  width: 129px;
  height: 129px;
  padding: 12px;
  border: 2px solid var(--navy);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 0 var(--navy);
}

.reason-qr-box img {
  width: 105px;
  height: 105px;
  object-fit: cover;
}

.reason-apply-button {
  position: absolute;
  right: 16px;
  bottom: -24px;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 2px solid var(--navy);
  border-radius: 36px;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 3px 3px 0 0 var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  display: grid;
  gap: 2px;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(14deg);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.benefit-card {
  min-height: 154px;
  padding: 16px 14px;
  border-radius: 18px;
  background: var(--white);
}

.section-header-center {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.section-header-left {
  display: grid;
  gap: 24px;
}

.benefits-pill,
.process-pill,
.profile-pill {
  min-height: 50px;
  padding: 0 24px;
  border-width: 1px;
  box-shadow: 2px 2px 0 0 var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.benefits-layout-new {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  margin-top: 56px;
}

.benefits-intro-card {
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 4px 4px 0 0 rgba(6, 11, 46, 0.15);
}

.benefits-pill-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c5dcff;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 8px 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.benefits-intro-card h2 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.benefits-intro-card h2 span {
  color: var(--blue);
}

.benefits-intro-card p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 32px;
}

.benefits-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 12px 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 4px 4px 0 0 var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: auto;
}

.benefits-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--navy);
}

.benefits-cta img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.benefits-intro-image {
  margin-top: 32px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--navy);
}

.benefits-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.benefits-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.benefit-card-new {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 0 0 rgba(6, 11, 46, 0.1);
  transition: transform 0.3s ease;
}

.benefit-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 4px 8px 0 0 rgba(6, 11, 46, 0.15);
}

.benefit-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 4px 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 2px 2px 0 0 rgba(6, 11, 46, 0.1);
}

.benefit-icon-new {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
  box-shadow: 2px 2px 0 0 rgba(6, 11, 46, 0.1);
}

.benefit-icon-new img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.icon-bg-blue {
  background: #c5dcff;
}

.icon-bg-yellow {
  background: var(--yellow);
}

.benefit-card-new h3 {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.benefit-card-new p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.benefit-icon,
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.benefit-icon-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.benefit-card h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
}

.benefit-card p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}


/* =========================================
   BENEFITS FIGMA SECTION  (node 313-14958)
   ========================================= */
.benefits-figma-section {
  padding: 80px 0 0;
  overflow: hidden;
  background: #d6f0fb; /* light blue page bg */
}

/* Header: centered pill + LEFT-aligned heading (matches Figma) */
.bfs-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.bfs-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0 24px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: 2px 2px 0 0 var(--navy);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.bfs-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
 color: #1C398E;
}

.bfs-title span {
  color: var(--blue);
}

/* Band wrap: relative container for the rounded yellow band */
.bfs-band-wrap {
  position: relative;
}

/* Yellow band — rounded rect, centered, not full-width (matches Figma rect 28) */
.bfs-yellow-band {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px); /* ~1349/1440 proportion */
  max-width: 1349px;
  height: 60%;
  background: var(--yellow);
  z-index: 0;
}

/* Slider row: arrows + swiper */
.bfs-slider-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 80px;
  padding-top: 8px;
}

/* Swiper instance */
.bfs-swiper {
  flex: 1;
  overflow: visible; /* allow active card to lift above others */
  min-width: 0;
}

/* Clip only the horizontal overflow, keep vertical visible for card lift */
.bfs-swiper .swiper-wrapper {
  align-items: flex-end; /* baseline-align so taller active card grows upward */
}

/* Swiper slide */
.bfs-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  padding-bottom: 0;
}

/* === CARDS === */
.bfs-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(6, 11, 46, 0.08);
  border: 1.5px solid #e2e5ef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Non-active cards are shorter (offset from top in Figma by 60px) */
  margin-top: 60px;
}

.bfs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(6, 11, 46, 0.14);
}

/* Active card: no top margin, more prominent */
.bfs-card.is-active,
.bfs-card--featured {
  margin-top: 0;
  border: 2px solid #1847F4;
  box-shadow: 4px 4px 0 0 var(--navy);
}

/* Card header: avatar + title */
.bfs-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Avatar circle */
.bfs-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8e8e8;
  border: 2px solid rgba(6, 11, 46, 0.08);
}

.bfs-avatar--gray   { background: #d5d5d5; }
.bfs-avatar--green  { background: #c5e8c5; }
.bfs-avatar--purple { background: #e0d5f4; }

.bfs-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Card title */
.bfs-card-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

/* Card paragraph — fixed 3-line height for card alignment */
.bfs-card-text {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555e7a;
  line-height: 1.7;
  /* Exactly 3 lines: 14px × 1.7 × 3 = 71.4px */
  height: calc(14px * 1.7 * 3);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* CTA — ẩn mặc định, chỉ hiện trên slide active */
.bfs-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 0 var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  margin-top: 8px;
  opacity: 0;
  pointer-events: none;
}

.bfs-card.is-active .bfs-card-cta {
  opacity: 1;
  pointer-events: auto;
}

.bfs-card-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 var(--navy);
}

/* Nav arrows */
.bfs-arrow {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--yellow);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 0 var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 9;
}

.bfs-arrow:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 0 var(--navy);
}

.bfs-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

/* END BENEFITS FIGMA SECTION */


.journey {
  background: url(../assets/images/bg_discovery.png) no-repeat top center / cover;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.journey-heading {
  color: #4a5565;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

.journey-card {
  min-height: 276px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.journey-card-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.journey-card-white {
  background: var(--white);
  color: var(--navy);
}

.journey-card-dark {
  background: var(--navy);
  color: var(--white);
}

.journey-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.journey-index {
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
}

.journey-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 68px;
}

.journey-phase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.journey-phase-dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
}

.journey-tag {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.journey-role {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
}

.journey-card-dark .journey-tag,
.journey-card-dark .journey-role,
.journey-card-dark .journey-time {
  color: var(--yellow);
}

.journey-time {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 12px;
  font-weight: 700;
}

.journey-copy {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.journey-roadmap {
  margin-top: 56px;
}

.journey-roadmap-track {
  position: relative;
  height: 78px;
  border-radius: 20px;
  background: #111827;
  overflow: hidden;
}

.journey-roadmap-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg,
      var(--yellow) 0 20px,
      transparent 20px 38px);
}

.journey-title {
  border-radius: 50px;
  border: 1px solid var(--Black, #060B2E);
  background: var(--Yellow, #FFE135);
  box-shadow: 2px 2px 0 0 #060B2E;

  padding: 12px 24px;

  color: var(--Black, #060B2E);
  text-align: center;
  font-family: "Barlow Condensed";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2.5px;
}

.roadmap-car,
.roadmap-flag {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  object-fit: contain;
}

.roadmap-car {
  left: 62px;
  width: 48px;
  height: 48px;
}

.roadmap-flag {
  right: 52px;
  width: 44px;
  height: 44px;
}

.roadmap-stop {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 3px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-stop img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.roadmap-stop-yellow {
  left: 18%;
  background: var(--yellow);
}

.roadmap-stop-white {
  left: 50%;
  background: #f5f8ff;
}

.roadmap-stop-dark {
  left: 83%;
  background: var(--navy);
}

.journey-roadmap-dates {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 0 12%;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.process {
  text-align: center;
}

.process-intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.process-intro-figma {
  width: min(100%, 756px);
  margin: 0;
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.process-card {
  min-height: 138px;
  padding: 16px 12px;
  border-radius: 18px;
  background: var(--white);
  text-align: left;
}

.process-card h3 {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}

.process-card p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.process-card-highlight {
  background: linear-gradient(180deg, #fff6b2 0%, #ffe135 100%);
}

/* ── Vertical zigzag timeline (node 313-15311) ── */
.process-timeline {
  position: relative;
  max-width: 680px;
  margin: 56px auto 0;
}

/* Vertical center line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: #050510;
  z-index: 0;
}

/* Dots on the vertical line */
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--blue);
  border: 2px solid #050510;
  border-radius: 50%;
}

/* Position each dot at the midpoint of its corresponding row */
.timeline-dot-1   { top: calc(1 * 20% - 7px); }
.timeline-dot-2   { top: calc(2 * 20% - 7px); }
.timeline-dot-3   { top: calc(3 * 20% - 7px); }
.timeline-dot-4   { top: calc(4 * 20% - 7px); }
.timeline-dot-end {
  bottom: 0;
  top: auto;
  background: var(--yellow);
  transform: translateX(-50%);
}

/* Each row is a 2-col grid: [card | spacer] or [spacer | card] */
.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 24px;
  z-index: 1;
}

.timeline-spacer {
  /* empty column to push card to the other side */
}

/* The card itself */
.timeline-card {
  background: var(--white);
  border: 1.5px solid #d0d8ec;
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(6, 11, 46, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(6, 11, 46, 0.12);
}

/* Left rows: card in col-1, spacer in col-2 */
.timeline-row-left .timeline-card  { margin-right: 24px; }
/* Right rows: spacer in col-1, card in col-2 */
.timeline-row-right .timeline-card { margin-left: 24px; }

/* Icon wrapper: icon circle + step number badge */
.timeline-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* white icon on blue bg */
}

.timeline-icon-blue   { background: var(--blue); }
.timeline-icon-yellow {
  background: var(--yellow);
}
.timeline-icon-yellow img {
  filter: none; /* keep icon dark on yellow bg */
}

/* Step number badge — top-right corner of icon */
.timeline-step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: #1C398E;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* Card title */
.timeline-card-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

/* Date badge */
.timeline-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  background: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  border-radius: 12px;
  border: 2px solid var(--Black, #060B2E);
  background: #C5DCFF;
  box-shadow: 3px 3px 0 0 #060B2E;
}

.timeline-date-yellow {
  background: var(--yellow);
  border-color: var(--navy);
}


.process-cta-wrap {
  display: grid;
  justify-items: center;
  margin-top: 48px;
}

.process-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  box-shadow: 5px 5px 0 0 var(--navy);
  background: var(--yellow);
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.profile-layout-figma {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.profile-copy-figma {
  display: grid;
  gap: 24px;
}

.profile-title-figma {
  color: #1c398e;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1.5px;
}

.profile-title-figma span {
  color: #1847f4;
}

.profile-list-figma {
  display: grid;
  gap: 12px;
  width: 482px;
}

.profile-item-figma {
  min-height: 68px;
  padding: 15.5px 25.5px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.profile-check-box {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #1847f4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.profile-check-box img {
  width: 10px;
  height: 8px;
  object-fit: contain;
}

.profile-item-figma p {
  color: var(--navy);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  flex: 1;
}

.profile-card-figma {
  position: relative;
  width: 462px;
  min-width: 462px;
  height: 555px;
}

.profile-card-frame {
  position: absolute;
  top: 0;
  left: 22.55px;
  width: 417.62px;
  height: 554.82px;
  overflow: hidden;
  border: 3px solid rgba(24, 71, 244, 0.55);
  border-radius: 28px;
  background: #8fd08b;
}

.profile-card-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 411.62px;
  height: 548.82px;
  overflow: hidden;
}

.profile-card-image {
  position: absolute;
  display: block;
  top: -56.28%;
  left: -106.12%;
  width: 210.41%;
  height: 157.81%;
  max-width: none;
  object-fit: cover;
}

.profile-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 230.5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(6, 11, 46, 0.97) 100%);
}

.profile-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 1;
}

.profile-card-heading {
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.6px;
}

.profile-card-subtitle {
  color: rgba(197, 220, 255, 0.65);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.profile-top-badge,
.profile-bottom-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 41px;
  padding: 10px 18px;
  border: 2px solid var(--navy);
  border-radius: 50px;
  box-shadow: 3px 3px 0 0 var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.66px;
  font-family: "Montserrat", sans-serif;
}

.profile-top-badge {
  top: 16px;
  left: 0;
  background: var(--yellow);
  color: var(--navy);
}

.profile-bottom-badge {
  right: 0;
  bottom: 28px;
  background: #1847f4;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.35);
}

.profile-top-badge img,
.profile-bottom-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.profile-content h2 {
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}

.profile-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.profile-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--blue);
}

.profile-photo {
  overflow: hidden;
  border-radius: 26px;
}

.profile-photo img {
  height: 100%;
  object-fit: cover;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.role-card {
  position: relative;
  overflow: hidden;
  min-height: 294px;
  border-radius: 26px;
}

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

.role-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(6, 11, 46, 0.06) 0%, rgba(6, 11, 46, 0.92) 100%);
  color: var(--white);
}

.role-overlay-light {
  background: linear-gradient(180deg, rgba(47, 93, 255, 0.08) 0%, rgba(37, 57, 170, 0.94) 100%);
}

.role-brand {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--yellow);
}

.role-overlay p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.role-button {
  justify-self: start;
  min-height: 38px;
  padding: 0 16px;
  background: var(--yellow);
  color: var(--navy);
}

.role-button-light {
  background: var(--white);
}

.environment .section-pill,
.environment .section-title {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 20px;
}

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

.gallery-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  min-height: 32px;
  padding: 0 14px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.gallery-card-wide {
  grid-column: span 2;
}

.footer {
  padding: 36px 0 42px;
  background: rgba(255, 255, 255, 0.42);
  border-top: 2px solid rgba(6, 11, 46, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.footer-branding p,
.footer-contact {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.roles-figma {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.roles-heading,
.gallery-heading-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.roles-pill,
.gallery-pill {
  min-height: 54px;
  padding: 12px 24px;
  background: #1847f4;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1.5px;
  box-shadow: 2px 2px 0 0 var(--navy);
}

.roles-title,
.gallery-title-figma {
  color: #1c398e;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-align: center;
}

.roles-title span,
.gallery-title-figma span {
  color: #1847f4;
}

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

.role-card-figma {
  min-width: 0;
  border: 3px solid var(--navy);
  border-radius: 28px;
  overflow: hidden;
  padding: 3px;
  /* Equal height: flex column so body stretches */
  display: flex;
  flex-direction: column;
}

.role-card-gamota {
  background: var(--navy);
  box-shadow: 8px 8px 0 0 #1847f4;
}

.role-card-adsota {
  background: #1847f4;
  box-shadow: 8px 8px 0 0 var(--yellow);
}

.role-card-media {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

.role-card-gradient {
  position: absolute;
  inset: 0;
}

.role-card-gradient-dark {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(6, 11, 46, 0.93) 100%);
}

.role-card-gradient-blue {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #1847f4 100%);
}

.role-card-branding {
  position: absolute;
  left: 28px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.role-accent-line {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--yellow);
}

.role-brand-title {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.08px;
}

.role-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  /* Grow to fill card height so button always at bottom */
  flex: 1;
}

.role-card-body-dark {
  gap: 24px;
}

.role-card-body-blue {
  gap: 20px;
}

.role-card-body h3 {
  color: var(--white);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

/* Info block: description + tags — Figma: flex-col gap-[12px] */
.role-card-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  /* Grow to fill available space — pushes button to bottom */
  flex: 1;
}

/* Description text — Figma 313:15397/324:1978 */
.role-card-desc {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}

.role-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
}

.role-card-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex: 0 0 7px;
}

/* Role tags list — Figma 313-15398: flex-wrap pill badges */
.role-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* Individual role tag pill — same glassmorphism style as .role-card-tag */
.role-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: 18px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.role-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.role-card-button {
  width: 100%;
  min-height: 54px;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.15);
}

.role-card-button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.role-card-button-yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 20px 0 rgba(255, 225, 53, 0.3);
}

.role-card-button-white {
  background: var(--white);
  color: #1847f4;
}

.gallery-figma {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-subtitle-figma {
  color: #4a5565;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.17;
  text-align: center;
}

.gallery-grid-figma {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-card-figma {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2px;
  min-height: 230px;
}

.gallery-card-figma img {
  width: 100%;
  height: 226px;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.gallery-badge-blue {
  background: #1847f4;
  color: var(--white);
}

.gallery-badge-yellow {
  background: var(--yellow);
  color: var(--navy);
}

.footer {
  padding: 0;
  background: transparent;
  border-top: 0;
}

.footer-main {
  background: var(--white);
  padding: 40px 0;
}

.footer-inner-figma {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-branding-figma {
  width: 246px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo-image {
  width: 247px;
  height: 96px;
  object-fit: contain;
}

.footer-contact-list {
  display: grid;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e1e1e;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.footer-contact-item img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 16px;
}

.footer-contact-item-address {
  align-items: flex-start;
  gap: 5px;
}

.footer-contact-item-address img {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.footer-social-block {
  width: 310px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-social-title {
  color: #1e1e1e;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-social-figma {
  display: flex;
  gap: 16px;
}

.footer-social-figma a {
  width: 40px;
  height: 40px;
  display: inline-flex;
}

.footer-social-figma img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-social-copy {
  color: #515151;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.83;
}

.footer-bottom {
  background: #0d0e14;
  border-top: 0.5px solid #171a1f;
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-bottom-inner p,
.footer-bottom-inner a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.footer-bottom-inner p {
  color: #878693;
}

.footer-bottom-inner a {
  color: #7c9ef8;
  text-decoration: none;
}

.footer-bottom-divider {
  width: 1px;
  height: 10px;
  background: #878693;
  opacity: 0.4;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 2px solid var(--black, #060B2E);
  background: #1847F4;
  box-shadow: 3px 3px 0 0 #060B2E;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hero New Layout */
.hero-new {
  position: relative;
  z-index: 2;
  padding-bottom: 0;
  overflow: visible;
}

/* Upper centered block */
.hero-inner-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding: 40px 80px 48px;
  position: relative;
}

.hero-new .hero-title {
  margin-bottom: 0;
}

/* CTA button — exact Figma: yellow bg, dark border, 4px shadow */
.hero-inner-new .hero-button {
  margin-bottom: 0;
}

/* ====================================
   HERO MOBILE BROWSER MOCKUP (411-343)
   ==================================== */

/* Hidden on desktop — shown in tablet/mobile media query */
.hero-brower-mob {
  display: none;
  padding: 0 20px 40px;
}

/* Mobile browser window card */
.hbm-window {
  width: 100%;
  max-width: 406px;
  margin: 0 auto;
  background: var(--white);
  border: 5px solid #1847F4;
  border-radius: 20px;
  box-shadow: 14px 14px 0px 0px #060B2E;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Chrome bar */
.hbm-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
}

.hbm-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.hbm-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
}

.hbm-url {
  flex: 1;
  min-height: 26px;
  background: #F1F5F9;
  border-radius: 50px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 11px;
  color: #4A5565;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Content: image on top, text below */
.hbm-content {
  background: #CDF1FF;
  display: flex;
  flex-direction: column;
}

/* Image: show top portion (portrait crop) of the wide screenshot */
.hbm-image-wrap {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.hbm-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Text paragraphs */
.hbm-text {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #CDF1FF;
}

.hbm-text p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #060B2E;
  line-height: 1.65;
  text-align: center;
  margin: 0;
}

/* Browser mockup wrapper */
.hero-browser-wrap {
  display: flex;
  justify-content: center;
  padding: 100px 80px 120px;
}

/* Browser window: 1100×660 per Figma */
.hero-browser-window {
  width: 1100px;
  max-width: 100%;
  height: 660px;
  background: var(--white);
  border: 5px solid #1847F4;
  border-radius: 20px;
  box-shadow: 14px 14px 0px 0px #060B2E;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Title bar */
.hero-browser-bar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
}

.hero-browser-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.hero-browser-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
}

/* URL bar */
.hero-browser-url {
  flex: 1;
  min-height: 26px;
  background: #F1F5F9;
  border-radius: 50px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 11px;
  color: #4A5565;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* App content area — use aspect-ratio so absolute children get correct % dimensions */
.hero-browser-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Maintain 1100×610 ratio (window 660 - bar ~50) */
  aspect-ratio: 1100 / 610;
  flex-shrink: 0;
}

/* Full-cover background screenshot */
.hero-browser-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill; /* stretch to fit — no cropping */
  display: block;
  pointer-events: none;
  z-index: 0;
}

/* Text overlay — Figma node 333:4817: left:119px, top:163px, width:401px */
.hero-browser-text {
  position: absolute;
  left: 10.82%; /* 119/1100 */
  top: 26.72%;  /* 163/610 */
  width: 36.45%; /* 401/1100 */
  display: flex;
  flex-direction: column;
  gap: 1.45%; /* 16/1100 * 100 ... use em instead */
  gap: 16px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: clamp(9px, 1.27vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  color: #060B2E;
  text-align: center;
  z-index: 1;
}

.hero-browser-text p {
  margin: 0;
}

/* QR overlay — exact Figma: left:945px, top:420px in 1100×610 content area */
.hero-qr-overlay {
  position: absolute;
  left: 85.91%; /* 945/1100 */
  top: 68.85%;  /* 420/610 */
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 11.73%; /* 129/1100 */
  z-index: 1;
}

.hero-qr-label-box {
  background: var(--white);
  border: 2px solid #060B2E;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #060B2E;
  padding: 8px 12px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #060B2E;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-qr-image-box {
  background: var(--white);
  border: 2px solid #060B2E;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #060B2E;
  padding: 12px;
  width: 129px;
  height: 129px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-qr-image-box img {
  width: 105px;
  height: 105px;
  object-fit: contain;
}


.hero-down-indicator {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: heroBounce 2s infinite;
}
.hero-down-indicator img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.hero-down-indicator:hover {
  animation-play-state: paused;
  transform: translateX(-50%) translateY(4px);
  box-shadow: 0 4px 12px rgba(6, 11, 46, 0.15);
}
@keyframes heroBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Update Reasons Section */
.reasons-layout-new {
  grid-template-columns: 1fr;
}
.reasons-layout-new .reasons-copy {
  max-width: 900px;
  margin: 0 auto;
}
.reasons-layout-new .reasons-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1100px) {
  .topbar {
    background-color: rgba(197, 220, 255, 0.7);
    background-image: none;
    backdrop-filter: none;
  }

  .topbar-inner {
    min-height: 73px;
    padding: 14px 0;
  }

  .topbar-nav,
  .topbar-inner>.topbar-cta {
    display: none;
  }

  .topbar-mobile-actions {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
  }

  .topbar-cta-mobile {
    min-height: 45px;
    padding: 12px 26px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
  }

  .topbar.is-mobile-nav-open .topbar-mobile-nav {
    display: block;
  }

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

  .reasons-layout {
    display: grid;
  }

  .reasons-copy,
  .reason-feature {
    width: 100%;
  }

  .reason-feature {
    max-width: 628px;
    margin: 0 auto;
  }

  .reason-feature-frame {
    width: 100%;
  }

  .benefits-layout-new {
    grid-template-columns: 1fr;
  }

  .journey-cards,
  .role-grid,
  .gallery-grid,
  .profile-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .roles-grid-figma,
  .gallery-grid-figma {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner-figma {
    display: grid;
  }

  .profile-layout-figma {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .profile-copy-figma,
  .profile-list-figma,
  .profile-card-figma {
    width: 100%;
    min-width: 0;
  }

  .profile-card-figma {
    max-width: 462px;
    margin: 0 auto;
  }

  .gallery-card-wide {
    grid-column: auto;
  }

  .role-card-figma,
  .footer-branding-figma,
  .footer-social-block {
    width: 100%;
  }

  /* Hero browser: tablet — scale window to viewport */
  .hero-inner-new {
    padding: 40px 24px 40px;
    gap: 28px;
  }

  .hero-browser-wrap {
    padding: 48px 16px 80px;
    display: none;
  }

  /* Show mobile mockup instead */
  .hero-brower-mob {
    display: block;
    padding-top: 30px;
  }

  .hero-browser-window {
    width: 100%;
    height: auto;
    aspect-ratio: 1100 / 660;
  }

  /* Scale overlays with font-size relative to window width */
  .hero-browser-bar {
    padding: 8px 12px;
  }

  .hero-browser-text {
    font-size: clamp(8px, 1.3vw, 14px);
    gap: clamp(8px, 1.5vw, 16px);
  }

  .hero-qr-overlay {
    width: clamp(70px, 11.7vw, 129px);
    height: auto;
  }

  .hero-qr-label-box {
    font-size: clamp(7px, 1.1vw, 12px);
    padding: 4px 8px;
    border-radius: 8px;
  }

  .hero-qr-image-box {
    width: clamp(70px, 11.7vw, 129px);
    height: clamp(70px, 11.7vw, 129px);
    padding: 8px;
    border-radius: 8px;
  }

  .hero-qr-image-box img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 780px) {
  .page-shell {
    background-size:
      62px 62px,
      96px 96px,
      30px 30px,
      30px 30px,
      auto 100%;
    background-position:
      left -10px top 18px,
      right -18px top 70px,
      left 96px top 24px,
      right 32px bottom 220px,
      center top;
  }

  .page-shell::before {
    background:
      url("../assets/images/bg-circles-top.png") no-repeat center top / 220% auto,
      url("../assets/images/bg-horizontal.png") no-repeat center 52% / 140% auto,
      url("../assets/images/bg-looper.png") no-repeat left -80px bottom 520px / 360px auto;
    opacity: 0.34;
  }

  .topbar-inner {
    justify-content: space-between;
    padding: 14px 0;
  }

  .topbar-logo {
    flex-basis: 120px;
    width: 120px;
    height: 47px;
  }

  .topbar-logo img {
    width: 120px;
    height: 47px;
  }

  .topbar-mobile-actions {
    gap: 16px;
  }

  .bottom-nav-cta {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
    margin-left: auto;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  /* Hero browser: mobile — hide complex browser mockup, show simplified layout */
  .hero-browser-wrap {
    padding: 32px 16px 60px;
  }

  .hero-browser-window {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-width: 3px;
    box-shadow: 6px 6px 0px 0px #060B2E;
    border-radius: 12px;
  }

  .hero-browser-text {
    display: none; /* too small to read on mobile */
  }

  .hero-qr-overlay {
    display: none; /* QR not usable at this scale */
  }

  .hero-browser-bar {
    padding: 6px 8px;
  }

  .hero-browser-dot {
    width: 8px;
    height: 8px;
  }

  .hero-browser-url {
    font-size: 9px;
    min-height: 18px;
  }

  .hero-inner-new {
    padding: 28px 20px 36px;
    gap: 20px;
  }

  .topbar-cta-mobile {
    min-height: 40px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .topbar-mobile-nav {
    width: min(100% - 24px, var(--container));
    margin-bottom: 10px;
    padding: 10px 14px 14px;
  }

  .section {
    padding: 42px 0;
  }

  .reasons-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid-new {
    grid-template-columns: 1fr;
  }

  /* Process timeline: collapse zigzag to single left-aligned column */
  .process-timeline {
    max-width: 100%;
    margin-top: 36px;
  }

  /* Vertical line: left-aligned, no center-translate */
  .timeline-line {
    left: 16px;
    transform: none;
  }

  /* Dots: centered on the 2px line at left:16px */
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
  }

  /* All rows: single column, remove zigzag */
  .timeline-row-left,
  .timeline-row-right {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  /* Hide spacer on mobile */
  .timeline-row-left .timeline-spacer,
  .timeline-row-right .timeline-spacer {
    display: none;
  }

  /* Cards: shift right — line at 16px + dot 14px + 8px gap = 38px minimum */
  .timeline-row-left .timeline-card,
  .timeline-row-right .timeline-card {
    margin-left: 48px;
    margin-right: 0;
    padding: 20px 16px;
  }

  /* Dots: evenly space at 20% each (5 steps) */
  .timeline-dot-1 { top: 10%; }
  .timeline-dot-2 { top: 28%; }
  .timeline-dot-3 { top: 47%; }
  .timeline-dot-4 { top: 66%; }
  .timeline-dot-end { top: auto; bottom: 0; }

  .roles-grid-figma,
  .gallery-grid-figma {
    grid-template-columns: 1fr;
  }

  .journey-roadmap-dates {
    padding: 0;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 24%);
  }

  .hero-bg-circles {
    top: -172px;
    left: 50%;
    width: 2180px;
    height: auto;
  }

  .hero-bg-glow-left {
    left: -130px;
    top: -86px;
    width: 420px;
    height: 360px;
  }

  .hero-bg-glow-right {
    right: -116px;
    top: 122px;
    width: 360px;
    height: 360px;
  }

  .hero-bg-sphere-yellow {
    left: -8px;
    top: 122px;
    width: 82px;
    height: 82px;
  }

  .hero-bg-sphere-blue {
    right: -46px;
    top: 330px;
    width: 128px;
    height: 128px;
  }

  .hero-bg-star-left {
    left: 88px;
    top: 88px;
    width: 46px;
    height: 46px;
  }

  .hero-bg-star-right {
    right: 72px;
    top: 136px;
    width: 46px;
    height: 46px;
  }

  .hero-bg-sparkle-small {
    left: 102px;
    bottom: 154px;
    width: 30px;
    height: 30px;
  }

  .hero-bg-sparkle-tiny {
    left: 146px;
    bottom: 202px;
    width: 12px;
    height: 12px;
  }

  .reason-floating-qr {
    left: 10px;
    bottom: 10px;
  }

  .reason-apply-button {
    right: 10px;
    bottom: 10px;
    width: 68px;
    height: 68px;
    font-size: 11px;
  }

  .reason-feature {
    height: auto;
    padding-bottom: 0;
  }

  .reason-feature-frame {
    height: auto;
    aspect-ratio: 628 / 496;
  }

  .reason-window-bar {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 2;
  }

  .reason-feature-stage {
    inset: 50px 0 0 0;
  }

  .journey-heading {
    font-size: 18px;
  }

  .hero-title {
    flex-direction: column;
    gap: 6px;
    font-size: clamp(56px, 15vw, 92px);
    line-height: 0.95;
  }

  .hero-copy {
    font-size: 22px;
  }

  .hero-button {
    font-size: 20px;
    line-height: 1.2;
  }

  .journey-roadmap-track {
    height: 96px;
  }

  .roadmap-car {
    left: 28px;
    width: 40px;
    height: 40px;
  }

  .roadmap-flag {
    right: 18px;
    width: 36px;
    height: 36px;
  }

  .process-intro-figma {
    font-size: 18px;
  }

  .process-cta-button,
  .benefits-pill,
  .process-pill,
  .profile-pill {
    font-size: 20px;
  }

  .roles-pill,
  .gallery-pill {
    font-size: 20px;
  }

  .roles-title,
  .gallery-title-figma,
  .profile-title-figma {
    font-size: 36px;
  }

  .gallery-subtitle-figma {
    font-size: 18px;
    line-height: 1.45;
  }

  .profile-item-figma {
    min-height: 72px;
    padding: 14px 18px;
  }

  .role-brand-title {
    font-size: 42px;
  }

  .role-card-body h3,
  .role-card-button {
    font-size: 20px;
  }

  .footer-bottom-inner {
    flex-wrap: wrap;
  }

  .profile-card-figma {
    height: auto;
    aspect-ratio: 462 / 555;
  }

  .profile-card-frame {
    left: 4.88%;
    width: 90.39%;
    height: 100%;
  }

  .profile-card-image-wrap {
    width: 98.56%;
    height: 98.92%;
  }

  .hero-main-card {
    flex-direction: column;
    padding: 24px;
    gap: 32px;
    border-radius: 24px;
    margin-bottom: 40px;
  }

  .hero-card-title {
    font-size: 36px;
    text-align: center;
  }

  .hero-card-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .hero-main-card-left {
    align-items: center;
  }

  .reasons-layout-new .reasons-grid {
    grid-template-columns: 1fr;
  }

  /* Process timeline mobile: collapse to single column */
  .process-timeline {
    max-width: 100%;
    margin-top: 40px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .timeline-spacer {
    display: none;
  }

  .timeline-row-left .timeline-card,
  .timeline-row-right .timeline-card {
    margin-left: 0;
    margin-right: 0;
  }

  .timeline-line {
    left: 16px;
    transform: none;
    display: none;
  }

  .timeline-dot {
    left: 16px;
    transform: translateX(-50%);
  }

  .timeline-dot-1 { top: calc(0 * 20% + 40px); }
  .timeline-dot-2 { top: calc(1 * 20% + 40px); }
  .timeline-dot-3 { top: calc(2 * 20% + 40px); }
  .timeline-dot-4 { top: calc(3 * 20% + 40px); }


  /* Benefits figma section mobile */
  .benefits-figma-section {
    padding: 48px 0 0;
  }

  .bfs-header {
    margin-bottom: 32px;
  }

  /* Hide arrows on mobile — swipe gesture suffices */
  .bfs-arrow {
    display: none;
  }

  .bfs-slider-container {
    gap: 0;
    padding-bottom: 48px;
    padding-top: 4px;
  }

  /* Single card: full width, no top margin offset */
  .bfs-card {
    margin-top: 0;
    padding: 24px 20px;
  }

  .bfs-yellow-band {
    width: calc(100% - 32px);
    height: 50%;
  }

  .bfs-title {
    font-size: clamp(24px, 6vw, 32px);
  }
}
@media (max-width: 991x) {
  .hbm-image-wrap {
    height: auto;
  }
}
@media (max-width: 640px) {
  .bfs-title {
    font-size: 24px;
  }

  /* Full-width single card on mobile */
  .bfs-swiper .swiper-slide {
    padding: 0 4px;
  }

  .bfs-card {
    padding: 20px 16px;
    border-radius: 16px;
    margin-top: 0;
  }

  .bfs-avatar {
    width: 64px;
    height: 64px;
  }

  .bfs-card-title {
    font-size: 16px;
  }

  .bfs-card-cta {
    font-size: 17px;
    min-height: 48px;
  }
  .roadmap-stop-yellow {
    left: 25%;
  }
  .roadmap-stop-dark {
    left: 75%;
  }
  .hero-inner-new {
    padding-bottom: 80px;
  }
  .hero-down-indicator {
    bottom: 20px;
  }
  .hbm-image-wrap {
    height: auto;
  }
}

.hero-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
  text-align: center;
}

.hero-wordmark-the {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.28em;
  color: #1847f4;
}

.hero-wordmark-next {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: 0.04em;
  color: #ffe135;
  text-shadow:
    3px 3px 0 #1847f4,
    -1px -1px 0 #1847f4,
    1px -1px 0 #1847f4,
    -1px 1px 0 #1847f4;
}

.hero-wordmark-sub {
  margin-top: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #1847f4;
}
