@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-editorial-wrap,
.fpv-editorial-wrap * {
  box-sizing: border-box;
}

.fpv-editorial-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
}

.fpv-editorial-wrap .fpv-section {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.fpv-editorial-wrap .fpv-section-white {
  background: #fff;
}

.fpv-editorial-wrap .fpv-section-warm {
  background:
    radial-gradient(circle at top left, rgba(61, 116, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #fff8f2 0%, #f7fbff 52%, #fffdf9 100%);
}

.fpv-editorial-wrap .fpv-container {
  width: min(1320px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
  padding: 86px 0;
}

.fpv-editorial-wrap .fpv-section-head {
  width: min(760px, 100%);
  max-width: 100%;
  margin: 0 auto 34px;
  text-align: center;
}

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

.fpv-editorial-wrap .fpv-section-head h2 span {
  background: linear-gradient(135deg, #2457ff 0%, #0aa6c2 48%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fpv-editorial-wrap .fpv-section-head p {
  margin: 14px auto 0;
  color: #5c667a;
  font-size: 1.02rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.fpv-editorial-wrap .fpv-card {
  --fpv-a: #2457ff;
  --fpv-b: #0aa6c2;
  --fpv-soft: rgba(36, 87, 255, 0.1);
  --fg-mx: 50%;
  --fg-my: 20%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 250px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(24, 34, 52, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, var(--fpv-soft), rgba(255, 255, 255, 0.3));
  box-shadow: 0 18px 45px rgba(23, 32, 51, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.fpv-editorial-wrap .fpv-card:nth-child(2) { --fpv-a: #0aa6c2; --fpv-b: #29b47a; --fpv-soft: rgba(10, 166, 194, 0.11); }
.fpv-editorial-wrap .fpv-card:nth-child(3) { --fpv-a: #ff8a3d; --fpv-b: #e94c6f; --fpv-soft: rgba(255, 138, 61, 0.13); }
.fpv-editorial-wrap .fpv-card:nth-child(4) { --fpv-a: #6c5ce7; --fpv-b: #2457ff; --fpv-soft: rgba(108, 92, 231, 0.12); }
.fpv-editorial-wrap .fpv-card:nth-child(5) { --fpv-a: #29b47a; --fpv-b: #0aa6c2; --fpv-soft: rgba(41, 180, 122, 0.12); }
.fpv-editorial-wrap .fpv-card:nth-child(6) { --fpv-a: #e94c6f; --fpv-b: #ff8a3d; --fpv-soft: rgba(233, 76, 111, 0.11); }
.fpv-editorial-wrap .fpv-card:nth-child(7) { --fpv-a: #0f766e; --fpv-b: #2457ff; --fpv-soft: rgba(15, 118, 110, 0.11); }
.fpv-editorial-wrap .fpv-card:nth-child(8) { --fpv-a: #7c3aed; --fpv-b: #0aa6c2; --fpv-soft: rgba(124, 58, 237, 0.1); }

.fpv-editorial-wrap .fpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--fpv-a) 22%, transparent), transparent 32%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.fpv-editorial-wrap .fpv-card:hover {
  border-color: color-mix(in srgb, var(--fpv-a) 34%, rgba(24, 34, 52, 0.12));
  box-shadow: 0 26px 65px rgba(23, 32, 51, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-6px);
}

.fpv-editorial-wrap .fpv-card:hover::before {
  opacity: 1;
}

.fpv-editorial-wrap .fpv-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--fpv-a);
  background: linear-gradient(135deg, color-mix(in srgb, var(--fpv-a) 12%, #fff), #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--fpv-a) 16%, transparent);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

.fpv-editorial-wrap .fpv-icon i {
  font-size: 1.18rem;
  line-height: 1;
}

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

.fpv-editorial-wrap .fpv-card h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 12px;
  color: #182235;
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 760;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-editorial-wrap .fpv-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--fpv-a), var(--fpv-b));
  transition: width 260ms ease;
}

.fpv-editorial-wrap .fpv-card:hover h3::after {
  width: 74px;
}

.fpv-editorial-wrap .fpv-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5d6678;
  font-size: 0.95rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-editorial-wrap .fpv-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--fpv-a);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.4;
  opacity: 0.35;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fpv-editorial-wrap .fpv-card:hover .fpv-cta {
  opacity: 1;
  transform: translateY(0);
}

.fpv-editorial-wrap .fpv-process-card {
  isolation: isolate;
}

.fpv-editorial-wrap .fpv-process-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  bottom: -12px;
  z-index: -1;
  color: color-mix(in srgb, var(--fpv-a) 13%, transparent);
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 260ms ease, opacity 260ms ease;
}

.fpv-editorial-wrap .fpv-process-card:hover::after {
  transform: translateY(-8px) scale(1.04);
  opacity: 0.9;
}

.fpv-editorial-wrap .fpv-step-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--fpv-a);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .fpv-editorial-wrap .fpv-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .fpv-editorial-wrap .fpv-container {
    width: min(1320px, calc(100% - 56px));
    padding: 90px 0;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .fpv-editorial-wrap .fpv-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .fpv-editorial-wrap .fpv-container {
    width: min(1080px, calc(100% - 44px));
    padding: 76px 0;
  }

  .fpv-editorial-wrap .fpv-section-head p {
    font-size: 0.98rem;
  }

  .fpv-editorial-wrap .fpv-card {
    padding: 23px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fpv-editorial-wrap .fpv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .fpv-editorial-wrap .fpv-container {
    width: min(900px, calc(100% - 36px));
    padding: 64px 0;
  }

  .fpv-editorial-wrap .fpv-section-head {
    margin-bottom: 28px;
  }

  .fpv-editorial-wrap .fpv-card {
    padding: 22px;
  }

  .fpv-editorial-wrap .fpv-card h3 {
    font-size: 1.02rem;
  }

  .fpv-editorial-wrap .fpv-card p {
    font-size: 0.93rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .fpv-editorial-wrap .fpv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .fpv-editorial-wrap .fpv-container {
    width: calc(100% - 28px);
    padding: 52px 0;
  }

  .fpv-editorial-wrap .fpv-section-head {
    margin-bottom: 24px;
  }

  .fpv-editorial-wrap .fpv-section-head p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .fpv-editorial-wrap .fpv-card {
    min-height: auto;
    padding: 21px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .fpv-editorial-wrap .fpv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .fpv-editorial-wrap .fpv-container {
    width: calc(100% - 24px);
    padding: 46px 0;
  }

  .fpv-editorial-wrap .fpv-section-head p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

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

  .fpv-editorial-wrap .fpv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .fpv-editorial-wrap .fpv-card h3 {
    margin-top: 18px;
    font-size: 1rem;
  }

  .fpv-editorial-wrap .fpv-card p,
  .fpv-editorial-wrap .fpv-cta {
    font-size: 0.9rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .fpv-editorial-wrap .fpv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .fpv-editorial-wrap .fpv-container {
    width: calc(100% - 18px);
    padding: 38px 0;
  }

  .fpv-editorial-wrap .fpv-section-head {
    margin-bottom: 20px;
  }

  .fpv-editorial-wrap .fpv-section-head p {
    font-size: 0.86rem;
    line-height: 1.56;
  }

  .fpv-editorial-wrap .fpv-card {
    min-height: auto;
    padding: 16px;
    border-radius: 15px;
  }

  .fpv-editorial-wrap .fpv-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .fpv-editorial-wrap .fpv-icon i {
    font-size: 1rem;
  }

  .fpv-editorial-wrap .fpv-card h3 {
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .fpv-editorial-wrap .fpv-card p,
  .fpv-editorial-wrap .fpv-cta,
  .fpv-editorial-wrap .fpv-step-text {
    font-size: 0.86rem;
  }

  .fpv-editorial-wrap .fpv-process-card::after {
    font-size: 4.4rem;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .fpv-editorial-wrap .fpv-card,
  .fpv-editorial-wrap .fpv-card::before,
  .fpv-editorial-wrap .fpv-icon,
  .fpv-editorial-wrap .fpv-card h3::after,
  .fpv-editorial-wrap .fpv-cta,
  .fpv-editorial-wrap .fpv-process-card::after {
    transition: none;
  }

  .fpv-editorial-wrap .fpv-card,
  .fpv-editorial-wrap .fpv-card:hover {
    transform: none;
  }
}