@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: #162033;
  --fpv-muted: #647086;
  --fpv-line: rgba(37, 65, 112, 0.12);
  --fpv-soft: #f8efe7;
  --fpv-blue: #1877f2;
  --fpv-cyan: #22b8cf;
  --fpv-purple: #7c3aed;
  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", 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;
  padding: 92px 24px;
  overflow: hidden;
}

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

.fpv-premium-content .fpv-section-warm {
  background:
    radial-gradient(circle at 12% 10%, rgba(24, 119, 242, 0.12), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(34, 184, 207, 0.12), transparent 30%),
    linear-gradient(180deg, #fff7f0 0%, #f8fbff 100%);
}

.fpv-premium-content .fpv-container {
  max-width: 1240px;
  margin: 0 auto;
}

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

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

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

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

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

.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: #22b8cf;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--fpv-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--fpv-accent) 18%, transparent), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
  box-shadow: 0 18px 46px rgba(21, 36, 64, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.fpv-premium-content .fpv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fpv-accent), var(--fpv-accent-2));
  opacity: 0.72;
  border-radius: 0 0 999px 999px;
}

.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) 42%, rgba(255, 255, 255, 0.2));
  box-shadow: 0 24px 62px rgba(21, 36, 64, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-6px);
}

.fpv-premium-content .fpv-card > * {
  position: relative;
  z-index: 1;
}

.fpv-premium-content .fpv-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin: 0 0 20px;
  border-radius: 16px;
  color: var(--fpv-accent);
  background: color-mix(in srgb, var(--fpv-accent) 12%, #ffffff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--fpv-accent) 18%, transparent);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s 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(-3px) scale(1.04) rotate(-2deg);
}

.fpv-premium-content h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 11px;
  color: var(--fpv-ink);
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 780;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-premium-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fpv-accent), var(--fpv-accent-2));
  transition: width 0.28s ease;
}

.fpv-premium-content .fpv-card:hover h3::after {
  width: 78px;
}

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

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

.fpv-premium-content .fpv-card:hover .fpv-card-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--fpv-accent-2);
}

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

.fpv-premium-content .fpv-step-number {
  position: absolute;
  right: 18px;
  top: 12px;
  z-index: 0;
  color: color-mix(in srgb, var(--fpv-accent) 16%, transparent);
  font-size: 4.7rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 0.28s ease, color 0.28s 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);
}

.fpv-premium-content .fpv-card:nth-child(8n + 1) { --fpv-accent: #1877f2; --fpv-accent-2: #22b8cf; }
.fpv-premium-content .fpv-card:nth-child(8n + 2) { --fpv-accent: #0ea5e9; --fpv-accent-2: #14b8a6; }
.fpv-premium-content .fpv-card:nth-child(8n + 3) { --fpv-accent: #6366f1; --fpv-accent-2: #38bdf8; }
.fpv-premium-content .fpv-card:nth-child(8n + 4) { --fpv-accent: #2563eb; --fpv-accent-2: #a855f7; }
.fpv-premium-content .fpv-card:nth-child(8n + 5) { --fpv-accent: #0891b2; --fpv-accent-2: #1877f2; }
.fpv-premium-content .fpv-card:nth-child(8n + 6) { --fpv-accent: #7c3aed; --fpv-accent-2: #06b6d4; }
.fpv-premium-content .fpv-card:nth-child(8n + 7) { --fpv-accent: #0284c7; --fpv-accent-2: #10b981; }
.fpv-premium-content .fpv-card:nth-child(8n + 8) { --fpv-accent: #4f46e5; --fpv-accent-2: #0ea5e9; }

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

  .fpv-premium-content .fpv-container {
    max-width: 1240px;
  }

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

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

  .fpv-premium-content .fpv-container {
    max-width: 980px;
  }

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

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

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

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

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

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

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

  .fpv-premium-content .fpv-card {
    padding: 23px;
    min-height: 245px;
  }

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

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

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

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

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

  .fpv-premium-content .fpv-card-cta {
    width: 100%;
  }
}

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

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

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

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

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

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

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

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

  .fpv-premium-content .fpv-step-number {
    font-size: 3.8rem;
  }
}

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

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

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

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

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

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

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

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

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

  .fpv-premium-content .fpv-step-number {
    right: 14px;
    top: 10px;
    font-size: 3.2rem;
  }
}

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