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

:root {
  --bg-dark: #01000a;
  --bg-light-gray: rgba(1, 0, 10, 0.02);
  --grad-green: #22d66b;
  --grad-blue: #369bff;
  --white: #ffffff;
  --text-dark: #01000a;
  --text-muted-dark: rgba(1, 0, 10, 0.6);
  --text-light: rgba(255, 255, 255, 0.7);
  --border: rgba(1, 0, 10, 0.24);
  --border-white: rgba(255, 255, 255, 0.2);
  --card-radius: 20px;
  --font: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 88px;
}

/* ─── GRADIENT TEXT ─────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(90deg, var(--grad-green), var(--grad-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 24px;
  height: 56px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 16px;
  padding: 16px 24px;
  height: 56px;
}

.btn--primary {
  background: linear-gradient(90deg, var(--grad-green), var(--grad-blue));
  color: var(--white);
}

.btn--ghost {
  background: var(--white);
  border: 1px solid var(--grad-green);
}

.btn--outline-white {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: transparent;
  background-clip: padding-box;
}

.btn--white .btn-label {
  background: linear-gradient(90deg, var(--grad-green), var(--grad-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.btn__icon {
  width: 24px;
  height: 24px;
}

/* ─── SECTION HEADING ─────────────────────────────────────── */
.section-heading {
  text-align: center;
  max-width: 896px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-heading h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.17;
  color: var(--text-dark);
}

.section-heading p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(1, 0, 10, 0.1);
  transition: background 0.3s;
}

.navbar__inner {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 88px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.logo__icon {
  width: 50px;
  height: 33px;
  object-fit: contain;
}

.logo__text {
  width: 79px;
  height: 26px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__link {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--grad-blue);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger img {
  width: 24px;
  height: 24px;
}

/* ─── MOBILE NAV DRAWER ─────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 0, 10, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay--show {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 360px);
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 24px 24px max(40px, env(safe-area-inset-bottom));
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(1, 0, 10, 0.12);
}

.nav-drawer--open {
  transform: translateX(0);
}

.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.nav-drawer__close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex: 1;
}

.nav-drawer__link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav-drawer__link:hover {
  color: var(--grad-green);
}

.nav-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.nav-drawer__actions .btn {
  width: 100%;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  background: var(--white);
  padding-top: 176px;
  padding-bottom: 80px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 52px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1096px;
}

.hero__tag {
  background: rgba(54, 155, 255, 0.08);
  border: 1px solid var(--grad-green);
  border-radius: 61px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__tag-star {
  width: 15px;
  height: 15px;
}

.hero__headline {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-dark);
}

.hero__sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted-dark);
  max-width: 959px;
}

.hero__ctas {
  display: flex;
  justify-content: center;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 1336px;
  height: auto;
  aspect-ratio: 1336 / 700;
  border-radius: 12px;
  overflow: hidden;
}

.hero__visual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(32, 32, 32, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 11px;
  padding: 14px 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  z-index: 5;
}

.hero__card-flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.hero__card--uk {
  top: 37.85%;
  left: 18.11%;
  width: auto;
}

.hero__card--us {
  top: 70.57%;
  left: 37.27%;
}

.hero__card--ca {
  top: 56.28%;
  left: 2.76%;
  width: auto;
}

/* ─── STATS ─────────────────────────────────────── */
.stats {
  background: var(--bg-dark);
  padding: 40px 0;
}

.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 164px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.stat__number {
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  text-transform: uppercase;
}

.stat__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

/* ─── GLOBAL OPPORTUNITIES ─────────────────────────────────────── */
.opportunities {
  background: var(--white);
  padding: 80px 0;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.opp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow: hidden;
}

.opp-card__illus {
  border-radius: 12px;
  height: 288px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.opp-card__illus--blue {
  background: rgba(54, 155, 255, 0.08);
}

.opp-card__illus--amber {
  background: rgba(247, 144, 9, 0.08);
  flex-direction: column;
  align-items: flex-end;
  padding: 20px 0;
}

.opp-card__illus--green {
  background: rgba(19, 142, 68, 0.08);
}

.opp-card__texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.opp-card__texts h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: var(--text-dark);
}

.opp-card__texts p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: var(--text-muted-dark);
}

/* Alert stack inside B2B card */
.alert-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.alert {
  background: var(--white);
  border: 0.7px solid var(--border);
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
  color: var(--text-dark);
}

.alert--md {
  font-size: 13px;
  padding: 11px 15px;
}

.alert--lg {
  font-size: 14px;
  padding: 14px 16px;
}

.alert__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 5px;
  flex-shrink: 0;
}

.alert__icon--green {
  background: rgba(19, 142, 68, 0.08);
}

/* FX conversion panel */
.fx-conversion {
  position: relative;
  width: 340px;
  height: 215px;
  flex-shrink: 0;
}

.fx-convert {
  position: absolute;
  right: 0;
  background: var(--white);
  border-top: 0.874px solid var(--border);
  border-left: 0.874px solid var(--border);
  border-bottom: 0.874px solid var(--border);
  border-right: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10.5px;
  border-radius: 14px 0 0 14px;
}

