/* =============================================
   LoganLEO — Forex Trading Design System
   ============================================= */

:root {
  --forest-black: #020e0d;
  --gunmetal: #5d5c5b;
  --oxford-blue: #030028;
  --cloud-blue: #eff4fe;
  --spring-green: #2a5fc1;
  --brand-rgb: 42, 95, 193;
  --brand-dark: #1e4a94;
  --white: #ffffff;
  --body-font: "Inter", sans-serif;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  --section-gap: clamp(4rem, 8vw, 7.5rem);
  --container-max: 101.875rem;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --noise-url: url("https://cdn.prod.website-files.com/696894d5909bb850670c3b10/698317bced0b455a4a8501e5_feanzo-home-three-hero-noise.svg");
  --texture-url: url("https://cdn.prod.website-files.com/696894d5909bb850670c3b10/69846b4685cd3071c9c62e0f_feanzo-home-three-online-texture.svg");
  --why-progress: 0;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--body-font);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--gunmetal);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

main {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--forest-black);
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }

.section-pad { padding-block: var(--section-gap); }
.bg-cloud { background-color: var(--cloud-blue); }
.bg-dark-section { background-color: var(--forest-black); }

.container-xxl { max-width: var(--container-max); }

/* ---- Typography ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gunmetal);
  margin-bottom: 1rem;
}

.section-label i {
  color: var(--spring-green);
  font-size: 1rem;
}

.brand-crown-icon {
  display: inline-block;
  flex-shrink: 0;
  object-fit: contain;
  vertical-align: middle;
}

.brand-crown-icon--md {
  width: 24px;
  height: auto;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.17;
  margin-bottom: 1.25rem;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
}

/* ---- Buttons ---- */
.btn-feanzo,
.btn-animated {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: var(--spring-green);
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}

.btn-feanzo i,
.btn-animated i {
  font-size: 1.125rem;
  transition: transform 0.3s ease;
}

.btn-feanzo:hover,
.btn-animated:hover {
  color: var(--white);
  box-shadow: 0 8px 30px rgba(var(--brand-rgb), 0.35);
}

.btn-feanzo:hover i,
.btn-animated:hover i { transform: translate(3px, -3px); }

.magnetic-btn.btn-feanzo:hover,
.magnetic-btn.btn-animated:hover {
  transform: rotateX(8deg) rotateY(-8deg) translateY(-2px);
}

.btn-feanzo.btn-lg,
.btn-animated.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ---- Header / Navbar ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.875rem 0 0;
  background: transparent;
  pointer-events: none;
  transition: padding 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-header.scrolled {
  padding-top: 0.625rem;
}

.header-zoom-shell {
  pointer-events: auto;
  margin-inline: clamp(0.75rem, 2.5vw, 1.5rem);
  border-radius: var(--radius-full);
  transform-origin: top center;
  transition:
    background 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease,
    padding 0.45s ease;
}

.site-header.scrolled .header-zoom-shell {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(2, 14, 13, 0.1);
  padding-block: 0.15rem;
}

.rt-navbar-v1 .container-fluid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

.navbar-brand {
  flex-shrink: 1;
  min-width: 0;
}

@media (min-width: 992px) {
  .rt-navbar-v1 .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
  }

  .rt-navbar-v1 .navbar-nav {
    flex: 1 1 auto;
    justify-content: center;
  }

  .nav-actions {
    flex-shrink: 0;
    margin-left: auto;
  }
}

.site-header .navbar { padding-block: 1.125rem; }

.site-header.scrolled .navbar { padding-block: 0.85rem; }

.site-header .logo-dark { display: none !important; }
.site-header.scrolled .logo-light { display: none !important; }
.site-header.scrolled .logo-dark { display: block !important; }

.rt-nav-logo-wrap {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.25rem;
  max-width: 10.625rem;
}

.site-header.scrolled .brand-logo {
  height: 2rem;
}

.footer-brand-link {
  display: inline-block;
  text-decoration: none;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: 11.25rem;
}

.brand-text {
  font-family: var(--heading-font);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

.brand-accent { color: var(--spring-green); }

.site-header.scrolled .brand-text { color: var(--forest-black); }

.footer-brand-text {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-black);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.footer-brand-text .brand-accent { color: var(--spring-green); }

.site-header .nav-link {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem !important;
  transition: color var(--transition);
}

.site-header.scrolled .nav-link { color: var(--forest-black); }
.site-header .nav-link:hover { color: var(--spring-green); }

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #2a5fc1;
}

.site-header.scrolled .navbar-nav .nav-link.active,
.site-header.scrolled .navbar-nav .nav-link.show {
  color: #2a5fc1;
}

.site-header .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(2, 14, 13, 0.12);
  padding: 1rem;
  margin-top: 0.5rem;
}

.site-header .dropdown-item {
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item.active {
  background: var(--cloud-blue);
  color: var(--forest-black);
}

.dropdown-menu-lg { min-width: 520px; }
.dropdown-img { border-radius: var(--radius-sm); width: 100%; }

.nav-phone {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  gap: 0.35rem;
  text-decoration: none;
}

.nav-actions .btn-feanzo {
  white-space: nowrap;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

.nav-actions .btn-feanzo.btn-outline-light,
.nav-actions .btn-feanzo.btn-outline-dark {
  padding: 0.75rem 1.125rem;
}

.site-header.scrolled .nav-actions .btn-outline-light {
  border-color: rgba(2, 14, 13, 0.14);
  color: var(--forest-black);
}

.site-header.scrolled .nav-actions .btn-outline-light:hover {
  background: var(--cloud-blue);
  border-color: var(--spring-green);
  color: var(--forest-black);
}

.site-header.scrolled .nav-phone { color: var(--forest-black); }

.header-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.site-header.scrolled .header-line {
  opacity: 0;
}

.navbar-toggler {
  padding: 0;
  width: 28px;
  flex-shrink: 0;
  margin-left: auto;
}
.toggler-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: background 0.4s ease;
}
.site-header.scrolled .toggler-line { background: var(--forest-black); }

@media (max-width: 991.98px) {
  .site-header {
    width: 100%;
    left: 0;
    right: 0;
  }

  .header-zoom-shell {
    margin-inline: 0.75rem;
    border-radius: var(--radius-md);
    max-width: calc(100% - 1.5rem);
  }

  .rt-navbar-v1 .container-fluid {
    padding-inline: 0.875rem;
  }

  .site-header .nav-link { color: var(--forest-black); }
  .nav-phone { color: var(--forest-black); }
}

/* Mobile slide-in navigation */
.mobile-nav-offcanvas.offcanvas {
  width: min(300px, 86vw);
  border-left: 1px solid rgba(2, 14, 13, 0.08);
}

.mobile-nav-offcanvas .offcanvas-header {
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid rgba(2, 14, 13, 0.08);
  align-items: center;
}

.mobile-nav-offcanvas .offcanvas-brand {
  display: inline-flex;
  align-items: center;
}

.mobile-nav-offcanvas .offcanvas-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-offcanvas .navbar-nav {
  gap: 0.125rem;
  width: 100%;
}

.mobile-nav-offcanvas .nav-link {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest-black) !important;
  padding: 0.75rem 0.875rem !important;
  border-radius: var(--radius-sm);
}

.mobile-nav-offcanvas .nav-link:hover,
.mobile-nav-offcanvas .navbar-nav .nav-link.active,
.mobile-nav-offcanvas .navbar-nav .nav-link.show {
  background: var(--cloud-blue);
  color: #2a5fc1 !important;
}

.mobile-nav-offcanvas .nav-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 14, 13, 0.08);
}

.mobile-nav-offcanvas .nav-actions .btn-feanzo {
  width: 100%;
}

.mobile-nav-offcanvas .nav-actions .btn-inner {
  width: 100%;
  justify-content: center;
}

.mobile-nav-offcanvas .btn-close {
  opacity: 0.65;
}

