/* Allsmsverify — Figma landing (home-figma.css) */
/* This stylesheet is only loaded on the Figma home page — clip horizontal overflow
   so marquees / transforms / subpixel rounding do not show a left-right scrollbar on mobile. */
html {
  overflow-x: hidden;
  width: 100%;
}

:root {
  --fig-orange: #f26522;
  --fig-orange-hover: #e05a1a;
  --fig-orange-soft: #fff0e8;
  --fig-peach: #fff5ed;
  --fig-cream: #f5f3ef;
  --fig-warm: #f8f7f2;
  --fig-footer: #f6f4ef;
  --fig-black: #0a0a0a;
  --fig-gray: #666666;
  --fig-gray-light: #8a8a8a;
  --fig-white: #ffffff;
  --fig-radius: 12px;
  --fig-radius-lg: 16px;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Young Serif", "Georgia", serif;
  --container: min(1180px, 100% - 48px);
}

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

.home-figma {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fig-black);
  background: var(--fig-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

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

.home-figma a {
  text-decoration: none;
}

/* Only non-button links inherit body color — otherwise `a { color: inherit }` beats `.fig-btn-primary { color }` and text/icons turn black */
.home-figma a:not(.fig-btn) {
  color: inherit;
}

.home-figma section {
  margin: 0;
}

.fig-container {
  width: var(--container);
  margin-inline: auto;
}

.fig-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* —— Top nav —— */
.fig-top-wrap {
  padding: 20px 24px 0;
  max-width: 100%;
  box-sizing: border-box;
}

.fig-nav {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: var(--fig-peach);
  border-radius: var(--fig-radius-lg);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  min-width: 0;
  box-sizing: border-box;
}

.fig-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

/* Same mark + wordmark as login.php (logo-png.png + bold “Allsmsverify”) */
.fig-brand-logo {
  width: 36px;
  height: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.fig-brand-name {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fig-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.fig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.fig-btn:active {
  transform: scale(0.98);
}

.fig-btn-ghost {
  background: var(--fig-white);
  color: var(--fig-orange);
  border-color: transparent;
}

.fig-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--fig-orange);
}

.fig-btn-primary {
  background: var(--fig-orange);
  color: var(--fig-white);
  border-color: var(--fig-orange);
}

.fig-btn-primary:hover {
  background: var(--fig-orange-hover);
  border-color: var(--fig-orange-hover);
  color: var(--fig-white);
}

.fig-btn-outline {
  background: var(--fig-white);
  color: var(--fig-orange);
  border-color: var(--fig-orange);
}

.fig-btn-outline:hover {
  background: var(--fig-orange-soft);
  color: var(--fig-orange);
}

.fig-btn-white {
  background: var(--fig-white);
  color: var(--fig-orange);
}

.fig-btn-white:hover {
  filter: brightness(0.98);
  color: var(--fig-orange);
}

/* —— Hero —— */
.fig-hero {
  text-align: center;
  padding: 48px max(16px, env(safe-area-inset-left, 0px)) 64px
    max(16px, env(safe-area-inset-right, 0px));
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.fig-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--fig-orange-soft);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fig-orange);
  margin-bottom: 24px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

@keyframes fig-badge-dot-pulse {
  0%,
  100% {
    opacity: 0.75;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2), 0 0 6px rgba(34, 197, 94, 0.3);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35), 0 0 14px rgba(34, 197, 94, 0.55);
  }
}

.fig-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: fig-badge-dot-pulse 2.2s ease-in-out infinite;
}

/* Fluid type: old clamp(2rem, 5vw, …) stayed at 2rem on phones because 5vw < 2rem, so lines like
   “Numbers Worldwide SMS” overflowed ~390px viewports. Use vw + rem so size tracks narrow widths. */
.home-figma h1.fig-hero-title.fig-display {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.65vw + 0.85rem, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  width: 100%;
  max-width: min(920px, 100%);
  margin: 0 auto 20px;
  letter-spacing: -0.035em;
  color: var(--fig-black);
  overflow-wrap: break-word;
  word-wrap: break-word;
  padding-inline: 0;
  box-sizing: border-box;
  min-width: 0;
}

.fig-hero-title .accent {
  color: var(--fig-orange);
}

.fig-hero-sub {
  max-width: min(720px, 100%);
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--fig-gray);
  font-weight: 400;
  overflow-wrap: anywhere;
  word-break: break-word;
  padding-inline: 0;
}

.fig-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
}

.fig-hero-ctas .fig-btn {
  padding: 14px 28px;
  font-size: 1rem;
}