.fx-convert--lg {
  border-top-width: 0.983px;
  border-left-width: 0.983px;
  border-bottom-width: 0.983px;
  border-radius: 15.7px 0 0 15.7px;
}

.fx-convert--pos-1 {
  top: 0;
}

.fx-convert--pos-2 {
  top: 70px;
}

.fx-convert--pos-3 {
  top: 147px;
}

.fx-convert__pill {
  background: rgba(1, 0, 10, 0.04);
  border-radius: 29px;
  display: flex;
  align-items: center;
  gap: 10.5px;
  padding: 7px 10.5px;
}

.fx-convert--lg .fx-convert__pill {
  border-radius: 32px;
  gap: 11.8px;
  padding: 7.9px 11.8px;
}

.fx-convert__flag {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fx-convert--lg .fx-convert__flag {
  width: 23.6px;
  height: 23.6px;
}

.fx-convert__flag--ng {
  border-radius: 10.5px;
}

.fx-convert__pill span {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  line-height: 21px;
}

.fx-convert--lg .fx-convert__pill span {
  font-size: 15.7px;
  line-height: 23.6px;
}

.fx-convert__arrow {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.fx-convert--lg .fx-convert__arrow {
  width: 23.6px;
  height: 23.6px;
}

/* Stablecoin conversion panel inside Stablecoin Payments */
.stablecoin-conversion {
  position: relative;
  width: 340px;
  height: 215px;
  flex-shrink: 0;
}

.stablecoin-convert {
  position: absolute;
  background: var(--white);
  border: 0.874px solid var(--border);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10.5px;
  border-radius: 14px;
  box-shadow: 0px 4px 20px rgba(1, 0, 10, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stablecoin-convert:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 30px rgba(34, 214, 107, 0.15);
}

.stablecoin-convert--lg {
  border-width: 0.983px;
  border-radius: 15.7px;
  z-index: 2;
}

.stablecoin-convert--pos-1 {
  top: 0;
  left: 10px;
}

.stablecoin-convert--pos-2 {
  top: 70px;
  left: 45px;
}

.stablecoin-convert--pos-3 {
  top: 147px;
  left: 20px;
}

.stablecoin-convert__pill {
  background: rgba(1, 0, 10, 0.04);
  border-radius: 29px;
  display: flex;
  align-items: center;
  gap: 10.5px;
  padding: 7px 10.5px;
}

.stablecoin-convert--lg .stablecoin-convert__pill {
  border-radius: 32px;
  gap: 11.8px;
  padding: 7.9px 11.8px;
}

.stablecoin-convert__flag {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.stablecoin-convert--lg .stablecoin-convert__flag {
  width: 23.6px;
  height: 23.6px;
}

.stablecoin-convert__flag--ng {
  border-radius: 10.5px;
}

.stablecoin-convert__pill span {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  line-height: 21px;
}

.stablecoin-convert--lg .stablecoin-convert__pill span {
  font-size: 15.7px;
  line-height: 23.6px;
}

.stablecoin-convert__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--grad-green);
}

.stablecoin-convert--lg .stablecoin-convert__arrow {
  width: 24px;
  height: 24px;
}

.stablecoin-convert__crypto {
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stablecoin-convert--lg .stablecoin-convert__crypto {
  width: 23.6px;
  height: 23.6px;
}

.stablecoin-convert__crypto-svg {
  width: 100%;
  height: 100%;
}

/* ───────────── TAILORED FINANCIAL FREEDOM ───────────── */
.freedom {
  background: var(--bg-light-gray);
  padding: 80px 0;
}

.freedom__main-img--mobile {
  display: none;
}

.freedom__illustration {
  position: relative;
  width: 100%;
  height: 612px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 52px;
}

.freedom__bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
}

.freedom__bg-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
}

.freedom__main-img {
  position: absolute;
  left: -0.27%;
  top: -27.09%;
  width: 65.47%;
  height: 213.38%;
  max-width: none;
  object-fit: cover;
}

.freedom__overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 19, 19, 0) 9.768%, #211611 63.804%);
  border-radius: 16px;
}

.freedom__transaction {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
}

.freedom__card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.freedom__currency-wrap {
  border-radius: 12px;
  width: 196px;
  padding: 56px 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.freedom__currency-wrap.red-bg {
  background: rgba(239, 68, 68, 0.08);
}

.freedom__currency-wrap.green-bg {
  background: rgba(19, 142, 68, 0.08);
}

.freedom__currency-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.freedom__naira-icon {
  position: absolute;
  left: 46%;
  top: 45%;
  width: 20px;
  height: 17px;
}

.freedom__card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.freedom__card-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(1, 0, 10, 0.5);
  white-space: nowrap;
}

.freedom__card-val {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--text-dark);
  white-space: nowrap;
}