.offcanvas-backdrop {
  background-color: rgba(2, 14, 13, 0.45);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background-color: var(--forest-black);
  background-image: var(--noise-url);
  background-repeat: repeat;
  padding-top: clamp(7rem, 12vw, 10.5rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

.rt-hero-v3-main {
  position: relative;
}

.rt-hero-v3-large-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(0.5rem, 2vw, 1.5rem);
  z-index: 1;
  margin-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80vh;
  background: linear-gradient(0deg, var(--spring-green), #1a4d8f 63%, #0d1030);
  border-bottom-left-radius: var(--radius-full);
  border-bottom-right-radius: var(--radius-full);
  filter: blur(150px);
  pointer-events: none;
  opacity: 0.7;
  will-change: transform;
}

.hero-content { position: relative; z-index: 2; max-width: 820px; margin-inline: auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-badge i { color: var(--spring-green); }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  max-width: 620px;
  margin-inline: auto;
}

.hero-cta {
  margin-top: 1.75rem;
}

.hero-cta .btn-inner {
  justify-content: center;
}

.hero-mobile-cta {
  margin-top: 1.5rem;
}

.hero-visual {
  position: relative;
  max-width: 720px;
  margin: 2.5rem auto 0;
  min-height: 180px;
}

.hero-automation,

.hero-dashboard {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2, 14, 13, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.hero-dashboard-1 {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-inline: auto;
  transform: rotateX(6deg) rotateY(-2deg);
}

.hero-dashboard-2 {
  position: absolute;
  bottom: -20px;
  right: 0;
  max-width: 280px;
  z-index: 3;
  transform: rotateX(4deg) rotateY(8deg);
  animation: floatCard 6s ease-in-out infinite;
}

.hero-arrow {
  position: absolute;
  top: 30%;
  left: -40px;
  z-index: 4;
  animation: floatArrow 4s ease-in-out infinite;
}

.hero-user-card {
  position: absolute;
  top: 20%;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1.125rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(2, 14, 13, 0.2);
  z-index: 5;
  animation: floatCard 5s ease-in-out infinite 0.5s;
}

.hero-user-card .user-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-user-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--forest-black);
}

.hero-user-card span {
  font-size: 0.75rem;
  color: var(--gunmetal);
}

.hero-cursor-icon {
  position: absolute;
  top: -10%;
  right: 8%;
  z-index: 4;
  animation: floatCard 5s ease-in-out infinite 0.3s;
}

.hero-arrow-v2 {
  position: absolute;
  bottom: -10%;
  left: 10%;
  z-index: 4;
  max-width: 120px;
  animation: floatArrow 4.5s ease-in-out infinite 0.5s;
}

.hero-outline-text {
  font-family: var(--heading-font);
  font-size: clamp(4rem, 16vw, 11rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.06em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  text-stroke: 1px rgba(255, 255, 255, 0.2);
  margin-top: 0;
  pointer-events: none;
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  padding-inline: 0.75rem;
}

.rt-hero-v3-image-wrap {
  position: relative;
  z-index: 2;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatArrow {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

@media (max-width: 767px) {
  .hero-visual {
    display: none;
  }

  .hero-cta {
    margin-top: 1.25rem;
  }

  .hero-cta .btn-feanzo {
    width: 100%;
    max-width: 20rem;
  }

  .hero-cta .btn-inner {
    width: 100%;
  }

  .hero-mobile-cta {
    margin-top: 1.25rem;
  }

  .rt-hero-v3-large-text {
    position: relative;
    bottom: auto;
    margin-top: 1.25rem;
    overflow: hidden;
  }

  .hero-content {
    padding-inline: 0.25rem;
  }

  .hero-title,
  .hero-desc {
    padding-inline: 0.125rem;
  }

  .clients {
    overflow: hidden;
    max-width: 100%;
  }

  .live-rates-status {
    width: 100%;
    justify-content: center;
  }

  .live-rate-prices strong {
    font-size: 0.8125rem;
  }
}

/* ---- Clients — Dual Marquee ---- */
.clients {
  border-bottom: 1px solid rgba(2, 14, 13, 0.06);
  overflow: hidden;
}

.clients-dual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding-block: 0.75rem;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  animation: marquee 40s linear infinite;
  width: max-content;
  will-change: transform;
}

.clients-track--reverse {
  animation-name: marqueeReverse;
  animation-duration: 45s;
}

.forex-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.forex-marquee-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.forex-marquee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: rgba(2, 14, 13, 0.06);
  font-size: 1.125rem;
  color: var(--forest-black);
  flex-shrink: 0;
}

.forex-marquee-name {
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(2, 14, 13, 0.55);
  white-space: nowrap;
}

.forex-marquee-item--accent .forex-marquee-icon {
  background: rgba(var(--brand-rgb), 0.14);
  color: var(--brand-dark);
}

.forex-marquee-item--accent .forex-marquee-name {
  color: rgba(3, 0, 40, 0.62);
}

/* ---- Live forex rates ---- */
.live-rates-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(2, 14, 13, 0.08);
  font-size: 0.8125rem;
  color: var(--gunmetal);
}

.live-rates-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--spring-green);
  box-shadow: 0 0 0 0 rgba(42, 95, 193, 0.45);
  animation: liveRatePulse 2s ease-in-out infinite;
}

.live-rates-updated {
  font-weight: 500;
}

.live-rate-card {
  height: 100%;
  padding: 1rem 1.125rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.06);
  box-shadow: 0 10px 30px rgba(2, 14, 13, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.live-rate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2, 14, 13, 0.08);
}

.live-rate-card--loading strong {
  opacity: 0.35;
}

.live-rate-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.live-rate-pair {
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--forest-black);
}

.live-rate-change {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(2, 14, 13, 0.05);
  color: var(--gunmetal);
  white-space: nowrap;
}

.live-rate-change--up {
  background: rgba(42, 95, 193, 0.1);
  color: var(--spring-green);
}

.live-rate-change--down {
  background: rgba(220, 53, 69, 0.1);
  color: #c0392b;
}

.live-rate-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.live-rate-prices div span {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gunmetal);
  margin-bottom: 0.2rem;
}

.live-rate-prices strong {
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--forest-black);
}

.live-rates-note {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--gunmetal);
  text-align: center;
}

@keyframes liveRatePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42, 95, 193, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(42, 95, 193, 0); }
}

.clients-track img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}

.clients-track img:hover { opacity: 1; filter: grayscale(0); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ---- About v4 ---- */

.about-visual { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
}

.about-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(2, 14, 13, 0.1);
  z-index: 2;
}

.about-float-card i {
  font-size: 1.5rem;
  color: var(--spring-green);
}

.about-float-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--forest-black);
}

.about-float-card span {
  font-size: 0.75rem;
  color: var(--gunmetal);
}

.about-float-card.card-1 { top: 10%; right: -20px; animation: floatCard 5s ease-in-out infinite; }
.about-float-card.card-2 { bottom: 15%; left: -20px; animation: floatCard 6s ease-in-out infinite 1s; }

.about-icons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.about-icon-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 500;
  background: var(--cloud-blue);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  min-width: 140px;
  flex: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 14, 13, 0.08);
}

.about-icon-item img { width: 40px; height: 40px; }

/* ---- Service v1 (How It Works — white cards panel) ---- */
.service-v1 {
  background: var(--white);
  position: relative;
}

.service-v1 .split-heading-inline,
.how-it-works .split-heading {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  align-items: baseline;
}

.split-word {
  display: inline-block;
  opacity: 0.35;
  transition: opacity 0.35s ease, color 0.35s ease;
}

.split-word.active {
  opacity: 1;
  color: var(--spring-green);
}

.steps-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.step-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--cloud-blue);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  color: var(--gunmetal);
  font-family: var(--heading-font);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.step-tab i { font-size: 1rem; color: var(--spring-green); }

.step-tab.active,
.step-tab:hover {
  background: var(--spring-green);
  color: var(--white);
  border-color: var(--spring-green);
}