.fig-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.fig-stat-val {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.2vw + 0.75rem, 2.75rem);
  font-weight: 700;
  color: var(--fig-orange);
  line-height: 1;
  white-space: nowrap;
}

.fig-stat-label {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--fig-gray);
  font-weight: 500;
}

/* —— Platforms strip —— */
.fig-platforms {
  padding: 32px 24px 48px;
  text-align: center;
  overflow-x: hidden;
  max-width: 100%;
}

.fig-platforms h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--fig-black);
}

/* Infinite auto-scroll — uniform logo height, no edge crop, aligned row */
.fig-logo-marquee-outer {
  overflow: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  padding-inline: 16px;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
}

.fig-logo-marquee-track {
  display: flex;
  width: max-content;
  max-width: none;
  animation: fig-logo-marquee-x 38s linear infinite;
}

.fig-logo-marquee-outer:hover .fig-logo-marquee-track {
  animation-play-state: paused;
}

.fig-logo-marquee {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-inline: 40px;
}

/* Fixed slots: SVGs from CDN can report huge intrinsic widths; flex min-size caused overlap */
.fig-logo-marquee > * {
  flex: 0 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.fig-logo-marquee > .fig-logo-marquee__img {
  display: block;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  object-position: center;
}

/* Wordmarks / wide marks (Indeed, etc.) — same visual weight as icons */
.fig-logo-marquee > .fig-logo-marquee__img--wide {
  flex-basis: 72px;
  width: 72px;
  height: 44px;
  max-width: 72px;
  max-height: 44px;
}

.fig-logo-slot {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 4.5rem;
  height: 44px;
  padding-inline: 8px;
}

.fig-logo-slot--hinge {
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
}

.fig-logo-slot--fiverr {
  font-size: 1.05rem;
  font-weight: 700;
  color: #404145;
  letter-spacing: -0.03em;
  font-family: var(--font-sans);
}

.fig-logo-slot--fiverr .fig-logo-slot__dot {
  color: #1dbf73;
}

.fig-logo-slot--gopay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
  text-transform: lowercase;
  font-family: var(--font-sans);
}

.fig-logo-slot--gopay .fig-logo-slot__gopay-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00aec7;
  flex-shrink: 0;
}

.fig-logo-slot--blibli {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0095da;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  font-family: var(--font-sans);
}

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

/* —— Section heading block —— */
.fig-section-head {
  text-align: center;
  padding: 24px 24px 16px;
}

.fig-section-head h2.fig-display {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--fig-black);
  margin: 0 0 16px;
  line-height: 1.2;
}

/* Tighter gap: “Choose how…” → lead paragraph (only this adjacent pair) */
.fig-platforms + .fig-section-head {
  padding-top: 20px;
  padding-bottom: 4px;
}

.fig-platforms + .fig-section-head h2.fig-display {
  margin-bottom: 6px;
}

.fig-section-head + .fig-cards-orange {
  padding-top: 4px;
}

.fig-section-lead {
  max-width: 800px;
  margin: 0 auto;
  color: var(--fig-gray);
  font-size: 1rem;
  font-weight: 500;
}

.fig-cards-orange .fig-section-lead {
  text-align: center;
  margin-bottom: 40px;
  max-width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  padding-inline: 0;
  box-sizing: border-box;
}

/* Hidden on desktop; shown ≤575px so the “Choose how…” lead reads in 3 balanced lines */
.fig-br-sm-only {
  display: none;
}

/* —— Three orange service cards —— */
.fig-cards-orange {
  padding: 24px 24px 80px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: clip;
}

.fig-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.fig-card-o {
  background: var(--fig-orange);
  border-radius: var(--fig-radius-lg);
  padding: 36px 32px 32px;
  color: var(--fig-white);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.fig-card-o-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fig-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.fig-card-o-icon svg {
  width: 24px;
  height: 24px;
  color: var(--fig-orange);
  display: block;
  transform-origin: center center;
}

/* Orange service cards — icon motion (SVG only; white circle stays steady) */
.fig-card-o:hover .fig-svc-anim svg {
  animation-play-state: paused;
}

.fig-svc-anim--bolt svg {
  animation: fig-svc-bolt 2.1s ease-in-out infinite;
}

.fig-svc-anim--sync svg {
  animation: fig-svc-sync 3.4s ease-in-out infinite;
}

.fig-svc-anim--target svg {
  animation: fig-svc-target 2.5s ease-in-out infinite;
}

@keyframes fig-svc-bolt {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    filter: brightness(1);
  }
  35% {
    transform: translate(0, -3px) scale(1.14);
    filter: brightness(1.12);
  }
  55% {
    transform: translate(0, 0) scale(1);
    filter: brightness(1);
  }
}