.freedom__reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.freedom__reason {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.freedom__reason-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.freedom__icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.freedom__icon-wrap img {
  position: absolute;
  width: 22px;
  height: 22px;
  top: 1px;
  left: 1px;
}

.freedom__shield-icon .freedom__shield-body {
  width: 17px;
  height: 21px;
  top: 2px;
  left: 4px;
}

.freedom__shield-icon .freedom__shield-check {
  width: 9px;
  height: 6px;
  top: 10px;
  left: 8px;
}

.red-light-bg {
  background: rgba(239, 68, 68, 0.08);
}

.yellow-light-bg {
  background: rgba(247, 144, 9, 0.08);
}

.green-light-bg {
  background: rgba(19, 142, 68, 0.08);
}

.freedom__reason-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.freedom__reason-text h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: var(--text-dark);
}

.freedom__reason-text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted-dark);
  line-height: 24px;
}

/* ─── WHY CHOOSE CRELLO ───────────── */
.why-choose {
  background: var(--white);
  padding: 80px 0;
}

.why-choose .section-heading {
  max-width: 1111px;
}

.why-choose .section-heading h2 {
  font-weight: 600;
}

.why-choose .section-heading p {
  max-width: 828px;
  margin-left: auto;
  margin-right: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 592px;
  padding: 32px;
  position: relative;
}

.why-card--blue {
  background: rgba(54, 155, 255, 0.08);
}

.why-card--amber {
  background: rgba(247, 144, 9, 0.08);
}

.why-card--green {
  background: rgba(19, 142, 68, 0.08);
}

.why-card__texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card__texts h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: var(--text-dark);
}

.why-card__texts p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted-dark);
  line-height: 28px;
}

.why-card__bg-vector {
  position: absolute;
  display: block;
  left: -89px;
  top: 233px;
  width: 600px;
  height: 393px;
  max-width: none;
  object-fit: contain;
}

.why-card__illus {
  position: absolute;
  left: 130.5px;
  top: 345px;
  width: 167px;
  height: 167px;
  max-width: none;
  object-fit: cover;
  z-index: 2;
}

/* ─── SERVICES ─────────────────────────────────────── */
.services {
  background: rgba(1, 0, 10, 0.02);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0px 0px 24px 1px rgba(54, 155, 255, 0.12);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-card__icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon--gradient {
  background: linear-gradient(to right, #22d66b, #369bff);
}

.service-card__icon--amber {
  background: #f79009;
}

.service-card__icon--green {
  background: #138e44;
}

.service-card__texts h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 28px;
  margin-bottom: 24px;
}

.service-card__texts p {
  font-size: 16px;
  color: var(--text-muted-dark);
  line-height: 24px;
}

/* ─── REGULATORS / LICENSED ───────────── */
.licensed {
  background: var(--white);
  padding: 80px 0;
}

.licensed .section-heading {
  max-width: none;
}

.licensed .section-heading h2 {
  font-weight: 600;
  max-width: 1111px;
  margin: 0 auto;
}

.licensed .section-heading p {
  max-width: 828px;
  margin: 0 auto;
}

.licenses-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.license-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.license-card__top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.license-card__flag {
  width: 56px;
  height: 56px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.license-card__flag--green {
  background: rgba(19, 142, 68, 0.08);
}

.license-card__flag--red {
  background: rgba(239, 68, 68, 0.08);
}

.license-card__flag img {
  width: 32px;
  height: 32px;
  border-radius: 28px;
  object-fit: cover;
}

.license-card__texts {
  flex: 1 0 0;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  word-break: break-word;
}

.license-card__texts h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--text-dark);
}

.license-card__texts p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted-dark);
  line-height: 24px;
}

.license-card__separator {
  width: 100%;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.license-card__ref {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-muted-dark);
  word-break: break-word;
}

/* ─── CERTIFICATIONS ───────────── */
.certified {
  background: var(--bg-light-gray);
  padding: 80px 0;
}

.certified .section-heading {
  max-width: none;
  margin-bottom: 52px;
}

.certified .section-heading h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 56px;
  max-width: 1111px;
  margin: 0 auto;
}

.certified .section-heading p {
  font-size: 18px;
  line-height: 32px;
  max-width: 828px;
  margin: 0 auto;
}

.certifications-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.certification-logo {
  position: relative;
  width: 272px;
  overflow: hidden;
  flex-shrink: 0;
}

.certification-logo--01 {
  height: 112px;
}

.certification-logo--02 {
  height: 120px;
}

.certification-logo--03 {
  height: 110px;
}

.certification-logo--01 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.certification-logo__inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.certification-logo--02 .certification-logo__inner img {
  position: absolute;
  width: 100%;
  height: 111.28%;
  left: -0.04%;
  top: 0.31%;
  max-width: none;
  object-fit: cover;
}

.certification-logo--03 .certification-logo__inner img {
  position: absolute;
  width: 100%;
  height: 121.87%;
  left: -0.03%;
  top: -0.14%;
  max-width: none;
  object-fit: cover;
}

/* ─── SECURITY ─────────────────────────────────────── */
.security {
  background: linear-gradient(180deg, #15008a 0%, #050024 59.615%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.security__wave {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1864px;
  height: 168px;
  pointer-events: none;
}

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

.security__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 958px;
  margin: 0 auto 52px;
}

.security .section-heading {
  margin-bottom: 0;
  max-width: none;
  width: 100%;
}