.step-tab.active i,
.step-tab:hover i { color: var(--white); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeInUp 0.5s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-card,
.step-card-dark,
.step-card-light {
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: clamp(380px, 42vw, 460px);
  position: relative;
  isolation: isolate;
}

.how-it-works-light .step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("https://cdn.prod.website-files.com/696894d5909bb850670c3b10/6982ec905e1223ffd2ff9c2c_feanzo-home-three-hoe-it-work-line-shape-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
}

.how-it-works-light .step-card-green::before,
.how-it-works-light .step-card-blue::before {
  filter: brightness(0);
  opacity: 0.08;
}

.step-card-dark,
.row .col-md-4:nth-child(odd) .step-card {
  background: var(--forest-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-card-light,
.row .col-md-4:nth-child(even) .step-card {
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.08);
  box-shadow: 0 20px 50px rgba(2, 14, 13, 0.06);
}

.step-card-green {
  background: var(--spring-green);
  border: 1px solid rgba(2, 14, 13, 0.06);
}

.step-card-green .step-num,
.step-card-green h3,
.step-card-green p {
  color: var(--white);
}

.step-card-green p {
  color: rgba(255, 255, 255, 0.82);
}

.step-card-green .step-num-dark {
  color: rgba(255, 255, 255, 0.9) !important;
}

.step-card-blue {
  background: var(--cloud-blue);
  border: 1px solid rgba(2, 14, 13, 0.06);
}

.step-card-blue .step-num,
.step-card-blue h3 {
  color: var(--forest-black);
}

.step-card-blue p {
  color: var(--gunmetal);
}

.step-card:hover,
.step-card-dark:hover,
.step-card-light:hover {
  transform: translateY(-8px);
}

.step-card img,
.step-card-dark img,
.step-card-light img {
  width: auto;
  max-width: 100%;
  margin-top: auto;
  margin-inline: auto;
  margin-bottom: 0;
  align-self: center;
}

.step-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--spring-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.step-card-dark .step-num,
.row .col-md-4:nth-child(odd) .step-card .step-num { color: var(--spring-green); }

.step-card-light .step-num,
.row .col-md-4:nth-child(even) .step-card .step-num { color: var(--forest-black); }

.step-card-dark h3 {
  font-size: clamp(1.625rem, 2.2vw, 2.125rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 0;
}

.step-card-green h3,
.step-card-blue h3 {
  font-size: clamp(1.625rem, 2.2vw, 2.125rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0;
}

.step-card-light h3,
.row .col-md-4:nth-child(even) .step-card h3 { color: var(--forest-black); }

.row .col-md-4:nth-child(odd) .step-card h3 { color: var(--white); }

.step-card-dark p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  line-height: 1.65;
}

.step-card-green p,
.step-card-blue p {
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.65;
}

.step-card-light p,
.row .col-md-4:nth-child(even) .step-card p {
  color: var(--gunmetal);
}

/* ---- How It Works / Service v2 header (dark) ---- */
.how-it-works {
  position: relative;
  background-color: var(--forest-black);
  background-image: var(--texture-url);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto 100%;
  overflow: hidden;
}

.how-it-works .section-label { color: rgba(255, 255, 255, 0.7); }
.how-it-works .split-heading { color: var(--white); }
.how-it-works .split-word { opacity: 0.25; }
.how-it-works .split-word.active { color: var(--spring-green); opacity: 1; }

.how-it-works .steps-tabs { margin-top: 0.5rem; }

.how-it-works .step-tab {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.how-it-works .step-tab.active,
.how-it-works .step-tab:hover {
  background: var(--spring-green);
  color: var(--white);
  border-color: var(--spring-green);
}

.how-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Service v2 (stacked cards + list) ---- */
.service-v2 {
  position: relative;
  background-color: var(--forest-black);
  background-image: var(--texture-url), var(--noise-url);
  background-repeat: no-repeat, repeat;
  background-position: top right, center;
  overflow: hidden;
}

.service-v2-glow {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.14) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.service-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.service-v2-cards {
  position: relative;
  min-height: 420px;
}

.service-v2-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-v2-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.4s ease, padding-left 0.4s ease;
}

.service-v2-item.is-active {
  color: var(--white);
  padding-left: 0.5rem;
}

.service-v2-text {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.service-v2-item.is-active .service-v2-text {
  background: var(--spring-green);
  color: var(--white);
  border-color: var(--spring-green);
  font-weight: 600;
}

.service-v2-item.is-active .service-v2-icon {
  background: rgba(var(--brand-rgb), 0.15);
  border-color: rgba(var(--brand-rgb), 0.35);
}

.service-v2-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--spring-green);
  font-size: 1.25rem;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.service-v2-item.is-active .service-v2-icon {
  background: var(--spring-green);
  border-color: var(--spring-green);
  color: var(--white);
  transform: scale(1.05);
}

.service-v2-item h3 {
  font-size: 1.0625rem;
  color: inherit;
  margin-bottom: 0.25rem;
}

.service-v2-item p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .service-v2-inner { grid-template-columns: 1fr; }
  .service-v2-cards { min-height: 320px; }
}

/* ---- About v5 / Global Transfers ---- */
.transfers { position: relative; }

.transfer-stats {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.transfer-stat {
  overflow: hidden;
}

.transfer-stat .stat-slot-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--forest-black);
  line-height: 1;
}

.transfer-stat .stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.transfer-stat .stat-suffix {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

.transfer-stat .stat-slot {
  display: inline-flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}

.transfer-stat .stat-slot-inner {
  display: flex;
  flex-direction: column;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transfer-stat .stat-slot-inner span {
  height: 1em;
  display: flex;
  align-items: center;
}

.transfer-stat p {
  font-size: 0.8125rem;
  margin: 0.35rem 0 0;
}

.transfer-stat > span:first-child,
.transfer-stat > span.counter {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--forest-black);
}

.transfer-stat > span:not(.counter):last-of-type {
  font-family: var(--heading-font);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--forest-black);
}

.map-visual {
  position: relative;
  padding: 2rem;
  min-height: 360px;
}

.map-bg {
  width: 100%;
  opacity: 0.12;
}

.map-pin {
  position: absolute;
  z-index: 2;
}

.pin-dot {
  width: 12px;
  height: 12px;
  background: var(--spring-green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(var(--brand-rgb), 0.25);
  animation: pulse 2s ease-in-out infinite;
}

.pin-1 { top: 25%; left: 65%; }
.pin-2 { top: 55%; left: 30%; }
.pin-3 { top: 15%; left: 40%; }

.pin-2 .pin-dot { animation-delay: 0.5s; }
.pin-3 .pin-dot { animation-delay: 1s; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(var(--brand-rgb), 0.25); }
  50% { box-shadow: 0 0 0 14px rgba(var(--brand-rgb), 0.08); }
}

.map-card {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  opacity: 0;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(2, 14, 13, 0.12);
  min-width: 160px;
  white-space: nowrap;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.map-pin.is-visible .map-card {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.map-card .flag { font-size: 1.25rem; }
.map-card strong { display: block; font-size: 0.875rem; color: var(--forest-black); }
.map-card span { font-size: 0.6875rem; color: var(--gunmetal); }

.map-amount {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest-black);
  margin-top: 0.25rem;
}

/* ---- Security ---- */
.security-visual { position: relative; }

.security-main-img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.security-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.security-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 15px 40px rgba(2, 14, 13, 0.1);
  pointer-events: auto;
}

.sc-header {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest-black);
  margin-bottom: 0.5rem;
}

.sc-header i { color: var(--spring-green); }

.sc-1 {
  top: 10%;
  right: -30px;
  max-width: 200px;
  animation: floatCard 5s ease-in-out infinite;
}

.sc-1 .ripple-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-rgb), 0.35);
  pointer-events: none;
  animation: ripplePulse 2.5s ease-out infinite;
}

.sc-1 .ripple-ring:nth-child(2) { animation-delay: 0.8s; }
.sc-1 .ripple-ring:nth-child(3) { animation-delay: 1.6s; }

@keyframes ripplePulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.sc-2 { bottom: 30%; left: -20px; animation: floatCard 6s ease-in-out infinite 0.5s; }
.sc-3 { bottom: 5%; right: 10%; max-width: 220px; animation: floatCard 5.5s ease-in-out infinite 1s; }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 0.5rem;
}

.mini-chart .bar {
  flex: 1;
  background: var(--cloud-blue);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom center;
  transition: height 1s ease;
}

.mini-chart .bar.active { background: var(--spring-green); }

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: var(--gunmetal);
}

.security-stat-badge {
  display: inline-block;
  background: var(--cloud-blue);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.security-stat-badge span {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-black);
}

.security-stat-badge p {
  font-size: 0.75rem;
  margin: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(2, 14, 13, 0.06);
}

.feature-list i { color: var(--spring-green); font-size: 1.125rem; }

/* ---- Why Choose ---- */
.why-choose {
  position: relative;
  overflow: hidden;
}

.why-progress-line {
  position: relative;
  height: 2px;
  background: rgba(2, 14, 13, 0.08);
  border-radius: var(--radius-full);
  margin-bottom: 3rem;
  overflow: hidden;
}

.why-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--why-progress) * 100%);
  background: linear-gradient(90deg, var(--spring-green), rgba(var(--brand-rgb), 0.5));
  border-radius: inherit;
  transition: width 0.15s linear;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why-intro {
  margin-top: 1.25rem;
  max-width: 34rem;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 14, 13, 0.1);
}

.why-trading-panel {
  background:
    radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.22), transparent 38%),
    linear-gradient(160deg, #07131f 0%, #0d2240 52%, #020e0d 100%);
  padding: 1.5rem;
  color: var(--white);
  min-height: 430px;
}

