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

.igvv-editorial-block,
.igvv-editorial-block * {
  box-sizing: border-box;
}

.igvv-editorial-block {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #211a1f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
}

.igvv-editorial-block .igvv-section,
.igvv-editorial-block .igvv-container,
.igvv-editorial-block .igvv-card-grid {
  width: 100%;
  max-width: 100%;
}

.igvv-editorial-block .igvv-section {
  position: relative;
  padding: 84px 22px;
  overflow: hidden;
}

.igvv-editorial-block .igvv-section-white {
  background: #fff;
}

.igvv-editorial-block .igvv-section-warm {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 183, 77, 0.18), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(218, 64, 147, 0.14), transparent 32%),
    linear-gradient(180deg, #fff7ef 0%, #fff1f6 100%);
}

.igvv-editorial-block .igvv-container {
  max-width: 1240px;
  margin: 0 auto;
}

.igvv-editorial-block .igvv-heading-wrap {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.igvv-editorial-block .igvv-heading-wrap h2 {
  margin: 0;
  color: #20131c;
  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;
}

.igvv-editorial-block .igvv-heading-wrap h2 span {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 46%, #8134af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.igvv-editorial-block .igvv-heading-wrap p {
  margin: 14px auto 0;
  max-width: 680px;
  color: #66535f;
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.igvv-editorial-block .igvv-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.igvv-editorial-block .igvv-card {
  --fg-a: #f58529;
  --fg-b: #dd2a7b;
  --fg-c: #8134af;
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 252px;
  padding: 26px;
  border: 1px solid rgba(126, 78, 102, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.92), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 242, 0.9));
  box-shadow: 0 16px 38px rgba(61, 32, 47, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  overflow: hidden;
  transition: transform 280ms ease, opacity 520ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.igvv-editorial-block .igvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.62;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--fg-a) 14%, transparent), transparent 42%),
    linear-gradient(315deg, color-mix(in srgb, var(--fg-b) 12%, transparent), transparent 44%);
  pointer-events: none;
}

.igvv-editorial-block .igvv-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--fg-a), var(--fg-b), var(--fg-c));
  opacity: 0.7;
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 280ms ease, opacity 280ms ease;
}

.igvv-editorial-block .igvv-card.is-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}

.igvv-editorial-block .igvv-card:hover {
  border-color: color-mix(in srgb, var(--fg-b) 36%, rgba(126, 78, 102, 0.18));
  box-shadow: 0 24px 56px rgba(92, 38, 70, 0.15);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.igvv-editorial-block .igvv-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.igvv-editorial-block .igvv-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--fg-b);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), color-mix(in srgb, var(--fg-a) 16%, #fff));
  border: 1px solid color-mix(in srgb, var(--fg-b) 16%, transparent);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--fg-b) 16%, transparent);
  transition: transform 280ms ease, color 280ms ease, background 280ms ease, box-shadow 280ms ease;
}

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

.igvv-editorial-block .igvv-card:hover .igvv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--fg-a), var(--fg-b), var(--fg-c));
  transform: translateY(-4px) rotate(-4deg) scale(1.04);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--fg-b) 28%, transparent);
}

.igvv-editorial-block .igvv-card h3 {
  position: relative;
  display: inline;
  margin: 22px 0 0;
  color: #25171f;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  background-image: linear-gradient(90deg, var(--fg-a), var(--fg-b));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 260ms ease;
}

.igvv-editorial-block .igvv-card:hover h3 {
  background-size: 100% 2px;
}

.igvv-editorial-block .igvv-card p {
  margin: 14px 0 0;
  color: #65525d;
  font-size: 0.94rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.igvv-editorial-block .igvv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--fg-b);
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.4;
  opacity: 0.28;
  transform: translateY(8px);
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: opacity 260ms ease, transform 260ms ease, color 260ms ease;
}

.igvv-editorial-block .igvv-card:hover .igvv-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--fg-c);
}

