@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");

.fcv-premium-content,
.fcv-premium-content * {
  box-sizing: border-box;
}

.fcv-premium-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #1d2433;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fcv-premium-content .fcv-section {
  width: 100%;
  max-width: 100%;
  padding: 86px 22px;
  overflow-x: hidden;
}

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

.fcv-premium-content .fcv-section-warm {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 184, 107, 0.18), transparent 32%),
    radial-gradient(circle at 85% 25%, rgba(74, 144, 226, 0.14), transparent 34%),
    linear-gradient(180deg, #fff8f1 0%, #fffdf9 100%);
}

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

.fcv-premium-content .fcv-section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.fcv-premium-content .fcv-kicker {
  margin: 0 0 10px;
  color: #d86f2f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.fcv-premium-content h2 span {
  background: linear-gradient(135deg, #f05f57 0%, #d86f2f 42%, #3977d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fcv-premium-content .fcv-section-head p:not(.fcv-kicker) {
  margin: 14px auto 0;
  color: #667085;
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.fcv-premium-content .fcv-card {
  --fcv-accent: #f05f57;
  --fcv-soft: rgba(240, 95, 87, 0.12);
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(29, 36, 51, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 246, 0.84)),
    radial-gradient(circle at 20% 0%, var(--fcv-soft), transparent 38%);
  box-shadow: 0 18px 42px rgba(33, 39, 54, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fcv-premium-content .fcv-card:nth-child(2) { --fcv-accent: #3977d6; --fcv-soft: rgba(57, 119, 214, 0.12); }
.fcv-premium-content .fcv-card:nth-child(3) { --fcv-accent: #18a999; --fcv-soft: rgba(24, 169, 153, 0.12); }
.fcv-premium-content .fcv-card:nth-child(4) { --fcv-accent: #b15cff; --fcv-soft: rgba(177, 92, 255, 0.12); }
.fcv-premium-content .fcv-card:nth-child(5) { --fcv-accent: #f59f00; --fcv-soft: rgba(245, 159, 0, 0.14); }
.fcv-premium-content .fcv-card:nth-child(6) { --fcv-accent: #0f8bd7; --fcv-soft: rgba(15, 139, 215, 0.12); }
.fcv-premium-content .fcv-card:nth-child(7) { --fcv-accent: #e64980; --fcv-soft: rgba(230, 73, 128, 0.12); }
.fcv-premium-content .fcv-card:nth-child(8) { --fcv-accent: #2f9e44; --fcv-soft: rgba(47, 158, 68, 0.12); }

.fcv-premium-content .fcv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 16%, var(--fcv-soft), transparent 42%);
  opacity: 0.8;
  pointer-events: none;
}

.fcv-premium-content .fcv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--fcv-accent);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 260ms ease;
}

.fcv-premium-content .fcv-card i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 16px;
  background: var(--fcv-soft);
  color: var(--fcv-accent);
  font-size: 1.25rem;
  transition: transform 260ms ease, color 260ms ease, background-color 260ms ease;
}

.fcv-premium-content .fcv-card h3,
.fcv-premium-content .fcv-faq-item h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #202939;
  font-size: 1.05rem;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fcv-premium-content .fcv-card p,
.fcv-premium-content .fcv-faq-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #667085;
  font-size: 0.94rem;
  line-height: 1.66;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fcv-premium-content .fcv-card-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--fcv-accent);
  font-size: 0.86rem;
  font-weight: 800;
  opacity: 0.72;
  transform: translateY(4px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fcv-premium-content .fcv-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--fcv-accent) 38%, transparent);
  box-shadow: 0 24px 64px rgba(33, 39, 54, 0.14);
}

.fcv-premium-content .fcv-benefit-grid .fcv-card:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-7px);
}

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

.fcv-premium-content .fcv-card:hover i {
  background: var(--fcv-accent);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
}

.fcv-premium-content .fcv-card:hover .fcv-card-cta {
  opacity: 1;
  transform: translateY(0);
}

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

.fcv-premium-content .fcv-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 8px;
  color: var(--fcv-accent);
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.09;
  transition: transform 260ms ease, opacity 260ms ease;
}

.fcv-premium-content .fcv-process-card:hover::before {
  opacity: 0.16;
  transform: translateY(-4px) scale(1.04);
}

.fcv-premium-content .fcv-faq-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fcv-premium-content .fcv-faq-item {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 24px;
  border: 1px solid rgba(29, 36, 51, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(33, 39, 54, 0.07);
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .fcv-premium-content .fcv-section {
    padding: 78px 24px;
  }

  .fcv-premium-content .fcv-container {
    max-width: 1060px;
  }

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

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

  .fcv-premium-content .fcv-section-head p:not(.fcv-kicker) {
    font-size: 0.98rem;
  }
}

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

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

  .fcv-premium-content .fcv-card {
    padding: 22px;
    min-height: 220px;
  }

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

  .fcv-premium-content .fcv-card p {
    font-size: 0.91rem;
  }
}

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

  .fcv-premium-content .fcv-section-head {
    margin-bottom: 28px;
  }

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

  .fcv-premium-content .fcv-card {
    padding: 21px;
    min-height: auto;
  }

  .fcv-premium-content .fcv-section-head p:not(.fcv-kicker) {
    font-size: 0.93rem;
  }
}

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

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

  .fcv-premium-content .fcv-card,
  .fcv-premium-content .fcv-faq-item {
    padding: 19px;
    border-radius: 18px;
  }

  .fcv-premium-content .fcv-card i {
    width: 46px;
    height: 46px;
    font-size: 1.08rem;
  }

  .fcv-premium-content .fcv-card h3,
  .fcv-premium-content .fcv-faq-item h3 {
    font-size: 0.98rem;
  }

  .fcv-premium-content .fcv-section-head p:not(.fcv-kicker),
  .fcv-premium-content .fcv-card p,
  .fcv-premium-content .fcv-faq-item p {
    font-size: 0.9rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .fcv-premium-content .fcv-section {
    padding: 40px 12px;
  }

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

  .fcv-premium-content .fcv-card,
  .fcv-premium-content .fcv-faq-item {
    padding: 17px;
    border-radius: 16px;
  }

  .fcv-premium-content .fcv-card i {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .fcv-premium-content .fcv-card h3,
  .fcv-premium-content .fcv-faq-item h3 {
    font-size: 0.94rem;
  }

  .fcv-premium-content .fcv-card p,
  .fcv-premium-content .fcv-faq-item p,
  .fcv-premium-content .fcv-section-head p:not(.fcv-kicker) {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .fcv-premium-content .fcv-process-card::before {
    font-size: 3.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fcv-premium-content .fcv-card,
  .fcv-premium-content .fcv-card i,
  .fcv-premium-content .fcv-card::after,
  .fcv-premium-content .fcv-card-cta,
  .fcv-premium-content .fcv-process-card::before {
    transition: none;
  }

  .fcv-premium-content .fcv-card:hover,
  .fcv-premium-content .fcv-benefit-grid .fcv-card:hover {
    transform: none;
  }
}