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

.fpv-premium-content,
.fpv-premium-content * {
  box-sizing: border-box;
}

.fpv-premium-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #182033;
  background: #fff;
}

.fpv-premium-content .fpv-section,
.fpv-premium-content .fpv-container,
.fpv-premium-content .fpv-grid,
.fpv-premium-content .fpv-card {
  max-width: 100%;
}

.fpv-premium-content .fpv-section {
  position: relative;
  width: 100%;
  padding: 92px 18px;
  overflow: hidden;
}

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

.fpv-premium-content .fpv-section-warm {
  background:
    radial-gradient(circle at 12% 10%, rgba(82, 118, 255, 0.11), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 163, 98, 0.15), transparent 32%),
    linear-gradient(180deg, #fff8f1 0%, #f8fbff 100%);
}

.fpv-premium-content .fpv-container {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.fpv-premium-content .fpv-heading-wrap {
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

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

.fpv-premium-content h2 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #3157f6 0%, #7a5cff 48%, #f07b55 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.fpv-premium-content .fpv-heading-wrap p {
  margin: 14px auto 0;
  color: #667085;
  font-size: 1.02rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-grid {
  display: grid;
  width: 100%;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fpv-premium-content .fpv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --fg-a: #3157f6;
  --fg-b: #f07b55;
  --fg-soft: rgba(49, 87, 246, 0.1);

  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 248px;
  padding: 28px;
  border: 1px solid rgba(42, 54, 84, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.95), transparent 0 20%, transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.9)),
    linear-gradient(135deg, var(--fg-soft), rgba(255, 255, 255, 0));
  box-shadow: 0 14px 38px rgba(28, 38, 64, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(22px);
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  overflow: hidden;
  isolation: isolate;
}

.fpv-premium-content .fpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--fg-a), white 78%), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: -1;
}

.fpv-premium-content .fpv-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--fg-a), var(--fg-b));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

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