.security__shield-main {
  width: 121px;
  height: 121px;
  flex-shrink: 0;
}

.security__top .section-heading h2 {
  color: var(--white);
  font-weight: 600;
  font-size: 48px;
  line-height: 56px;
}

.security__top .section-heading p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 684px;
  margin: 0 auto;
}

.security__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 5;
}

.security__item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  height: 152px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.security__item p {
  font-size: 16px;
  color: var(--white);
  line-height: 24px;
  flex: 1;
}

.security__item img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

/* ─── FAQ ─────────────────────────────────────── */
.faq {
  background: var(--white);
  padding: 80px 0;
}

.faq .section-heading h2 {
  font-weight: 600;
}

.faq .section-heading p {
  max-width: 828px;
}

.faq .section-heading p a {
  color: #369bff;
  text-decoration: underline;
  text-decoration-color: #369bff;
  transition: opacity 0.2s;
}

.faq .section-heading p a:hover {
  opacity: 0.8;
}

.faq__list {
  max-width: 1336px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

.faq__question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 32px;
  gap: 24px;
  transition: color 0.2s;
}

.faq__question:hover {
  color: var(--grad-blue);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon-v {
  transition: opacity 0.2s;
}

.faq__item--open .faq__icon-v {
  opacity: 0;
}

.faq__answer {
  display: none;
  padding: 0;
}

.faq__item--open .faq__answer {
  display: block;
}

.faq__answer p {
  font-size: 18px;
  color: var(--text-muted-dark);
  line-height: 28px;
}

/* ─── CTA ─────────────────────────────────────── */
.cta {
  background: linear-gradient(90deg, var(--grad-green), var(--grad-blue));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta__lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1200px;
  height: 1200px;
  pointer-events: none;
}

.cta__line {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
}

.cta__line:nth-child(1) {
  inset: 0;
}

.cta__line:nth-child(2) {
  inset: 50px;
}

.cta__line:nth-child(3) {
  inset: 100px;
}

.cta__line:nth-child(4) {
  inset: 150px;
}

.cta__line:nth-child(5) {
  inset: 200px;
}

.cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.cta__texts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.cta__inner h2 {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  color: var(--white);
  max-width: 1096px;
}

.cta__inner p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 959px;
  line-height: 32px;
}

.cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-white);
}

.footer .legal_disclaimer p {
  font-size: 12px;
  color: white;
  text-align: center;
  padding-bottom: 30px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.footer__about {
  flex: 1 0 0;
  min-width: 0;
}

.footer__about p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 24px;
  max-width: 268px;
  margin-top: 24px;
}

.footer__col {
  flex-shrink: 0;
}

.footer__col h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 28px;
}

.footer__col nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer__col nav a {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  line-height: 32px;
}

.footer__col nav a:hover {
  color: var(--white);
}

