@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 {
  --fpv-ink: #172033;
  --fpv-muted: #647084;
  --fpv-line: rgba(31, 45, 74, 0.12);
  --fpv-blue: #1877f2;
  --fpv-cyan: #12b7d8;
  --fpv-gold: #e6a84f;
  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(--fpv-ink);
}

.fpv-premium-content .fpv-section {
  width: 100%;
  max-width: 100%;
  padding: 96px 24px;
  overflow: hidden;
}

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

.fpv-premium-content .fpv-section-warm {
  background:
    radial-gradient(circle at 10% 10%, rgba(24, 119, 242, 0.08), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(230, 168, 79, 0.16), transparent 30%),
    linear-gradient(180deg, #fff8ef 0%, #f7fbff 100%);
}

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

.fpv-premium-content .fpv-heading-wrap {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.fpv-premium-content h2 span {
  background: linear-gradient(135deg, var(--fpv-blue), var(--fpv-cyan) 58%, var(--fpv-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.fpv-premium-content .fpv-card {
  --fg-mx: 50%;
  --fg-my: 0%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --fpv-card-a: #1877f2;
  --fpv-card-b: #12b7d8;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 268px;
  padding: 28px;
  border: 1px solid var(--fpv-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--fpv-card-a) 18%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
  box-shadow: 0 16px 45px rgba(31, 45, 74, 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;
}

.fpv-premium-content .fpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.86;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--fpv-card-a) 10%, transparent), transparent 42%),
    linear-gradient(315deg, color-mix(in srgb, var(--fpv-card-b) 12%, transparent), transparent 48%);
  transition: opacity 260ms ease;
}

.fpv-premium-content .fpv-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fpv-card-a), var(--fpv-card-b));
  transform: scaleX(0.24);
  transform-origin: left;
  opacity: 0.55;
  transition: transform 260ms ease, opacity 260ms ease;
}

.fpv-premium-content .fpv-card.is-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(--fpv-card-a) 42%, var(--fpv-line));
  box-shadow: 0 24px 64px rgba(31, 45, 74, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

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

.fpv-premium-content .fpv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--fpv-card-a);
  background: color-mix(in srgb, var(--fpv-card-a) 12%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--fpv-card-a) 16%, transparent);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

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

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

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

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

.fpv-premium-content .fpv-card p {
  margin: 14px 0 0;
  color: var(--fpv-muted);
  font-size: 0.94rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-cta {
  display: inline-flex;
  max-width: 100%;
  margin-top: 20px;
  color: var(--fpv-card-a);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.4;
  opacity: 0.34;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease, color 260ms 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(--fpv-card-a) 78%, #111827);
}

.fpv-premium-content .fpv-process {
  min-height: 286px;
}

.fpv-premium-content .fpv-process::before {
  content: var(--fpv-step);
  position: absolute;
  right: 18px;
  top: 4px;
  z-index: -1;
  color: color-mix(in srgb, var(--fpv-card-a) 12%, transparent);
  font-size: 5.8rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 260ms ease, color 260ms ease;
}

.fpv-premium-content .fpv-process:hover::before {
  transform: translateY(-5px) scale(1.04);
  color: color-mix(in srgb, var(--fpv-card-a) 18%, transparent);
}

.fpv-premium-content .fpv-step-text {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--fpv-card-a);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-card:nth-child(8n + 1) { --fpv-card-a: #1877f2; --fpv-card-b: #14b8d6; }
.fpv-premium-content .fpv-card:nth-child(8n + 2) { --fpv-card-a: #6d5dfc; --fpv-card-b: #24c6dc; }
.fpv-premium-content .fpv-card:nth-child(8n + 3) { --fpv-card-a: #0f9f8f; --fpv-card-b: #7ccf5b; }
.fpv-premium-content .fpv-card:nth-child(8n + 4) { --fpv-card-a: #e28b2d; --fpv-card-b: #f3c451; }
.fpv-premium-content .fpv-card:nth-child(8n + 5) { --fpv-card-a: #d64f86; --fpv-card-b: #f08a5d; }
.fpv-premium-content .fpv-card:nth-child(8n + 6) { --fpv-card-a: #2b86c5; --fpv-card-b: #42e695; }
.fpv-premium-content .fpv-card:nth-child(8n + 7) { --fpv-card-a: #5f72bd; --fpv-card-b: #9bdbff; }
.fpv-premium-content .fpv-card:nth-child(8n + 8) { --fpv-card-a: #c86dd7; --fpv-card-b: #3023ae; }

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

  .fpv-premium-content .fpv-card-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: 88px 24px;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .fpv-premium-content .fpv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .fpv-premium-content .fpv-process::before {
    font-size: 4.7rem;
  }
}

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

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

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

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

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

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

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

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

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

  .fpv-premium-content .fpv-process::before {
    right: 12px;
    font-size: 4rem;
  }
}

@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 .fpv-process::before,
  .fpv-premium-content h3 {
    transition: none !important;
  }

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