.why-panel-top,
.why-panel-chart-head,
.why-panel-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.why-panel-top {
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.why-panel-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.why-panel-top strong {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 600;
}

.why-panel-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.why-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.why-panel-metric {
  padding: 0.85rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.why-panel-metric span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

.why-panel-metric strong {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.why-panel-chart-block {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.why-panel-chart-head {
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.why-panel-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 600;
}

.why-panel-trend.up { color: var(--spring-green); }

.why-panel-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 7.5rem;
}

.why-panel-chart span {
  flex: 1;
  border-radius: 0.25rem 0.25rem 0 0;
  background: rgba(255, 255, 255, 0.12);
}

.why-panel-chart span.active {
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.95), rgba(var(--brand-rgb), 0.45));
}

.why-panel-orders {
  display: grid;
  gap: 0.65rem;
}

.why-panel-order {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8125rem;
}

.why-panel-order-type {
  min-width: 2.75rem;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.why-panel-order-type.buy {
  background: rgba(var(--brand-rgb), 0.18);
  color: var(--spring-green);
}

.why-panel-order-type.sell {
  background: rgba(255, 122, 122, 0.14);
  color: #ff9a9a;
}

.why-panel-order-price {
  font-family: var(--heading-font);
  font-weight: 600;
}

.why-panel-order-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--spring-green);
}

.why-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 575px) {
  .why-panel-metrics {
    grid-template-columns: 1fr;
  }

  .why-panel-order {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(2, 14, 13, 0.06);
  font-weight: 500;
  color: var(--forest-black);
}

.why-list li i {
  color: var(--spring-green);
  font-size: 1.25rem;
  margin-top: 2px;
}

.why-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(2, 14, 13, 0.08);
}

.why-card i {
  font-size: 2rem;
  color: var(--spring-green);
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  font-size: 1.0625rem;
  line-height: 1.4;
}

.why-sub {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--forest-black);
}

@media (max-width: 991px) {
  .why-choose-layout { grid-template-columns: 1fr; }
}

/* ---- Testimonials — 3-col grid + center hero ---- */
.testimonials { overflow: hidden; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.testimonial-hero {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

.testimonial-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 14, 13, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
}

.testimonial-swiper { padding-bottom: 3rem; position: relative; }

@media (min-width: 992px) {
  .testimonial-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transform: none !important;
  }

  .testimonial-swiper .swiper-slide {
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
  }

  .testimonial-swiper .swiper-slide:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .testimonial-swiper .swiper-slide:nth-child(2) .testimonial-card {
    padding: 0;
    background: transparent;
    max-width: none;
    height: 100%;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
  }

  .testimonial-swiper .swiper-slide:nth-child(2) .testimonial-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 30%, rgba(2, 14, 13, 0.8) 100%);
    color: var(--white);
  }

  .testimonial-swiper .swiper-slide:nth-child(2) .testimonial-content p,
  .testimonial-swiper .swiper-slide:nth-child(2) .testimonial-author strong { color: var(--white); }

  .testimonial-swiper .swiper-slide:nth-child(2) .testimonial-author span { color: rgba(255, 255, 255, 0.7); }

  .testimonial-swiper .swiper-slide:nth-child(2) .quote-icon { display: none; }

  .testimonial-swiper .swiper-slide:nth-child(2) .testimonial-author img {
    width: 64px;
    height: 64px;
    border: 2px solid var(--spring-green);
  }

  .testimonial-swiper .swiper-button-prev,
  .testimonial-swiper .swiper-button-next,
  .testimonial-swiper .swiper-pagination { display: none; }
}

.testimonial-card {
  background: var(--cloud-blue);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin-inline: auto;
  height: 100%;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--spring-green);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-content p {
  font-family: var(--heading-font);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  color: var(--forest-black);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--forest-black);
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--gunmetal);
}

.testimonial-swiper .swiper-button-prev,
.testimonial-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(2, 14, 13, 0.1);
  color: var(--forest-black);
}

.testimonial-swiper .swiper-button-prev::after,
.testimonial-swiper .swiper-button-next::after { display: none; }

.testimonial-swiper .swiper-button-prev i,
.testimonial-swiper .swiper-button-next i { font-size: 1.5rem; }

.testimonial-swiper .swiper-pagination-bullet-active { background: var(--spring-green); }

/* ---- Integration — Orbit ---- */
.integration {
  position: relative;
  overflow: hidden;
}

.integration-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.integration-orbit {
  position: relative;
  width: min(520px, 88vw);
  height: min(520px, 88vw);
  margin: 3rem auto 0;
}

.integration-grid {
  position: absolute;
  inset: 0;
  animation: orbitSpin 60s linear infinite;
}

.integration-grid.orbit-paused { animation-play-state: paused; }

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.integration-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
}

.integration-orbit-center .btn-feanzo {
  box-shadow: 0 0 60px rgba(var(--brand-rgb), 0.25);
}

.integration-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.integration-item img {
  animation: orbitCounterSpin 60s linear infinite;
}

.integration-grid.orbit-paused .integration-item img { animation-play-state: paused; }

@keyframes orbitCounterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.integration-item:nth-child(1) { transform: rotate(0deg) translateY(-210px) rotate(0deg); }
.integration-item:nth-child(2) { transform: rotate(60deg) translateY(-210px) rotate(-60deg); }
.integration-item:nth-child(3) { transform: rotate(120deg) translateY(-210px) rotate(-120deg); }
.integration-item:nth-child(4) { transform: rotate(180deg) translateY(-210px) rotate(-180deg); }
.integration-item:nth-child(5) { transform: rotate(240deg) translateY(-210px) rotate(-240deg); }
.integration-item:nth-child(6) { transform: rotate(300deg) translateY(-210px) rotate(-300deg); }

.integration-item:hover {
  border-color: rgba(var(--brand-rgb), 0.45);
  background: rgba(var(--brand-rgb), 0.08);
}

.integration-item img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

@media (max-width: 767px) {
  .integration-orbit { width: min(340px, 92vw); height: min(340px, 92vw); }
  .integration-item { width: 64px; height: 64px; margin: -32px 0 0 -32px; padding: 0.75rem; }
  .integration-item:nth-child(1) { transform: rotate(0deg) translateY(-140px) rotate(0deg); }
  .integration-item:nth-child(2) { transform: rotate(60deg) translateY(-140px) rotate(-60deg); }
  .integration-item:nth-child(3) { transform: rotate(120deg) translateY(-140px) rotate(-120deg); }
  .integration-item:nth-child(4) { transform: rotate(180deg) translateY(-140px) rotate(-180deg); }
  .integration-item:nth-child(5) { transform: rotate(240deg) translateY(-140px) rotate(-240deg); }
  .integration-item:nth-child(6) { transform: rotate(300deg) translateY(-140px) rotate(-300deg); }
}

/* ---- CTA ---- */
.cta-section {
  padding-block: var(--section-gap);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "LoganLEO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--heading-font);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(2, 14, 13, 0.04);
  text-stroke: 1px rgba(2, 14, 13, 0.04);
  filter: blur(1px);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

.cta-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  box-shadow: 0 20px 60px rgba(2, 14, 13, 0.06);
}

/* ---- Footer ---- */
.site-footer {
  position: relative;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 4.75rem);
  background: linear-gradient(135deg, #020e0d 0%, #0a1f3d 52%, #1e4a94 100%);
  color: var(--white);
}

.footer-cta-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 50%, rgba(var(--brand-rgb), 0.35) 0%, transparent 42%),
    radial-gradient(circle at 10% 100%, rgba(255, 255, 255, 0.08) 0%, transparent 35%);
}

.footer-cta .container-fluid {
  position: relative;
  z-index: 1;
}

.footer-cta-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta-title {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
}

.footer-cta-desc {
  max-width: 34rem;
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(2, 14, 13, 0.28);
}

.footer-cta-mark img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.footer-main {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.footer-grid {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(2, 14, 13, 0.08);
}

.site-footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gunmetal);
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 22rem;
  color: var(--gunmetal);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.1);
  border-radius: 50%;
  font-size: 1.0625rem;
  color: var(--forest-black);
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.social-links a:hover {
  background: var(--spring-green);
  border-color: var(--spring-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(var(--brand-rgb), 0.28);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--gunmetal);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--forest-black); }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.1);
  color: var(--spring-green);
  font-size: 1.0625rem;
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gunmetal);
}

.footer-contact-body strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest-black);
}

.footer-contact-body a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-body a:hover { color: var(--spring-green); }

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-address i { color: var(--spring-green); margin-top: 2px; }

.footer-address a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-address a:hover { color: var(--spring-green); }

.footer-bottom {
  padding-top: 1.5rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--gunmetal);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-legal-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest-black);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--spring-green); }

.footer-risk {
  margin: 1rem 0 0;
  max-width: 52rem;
  margin-inline: auto;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(2, 14, 13, 0.55);
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    text-align: left;
  }

  .footer-risk {
    text-align: left;
    margin-inline: 0;
  }
}

/* ---- Home Three section additions ---- */
.btn-feanzo.btn-animated {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.btn-feanzo.btn-animated .btn-inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
}