.footer__line {
  display: block;
  width: 100%;
  height: 1px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer__bottom p {
  font-size: 16px;
  color: var(--white);
}

.footer__socials {
  display: flex;
  gap: 48px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.footer__socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ─── RESPONSIVE — TABLET / iPAD PRO (≤ 1100px) ─────────────────────────── */
@media (max-width: 1100px) {
  .container {
    padding: 0 40px;
  }

  .navbar__inner {
    padding: 0 40px;
  }

  /* Switch to hamburger — desktop nav gets cramped below 1100px */
  .nav,
  .navbar__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero — reduce padding now that the nav is shorter */
  .hero {
    padding-top: 140px;
    padding-bottom: 64px;
  }

  .hero__headline {
    font-size: 48px;
    line-height: 1.15;
  }

  .hero__sub {
    font-size: 18px;
  }

  /* Hero visual — fluid to prevent horizontal overflow */
  .hero__visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1336 / 700;
  }

  /* Hero floating cards — proportional positions on the fluid visual */
  .hero__card {
    font-size: 14px;
    padding: 12px 16px;
    gap: 10px;
  }

  .hero__card-flag {
    width: 24px;
    height: 24px;
  }

  .hero__card--uk {
    top: 38%;
    left: 18%;
    width: auto;
  }

  .hero__card--us {
    top: 70%;
    left: 37%;
  }

  .hero__card--ca {
    top: 56%;
    left: 3%;
    width: auto;
  }

  /* Section headings — scale down from 48px desktop */
  .section-heading h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .section-heading p {
    font-size: 18px;
  }

  .certified .section-heading h2,
  .security__top .section-heading h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  /* Stats */
  .stats__inner {
    gap: 80px;
  }

  .stat__number {
    font-size: 40px;
    line-height: 48px;
  }

  /* CTA heading */
  .cta__inner h2 {
    font-size: 48px;
    line-height: 1.15;
  }

  .cards-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .freedom__reasons {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .why-card__bg-vector {
    left: 50%;
    transform: translateX(-50%);
  }

  .why-card__illus {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .licenses-grid {
    flex-direction: column;
    align-items: center;
  }

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

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  /* Footer spacing */
  .footer__top {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ─── RESPONSIVE — TABLET MEDIUM / iPAD AIR (≤ 900px) ─────────────────── */
@media (max-width: 900px) {

  /* Switch to hamburger — nav + actions don't fit at this width */
  .navbar__inner {
    padding: 20px 40px;
    height: auto;
  }

  .nav,
  .navbar__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: 100px;
    padding-bottom: 64px;
  }

  .hero__headline {
    font-size: 42px;
    line-height: 1.15;
  }

  .hero__sub {
    font-size: 18px;
  }

  /* Make visual fill container width, keep aspect ratio */
  .hero__visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1336 / 700;
  }

  /* Reposition cards proportionally (% of 1336×700 original) */
  .hero__card {
    font-size: 12px;
    padding: 10px 14px;
    gap: 10px;
  }

  .hero__card-flag {
    width: 22px;
    height: 22px;
  }

  .hero__card--uk {
    top: 38%;
    left: 18%;
    width: auto;
  }

  .hero__card--us {
    top: 70%;
    left: 37%;
  }

  .hero__card--ca {
    top: 56%;
    left: 3%;
    width: auto;
  }

  /* Section headings — scale down from 48px desktop */
  .section-heading h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .section-heading p {
    font-size: 18px;
  }

  .certified .section-heading h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .security__top .section-heading h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  /* Stats */
  .stats__inner {
    gap: 40px;
  }

  .stat__number {
    font-size: 40px;
    line-height: 48px;
  }

  /* CTA */
  .cta__inner h2 {
    font-size: 44px;
    line-height: 1.15;
  }

  /* Licensed — undo the column stack from the 1100px block, keep side-by-side */
  .licenses-grid {
    flex-direction: row;
    gap: 16px;
  }

  .license-card {
    width: calc(50% - 8px);
  }

  /* Certifications — 3 × 272px + 48px gaps = 864px, overflows 740px container */
  .certifications-grid {
    gap: 16px;
  }

  .certification-logo {
    width: 210px;
  }

  .certification-logo--01 {
    height: 87px;
  }

  .certification-logo--02 {
    height: 93px;
  }

  .certification-logo--03 {
    height: 85px;
  }

  /* Footer */
  .footer__top {
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 32px;
  }

  .footer__col h5 {
    margin-bottom: 24px;
  }

  .footer__col nav {
    gap: 20px;
  }

  .footer__col nav a {
    font-size: 18px;
    line-height: 28px;
  }

  .footer__bottom {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

/* ─── RESPONSIVE — MOBILE (≤ 430px match Figma) ─────────────────────────── */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  /* Navbar mobile */
  .navbar__inner {
    padding: 20px 24px;
    height: auto;
  }

  .nav,
  .navbar__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    gap: 3px;
  }

  .logo__icon {
    width: 37px;
    height: 25px;
  }

  .logo__text {
    width: 60px;
    height: 20px;
  }

  /* Hero mobile */
  .hero {
    padding-top: 120px;
  }

  .hero__inner {
    gap: 48px;
  }

  .hero__copy {
    gap: 28px;
  }

  .hero__tag {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero__headline {
    font-size: 30px;
    line-height: 38px;
  }

  .hero__sub {
    font-size: 18px;
    line-height: 28px;
    max-width: 373px;
  }

  .hero__visual {
    width: 382px;
    height: 414px;
    border-radius: 7px;
  }

  .hero__visual-bg {
    display: none;
  }

  .hero__visual-overlay {
    opacity: 1;
  }

  .hero__card {
    padding: 8.5px;
    font-size: 10px;
    border-radius: 6.4px;
    gap: 8.5px;
  }

  .hero__card-flag {
    width: 19px;
    height: 19px;
  }

  .hero__card--uk {
    top: 200px;
    left: 8px;
    width: 216px;
    font-size: 8px;
    padding: 8.5px;
  }

  .hero__card--us {
    top: 345px;
    left: 26px;
    padding: 8.5px 12.7px;
  }

  .hero__card--ca {
    top: 271px;
    left: 36px;
    width: 264px;
    padding: 10.6px;
    gap: 10.6px;
    border-radius: 7.95px;
  }

  .hero__card--ca .hero__card-flag {
    width: 24px;
    height: 24px;
  }

  /* Opportunities mobile — section */
  .opportunities {
    padding: 48px 0;
  }

  .opportunities .section-heading {
    gap: 16px;
    margin-bottom: 48px;
  }

  .opportunities .section-heading h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }

  .opportunities .section-heading p {
    font-size: 18px;
    line-height: 28px;
  }

  /* Opportunities mobile — cards */
  .opp-card {
    padding: 20px;
    gap: 24px;
  }

  .opp-card__illus {
    height: auto;
  }

  .opp-card__illus--amber {
    padding-left: 48px;
  }

  .opp-card__illus--green {
    height: 196px;
  }

  .opp-card__texts {
    gap: 16px;
  }

  .opp-card__texts h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .opp-card__texts p {
    font-size: 16px;
    line-height: 24px;
  }

  .alert {
    white-space: normal;
    line-height: 1.4;
  }

  /* FX conversion mobile */
  .fx-conversion {
    width: 282px;
    height: 156px;
  }

  .fx-convert {
    gap: 5.9px;
    padding: 7.1px;
    border-radius: 11.7px 0 0 11.7px;
  }

  .fx-convert--lg {
    border-radius: 13.2px 0 0 13.2px;
    gap: 6.6px;
  }

  .fx-convert--pos-1 {
    top: 2px;
  }

  .fx-convert--pos-2 {
    top: 53px;
  }

  .fx-convert--pos-3 {
    top: 111px;
  }

  .fx-convert__flag {
    width: 17.6px;
    height: 17.6px;
  }

  .fx-convert--lg .fx-convert__flag {
    width: 19.8px;
    height: 19.8px;
  }

  .fx-convert__pill {
    border-radius: 24px;
    gap: 8.8px;
    padding: 5.9px 8.8px;
  }

  .fx-convert--lg .fx-convert__pill {
    border-radius: 27px;
    gap: 9.9px;
    padding: 6.6px 9.9px;
  }

  .fx-convert__pill span {
    font-size: 11.7px;
    line-height: 17.6px;
  }

  .fx-convert--lg .fx-convert__pill span {
    font-size: 13.2px;
    line-height: 19.8px;
  }

  .fx-convert__arrow {
    width: 17.6px;
    height: 17.6px;
  }

  .fx-convert--lg .fx-convert__arrow {
    width: 19.8px;
    height: 19.8px;
  }

  /* Stablecoin conversion mobile */
  .stablecoin-conversion {
    width: 280px;
    height: 180px;
  }

  .stablecoin-convert {
    padding: 8px;
    gap: 5px;
    border-radius: 10px;
  }

  .stablecoin-convert--lg {
    border-radius: 12px;
  }

  .stablecoin-convert--pos-1 {
    top: 0;
    left: 5px;
  }

  .stablecoin-convert--pos-2 {
    top: 58px;
    left: 30px;
  }

  .stablecoin-convert--pos-3 {
    top: 120px;
    left: 10px;
  }

  .stablecoin-convert__pill {
    gap: 8px;
    padding: 5px 8px;
  }

  .stablecoin-convert__pill span {
    font-size: 11px;
    line-height: 16px;
  }

  .stablecoin-convert--lg .stablecoin-convert__pill span {
    font-size: 12px;
    line-height: 18px;
  }

  .stablecoin-convert__flag {
    width: 16px;
    height: 16px;
  }

  .stablecoin-convert--lg .stablecoin-convert__flag {
    width: 18px;
    height: 18px;
  }

  .stablecoin-convert__crypto {
    width: 16px;
    height: 16px;
  }

  .stablecoin-convert--lg .stablecoin-convert__crypto {
    width: 18px;
    height: 18px;
  }

  .stablecoin-convert__arrow {
    width: 16px;
    height: 16px;
  }

  .stablecoin-convert--lg .stablecoin-convert__arrow {
    width: 18px;
    height: 18px;
  }

  /* Stats mobile */
  .stats__inner {
    flex-direction: column;
    gap: 52px;
    text-align: center;
  }

  .stat {
    gap: 20px;
  }

  .stat__number {
    font-size: 40px;
    line-height: 48px;
  }

  .stat__label {
    font-size: 14px;
    line-height: 20px;
  }

  /* Tailored Freedom mobile */
  .freedom {
    padding: 48px 0;
  }

  .freedom .section-heading {
    gap: 16px;
    margin-bottom: 48px;
  }

  .freedom .section-heading h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }

  .freedom .section-heading p {
    font-size: 18px;
    line-height: 28px;
  }

  .freedom__main-img--desktop {
    display: none;
  }

  .freedom__main-img--mobile {
    display: block;
    left: -0.73%;
    top: -18.66%;
    width: 151.26%;
    height: 140.96%;
  }

  .freedom__illustration {
    height: 614px;
    border-radius: 12px;
    margin-bottom: 48px;
  }

  .freedom__bg-wrap,
  .freedom__bg-clip {
    border-radius: 12px;
  }

  .freedom__overlay-gradient {
    background: linear-gradient(180deg, rgba(19, 19, 19, 0) 44.309%, #211611 77.66%);
    border-radius: 12px;
  }

  .freedom__transaction {
    top: auto;
    right: auto;
    bottom: 19.55px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .freedom__card {
    padding: 17px 12px;
    gap: 12px;
    border-radius: 11.4px;
  }

  .freedom__currency-wrap {
    width: 136px;
    height: 112px;
    padding: 40px 54px;
    border-radius: 8.55px;
  }

  .freedom__currency-icon {
    width: 34px;
    height: 34px;
  }

  .freedom__naira-icon {
    left: 46%;
    top: 45%;
    width: 14px;
    height: 12px;
  }

  .freedom__card-text {
    gap: 8px;
  }

  .freedom__card-label {
    font-size: 12px;
    line-height: 16px;
  }

  .freedom__card-val {
    font-size: 18px;
    line-height: 24px;
  }

  .freedom__reasons {
    gap: 24px;
  }

  .freedom__reason {
    gap: 16px;
  }

  .freedom__reason-icon {
    height: auto;
    padding: 12px;
    border-radius: 8px;
  }

  .freedom__icon-wrap {
    width: 16px;
    height: 16px;
  }

  .freedom__icon-wrap img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .freedom__reason-text {
    gap: 12px;
  }

  .freedom__reason-text h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .freedom__reason-text p {
    font-size: 14px;
    line-height: 20px;
  }

  /* Why Choose Crello mobile */
  .why-choose {
    padding: 48px 0;
  }

  .why-choose .section-heading {
    text-align: left;
    gap: 16px;
    margin-bottom: 48px;
    max-width: none;
  }

  .why-choose .section-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .why-choose .section-heading p {
    font-size: 18px;
    line-height: 28px;
  }

  .why-grid {
    gap: 24px;
  }

  .why-card {
    height: 480px;
    border-radius: 12px;
    padding: 28px;
  }

  .why-card__texts {
    gap: 20px;
  }

  .why-card__texts h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .why-card__texts p {
    font-size: 16px;
    line-height: 24px;
  }

  .why-card__bg-vector {
    top: unset;
    left: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    width: 532px;
    height: 348px;
  }

  .why-card__illus {
    top: 265px;
    left: 50%;
    transform: translateX(-50%);
    width: 149px;
    height: 149px;
  }

  /* Our Services mobile */
  .services {
    padding: 48px 0;
  }

  .services .section-heading {
    margin-bottom: 48px;
  }

  .services .section-heading h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }

  .services .section-heading p {
    font-size: 18px;
    line-height: 28px;
  }

  .services-grid {
    gap: 24px;
  }

  .service-card {
    padding: 28px;
    gap: 28px;
  }

  .service-card__icon {
    width: 59px;
    height: 59px;
    border-radius: 16px;
  }

  .service-card__icon svg {
    width: 27px;
    height: 27px;
  }

  .service-card__texts h4 {
    margin-bottom: 16px;
  }

  /* Licensed section mobile */
  .licensed {
    padding: 48px 0;
  }

  .licensed .section-heading {
    gap: 24px;
    margin-bottom: 48px;
  }

  .licensed .section-heading h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }

  .licensed .section-heading p {
    font-size: 18px;
    line-height: 28px;
  }

  .licenses-grid {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .license-card {
    width: 100%;
    max-width: 365px;
  }

  /* Certified section mobile */
  .certified {
    padding: 48px 0;
  }

  .certified .section-heading {
    gap: 24px;
    margin-bottom: 48px;
  }

  .certified .section-heading h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    max-width: none;
    margin: 0;
  }

  .certified .section-heading p {
    font-size: 18px;
    line-height: 28px;
    max-width: none;
    margin: 0;
  }

  .certifications-grid {
    flex-direction: column;
    align-items: center;
  }

  /* Your Security mobile */
  .security {
    background: #01000a;
    padding: 56px 0;
  }

  .security__wave {
    display: none;
  }

  .security__top {
    gap: 16px;
  }

  .security__top .section-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .security__top .section-heading p {
    font-size: 18px;
    line-height: 28px;
    max-width: none;
  }

  .security__item {
    height: auto;
    padding: 16px 12px;
  }

  .security__item img {
    width: 40px;
    height: 40px;
  }

  .security__item p {
    font-size: 12px;
    line-height: 16px;
  }

  /* FAQ mobile */
  .faq {
    padding: 48px 0;
  }

  .faq .section-heading {
    gap: 16px;
    margin-bottom: 48px;
  }

  .faq .section-heading h2 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
  }

  .faq .section-heading p {
    font-size: 18px;
    line-height: 28px;
    max-width: none;
  }

  .faq__list {
    gap: 20px;
  }

  .faq__item {
    gap: 20px;
    padding-bottom: 20px;
  }

  .faq__question {
    font-size: 16px;
    line-height: 24px;
  }

  .faq__answer p {
    font-size: 14px;
    line-height: 20px;
  }

  /* CTA mobile */
  .cta {
    padding: 52px 0;
  }

  .cta__inner {
    gap: 48px;
  }

  .cta__inner h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .cta__lines {
    width: 720px;
    height: 720px;
  }

  .cta__line {
    border-width: 0.6px;
    border-radius: 19.2px;
  }

  .cta__line:nth-child(2) {
    inset: 30px;
  }

  .cta__line:nth-child(3) {
    inset: 60px;
  }

  .cta__line:nth-child(4) {
    inset: 90px;
  }

  .cta__line:nth-child(5) {
    inset: 120px;
  }

  /* Footer mobile */
  .footer__top {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer__about p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer__col h5 {
    margin-bottom: 24px;
  }

  .footer__col nav {
    gap: 20px;
  }

  .footer__col nav a {
    font-size: 16px;
    line-height: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 20px;
  }

  .footer__bottom p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer__socials {
    gap: 27px;
  }

  .footer__socials a {
    width: 20px;
    height: 20px;
  }
}

/* ─── VIEWPORT ENTRANCE ANIMATIONS ───────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    transition: opacity 0.85s ease-in-out, transform 0.85s ease-in-out;
    will-change: transform, opacity;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Staggered entrance delays for grids & cards */
  .cards-row>.opp-card:nth-child(2) {
    transition-delay: 0.15s;
  }

  .cards-row>.opp-card:nth-child(3) {
    transition-delay: 0.3s;
  }

  .freedom__reasons>.freedom__reason:nth-child(2) {
    transition-delay: 0.15s;
  }

  .freedom__reasons>.freedom__reason:nth-child(3) {
    transition-delay: 0.3s;
  }

  .why-grid>.why-card:nth-child(2) {
    transition-delay: 0.15s;
  }

  .why-grid>.why-card:nth-child(3) {
    transition-delay: 0.3s;
  }

  .services-grid>.service-card:nth-child(2) {
    transition-delay: 0.15s;
  }

  .services-grid>.service-card:nth-child(3) {
    transition-delay: 0.3s;
  }

  .licenses-grid>.license-card:nth-child(2) {
    transition-delay: 0.15s;
  }

  .certifications-grid>.certification-logo:nth-child(2) {
    transition-delay: 0.15s;
  }

  .certifications-grid>.certification-logo:nth-child(3) {
    transition-delay: 0.3s;
  }
}

/* ─── HERO FLOATING CARDS ────────────────────────────────── */
@keyframes floatBobbing {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  30% {
    transform: translateY(-18px) rotate(1.5deg);
  }

  65% {
    transform: translateY(-8px) rotate(-0.8deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__card {
    will-change: transform;
    animation: floatBobbing 6s ease-in-out infinite;
  }

  .hero__card--uk {
    animation-delay: 0s;
  }

  .hero__card--us {
    animation-delay: 1.5s;
  }

  .hero__card--ca {
    animation-delay: 3s;
  }
}

/* ─── HOVER MICRO-INTERACTIONS ───────────────────────────── */
.opp-card,
.why-card,
.service-card,
.license-card,
.security__item {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.opp-card:hover,
.why-card:hover,
.service-card:hover,
.license-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 48px rgba(1, 0, 10, 0.1);
  border-color: rgba(34, 214, 107, 0.4);
}

.security__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(1, 0, 10, 0.04);
}

/* Button & Nav Link interactions */
.btn--primary {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(34, 214, 107, 0.25);
}

.btn--ghost {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background-color: rgba(34, 214, 107, 0.02);
  border-color: var(--grad-blue);
}

.nav__link {
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--grad-green), var(--grad-blue));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ─── HERO ENTRANCE ANIMATIONS ───────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@media (prefers-reduced-motion: no-preference) {
  .hero__tag {
    animation: heroFadeUp 0.85s ease-in-out 0.10s both;
  }

  .hero__headline {
    animation: heroFadeUp 0.85s ease-in-out 0.28s both;
  }

  .hero__sub {
    animation: heroFadeUp 0.85s ease-in-out 0.45s both;
  }

  .hero__ctas {
    animation: heroFadeUp 0.85s ease-in-out 0.60s both;
  }

  .hero__visual {
    animation: heroFadeUp 1.0s ease-in-out 0.40s both;
  }
}

/* ─── B2B ALERT CYCLING ───────────────────────────────────── */
@keyframes alertSlideIn {

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

  15% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
  }

  42% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .alert-stack .alert {
    opacity: 0;
    animation: alertSlideIn 6s cubic-bezier(0.16, 1, 0.3, 1) infinite both;
  }

  .alert-stack .alert:nth-child(1) {
    animation-delay: 1.0s;
  }

  .alert-stack .alert:nth-child(2) {
    animation-delay: 3.0s;
  }

  .alert-stack .alert:nth-child(3) {
    animation-delay: 5.0s;
  }
}

