@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");

.fbpv-content-block,
.fbpv-content-block * {
  box-sizing: border-box;
}

.fbpv-content-block {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #172033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: #fff;
}

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

.fbpv-content-block .fbpv-section {
  position: relative;
  padding: 92px 20px;
  overflow: hidden;
}

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

.fbpv-content-block .fbpv-section-warm {
  background:
    radial-gradient(circle at 12% 12%, rgba(56, 117, 255, 0.09), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(255, 129, 76, 0.12), transparent 32%),
    linear-gradient(135deg, #fff8f2 0%, #f7fbff 48%, #fff4ec 100%);
}

.fbpv-content-block .fbpv-container {
  margin: 0 auto;
  max-width: 1280px;
}

.fbpv-content-block .fbpv-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.fbpv-content-block .fbpv-section-head h2 {
  margin: 0;
  color: #152033;
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fbpv-content-block .fbpv-section-head h2 span {
  background: linear-gradient(135deg, #2563eb 0%, #16a3b8 48%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fbpv-content-block .fbpv-section-head p {
  margin: 14px auto 0;
  max-width: 680px;
  color: #5c6678;
  font-size: 1.03rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fbpv-content-block .fbpv-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fbpv-content-block .fbpv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --fbpv-accent: #2563eb;
  --fbpv-accent-2: #16a3b8;
  --fbpv-soft: rgba(37, 99, 235, 0.1);
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 265px;
  padding: 26px;
  border: 1px solid rgba(31, 45, 71, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, var(--fbpv-soft), rgba(255, 255, 255, 0));
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(22px);
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  isolation: isolate;
}

.fbpv-content-block .fbpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--fbpv-accent) 20%, transparent), transparent 32%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
  z-index: -1;
}

.fbpv-content-block .fbpv-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--fbpv-accent), var(--fbpv-accent-2));
  opacity: 0.62;
}

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

.fbpv-content-block .fbpv-card:hover {
  border-color: color-mix(in srgb, var(--fbpv-accent) 42%, rgba(31, 45, 71, 0.14));
  box-shadow: 0 24px 65px rgba(17, 24, 39, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.fbpv-content-block .fbpv-card:hover::before {
  opacity: 1;
}

.fbpv-content-block .fbpv-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--fbpv-soft), rgba(255, 255, 255, 0.9));
  color: var(--fbpv-accent);
  font-size: 1.3rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.fbpv-content-block .fbpv-card:hover .fbpv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--fbpv-accent), var(--fbpv-accent-2));
  transform: translateY(-3px) rotate(-3deg) scale(1.04);
}

.fbpv-content-block .fbpv-card h3 {
  position: relative;
  display: inline;
  margin: 0;
  color: #172033;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--fbpv-accent), var(--fbpv-accent-2));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 0.28s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.fbpv-content-block .fbpv-card p {
  margin: 14px 0 0;
  color: #5b6576;
  font-size: 0.95rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fbpv-content-block .fbpv-cta {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--fbpv-accent);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.3;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fbpv-content-block .fbpv-card:hover .fbpv-cta {
  opacity: 1;
  transform: translateY(0);
}

.fbpv-content-block .fbpv-card-how {
  padding-top: 30px;
}

.fbpv-content-block .fbpv-card-how::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 8px;
  color: color-mix(in srgb, var(--fbpv-accent) 13%, transparent);
  font-size: 5.1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 0.28s ease, color 0.28s ease;
  pointer-events: none;
  z-index: -1;
}

.fbpv-content-block .fbpv-card-how:hover::before {
  color: color-mix(in srgb, var(--fbpv-accent) 20%, transparent);
  transform: translateY(-4px) scale(1.04);
}