.btn-feanzo.btn-animated .btn-rotate-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.btn-feanzo.btn-animated .btn-box {
  position: absolute;
  width: 50%;
  height: 50%;
  background: rgba(2, 14, 13, 0.08);
  transition: transform 0.45s ease;
}

.btn-feanzo.btn-animated .b1 { top: 0; left: 0; }
.btn-feanzo.btn-animated .b2 { top: 0; right: 0; }
.btn-feanzo.btn-animated .b3 { bottom: 0; left: 0; }
.btn-feanzo.btn-animated .b4 { bottom: 0; right: 0; }

.btn-feanzo.btn-animated:hover .b1 { transform: translate(-100%, -100%); }
.btn-feanzo.btn-animated:hover .b2 { transform: translate(100%, -100%); }
.btn-feanzo.btn-animated:hover .b3 { transform: translate(-100%, 100%); }
.btn-feanzo.btn-animated:hover .b4 { transform: translate(100%, 100%); }

.rt-client-v1-line {
  height: 1px;
  background: rgba(2, 14, 13, 0.06);
  margin-block: 1.25rem;
}

.clients-track-reverse { animation-direction: reverse; }

.about-icon-box {
  background: var(--cloud-blue);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-feature-box {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  min-height: 130px;
  padding: 1.25rem;
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest-black);
  font-size: 1.125rem;
}

.about-feature-box strong {
  font-family: var(--heading-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-black);
  line-height: 1.2;
}

.about-feature-box > span:last-child {
  font-size: 0.75rem;
  color: var(--gunmetal);
  line-height: 1.35;
}

.about-desc-secondary {
  margin-top: 1rem;
}

.about-icon-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 14, 13, 0.08);
}

.about-visual-v4 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-forex-terminal {
  background:
    linear-gradient(145deg, rgba(var(--brand-rgb), 0.08), transparent 45%),
    var(--forest-black);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--white);
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(2, 14, 13, 0.18);
}

.about-terminal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.about-terminal-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}

.about-terminal-head strong {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 600;
}

.about-terminal-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.live-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--spring-green);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.18);
}

.about-terminal-pairs {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.about-terminal-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8125rem;
}

.about-terminal-row span:first-child {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-terminal-price {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.875rem;
}

.about-terminal-change {
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 3.5rem;
  text-align: right;
}

.about-terminal-change.up { color: var(--spring-green); }
.about-terminal-change.down { color: #ff7a7a; }

.about-terminal-chart-wrap {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.about-terminal-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.about-terminal-spread {
  color: var(--spring-green);
  font-weight: 600;
}

.about-terminal-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 7rem;
}

.about-terminal-chart span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.1);
}

.about-terminal-chart span.active {
  background: linear-gradient(180deg, var(--spring-green), rgba(var(--brand-rgb), 0.35));
}

.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-overlay-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(2, 14, 13, 0.12);
  z-index: 2;
}

.about-user-card {
  top: 8%;
  left: -5%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}

.about-user-avatar {
  border-radius: 50%;
  object-fit: cover;
}

.about-user-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--forest-black);
}

.about-user-card span {
  font-size: 0.75rem;
  color: var(--gunmetal);
}

.about-info-card {
  bottom: 28%;
  left: -8%;
  padding: 1.125rem 1.25rem;
  max-width: 260px;
}

.about-info-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--gunmetal);
}

.about-payment-card {
  top: 5%;
  right: -5%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  max-width: 220px;
}

.about-pair-card {
  top: 6%;
  right: -4%;
  padding: 1rem 1.125rem;
  min-width: 190px;
  background: var(--forest-black);
  color: var(--white);
}

.about-pair-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.about-pair-name {
  font-family: var(--heading-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-pair-badge {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(var(--brand-rgb), 0.18);
  color: var(--spring-green);
}

.about-pair-price {
  font-family: var(--heading-font);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.about-pair-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
}

.about-pair-change {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--spring-green);
  font-weight: 600;
}

.about-pair-spread {
  color: rgba(255, 255, 255, 0.55);
}

.about-pair-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  height: 2.5rem;
  margin-top: 0.85rem;
}

.about-pair-chart span {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(255, 255, 255, 0.12);
}

.about-pair-chart span.active {
  background: var(--spring-green);
}

.how-it-works-light {
  background: var(--white);
}

.how-it-works-light .rt-service-v1-top {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem) !important;
}

.how-steps-wrap {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

.how-cards-grid {
  --bs-gutter-x: clamp(1rem, 2vw, 1.75rem);
}

.service-v1-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.15;
  font-weight: 500;
  max-width: 900px;
}

.service-v1-line-icon {
  display: inline-flex;
  vertical-align: middle;
  margin: 0 0.15em;
}

.step-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}

.step-card-inner h3 {
  margin-top: 0.35rem;
}

.step-card-inner p {
  margin-top: auto;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  max-width: 34ch;
}

.step-num-dark { color: var(--forest-black) !important; }

.service-v1-tag {
  position: absolute;
  top: -0.5rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--spring-green);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  z-index: 2;
}

.service-v1-arrow {
  position: absolute;
  bottom: 8%;
  left: 28%;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 991px) {
  .how-steps-wrap {
    padding-top: 2.5rem;
  }

  .service-v1-tag {
    top: 0;
    right: 0;
  }

  .step-card-inner p {
    max-width: none;
    padding-top: 2rem;
  }

  .legal-page {
    padding-top: 6.5rem;
  }
}

.transfer-avatars {
  display: flex;
}

.transfer-avatars img {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -10px;
}

.transfer-avatars img:first-child { margin-left: 0; }

.map-visual-v5 {
  position: relative;
  padding: 1rem;
}

.map-bg-avif {
  width: 100%;
  border-radius: var(--radius-lg);
}

.pin-russia { top: 22%; left: 62%; }
.pin-brazil { top: 52%; left: 28%; }
.pin-greenland { top: 12%; left: 38%; }

.map-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.map-label {
  font-size: 0.6875rem;
  color: var(--gunmetal);
}

.counter-v2-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 40px rgba(2, 14, 13, 0.06);
}

.counter-v2-value {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest-black);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}

.slot-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.02em;
}

.slot-col {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  line-height: 1;
}

.slot-inner {
  display: flex;
  flex-direction: column;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slot-inner span {
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-suffix {
  font-size: inherit;
  font-weight: inherit;
}

.service-v2-cards {
  position: relative;
  min-height: 380px;
}

.service-v2-card {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.service-v2-card.is-active {
  box-shadow: 0 30px 70px rgba(var(--brand-rgb), 0.15);
  z-index: 4;
}

.service-v2-card img { width: 100%; height: auto; display: block; }

.service-v2-card-1 {
  top: 0;
  left: 0;
  width: 78%;
  z-index: 1;
  transform: rotate(-2deg);
}

.service-v2-card-2 {
  top: 18%;
  right: 0;
  width: 72%;
  z-index: 2;
  transform: rotate(3deg);
}

.service-v2-card-3 {
  bottom: 0;
  left: 8%;
  width: 75%;
  z-index: 3;
  transform: rotate(-1deg);
}

.service-v2-text {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.service-v2-item:hover .service-v2-text { color: var(--white); }

.service-v2-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-hero-image {
  position: relative;
  display: inline-block;
  max-width: 680px;
  margin-inline: auto;
}

.security-hero-image > img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.security-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.security-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 500;
  color: var(--oxford-blue);
  opacity: 0.85;
}

.security-dollar-icon {
  position: absolute;
  bottom: 10%;
  right: 5%;
}

.security-big-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(2, 14, 13, 0.08);
}

.security-card-icon { margin-bottom: 1rem; }

.security-stat-num {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-black);
}

.security-big-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.security-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cloud-blue);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 1rem;
}

.security-bio-card,
.security-chart-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(2, 14, 13, 0.08);
}

.bio-ripple-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}

.bio-ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-rgb), 0.35);
  animation: ripplePulse 2.5s ease-out infinite;
}

.bio-ripple.r1 { width: 80px; height: 80px; }
.bio-ripple.r2 { width: 110px; height: 110px; animation-delay: 0.8s; }
.bio-ripple.r3 { width: 140px; height: 140px; animation-delay: 1.6s; }

.chart-dots {
  display: flex;
  gap: 4px;
}

.chart-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(2, 14, 13, 0.15);
}

.chart-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chart-tabs span {
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  background: var(--cloud-blue);
  color: var(--gunmetal);
}

.chart-tabs span.active {
  background: var(--forest-black);
  color: var(--white);
}

.why-list li img { flex-shrink: 0; }

.testimonial-quote-card {
  background: var(--cloud-blue);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.testimonial-quote-card blockquote {
  font-family: var(--heading-font);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--forest-black);
}

.testimonial-quote-bottom strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--forest-black);
}

