@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: #607086;
  --fpv-line: rgba(45, 74, 116, .13);
  --fpv-blue: #1877f2;
  --fpv-cyan: #18b7ff;
  --fpv-warm: #fff7ed;
  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;
}

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

.fpv-premium-content .fpv-section {
  position: relative;
  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, .09), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(24, 183, 255, .10), transparent 28%),
    linear-gradient(180deg, #fff9f0 0%, #fff 100%);
}

.fpv-premium-content .fpv-container {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fpv-premium-content .fpv-section-head {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

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

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

.fpv-premium-content .fpv-section-head p {
  margin: 14px auto 0;
  color: var(--fpv-muted);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-card-grid {
  display: grid;
  margin-top: 38px;
}

.fpv-premium-content .fpv-card {
  --fpv-a: #1877f2;
  --fpv-b: #18b7ff;
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 238px;
  padding: 26px;
  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-a) 18%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.86));
  box-shadow: 0 16px 45px rgba(31, 55, 92, .08);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition: transform .45s ease, opacity .55s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  will-change: transform;
}

.fpv-premium-content .fpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--fpv-a) 12%, transparent), transparent 55%);
  opacity: .72;
  pointer-events: none;
}

.fpv-premium-content .fpv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--fpv-a), var(--fpv-b));
  transform: scaleX(.22);
  transform-origin: left;
  opacity: .72;
  transition: transform .35s ease, opacity .35s 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(--fpv-a) 42%, transparent);
  box-shadow: 0 24px 70px rgba(31, 55, 92, .15);
  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 {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  border-radius: 16px;
  color: var(--fpv-a);
  background: color-mix(in srgb, var(--fpv-a) 10%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--fpv-a) 18%, transparent);
  transition: transform .35s ease, color .35s ease, background .35s ease;
}

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

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

.fpv-premium-content .fpv-card h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 10px;
  color: #172033;
  font-size: 1.05rem;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-card h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fpv-a), var(--fpv-b));
  transform: scaleX(.55);
  transform-origin: left;
  transition: transform .35s ease;
}

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

.fpv-premium-content .fpv-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--fpv-muted);
  font-size: .95rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content .fpv-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-top: 16px;
  color: var(--fpv-a);
  font-size: .88rem;
  font-weight: 800;
  opacity: .18;
  transform: translateY(8px);
  transition: opacity .32s ease, transform .32s ease, color .32s 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-a) 82%, #111);
}

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

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

.fpv-premium-content .fpv-process-card {
  padding-top: 34px;
}

.fpv-premium-content .fpv-step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 0;
  color: color-mix(in srgb, var(--fpv-a) 15%, transparent);
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform .35s ease, color .35s ease;
}

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

.fpv-premium-content .fpv-card:nth-child(8n+1) { --fpv-a: #1877f2; --fpv-b: #18b7ff; }
.fpv-premium-content .fpv-card:nth-child(8n+2) { --fpv-a: #2f80ed; --fpv-b: #56ccf2; }
.fpv-premium-content .fpv-card:nth-child(8n+3) { --fpv-a: #0f8b8d; --fpv-b: #34d399; }
.fpv-premium-content .fpv-card:nth-child(8n+4) { --fpv-a: #7c3aed; --fpv-b: #22d3ee; }
.fpv-premium-content .fpv-card:nth-child(8n+5) { --fpv-a: #e85d75; --fpv-b: #f59e0b; }
.fpv-premium-content .fpv-card:nth-child(8n+6) { --fpv-a: #2563eb; --fpv-b: #a3e635; }
.fpv-premium-content .fpv-card:nth-child(8n+7) { --fpv-a: #db2777; --fpv-b: #38bdf8; }
.fpv-premium-content .fpv-card:nth-child(8n+8) { --fpv-a: #475569; --fpv-b: #1877f2; }

@media (min-width: 1200px) {
  .fpv-premium-content .fpv-section { padding: 92px 34px; }
  .fpv-premium-content .fpv-container { max-width: 1240px; }
  .fpv-premium-content .fpv-card-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .fpv-premium-content .fpv-section-head p { font-size: 1.04rem; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .fpv-premium-content .fpv-section { padding: 82px 28px; }
  .fpv-premium-content .fpv-container { max-width: 1040px; }
  .fpv-premium-content .fpv-card-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .fpv-premium-content .fpv-card { padding: 24px; }
  .fpv-premium-content .fpv-section-head p { font-size: 1rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fpv-premium-content .fpv-section { padding: 68px 22px; }
  .fpv-premium-content .fpv-card-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
  .fpv-premium-content .fpv-card { padding: 22px; min-height: 220px; }
  .fpv-premium-content .fpv-card h3 { font-size: 1rem; }
  .fpv-premium-content .fpv-card p { font-size: .92rem; }
}

@media (min-width: 430px) and (max-width: 767px) {
  .fpv-premium-content .fpv-section { padding: 56px 16px; }
  .fpv-premium-content .fpv-card-grid { grid-template-columns: 1fr !important; gap: 16px; margin-top: 28px; }
  .fpv-premium-content .fpv-section-head p { font-size: .94rem; }
  .fpv-premium-content .fpv-card { padding: 20px; min-height: 0; }
  .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-card-grid { grid-template-columns: 1fr !important; gap: 14px; margin-top: 24px; }
  .fpv-premium-content .fpv-section-head p { font-size: .9rem; line-height: 1.6; }
  .fpv-premium-content .fpv-card { padding: 18px; border-radius: 18px; min-height: 0; }
  .fpv-premium-content .fpv-icon { width: 46px; height: 46px; border-radius: 14px; }
  .fpv-premium-content .fpv-card h3 { font-size: .98rem; }
  .fpv-premium-content .fpv-card p { font-size: .9rem; }
  .fpv-premium-content .fpv-step-num { font-size: 3.4rem; }
}

@media (min-width: 320px) and (max-width: 374px) {
  .fpv-premium-content .fpv-section { padding: 42px 10px; }
  .fpv-premium-content .fpv-card-grid { grid-template-columns: 1fr !important; gap: 12px; margin-top: 22px; }
  .fpv-premium-content .fpv-section-head p { font-size: .86rem; line-height: 1.58; }
  .fpv-premium-content .fpv-card { padding: 16px; border-radius: 16px; min-height: 0; }
  .fpv-premium-content .fpv-icon { width: 42px; height: 42px; border-radius: 13px; }
  .fpv-premium-content .fpv-icon i { font-size: 1rem; }
  .fpv-premium-content .fpv-card h3 { font-size: .94rem; }
  .fpv-premium-content .fpv-card p,
  .fpv-premium-content .fpv-cta { font-size: .84rem; }
  .fpv-premium-content .fpv-step-num { right: 14px; font-size: 3rem; }
}

@media (max-width: 767px) {
  .fpv-premium-content .fpv-container,
  .fpv-premium-content .fpv-section,
  .fpv-premium-content .fpv-card-grid,
  .fpv-premium-content .fpv-card {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fpv-premium-content .fpv-card,
  .fpv-premium-content .fpv-icon,
  .fpv-premium-content .fpv-cta,
  .fpv-premium-content .fpv-step-num,
  .fpv-premium-content .fpv-card::after,
  .fpv-premium-content .fpv-card h3::after {
    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;
    opacity: 1 !important;
  }
}