@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

.figv-content-section,
.figv-content-section * {
  box-sizing: border-box;
}

.figv-content-section {
  --figv-ink: #1f2937;
  --figv-muted: #667085;
  --figv-line: rgba(233, 117, 91, 0.2);
  --figv-grad: linear-gradient(135deg, #f97362 0%, #c2418f 48%, #6d5dfc 100%);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--figv-ink);
}

.figv-content-section .figv-section,
.figv-content-section .figv-container,
.figv-content-section .figv-grid {
  width: 100%;
  max-width: 100%;
}

.figv-content-section .figv-section {
  position: relative;
  padding: 86px 18px;
  overflow: hidden;
}

.figv-content-section .figv-section-white {
  background: #fff;
}

.figv-content-section .figv-section-warm {
  background:
    radial-gradient(circle at 18% 10%, rgba(249, 115, 98, 0.14), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(109, 93, 252, 0.12), transparent 32%),
    linear-gradient(180deg, #fff7f2 0%, #fffaf7 56%, #fff 100%);
}

.figv-content-section .figv-container {
  max-width: 1240px;
  margin: 0 auto;
}

.figv-content-section .figv-heading-wrap {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.figv-content-section h2 {
  margin: 0;
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.16;
  font-weight: 820;
  letter-spacing: 0;
  color: #111827;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.figv-content-section h2 span {
  background: var(--figv-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.figv-content-section .figv-heading-wrap p {
  margin: 13px auto 0;
  max-width: 660px;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--figv-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.figv-content-section .figv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.figv-content-section .figv-card {
  --fg-a: #f97362;
  --fg-b: #c2418f;
  --fg-soft: rgba(249, 115, 98, 0.11);
  --fg-line: rgba(249, 115, 98, 0.22);
  --fg-mx: 50%;
  --fg-my: 20%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--fg-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 246, 0.9));
  box-shadow: 0 18px 46px rgba(29, 41, 57, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    opacity 650ms ease,
    transform 650ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.figv-content-section .figv-card:nth-child(2) { --fg-a: #ec4899; --fg-b: #8b5cf6; --fg-soft: rgba(236, 72, 153, 0.11); --fg-line: rgba(236, 72, 153, 0.22); }
.figv-content-section .figv-card:nth-child(3) { --fg-a: #f59e0b; --fg-b: #ef4444; --fg-soft: rgba(245, 158, 11, 0.12); --fg-line: rgba(245, 158, 11, 0.24); }
.figv-content-section .figv-card:nth-child(4) { --fg-a: #06b6d4; --fg-b: #6366f1; --fg-soft: rgba(6, 182, 212, 0.11); --fg-line: rgba(6, 182, 212, 0.23); }
.figv-content-section .figv-card:nth-child(5) { --fg-a: #22c55e; --fg-b: #14b8a6; --fg-soft: rgba(34, 197, 94, 0.1); --fg-line: rgba(34, 197, 94, 0.22); }
.figv-content-section .figv-card:nth-child(6) { --fg-a: #a855f7; --fg-b: #f43f5e; --fg-soft: rgba(168, 85, 247, 0.11); --fg-line: rgba(168, 85, 247, 0.22); }
.figv-content-section .figv-card:nth-child(7) { --fg-a: #0ea5e9; --fg-b: #9333ea; --fg-soft: rgba(14, 165, 233, 0.11); --fg-line: rgba(14, 165, 233, 0.22); }
.figv-content-section .figv-card:nth-child(8) { --fg-a: #fb7185; --fg-b: #f97316; --fg-soft: rgba(251, 113, 133, 0.11); --fg-line: rgba(251, 113, 133, 0.22); }

.figv-content-section .figv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), var(--fg-soft), transparent 38%);
  opacity: 0.68;
  transition: opacity 260ms ease;
}

.figv-content-section .figv-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--fg-a), var(--fg-b));
  opacity: 0.72;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 260ms ease, opacity 260ms ease;
}

.figv-content-section .figv-card.is-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}

.figv-content-section .figv-card:hover {
  border-color: color-mix(in srgb, var(--fg-a) 52%, transparent);
  box-shadow: 0 24px 70px rgba(31, 41, 55, 0.15);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.figv-content-section .figv-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.figv-content-section .figv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--fg-a);
  background: linear-gradient(145deg, #fff, var(--fg-soft));
  border: 1px solid var(--fg-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 12px 28px rgba(31, 41, 55, 0.08);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

.figv-content-section .figv-icon i {
  font-size: 1.18rem;
  line-height: 1;
}

.figv-content-section .figv-card:hover .figv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--fg-a), var(--fg-b));
  transform: translateY(-3px) rotate(-4deg) scale(1.04);
}

.figv-content-section h3 {
  position: relative;
  display: inline;
  margin: 0;
  color: #151827;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 780;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--fg-a), var(--fg-b));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: background-size 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.figv-content-section .figv-card:hover h3 {
  background-size: 100% 2px;
}

.figv-content-section .figv-card p {
  margin: 13px 0 0;
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.figv-content-section .figv-cta {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--fg-a);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.3;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease, color 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.figv-content-section .figv-card:hover .figv-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--fg-b);
}

.figv-content-section .figv-grid-tilt .figv-card {
  transform-style: preserve-3d;
}

.figv-content-section .figv-grid-tilt .figv-card .figv-icon,
.figv-content-section .figv-grid-tilt .figv-card h3,
.figv-content-section .figv-grid-tilt .figv-card p {
  transform: translateZ(14px);
}

.figv-content-section .figv-process-card {
  min-height: 285px;
  padding-top: 24px;
}

.figv-content-section .figv-step-text {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--fg-a);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.figv-content-section .figv-step-bg {
  position: absolute;
  top: 10px;
  right: 18px;
  max-width: 46%;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--fg-a) 24%, transparent);
  font-size: 4.3rem;
  line-height: 1;
  font-weight: 900;
  opacity: 0.5;
  pointer-events: none;
  transition: transform 260ms ease, opacity 260ms ease;
}

.figv-content-section .figv-process-card:hover .figv-step-bg {
  opacity: 0.82;
  transform: translateY(-4px) scale(1.04);
}

@media (min-width: 1200px) {
  .figv-content-section .figv-section {
    padding: 94px 24px;
  }

  .figv-content-section .figv-container {
    max-width: 1240px;
  }

  .figv-content-section .figv-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 22px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .figv-content-section .figv-section {
    padding: 78px 22px;
  }

  .figv-content-section .figv-container {
    max-width: 1040px;
  }

  .figv-content-section .figv-heading-wrap {
    margin-bottom: 30px;
  }

  .figv-content-section .figv-heading-wrap p {
    font-size: 0.98rem;
  }

  .figv-content-section .figv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px;
  }

  .figv-content-section .figv-card {
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .figv-content-section .figv-section {
    padding: 66px 18px;
  }

  .figv-content-section .figv-heading-wrap {
    margin-bottom: 26px;
  }

  .figv-content-section .figv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px;
  }

  .figv-content-section .figv-card {
    min-height: 238px;
    padding: 22px;
  }

  .figv-content-section h3 {
    font-size: 1.02rem;
  }

  .figv-content-section .figv-card p {
    font-size: 0.92rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .figv-content-section .figv-section {
    padding: 54px 16px;
  }

  .figv-content-section .figv-heading-wrap {
    margin-bottom: 22px;
  }

  .figv-content-section .figv-heading-wrap p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .figv-content-section .figv-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .figv-content-section .figv-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    padding: 21px;
    border-radius: 16px;
  }

  .figv-content-section .figv-cta {
    white-space: normal;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .figv-content-section .figv-section {
    padding: 46px 14px;
  }

  .figv-content-section .figv-heading-wrap {
    margin-bottom: 20px;
  }

  .figv-content-section .figv-heading-wrap p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .figv-content-section .figv-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .figv-content-section .figv-card {
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    padding: 19px;
    border-radius: 15px;
  }

  .figv-content-section .figv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 17px;
  }

  .figv-content-section h3 {
    font-size: 0.98rem;
  }

  .figv-content-section .figv-card p {
    font-size: 0.9rem;
  }

  .figv-content-section .figv-step-bg {
    font-size: 3.5rem;
    right: 14px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .figv-content-section .figv-section {
    padding: 40px 12px;
  }

  .figv-content-section .figv-heading-wrap {
    margin-bottom: 18px;
  }

  .figv-content-section .figv-heading-wrap p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .figv-content-section .figv-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .figv-content-section .figv-card {
    min-width: 0;
    max-width: 100%;
    min-height: auto;
    padding: 17px;
    border-radius: 14px;
  }

  .figv-content-section .figv-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 15px;
  }

  .figv-content-section .figv-icon i {
    font-size: 1rem;
  }

  .figv-content-section h3 {
    font-size: 0.94rem;
  }

  .figv-content-section .figv-card p {
    font-size: 0.86rem;
    line-height: 1.56;
  }

  .figv-content-section .figv-cta {
    font-size: 0.82rem;
  }

  .figv-content-section .figv-step-bg {
    font-size: 3rem;
    right: 12px;
  }

  .figv-content-section .figv-step-text {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .figv-content-section .figv-card,
  .figv-content-section .figv-card::before,
  .figv-content-section .figv-card::after,
  .figv-content-section .figv-icon,
  .figv-content-section .figv-cta,
  .figv-content-section .figv-step-bg,
  .figv-content-section h3 {
    transition: none !important;
    animation: none !important;
  }

  .figv-content-section .figv-card,
  .figv-content-section .figv-card.is-visible,
  .figv-content-section .figv-card:hover {
    transform: none !important;
    opacity: 1 !important;
  }
}