@keyframes fig-svc-sync {
  0%,
  100% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-32deg);
  }
  65% {
    transform: rotate(32deg);
  }
}

@keyframes fig-svc-target {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  45% {
    transform: scale(1.1);
    opacity: 0.92;
  }
}

.fig-card-o-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 12px;
}

.fig-card-o h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1.25;
  color: var(--fig-white);
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 0;
}

.fig-card-o p.desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0 0 20px;
  flex-grow: 0;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.fig-card-o ul {
  margin: 0 0 28px;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  opacity: 0.95;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.fig-card-o .fig-btn {
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: var(--fig-white);
  color: var(--fig-orange);
  border: none;
  padding: 14px;
}

.fig-card-o .fig-btn:hover {
  filter: brightness(1.05);
  color: var(--fig-orange);
}

/* —— How it works —— */
.fig-how {
  background: var(--fig-cream);
  padding: 80px 24px 0;
  position: relative;
}

.fig-how .fig-section-head h2 {
  margin-bottom: 16px;
}

.fig-how-sub {
  max-width: min(720px, 100%);
  margin: 0 auto 48px;
  text-align: center;
  color: var(--fig-gray);
  font-size: 1rem;
  padding-inline: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.fig-how-sub strong {
  color: var(--fig-black);
  font-weight: 700;
}

.fig-how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 80px;
  min-width: 0;
  box-sizing: border-box;
}

.fig-card-w {
  background: var(--fig-white);
  border-radius: var(--fig-radius-lg);
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.fig-card-w-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.fig-card-w-icon svg {
  display: block;
  width: 56px;
  height: 56px;
  transform-origin: center center;
}

/* How it works — two-tone line icons (black + brand orange) */
.fig-how-svg .fig-how-stroke {
  fill: none;
  stroke: #1a1a1a;
  stroke-width: 1.85;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.fig-how-svg .fig-how-accent {
  fill: none;
  stroke: #f26522;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fig-how-svg .fig-how-accent--fill {
  fill: #f26522;
  stroke: #f26522;
  stroke-width: 0;
}

.fig-how-svg .fig-how-badge-text {
  fill: #ffffff;
  font-size: 8.5px;
  font-weight: 700;
  font-family: var(--font-sans), system-ui, sans-serif;
  pointer-events: none;
}

/* How it works — motion */
.fig-card-w:hover .fig-how-anim svg {
  animation-play-state: paused;
}

.fig-how-anim--user svg {
  animation: fig-how-user 2.7s ease-in-out infinite;
}

.fig-how-anim--wallet svg {
  animation: fig-how-wallet 2.5s ease-in-out infinite;
}

.fig-how-anim--mail svg {
  animation: fig-how-mail 2.3s ease-in-out infinite;
}

@keyframes fig-how-user {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

@keyframes fig-how-wallet {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  35% {
    transform: translateY(3px) rotate(-5deg);
  }
  70% {
    transform: translateY(3px) rotate(5deg);
  }
}

@keyframes fig-how-mail {
  0%,
  100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-6px);
  }
  55% {
    transform: translateY(-2px);
  }
}

.fig-card-w h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--fig-black);
}

.fig-card-w p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--fig-gray);
  line-height: 1.65;
}

/* Figma accent strip: sits between cream section and orange section (own row = no gap / clipping) */
.fig-how-bar {
  display: block;
  height: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #ff6600;
}

/* —— Why choose —— */
.fig-why {
  background: #ff6600;
  padding: 88px 24px;
  margin-top: 0;
}

.fig-why h2.fig-display {
  text-align: center;
  color: var(--fig-white);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 48px;
}

.fig-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.fig-card-mini {
  background: var(--fig-white);
  border-radius: var(--fig-radius-lg);
  padding: 28px 24px;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.fig-card-mini .bi {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--fig-black);
  display: block;
}

/* “Why choose” — subtle looping icon motion */
.fig-why-anim {
  display: inline-block;
  transform-origin: 50% 55%;
}

.fig-card-mini:hover .fig-why-anim {
  animation-play-state: paused;
}

.fig-why-anim--rocket {
  animation: fig-why-rocket 2.8s ease-in-out infinite;
}

.fig-why-anim--grid {
  animation: fig-why-grid 2.5s ease-in-out infinite;
}

.fig-why-anim--speed {
  animation: fig-why-speed 1.15s ease-in-out infinite;
}