.fbpv-content-block .fbpv-stepline {
  margin-bottom: 14px;
  color: var(--fbpv-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fbpv-content-block .fbpv-card:nth-child(1) { --fbpv-accent: #2563eb; --fbpv-accent-2: #14b8a6; --fbpv-soft: rgba(37, 99, 235, 0.1); }
.fbpv-content-block .fbpv-card:nth-child(2) { --fbpv-accent: #7c3aed; --fbpv-accent-2: #2563eb; --fbpv-soft: rgba(124, 58, 237, 0.1); }
.fbpv-content-block .fbpv-card:nth-child(3) { --fbpv-accent: #0891b2; --fbpv-accent-2: #22c55e; --fbpv-soft: rgba(8, 145, 178, 0.1); }
.fbpv-content-block .fbpv-card:nth-child(4) { --fbpv-accent: #f97316; --fbpv-accent-2: #ef4444; --fbpv-soft: rgba(249, 115, 22, 0.11); }
.fbpv-content-block .fbpv-card:nth-child(5) { --fbpv-accent: #0f766e; --fbpv-accent-2: #2563eb; --fbpv-soft: rgba(15, 118, 110, 0.1); }
.fbpv-content-block .fbpv-card:nth-child(6) { --fbpv-accent: #db2777; --fbpv-accent-2: #f97316; --fbpv-soft: rgba(219, 39, 119, 0.1); }
.fbpv-content-block .fbpv-card:nth-child(7) { --fbpv-accent: #4f46e5; --fbpv-accent-2: #06b6d4; --fbpv-soft: rgba(79, 70, 229, 0.1); }
.fbpv-content-block .fbpv-card:nth-child(8) { --fbpv-accent: #16a34a; --fbpv-accent-2: #0ea5e9; --fbpv-soft: rgba(22, 163, 74, 0.1); }

@media (min-width: 1200px) {
  .fbpv-content-block .fbpv-section {
    padding: 96px 28px;
  }

  .fbpv-content-block .fbpv-container {
    max-width: 1280px;
  }

  .fbpv-content-block .fbpv-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .fbpv-content-block .fbpv-section {
    padding: 84px 24px;
  }

  .fbpv-content-block .fbpv-container {
    max-width: 1060px;
  }

  .fbpv-content-block .fbpv-section-head {
    margin-bottom: 36px;
  }

  .fbpv-content-block .fbpv-section-head p {
    font-size: 1rem;
  }

  .fbpv-content-block .fbpv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .fbpv-content-block .fbpv-card {
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fbpv-content-block .fbpv-section {
    padding: 72px 22px;
  }

  .fbpv-content-block .fbpv-section-head {
    margin-bottom: 32px;
  }

  .fbpv-content-block .fbpv-section-head p {
    font-size: 0.98rem;
  }

  .fbpv-content-block .fbpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .fbpv-content-block .fbpv-card {
    min-height: 245px;
    padding: 23px;
  }

  .fbpv-content-block .fbpv-card h3 {
    font-size: 1rem;
  }

  .fbpv-content-block .fbpv-card p {
    font-size: 0.93rem;
  }
}

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

  .fbpv-content-block .fbpv-section-head {
    margin-bottom: 26px;
  }

  .fbpv-content-block .fbpv-section-head p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .fbpv-content-block .fbpv-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .fbpv-content-block .fbpv-card {
    min-height: 0;
    padding: 22px;
    border-radius: 20px;
  }

  .fbpv-content-block .fbpv-cta {
    width: 100%;
  }
}

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

  .fbpv-content-block .fbpv-section-head {
    margin-bottom: 24px;
  }

  .fbpv-content-block .fbpv-section-head p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

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

  .fbpv-content-block .fbpv-card {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
  }

  .fbpv-content-block .fbpv-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 1.15rem;
  }

  .fbpv-content-block .fbpv-card h3 {
    font-size: 0.98rem;
  }

  .fbpv-content-block .fbpv-card p,
  .fbpv-content-block .fbpv-cta {
    font-size: 0.9rem;
  }

  .fbpv-content-block .fbpv-card-how::before {
    font-size: 4.2rem;
  }
}

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

  .fbpv-content-block .fbpv-section-head {
    margin-bottom: 22px;
  }

  .fbpv-content-block .fbpv-section-head p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

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

  .fbpv-content-block .fbpv-card {
    min-height: 0;
    padding: 18px;
    border-radius: 16px;
  }

  .fbpv-content-block .fbpv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .fbpv-content-block .fbpv-card h3 {
    font-size: 0.95rem;
  }

  .fbpv-content-block .fbpv-card p,
  .fbpv-content-block .fbpv-cta {
    font-size: 0.86rem;
  }

  .fbpv-content-block .fbpv-card-how::before {
    right: 12px;
    font-size: 3.7rem;
  }
}

@media (max-width: 319px) {
  .fbpv-content-block .fbpv-section {
    padding: 38px 10px;
  }

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

  .fbpv-content-block .fbpv-card {
    min-height: 0;
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fbpv-content-block .fbpv-card,
  .fbpv-content-block .fbpv-card::before,
  .fbpv-content-block .fbpv-card::after,
  .fbpv-content-block .fbpv-icon,
  .fbpv-content-block .fbpv-cta,
  .fbpv-content-block .fbpv-card h3,
  .fbpv-content-block .fbpv-card-how::before {
    transition: none !important;
    animation: none !important;
  }

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