.testimonial-quote-bottom span {
  font-size: 0.8125rem;
  color: var(--gunmetal);
}

.testimonial-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}

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

.testimonial-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 14, 13, 0.35) 100%);
}

.integration-orbit-wrap {
  position: relative;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  margin: 0 auto;
  animation: orbitSpin 55s linear infinite;
}

.integration-orbit-wrap:hover { animation-play-state: paused; }

.integration-orbit-cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--spring-green);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(var(--brand-rgb), 0.35);
  transition: transform 0.3s ease;
}

.integration-orbit-cta:hover { transform: translate(-50%, -50%) scale(1.08); }

.integration-orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(2, 14, 13, 0.08);
}

.integration-orbit-icon img {
  animation: orbitCounterSpin 55s linear infinite;
}

.integration-orbit-wrap:hover .integration-orbit-icon img { animation-play-state: paused; }

.orbit-1 { transform: rotate(0deg) translateY(-210px) rotate(0deg); }
.orbit-2 { transform: rotate(51deg) translateY(-210px) rotate(-51deg); }
.orbit-3 { transform: rotate(102deg) translateY(-210px) rotate(-102deg); }
.orbit-4 { transform: rotate(154deg) translateY(-210px) rotate(-154deg); }
.orbit-5 { transform: rotate(205deg) translateY(-210px) rotate(-205deg); }
.orbit-6 { transform: rotate(257deg) translateY(-210px) rotate(-257deg); }
.orbit-7 { transform: rotate(308deg) translateY(-210px) rotate(-308deg); }

@media (max-width: 991px) {
  .about-user-card,
  .about-stat-card,
  .about-info-card,
  .about-payment-card,
  .about-pair-card { display: none; }
  .about-visual-v4 { display: block; }
  .service-v2-cards { min-height: 280px; margin-bottom: 2rem; }
  .testimonial-photo-card { min-height: 280px; }
  .orbit-1, .orbit-2, .orbit-3, .orbit-4, .orbit-5, .orbit-6, .orbit-7 {
    transform-origin: center;
  }
  .orbit-1 { transform: rotate(0deg) translateY(-140px) rotate(0deg); }
  .orbit-2 { transform: rotate(51deg) translateY(-140px) rotate(-51deg); }
  .orbit-3 { transform: rotate(102deg) translateY(-140px) rotate(-102deg); }
  .orbit-4 { transform: rotate(154deg) translateY(-140px) rotate(-154deg); }
  .orbit-5 { transform: rotate(205deg) translateY(-140px) rotate(-205deg); }
  .orbit-6 { transform: rotate(257deg) translateY(-140px) rotate(-257deg); }
  .orbit-7 { transform: rotate(308deg) translateY(-140px) rotate(-308deg); }
  .integration-orbit-wrap { width: min(340px, 92vw); height: min(340px, 92vw); }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .integration-grid,
  .integration-item { animation: none !important; }

  .clients-track { animation: none !important; }

  .hero-visual::before,
  .hero-glow { transform: none !important; }
}

/* ---- Legal pages ---- */
.legal-page {
  padding-top: clamp(7rem, 12vw, 9rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: var(--white);
}

.legal-page .section-label {
  margin-bottom: 0.75rem;
}

.legal-content {
  max-width: 48rem;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--gunmetal);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--gunmetal);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-content a {
  color: var(--spring-green);
  font-weight: 500;
}

.legal-content a:hover {
  color: var(--brand-dark);
}

.legal-risk {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--cloud-blue);
  border: 1px solid rgba(42, 95, 193, 0.12);
}

.legal-risk strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--forest-black);
}

.site-header--legal.scrolled .brand-text,
.site-header--legal .brand-text {
  color: var(--forest-black);
}

.site-header--legal .nav-link {
  color: var(--forest-black);
}

.site-header--legal .toggler-line {
  background: var(--forest-black);
}

.site-header--legal .header-zoom-shell {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(2, 14, 13, 0.08);
}

.site-header--legal {
  pointer-events: auto;
  padding-top: 0.625rem;
}

/* ---- How it works page ---- */
.hiw-content {
  max-width: 72rem;
}

.hiw-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gunmetal);
  max-width: 42rem;
  margin-bottom: 0;
}

.hiw-trading-steps.how-it-works-light {
  background: var(--cloud-blue);
}

.hiw-page.legal-page {
  padding-top: 0;
}

.hiw-page {
  padding-top: 0;
}

.hiw-plan-intro .section-title {
  max-width: 42rem;
  margin-inline: auto;
}

.hiw-plan-section .hiw-section,
.hiw-plan-section.hiw-section {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.bg-cloud .hiw-stat-card.about-stat-card {
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bg-cloud .hiw-stat-card.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 14, 13, 0.08);
}

.bg-cloud .about-stat-icon {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand-dark);
}

.hiw-mode-card {
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.06);
  box-shadow: 0 12px 36px rgba(2, 14, 13, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hiw-mode-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 14, 13, 0.08);
}

.hiw-highlight-card--brand {
  background:
    radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.18), transparent 55%),
    var(--forest-black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(2, 14, 13, 0.16);
}

.hiw-highlight-card--brand .hiw-highlight-label {
  color: rgba(255, 255, 255, 0.55);
}

.hiw-highlight-card--brand .hiw-highlight-value {
  color: var(--white);
}

.hiw-highlight-card--brand p {
  color: rgba(255, 255, 255, 0.62);
}

.hiw-page-cta .hiw-cta-band {
  margin-top: 0;
}

.hiw-page-cta .hiw-disclaimer {
  color: rgba(255, 255, 255, 0.5);
}

.about-page-dark .hiw-step-card:not(.hiw-step-card--accent) {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.about-page-dark .hiw-step-card:not(.hiw-step-card--accent) h3 {
  color: var(--white);
}

.about-page-dark .hiw-step-card:not(.hiw-step-card--accent) p,
.about-page-dark .hiw-step-card:not(.hiw-step-card--accent) .hiw-stat-label {
  color: rgba(255, 255, 255, 0.62);
}

.about-page-dark .hiw-step-card--accent {
  background:
    radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.35), transparent 55%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.35);
}

.about-page-dark .hiw-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page-dark .hiw-stat-card strong {
  color: var(--white);
}

.about-page-dark .hiw-stat-card p {
  color: rgba(255, 255, 255, 0.62);
}

.about-page-dark .hiw-level-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.about-page-dark .hiw-level-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb), 0.35);
}

.about-page-dark .hiw-level-card span,
.about-page-dark .hiw-level-card p {
  color: rgba(255, 255, 255, 0.62);
}

.about-page-dark .hiw-level-card strong {
  color: var(--white);
}

.about-page-dark .hiw-level-card--accent {
  background:
    radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.28), transparent 55%),
    rgba(255, 255, 255, 0.1);
  border-color: rgba(var(--brand-rgb), 0.35);
}

.about-page-dark .hiw-check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.hiw-trading-steps--lead {
  padding-top: clamp(7rem, 12vw, 9rem);
}

.hiw-intro {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.hiw-trading-steps .service-v1-heading {
  max-width: 52rem;
}

.hiw-section-first {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.hiw-section {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(2, 14, 13, 0.08);
}

.hiw-section-head {
  margin-bottom: 1.75rem;
}

.hiw-eyebrow {
  display: inline-block;
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--spring-green);
}

.hiw-step-card,
.hiw-mode-card,
.hiw-stat-card,
.hiw-rank-card {
  height: 100%;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.hiw-step-card {
  background: var(--cloud-blue);
  border: 1px solid rgba(2, 14, 13, 0.06);
}

.hiw-step-card--accent {
  background: var(--forest-black);
  border-color: transparent;
}

.hiw-step-card--accent h3,
.hiw-step-card--accent p {
  color: var(--white);
}

.hiw-step-card--accent .hiw-step-num {
  color: var(--spring-green);
}

.hiw-step-num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--spring-green);
}

.hiw-step-card h3,
.hiw-mode-card h3,
.hiw-rank-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
}

.hiw-step-card p,
.hiw-mode-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gunmetal);
}

.hiw-stat-label {
  display: inline-block;
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--spring-green);
}

.hiw-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hiw-check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gunmetal);
}

.hiw-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--spring-green);
}

.hiw-check-list strong {
  color: var(--forest-black);
}

.hiw-highlight-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--forest-black);
  color: var(--white);
  text-align: center;
}

.hiw-highlight-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hiw-highlight-value {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--spring-green);
  line-height: 1;
}

.hiw-highlight-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9375rem;
}

.hiw-level-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--cloud-blue);
  border: 1px solid rgba(2, 14, 13, 0.06);
  text-align: center;
}

.hiw-level-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--spring-green);
  line-height: 1;
}