.fig-why-anim--support {
  animation: fig-why-support 2.4s ease-in-out infinite;
}

@keyframes fig-why-rocket {
  0%,
  100% {
    transform: translate(0, 0) rotate(-6deg);
  }
  50% {
    transform: translate(5px, -7px) rotate(2deg);
  }
}

@keyframes fig-why-grid {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.1);
  }
}

@keyframes fig-why-speed {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(7px);
    opacity: 0.88;
  }
}

@keyframes fig-why-support {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  30% {
    transform: translateY(-3px) rotate(-4deg);
  }
  60% {
    transform: translateY(-2px) rotate(4deg);
  }
}

.fig-card-mini svg {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--fig-black);
}

.fig-card-mini h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.fig-card-mini p {
  margin: 0;
  font-size: 0.875rem;
  color: #555555;
  line-height: 1.6;
}

/* —— How people use —— */
.fig-use {
  background: var(--fig-warm);
  padding: 88px 24px;
}

.fig-use h2.fig-display {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 48px;
  color: var(--fig-black);
}

.fig-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.fig-use-card {
  position: relative;
  border-radius: var(--fig-radius-lg);
  overflow: hidden;
  min-height: 340px;
  min-width: 0;
  max-width: 100%;
  background: #333 center/cover no-repeat;
  box-sizing: border-box;
}

.fig-use-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.fig-use-card-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  z-index: 1;
}

.fig-use-card-inner h3 {
  color: var(--fig-white);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.fig-use-card-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* —— Testimonials —— */
.fig-testi {
  background: var(--fig-orange);
  padding: 88px 24px 56px;
}

.fig-testi h2.fig-display {
  text-align: center;
  color: var(--fig-white);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.2;
}

/* Testimonials: seamless auto-scroll on ≥992px; tablets/phones stay static grid */
.fig-testi-marquee-outer {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.fig-testi-marquee-track {
  display: block;
  width: 100%;
}

.fig-testi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .fig-testi-marquee-outer {
    width: min(1180px, calc(100vw - 48px));
  }

  .fig-testi-marquee-track {
    --fig-testi-batch: min(1180px, calc(100vw - 48px));
    --fig-testi-gap: 20px;
    display: flex;
    width: max-content;
    gap: var(--fig-testi-gap);
    animation: fig-testi-marquee-x 52s linear infinite;
  }

  .fig-testi-marquee-outer:hover .fig-testi-marquee-track {
    animation-play-state: paused;
  }

  .fig-testi-marquee-track .fig-testi-grid {
    flex: 0 0 var(--fig-testi-batch);
    width: var(--fig-testi-batch);
    max-width: none;
    margin: 0;
  }
}

@keyframes fig-testi-marquee-x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * (var(--fig-testi-batch) + var(--fig-testi-gap))));
  }
}

.fig-testi-card {
  margin: 0;
  min-width: 0;
  background: var(--fig-white);
  border-radius: var(--fig-radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.fig-testi-card blockquote {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--fig-black);
  line-height: 1.6;
  flex-grow: 1;
}

.fig-testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fig-testi-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.fig-testi-user strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.fig-testi-user span {
  font-size: 0.8125rem;
  color: var(--fig-gray);
}

.fig-testi-progress {
  position: relative;
  max-width: 1180px;
  width: 100%;
  margin: 40px auto 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.fig-testi-progress span {
  display: block;
  width: 26%;
  height: 100%;
  background: var(--fig-white);
  border-radius: 999px;
}

/* Moving pill synced with testimonial marquee (desktop) */
@media (min-width: 992px) {
  .fig-testi-progress span {
    position: absolute;
    left: 0;
    top: 0;
    width: 26%;
    animation: fig-testi-progress-pill 52s linear infinite;
  }

  .fig-testi-marquee-outer:hover ~ .fig-testi-progress span {
    animation-play-state: paused;
  }
}

@keyframes fig-testi-progress-pill {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% - 26%);
  }
}

/* —— FAQ —— */
.fig-faq-topbar {
  height: 8px;
  background: var(--fig-orange);
  width: 100%;
}

.fig-faq {
  padding: 72px 24px 80px;
  background: var(--fig-white);
}

.fig-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 56px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.fig-faq-left h2.fig-display {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 28px;
  line-height: 1.15;
}

.fig-faq-left h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.fig-faq-left .muted {
  font-size: 0.9375rem;
  color: var(--fig-gray-light);
  margin: 0 0 28px;
  line-height: 1.6;
}

.fig-faq-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fig-faq-btns .fig-btn {
  padding: 12px 20px;
}