.igvv-editorial-block .igvv-card:nth-child(1) { --fg-a: #f58529; --fg-b: #dd2a7b; --fg-c: #8134af; }
.igvv-editorial-block .igvv-card:nth-child(2) { --fg-a: #ffb347; --fg-b: #f0647b; --fg-c: #8b5cf6; }
.igvv-editorial-block .igvv-card:nth-child(3) { --fg-a: #fb7185; --fg-b: #c026d3; --fg-c: #6366f1; }
.igvv-editorial-block .igvv-card:nth-child(4) { --fg-a: #f97316; --fg-b: #ec4899; --fg-c: #7c3aed; }
.igvv-editorial-block .igvv-card:nth-child(5) { --fg-a: #14b8a6; --fg-b: #0ea5e9; --fg-c: #8b5cf6; }
.igvv-editorial-block .igvv-card:nth-child(6) { --fg-a: #f59e0b; --fg-b: #ef4444; --fg-c: #a855f7; }
.igvv-editorial-block .igvv-card:nth-child(7) { --fg-a: #22c55e; --fg-b: #06b6d4; --fg-c: #6366f1; }
.igvv-editorial-block .igvv-card:nth-child(8) { --fg-a: #eab308; --fg-b: #f43f5e; --fg-c: #9333ea; }

.igvv-editorial-block .igvv-tilt-card {
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 246, 0.84));
}

.igvv-editorial-block .igvv-process-card {
  min-height: 268px;
  padding-top: 54px;
}

.igvv-editorial-block .igvv-process-card::before {
  content: attr(data-step);
  position: absolute;
  top: 8px;
  right: 18px;
  z-index: -1;
  color: color-mix(in srgb, var(--fg-b) 13%, transparent);
  font-size: 5.6rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 280ms ease, color 280ms ease;
}

.igvv-editorial-block .igvv-process-card:hover::before {
  color: color-mix(in srgb, var(--fg-b) 22%, transparent);
  transform: translateY(-4px) scale(1.04);
}

.igvv-editorial-block .igvv-step-text {
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--fg-b);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: calc(100% - 52px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .igvv-editorial-block .igvv-section {
    padding: 92px 28px;
  }

  .igvv-editorial-block .igvv-container {
    max-width: 1240px;
  }

  .igvv-editorial-block .igvv-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .igvv-editorial-block .igvv-section {
    padding: 78px 24px;
  }

  .igvv-editorial-block .igvv-container {
    max-width: 1040px;
  }

  .igvv-editorial-block .igvv-heading-wrap p {
    font-size: 0.98rem;
  }

  .igvv-editorial-block .igvv-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .igvv-editorial-block .igvv-card {
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .igvv-editorial-block .igvv-section {
    padding: 66px 20px;
  }

  .igvv-editorial-block .igvv-heading-wrap {
    margin-bottom: 30px;
  }

  .igvv-editorial-block .igvv-heading-wrap p {
    font-size: 0.95rem;
  }

  .igvv-editorial-block .igvv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .igvv-editorial-block .igvv-card {
    padding: 22px;
  }

  .igvv-editorial-block .igvv-card h3 {
    font-size: 1.02rem;
  }

  .igvv-editorial-block .igvv-card p {
    font-size: 0.92rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .igvv-editorial-block .igvv-section {
    padding: 54px 16px;
  }

  .igvv-editorial-block .igvv-heading-wrap {
    margin-bottom: 26px;
  }

  .igvv-editorial-block .igvv-heading-wrap p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .igvv-editorial-block .igvv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .igvv-editorial-block .igvv-card {
    min-height: auto;
    padding: 21px;
  }

  .igvv-editorial-block .igvv-process-card {
    padding-top: 50px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .igvv-editorial-block .igvv-section {
    padding: 46px 14px;
  }

  .igvv-editorial-block .igvv-heading-wrap {
    margin-bottom: 22px;
  }

  .igvv-editorial-block .igvv-heading-wrap p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .igvv-editorial-block .igvv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .igvv-editorial-block .igvv-card {
    min-height: auto;
    padding: 19px;
    border-radius: 16px;
  }

  .igvv-editorial-block .igvv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .igvv-editorial-block .igvv-card h3 {
    font-size: 0.98rem;
  }

  .igvv-editorial-block .igvv-card p {
    font-size: 0.9rem;
  }

  .igvv-editorial-block .igvv-process-card {
    padding-top: 48px;
  }

  .igvv-editorial-block .igvv-process-card::before {
    font-size: 4.7rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .igvv-editorial-block .igvv-section {
    padding: 40px 12px;
  }

  .igvv-editorial-block .igvv-heading-wrap {
    margin-bottom: 20px;
  }

  .igvv-editorial-block .igvv-heading-wrap p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .igvv-editorial-block .igvv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .igvv-editorial-block .igvv-card {
    min-height: auto;
    padding: 17px;
    border-radius: 15px;
  }

  .igvv-editorial-block .igvv-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .igvv-editorial-block .igvv-icon i {
    font-size: 1rem;
  }

  .igvv-editorial-block .igvv-card h3 {
    font-size: 0.94rem;
  }

  .igvv-editorial-block .igvv-card p,
  .igvv-editorial-block .igvv-cta {
    font-size: 0.86rem;
  }

  .igvv-editorial-block .igvv-process-card {
    padding-top: 46px;
  }

  .igvv-editorial-block .igvv-step-text {
    top: 19px;
    left: 17px;
    font-size: 0.7rem;
  }

  .igvv-editorial-block .igvv-process-card::before {
    top: 8px;
    right: 12px;
    font-size: 4.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .igvv-editorial-block .igvv-card,
  .igvv-editorial-block .igvv-card::after,
  .igvv-editorial-block .igvv-icon,
  .igvv-editorial-block .igvv-cta,
  .igvv-editorial-block .igvv-process-card::before {
    transition: none !important;
    animation: none !important;
  }

  .igvv-editorial-block .igvv-card,
  .igvv-editorial-block .igvv-card.is-visible,
  .igvv-editorial-block .igvv-card:hover {
    transform: none !important;
  }
}