@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: #657085;
  --fpv-line: rgba(31, 58, 103, 0.12);
  --fpv-blue: #1877f2;
  --fpv-cyan: #18b6f2;
  --fpv-violet: #7a5cff;
  --fpv-warm: #fff8f1;
  --fpv-card: rgba(255, 255, 255, 0.86);
  --fpv-shadow: 0 18px 45px rgba(25, 45, 85, 0.11);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--fpv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.fpv-premium-content .fpv-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

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

.fpv-premium-content .fpv-section-warm {
  background:
    radial-gradient(circle at 15% 10%, rgba(24, 119, 242, 0.09), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(122, 92, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #fff3e8 100%);
}

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

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

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

.fpv-premium-content .fpv-heading-wrap h2 span {
  background: linear-gradient(115deg, var(--fpv-blue), var(--fpv-cyan) 52%, var(--fpv-violet));
  -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: 1.05rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.fpv-premium-content .fpv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --fpv-accent: #1877f2;
  --fpv-accent-2: #18b6f2;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  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-accent) 18%, transparent), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: var(--fpv-shadow);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    transform 280ms ease,
    opacity 520ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--fpv-accent) 12%, transparent), transparent 38%),
    linear-gradient(315deg, color-mix(in srgb, var(--fpv-accent-2) 14%, transparent), transparent 42%);
  opacity: 0.72;
  transition: opacity 280ms ease;
}

.fpv-premium-content .fpv-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fpv-accent), var(--fpv-accent-2));
  transform: scaleX(0.3);
  transform-origin: left;
  opacity: 0.58;
  transition: transform 280ms ease, opacity 280ms 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-accent) 46%, rgba(255, 255, 255, 0.5));
  box-shadow: 0 24px 60px rgba(24, 64, 130, 0.18);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

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

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

.fpv-premium-content .fpv-card:nth-child(1) { --fpv-accent: #1877f2; --fpv-accent-2: #18b6f2; }
.fpv-premium-content .fpv-card:nth-child(2) { --fpv-accent: #7a5cff; --fpv-accent-2: #2dd4bf; }
.fpv-premium-content .fpv-card:nth-child(3) { --fpv-accent: #0ea5e9; --fpv-accent-2: #6366f1; }
.fpv-premium-content .fpv-card:nth-child(4) { --fpv-accent: #2563eb; --fpv-accent-2: #f59e0b; }
.fpv-premium-content .fpv-card:nth-child(5) { --fpv-accent: #14b8a6; --fpv-accent-2: #1877f2; }
.fpv-premium-content .fpv-card:nth-child(6) { --fpv-accent: #8b5cf6; --fpv-accent-2: #06b6d4; }
.fpv-premium-content .fpv-card:nth-child(7) { --fpv-accent: #0284c7; --fpv-accent-2: #84cc16; }
.fpv-premium-content .fpv-card:nth-child(8) { --fpv-accent: #1d4ed8; --fpv-accent-2: #ec4899; }

.fpv-premium-content .fpv-icon {
  width: 56px;
  height: 56px;
  max-width: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--fpv-accent);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), color-mix(in srgb, var(--fpv-accent) 11%, #fff));
  border: 1px solid color-mix(in srgb, var(--fpv-accent) 18%, rgba(255, 255, 255, 0.65));
  box-shadow: 0 12px 26px color-mix(in srgb, var(--fpv-accent) 14%, transparent);
  transition: transform 280ms ease, color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

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

.fpv-premium-content .fpv-card:hover .fpv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--fpv-accent), var(--fpv-accent-2));
  transform: translateY(-4px) scale(1.04) rotate(-2deg);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--fpv-accent) 28%, transparent);
}

.fpv-premium-content .fpv-card h3 {
  position: relative;
  display: inline;
  margin: 0;
  color: var(--fpv-ink);
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 760;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--fpv-accent), var(--fpv-accent-2));
  background-position: 0 100%;
  background-size: 0 2px;
  background-repeat: no-repeat;
  transition: background-size 280ms ease, color 280ms 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.96rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-cta {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;
  color: var(--fpv-accent);
  font-size: 0.9rem;
  font-weight: 740;
  opacity: 0.28;
  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-accent) 82%, #111827);
}

.fpv-premium-content .fpv-grid-tilt .fpv-card:hover {
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-8px);
}

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

.fpv-premium-content .fpv-step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  max-width: calc(100% - 44px);
  color: color-mix(in srgb, var(--fpv-accent) 16%, transparent);
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 280ms ease, color 280ms ease;
}

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

@media (min-width: 1200px) {
  .fpv-premium-content .fpv-container {
    width: min(1320px, calc(100% - 72px));
    padding: 100px 0;
  }

  .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-container {
    width: min(1060px, calc(100% - 52px));
    padding: 84px 0;
  }

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

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

  .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-container {
    width: min(860px, calc(100% - 40px));
    padding: 70px 0;
  }

  .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: 238px;
  }

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

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

@media (min-width: 430px) and (max-width: 767px) {
  .fpv-premium-content .fpv-container {
    width: min(100% - 28px, 620px);
    padding: 56px 0;
  }

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

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

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

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

  .fpv-premium-content .fpv-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .fpv-premium-content .fpv-container {
    width: min(100% - 24px, 420px);
    padding: 48px 0;
  }

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

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

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

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

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

  .fpv-premium-content .fpv-step-number {
    font-size: 4rem;
    right: 18px;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .fpv-premium-content .fpv-container {
    width: min(100% - 18px, 360px);
    padding: 42px 0;
  }

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

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

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

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

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

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

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

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

  .fpv-premium-content .fpv-step-number {
    top: 16px;
    right: 16px;
    font-size: 3.45rem;
  }
}

@media (max-width: 319px) {
  .fpv-premium-content .fpv-container {
    width: calc(100% - 16px);
    padding: 38px 0;
  }

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

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

@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-step-number {
    transition: none !important;
    animation: none !important;
  }

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