.fig-accordion .accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: var(--fig-radius) !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background: var(--fig-white);
}

.fig-accordion .accordion-button {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fig-black);
  padding: 18px 22px;
  box-shadow: none !important;
  background: var(--fig-white) !important;
}

.fig-accordion .accordion-button:not(.collapsed) {
  background: var(--fig-white) !important;
  color: var(--fig-black);
}

.fig-accordion .accordion-button::after {
  filter: grayscale(1) brightness(0.35);
  background-size: 1rem;
}

.fig-accordion .accordion-body {
  padding: 0 22px 18px;
  font-size: 0.9375rem;
  color: var(--fig-gray);
  line-height: 1.65;
}

/* —— CTA banner —— */
.fig-cta {
  background: #ff6600;
  padding: 72px 24px;
  text-align: center;
}

.fig-cta h2.fig-display {
  color: var(--fig-white);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 auto 16px;
  max-width: 640px;
  line-height: 1.2;
}

.fig-cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 28px;
  font-weight: 500;
}

.fig-cta .fig-btn {
  padding: 14px 28px;
  font-size: 1rem;
}

/* —— Footer —— */
.fig-footer {
  background: var(--fig-footer);
  padding: 48px 24px 32px;
}

.fig-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 32px;
}

.fig-footer-social {
  display: flex;
  gap: 18px;
  font-size: 1.35rem;
  color: var(--fig-black);
}

.fig-footer-social a:hover {
  color: var(--fig-orange);
}

.fig-footer-copy {
  text-align: center;
  font-size: 0.875rem;
  color: var(--fig-gray);
  max-width: 1180px;
  margin: 0 auto;
}

.fig-footer-legacy {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8125rem;
}

.fig-footer-legacy a {
  color: var(--fig-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— Responsive —— */
@media (max-width: 991px) {
  .fig-grid-3,
  .fig-how-grid,
  .fig-use-grid {
    grid-template-columns: 1fr;
  }

  .fig-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .fig-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fig-testi-grid--dup {
    display: none !important;
  }

  .fig-testi-marquee-outer {
    overflow: visible;
    width: 100%;
    max-width: 1180px;
  }

  .fig-testi-marquee-track {
    animation: none !important;
    transform: none !important;
    display: block;
    width: 100%;
  }

  .fig-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .fig-br-sm-only {
    display: inline;
  }

  .fig-platforms + .fig-section-head {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 8px;
  }

  .fig-section-head + .fig-cards-orange {
    padding-top: 0;
  }

  .fig-cards-orange .fig-section-lead--choose {
    margin-bottom: 28px;
    font-size: 0.9375rem;
    line-height: 1.65;
    padding-inline: 8px;
    text-wrap: pretty;
  }

  .fig-cards-orange {
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    padding-bottom: 64px;
  }

  .fig-card-o {
    padding: 28px 18px 24px;
  }

  .fig-card-o h3 {
    font-size: 1.35rem;
  }

  .fig-top-wrap {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fig-nav {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
  }

  .fig-brand {
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
  }

  .fig-brand-logo {
    width: 32px;
  }

  .fig-brand-name {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .fig-nav-actions {
    width: auto;
    flex-shrink: 0;
    gap: 6px;
  }

  .fig-nav .fig-btn {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .fig-stats {
    gap: 10px;
    max-width: 100%;
  }

  .fig-stat-val {
    font-size: clamp(1.3rem, 5.2vw, 2rem);
  }

  .fig-stat-label {
    font-size: 0.7rem;
  }

  .fig-grid-4 {
    grid-template-columns: 1fr;
  }

  .fig-testi-grid {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  .fig-badge-dot {
    animation: none !important;
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  }

  .fig-logo-marquee-track,
  .fig-testi-marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .fig-logo-marquee-track .fig-logo-marquee + .fig-logo-marquee {
    display: none;
  }

  .fig-logo-marquee-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .fig-testi-grid--dup {
    display: none !important;
  }

  .fig-testi-marquee-track {
    display: block;
    width: 100%;
  }

  .fig-testi-progress span {
    animation: none !important;
    position: relative;
    left: auto !important;
  }

  .fig-why-anim {
    animation: none !important;
  }

  .fig-svc-anim--bolt svg,
  .fig-svc-anim--sync svg,
  .fig-svc-anim--target svg {
    animation: none !important;
  }

  .fig-how-anim--user svg,
  .fig-how-anim--wallet svg,
  .fig-how-anim--mail svg {
    animation: none !important;
  }
}