.hiw-level-card span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--forest-black);
}

.hiw-level-card p {
  font-size: 0.8125rem;
  color: var(--gunmetal);
}

.hiw-level-card--accent {
  background: var(--forest-black);
  border-color: transparent;
}

.hiw-level-card--accent span,
.hiw-level-card--accent p {
  color: rgba(255, 255, 255, 0.78);
}

.hiw-level-card--accent strong {
  color: var(--spring-green);
}

.hiw-compression-flow {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--cloud-blue);
  border: 1px solid rgba(2, 14, 13, 0.06);
}

.hiw-flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.625rem;
}

.hiw-flow-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.875rem;
}

.hiw-flow-list span {
  color: var(--gunmetal);
}

.hiw-flow-list strong {
  color: var(--spring-green);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hiw-note,
.hiw-disclaimer {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gunmetal);
}

.hiw-disclaimer {
  font-size: 0.8125rem;
  opacity: 0.85;
}

.hiw-rank-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gunmetal);
}

.hiw-mode-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--spring-green);
  font-size: 1.25rem;
}

.hiw-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--forest-black);
  color: var(--white);
}

.hiw-callout-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.2);
  color: var(--spring-green);
  font-size: 1.25rem;
}

.hiw-callout h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hiw-callout p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.9375rem;
}

.hiw-split-card {
  display: grid;
  gap: 1rem;
}

.hiw-split-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--cloud-blue);
  border: 1px solid rgba(2, 14, 13, 0.06);
}

.hiw-split-item span {
  font-size: 0.9375rem;
  color: var(--gunmetal);
}

.hiw-split-item strong {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  color: var(--forest-black);
}

.hiw-stat-card {
  background: var(--cloud-blue);
  border: 1px solid rgba(2, 14, 13, 0.06);
  text-align: center;
}

.hiw-stat-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--spring-green);
  line-height: 1;
}

.hiw-stat-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gunmetal);
}

.hiw-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2, 14, 13, 0.08);
  background: var(--white);
}

.hiw-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
}

.hiw-table th,
.hiw-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(2, 14, 13, 0.06);
}

.hiw-table th {
  background: var(--cloud-blue);
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--forest-black);
}

.hiw-table td {
  color: var(--gunmetal);
}

.hiw-table tbody tr:last-child td {
  border-bottom: none;
}

.hiw-table td:last-child {
  font-weight: 600;
  color: var(--spring-green);
}

.hiw-rank-card {
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.08);
}

.hiw-rank-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hiw-rank-card ul {
  margin: 0;
  padding-left: 1.125rem;
}

.hiw-rank-card li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gunmetal);
}

.hiw-rank-card li + li {
  margin-top: 0.35rem;
}

.hiw-cta-band {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--cloud-blue);
  border: 1px solid rgba(2, 14, 13, 0.06);
  text-align: center;
}

.hiw-cta-band .section-desc {
  max-width: 32rem;
}

.btn-feanzo.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-feanzo.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--spring-green);
  color: var(--white);
}

.btn-feanzo.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(2, 14, 13, 0.14);
  color: var(--forest-black);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-full);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-feanzo.btn-outline-dark:hover {
  background: var(--white);
  border-color: var(--spring-green);
  color: var(--forest-black);
}

.site-header--legal .navbar-nav .nav-link.active,
.site-header--legal .navbar-nav .nav-link.show {
  color: #2a5fc1;
}

/* About page */
.about-page {
  padding-top: 0;
}

.about-page-hero {
  position: relative;
  padding: clamp(7rem, 12vw, 10.5rem) 0 clamp(3rem, 6vw, 4rem);
  background-color: var(--forest-black);
  background-image: var(--noise-url);
  background-repeat: repeat;
  overflow: hidden;
}

.about-hero-badge {
  margin-bottom: 1.25rem;
}

.about-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.about-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8125rem;
  font-weight: 500;
}

.about-hero-pills i {
  color: var(--spring-green);
  font-size: 1rem;
}

.about-hero-cta {
  margin-top: 1.75rem;
}

.about-page-hero-outline {
  position: relative;
  z-index: 1;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
  pointer-events: none;
}

.about-page-marquee {
  background: var(--forest-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-page-marquee .clients-marquee {
  padding-block: 1rem;
}

.about-story-features {
  max-width: 36rem;
}

.about-mission-shell {
  padding: 1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.65), rgba(var(--brand-rgb), 0.12) 45%, rgba(255, 255, 255, 0.35));
  box-shadow: 0 24px 60px rgba(var(--brand-rgb), 0.14);
}

.about-mission-shell .about-mission-card {
  border: none;
  box-shadow: none;
}

.about-mission-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(var(--brand-rgb), 0.16), rgba(var(--brand-rgb), 0.06));
  color: var(--brand-dark);
  font-size: 1.125rem;
}

.about-stat-card {
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.16);
  color: var(--spring-green);
  font-size: 1.25rem;
}

.about-page-dark .about-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--brand-rgb), 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.about-value-num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(var(--brand-rgb), 0.55);
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--spring-green), rgba(var(--brand-rgb), 0.15));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-value-card:hover::before {
  opacity: 1;
}

.about-value-card--featured {
  background:
    radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.22), transparent 55%),
    var(--forest-black);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(2, 14, 13, 0.18);
}

.about-value-card--featured::before {
  opacity: 1;
}

.about-value-card--featured .about-value-num {
  color: rgba(255, 255, 255, 0.35);
}

.about-value-card--featured .about-feature-icon {
  background: rgba(var(--brand-rgb), 0.2);
  color: var(--spring-green);
}

.about-value-card--featured h3 {
  color: var(--white);
}

.about-value-card--featured p {
  color: rgba(255, 255, 255, 0.62);
}

.about-page-platform .about-visual-v4 {
  margin-top: 0;
}

.about-page-testimonials {
  background: var(--white);
}

.about-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.16);
  color: var(--spring-green);
  font-size: 1.25rem;
}

.about-page-dark .about-trust-icon {
  background: rgba(var(--brand-rgb), 0.2);
}

.about-page-dark .about-trust-card {
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.about-page-dark .about-trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-rgb), 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.about-page-dark .about-trust-card i {
  display: none;
}

.about-cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.about-cta-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
}

.about-cta-badges i {
  color: var(--spring-green);
}

.about-page-hero .container-fluid {
  position: relative;
  z-index: 2;
}

.about-page-hero-inner {
  max-width: 46rem;
}

.about-page-hero .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.about-page-hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-page-hero-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.about-page-dark {
  position: relative;
  background-color: var(--forest-black);
  background-image: var(--texture-url);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto 100%;
  overflow: hidden;
}

.about-page-glow {
  position: absolute;
  top: -25%;
  right: -12%;
  width: 58%;
  height: 75%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.about-page-glow--left {
  right: auto;
  left: -12%;
  top: auto;
  bottom: -20%;
}

.about-page-dark .section-title {
  color: var(--white);
}

.about-page-dark .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.about-page-dark .section-desc,
.about-page-dark .counter-v2-card > p,
.about-page-dark .about-page-risk {
  color: rgba(255, 255, 255, 0.62);
}

.about-page-dark .counter-v2-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.about-page-dark .counter-v2-value {
  color: var(--white);
}

.about-page-dark .about-trust-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page-dark .about-trust-card strong {
  color: var(--white);
}

.about-page-dark .about-trust-card p {
  color: rgba(255, 255, 255, 0.62);
}

.about-page-cta-band--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.about-page-cta-band--dark .section-title {
  color: var(--white);
}

.about-page-cta-band--dark .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.about-mission-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.06);
  box-shadow: 0 16px 48px rgba(2, 14, 13, 0.06);
}

.about-mission-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
}

.about-mission-item + .about-mission-item {
  border-top: 1px solid rgba(2, 14, 13, 0.06);
}

.about-mission-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  color: var(--forest-black);
}

.about-mission-item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gunmetal);
}

.about-value-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 14, 13, 0.08);
}

.about-value-card h3 {
  margin: 0.75rem 0 0.5rem;
  font-family: var(--heading-font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--forest-black);
}

.about-value-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gunmetal);
}

.about-platform-list {
  margin-top: 1.25rem;
}

.about-trust-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--cloud-blue);
  border: 1px solid rgba(2, 14, 13, 0.06);
}

.about-trust-card i {
  display: inline-flex;
  font-size: 1.375rem;
  color: var(--spring-green);
  margin-bottom: 0.625rem;
}

.about-trust-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--heading-font);
  font-size: 0.9375rem;
  color: var(--forest-black);
}

.about-trust-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--gunmetal);
}

.about-session-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(2, 14, 13, 0.06);
}

.about-session-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--forest-black);
  font-size: 1.25rem;
}