.fpv-premium-content .fpv-card:hover {
  border-color: color-mix(in srgb, var(--fg-a), transparent 45%);
  box-shadow: 0 22px 54px rgba(31, 42, 70, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.fpv-premium-content .fpv-card:hover::before {
  opacity: 0.7;
}

.fpv-premium-content .fpv-card:hover::after {
  transform: scaleX(1);
}

.fpv-premium-content .fpv-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--fg-a);
  background: linear-gradient(145deg, #fff, var(--fg-soft));
  border: 1px solid rgba(42, 54, 84, 0.08);
  box-shadow: 0 10px 24px rgba(28, 38, 64, 0.08);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.fpv-premium-content .fpv-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

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

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

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

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

.fpv-premium-content .fpv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 20px;
  color: var(--fg-a);
  font-size: 0.9rem;
  font-weight: 740;
  opacity: 0.42;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease, color 0.24s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-card:hover .fpv-cta {
  opacity: 1;
  transform: translateY(0);
  color: color-mix(in srgb, var(--fg-a), #172033 15%);
}

.fpv-premium-content .fpv-grid-why .fpv-card {
  transform-style: preserve-3d;
}

.fpv-premium-content .fpv-grid-why .fpv-icon,
.fpv-premium-content .fpv-grid-why h3,
.fpv-premium-content .fpv-grid-why p {
  transform: translateZ(18px);
}

.fpv-premium-content .fpv-step-card {
  min-height: 270px;
}

.fpv-premium-content .fpv-step-card::before {
  content: attr(data-step);
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 900;
  color: var(--fg-a);
  opacity: 0.055;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: -1;
}

.fpv-premium-content .fpv-step-card:hover::before {
  opacity: 0.12;
  transform: translateY(-4px) scale(1.04);
}

.fpv-premium-content .fpv-step-text {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--fg-a);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-card:nth-child(8n + 1) { --fg-a: #3157f6; --fg-b: #f07b55; --fg-soft: rgba(49, 87, 246, 0.1); }
.fpv-premium-content .fpv-card:nth-child(8n + 2) { --fg-a: #0f9f8f; --fg-b: #4f7cff; --fg-soft: rgba(15, 159, 143, 0.1); }
.fpv-premium-content .fpv-card:nth-child(8n + 3) { --fg-a: #a855f7; --fg-b: #ec4899; --fg-soft: rgba(168, 85, 247, 0.1); }
.fpv-premium-content .fpv-card:nth-child(8n + 4) { --fg-a: #e46b2c; --fg-b: #f5b84b; --fg-soft: rgba(228, 107, 44, 0.12); }
.fpv-premium-content .fpv-card:nth-child(8n + 5) { --fg-a: #2563eb; --fg-b: #14b8a6; --fg-soft: rgba(37, 99, 235, 0.1); }
.fpv-premium-content .fpv-card:nth-child(8n + 6) { --fg-a: #d946ef; --fg-b: #6366f1; --fg-soft: rgba(217, 70, 239, 0.1); }
.fpv-premium-content .fpv-card:nth-child(8n + 7) { --fg-a: #059669; --fg-b: #84cc16; --fg-soft: rgba(5, 150, 105, 0.1); }
.fpv-premium-content .fpv-card:nth-child(8n + 8) { --fg-a: #f43f5e; --fg-b: #fb923c; --fg-soft: rgba(244, 63, 94, 0.1); }

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

  .fpv-premium-content .fpv-container {
    width: min(1320px, 100%);
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .fpv-premium-content .fpv-section {
    padding: 82px 24px;
  }

  .fpv-premium-content .fpv-container {
    width: min(1080px, 100%);
  }

  .fpv-premium-content .fpv-heading-wrap {
    margin-bottom: 36px;
  }

  .fpv-premium-content .fpv-heading-wrap p {
    font-size: 0.98rem;
  }

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

  .fpv-premium-content .fpv-card {
    padding: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fpv-premium-content .fpv-section {
    padding: 70px 20px;
  }

  .fpv-premium-content .fpv-heading-wrap {
    margin-bottom: 32px;
  }

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

  .fpv-premium-content .fpv-card {
    padding: 24px;
    min-height: 232px;
  }

  .fpv-premium-content h3 {
    font-size: 1.02rem;
  }

  .fpv-premium-content .fpv-card p {
    font-size: 0.93rem;
  }
}

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

  .fpv-premium-content .fpv-heading-wrap {
    margin-bottom: 26px;
  }

  .fpv-premium-content .fpv-heading-wrap p {
    font-size: 0.94rem;
  }

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

  .fpv-premium-content .fpv-card {
    width: 100%;
    min-width: 0;
    padding: 22px;
    min-height: auto;
  }

  .fpv-premium-content .fpv-cta {
    white-space: normal;
  }
}

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

  .fpv-premium-content .fpv-heading-wrap {
    margin-bottom: 24px;
  }

  .fpv-premium-content .fpv-heading-wrap p {
    font-size: 0.91rem;
  }

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

  .fpv-premium-content .fpv-card {
    padding: 20px;
    border-radius: 18px;
    min-height: auto;
  }

  .fpv-premium-content .fpv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 18px;
  }

  .fpv-premium-content h3 {
    font-size: 0.98rem;
  }

  .fpv-premium-content .fpv-card p {
    font-size: 0.9rem;
  }
}

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

  .fpv-premium-content .fpv-heading-wrap {
    margin-bottom: 22px;
  }

  .fpv-premium-content .fpv-heading-wrap p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

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

  .fpv-premium-content .fpv-card {
    padding: 18px;
    border-radius: 16px;
    min-height: auto;
  }

  .fpv-premium-content .fpv-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    margin-bottom: 16px;
  }

  .fpv-premium-content .fpv-icon i {
    font-size: 1.05rem;
  }

  .fpv-premium-content h3 {
    font-size: 0.95rem;
  }

  .fpv-premium-content .fpv-card p {
    font-size: 0.87rem;
    line-height: 1.58;
  }

  .fpv-premium-content .fpv-step-card::before {
    font-size: 4.2rem;
    right: 12px;
  }
}

@media (max-width: 319px) {
  .fpv-premium-content .fpv-grid {
    grid-template-columns: 1fr !important;
  }
}

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

  .fpv-premium-content .fpv-card,
  .fpv-premium-content .fpv-card.fpv-visible,
  .fpv-premium-content .fpv-card:hover {
    transform: none !important;
  }
}