/* ─── FX RATE REFRESH PULSE ───────────────────────────────── */
@keyframes fxRateRefresh {

  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }

  6% {
    opacity: 0.25;
    transform: translateX(5px);
  }

  16% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .fx-convert--pos-1 {
    animation: fxRateRefresh 5s ease-in-out 1.5s infinite;
  }

  .fx-convert--pos-2 {
    animation: fxRateRefresh 5s ease-in-out 3.2s infinite;
  }

  .fx-convert--pos-3 {
    animation: fxRateRefresh 5s ease-in-out 4.9s infinite;
  }
}

/* ─── CTA LINES SLOW ROTATION ─────────────────────────────── */
@keyframes ctaLinesRotate {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .cta__lines {
    animation: ctaLinesRotate 80s linear infinite;
  }
}

/* ─── STABLECOIN RATE REFRESH ─────────────────────────────── */
@keyframes stablecoinRateRefresh {

  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
  }

  6% {
    opacity: 0.25;
    transform: translateX(5px);
  }

  16% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .stablecoin-convert--pos-1 {
    animation: stablecoinRateRefresh 6s ease-in-out 2s infinite;
  }

  .stablecoin-convert--pos-2 {
    animation: stablecoinRateRefresh 6s ease-in-out 3.8s infinite;
  }

  .stablecoin-convert--pos-3 {
    animation: stablecoinRateRefresh 6s ease-in-out 5.6s infinite;
  }
}