.about-session-card h3 {
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--forest-black);
}

.about-session-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--gunmetal);
}

.about-page-cta-band {
  margin-top: 0;
}

.about-page-risk {
  max-width: 40rem;
  margin-inline: auto;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--gunmetal);
}

/* ---- Mobile responsive ---- */
@media (max-width: 767px) {
  :root {
    --section-gap: clamp(2.75rem, 8vw, 3.5rem);
  }

  .site-header {
    padding-top: 0.625rem;
  }

  .header-zoom-shell {
    margin-inline: 0.625rem;
    max-width: calc(100% - 1.25rem);
  }

  .brand-logo {
    height: 1.75rem;
    max-width: 8.5rem;
  }

  .site-header .navbar {
    padding-block: 0.75rem;
  }

  .nav-actions .btn-feanzo {
    width: 100%;
  }

  .nav-actions .btn-feanzo .btn-inner {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 5.75rem;
    padding-bottom: 3rem;
  }

  .hero-badge {
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    padding: 0.4375rem 0.875rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    margin-bottom: 0.875rem;
  }

  .hero-desc {
    font-size: 0.9375rem;
  }

  .hero-outline-text {
    font-size: clamp(2.5rem, 13vw, 3.5rem);
    letter-spacing: -0.04em;
  }

  .section-title {
    font-size: clamp(1.5rem, 6.5vw, 1.875rem);
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 0.9375rem;
  }

  .section-label {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }

  main .row.g-5,
  main .row.g-4 {
    --bs-gutter-y: 1.5rem;
  }

  .about-forex-terminal,
  .why-trading-panel {
    min-height: auto;
    padding: 1.125rem;
  }

  .about-terminal-chart {
    height: 5.5rem;
  }

  .about-feature-box {
    min-height: auto;
  }

  .service-v1-heading {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
  }

  .service-v1-heading .service-v1-line-icon img {
    width: 32px;
    height: auto;
  }

  .how-steps-wrap {
    padding-top: 0.75rem;
    padding-bottom: 0;
  }

  .service-v1-tag {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    margin-top: 1rem;
  }

  .step-card,
  .step-card-dark,
  .step-card-light,
  .step-card-green,
  .step-card-blue {
    min-height: auto;
    padding: 1.375rem;
  }

  .step-card-inner p {
    padding-top: 1rem;
  }

  .map-visual-v5 {
    padding: 0;
  }

  .map-pin {
    display: none;
  }

  .why-list {
    margin-top: 1rem;
  }

  .why-list li {
    padding: 0.75rem 0;
    gap: 0.75rem;
    font-size: 0.9375rem;
  }

  .why-panel-chart {
    height: 6rem;
  }

  .why-panel-order {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.35rem 0.625rem;
    align-items: center;
  }

  .why-panel-order > span:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .why-panel-order-price {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.75rem;
  }

  .why-panel-order-status {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .why-sub {
    font-size: 1rem;
    margin-top: 2rem !important;
  }

  .testimonial-quote-card {
    padding: 1.25rem;
  }

  .testimonial-avatar {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .testimonial-quote-card blockquote {
    font-size: 1rem;
  }

  .footer-cta {
    padding-block: 2.5rem;
  }

  .footer-cta-title {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .footer-cta-desc {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
  }

  .footer-main {
    padding-block: 2.5rem;
  }

  .footer-grid {
    padding-bottom: 1.5rem;
  }

  .footer-grid > [class*="col-"] {
    margin-bottom: 0.25rem;
  }

  .footer-desc {
    max-width: none;
    margin-bottom: 1.25rem;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    text-align: left;
  }

  .footer-risk {
    font-size: 0.6875rem;
    line-height: 1.55;
  }

  .markets-intro .section-desc.mt-3,
  .why-intro .section-desc.mt-3 {
    margin-top: 0.75rem !important;
  }

  .counter-v2-card {
    padding: 1.25rem 1rem;
  }

  .rt-about-v1-counter-wrapper {
    margin-top: 2rem !important;
  }

  .about-feature-box strong {
    font-size: 0.9375rem;
  }

  .about-feature-box span:last-child {
    font-size: 0.8125rem;
  }

  .btn-feanzo.btn-animated .btn-inner {
    padding: 0.8125rem 1.25rem;
    font-size: 0.875rem;
  }

  .legal-page {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  .hiw-page.legal-page {
    padding-top: 0;
  }

  .hiw-trading-steps--lead {
    padding-top: 5.5rem;
  }

  .legal-content h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .legal-content h2 {
    margin-top: 1.75rem;
    font-size: 1.125rem;
  }

  .hiw-callout {
    flex-direction: column;
  }

  .hiw-split-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-page-hero {
    padding-top: clamp(6.5rem, 14vw, 8rem);
  }

  .about-hero-pills {
    gap: 0.5rem;
  }

  .about-hero-pills span {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }

  .about-hero-cta .btn-feanzo {
    width: 100%;
    max-width: 20rem;
  }

  .about-page-hero-outline .hero-outline-text {
    font-size: clamp(3rem, 18vw, 5.5rem);
  }

  .hiw-page-cta .hiw-cta-band .d-flex,
  .about-page-cta-band .d-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .hiw-page-cta .hiw-cta-band .btn-feanzo,
  .about-page-cta-band .btn-feanzo,
  .hiw-cta-band .btn-feanzo {
    width: 100%;
  }

  .hiw-page-cta .hiw-cta-band .btn-feanzo .btn-inner,
  .about-page-cta-band .btn-feanzo .btn-inner,
  .hiw-cta-band .btn-feanzo .btn-inner {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .clients-marquee {
    padding-block: 0.5rem;
  }

  .forex-marquee-name {
    font-size: 0.8125rem;
  }

  .forex-marquee-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

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

  .footer-legal-links {
    gap: 1rem;
  }
}

/* ---- Final responsive polish (all pages) ---- */
@media (max-width: 991.98px) {
  .container-fluid.container-xxl {
    width: 100%;
    max-width: 100%;
  }

  .site-header:not(.scrolled):not(.site-header--legal) .header-zoom-shell {
    background: rgba(2, 14, 13, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 28px rgba(2, 14, 13, 0.18);
  }

  .site-header:not(.scrolled):not(.site-header--legal) .toggler-line {
    background: var(--white);
  }

  .hiw-table-wrap {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767px) {
  .about-page-hero h1,
  .hiw-page-hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.1rem);
  }

  .about-page-hero-lead {
    font-size: 0.9375rem;
  }

  .about-hero-cta,
  .hero-cta {
    display: flex;
    justify-content: center;
  }

  .hiw-plan-intro {
    padding-block: clamp(2.5rem, 7vw, 3.25rem);
  }

  .hiw-highlight-card--brand {
    padding: 1.75rem 1.25rem;
  }

  .hiw-highlight-value {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hiw-level-card {
    padding: 1.125rem 0.875rem;
  }

  .hiw-level-card strong {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
  }

  .hiw-mode-card,
  .hiw-step-card {
    padding: 1.25rem;
  }

  .hiw-table th,
  .hiw-table td {
    padding: 0.75rem 0.625rem;
    font-size: 0.8125rem;
    vertical-align: top;
  }

  .hiw-stat-card.about-stat-card {
    padding: 1.25rem 0.875rem;
  }

  .about-stat-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .hiw-stat-card strong {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
  }

  .about-cta-badges {
    gap: 0.5rem;
  }

  .about-cta-badges span {
    font-size: 0.75rem;
  }

  .testimonial-photo-card {
    min-height: 220px;
  }

  .live-rate-card {
    padding: 0.875rem 0.75rem;
  }

  .live-rate-pair {
    font-size: 0.8125rem;
  }

  .live-rate-prices strong {
    font-size: 0.9375rem;
  }

  .service-v1-heading .service-v1-line-icon {
    display: inline-block;
    vertical-align: middle;
    margin-inline: 0.15rem;
  }

  .service-v1-heading .service-v1-line-icon img {
    width: 28px;
    height: auto;
  }

  .legal-content {
    max-width: 100%;
  }

  .about-mission-shell {
    margin-top: 0.25rem;
  }

  .about-value-card {
    padding: 1.25rem;
  }

  .about-page-dark .counter-v2-card {
    padding: 1.125rem 0.75rem;
  }
}

@media (max-width: 575px) {
  .about-hero-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-pills span {
    justify-content: center;
    width: 100%;
  }

  .about-cta-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta-badges span {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 359px) {
  .brand-logo {
    max-width: 7.25rem;
  }

  .counter-v2-value {
    font-size: 1.5rem;
  }

  .hiw-stat-card strong {
    font-size: 1.25rem;
  }

  .btn-feanzo.btn-animated .btn-inner {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }
}
