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

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

.igwv-premium-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #201821;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #fff;
}

.igwv-premium-content .igwv-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

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

.igwv-premium-content .igwv-section-warm {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 122, 89, 0.11), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(193, 53, 132, 0.10), transparent 32%),
    linear-gradient(180deg, #fff7f4 0%, #fffaf7 52%, #fff6fb 100%);
}

.igwv-premium-content .igwv-container {
  width: min(100%, 1240px);
  max-width: 100%;
  margin: 0 auto;
  padding: 92px 28px;
}

.igwv-premium-content .igwv-heading-wrap {
  width: min(100%, 760px);
  max-width: 100%;
  margin: 0 auto 42px;
  text-align: center;
}

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

.igwv-premium-content h2 span {
  background: linear-gradient(135deg, #f77737 0%, #e1306c 45%, #833ab4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.igwv-premium-content .igwv-heading-wrap p {
  margin: 14px auto 0;
  max-width: 680px;
  color: #6d5d68;
  font-size: 1rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.igwv-premium-content .igwv-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  gap: 22px;
  align-items: stretch;
}

.igwv-premium-content .igwv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --igwv-accent: #e1306c;
  --igwv-accent-two: #f77737;
  --igwv-soft: rgba(225, 48, 108, 0.10);
  --igwv-border: rgba(75, 50, 64, 0.10);
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--igwv-border);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 247, 0.86)),
    radial-gradient(circle at 0% 0%, var(--igwv-soft), transparent 44%);
  box-shadow: 0 18px 50px rgba(42, 25, 36, 0.08);
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

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

.igwv-premium-content .igwv-card:hover {
  border-color: color-mix(in srgb, var(--igwv-accent) 45%, transparent);
  box-shadow: 0 26px 70px rgba(42, 25, 36, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.igwv-premium-content .igwv-grid-why .igwv-card:hover {
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-8px) scale(1.008);
}

.igwv-premium-content .igwv-card-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--igwv-accent) 18%, transparent), transparent 34%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.34), transparent 52%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.igwv-premium-content .igwv-card:hover .igwv-card-glow {
  opacity: 1;
}

.igwv-premium-content .igwv-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  margin: 0 0 22px;
  border-radius: 18px;
  color: var(--igwv-accent);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, var(--igwv-soft), rgba(255, 255, 255, 0.84));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.76), 0 12px 28px color-mix(in srgb, var(--igwv-accent) 18%, transparent);
  transition: transform 0.28s ease, color 0.28s ease, background 0.28s ease;
}

.igwv-premium-content .igwv-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

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

.igwv-premium-content h3 {
  position: relative;
  margin: 0 0 12px;
  color: #241820;
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 780;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.igwv-premium-content h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--igwv-accent-two), var(--igwv-accent));
  transform-origin: left center;
  transform: scaleX(0.58);
  transition: transform 0.28s ease;
}

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

.igwv-premium-content .igwv-card p {
  margin: 0;
  color: #6e5f69;
  font-size: 0.95rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.igwv-premium-content .igwv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--igwv-accent);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.4;
  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;
}

.igwv-premium-content .igwv-card:hover .igwv-cta {
  opacity: 1;
  transform: translateY(0);
  color: color-mix(in srgb, var(--igwv-accent) 78%, #241820);
}

.igwv-premium-content .igwv-step-card {
  padding-top: 24px;
}

.igwv-premium-content .igwv-step-bg {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: -1;
  max-width: 42%;
  color: color-mix(in srgb, var(--igwv-accent) 11%, transparent);
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 0.32s ease, color 0.32s ease;
}

.igwv-premium-content .igwv-step-card:hover .igwv-step-bg {
  color: color-mix(in srgb, var(--igwv-accent) 18%, transparent);
  transform: translateY(-4px) scale(1.04);
}

.igwv-premium-content .igwv-step-line {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--igwv-accent);
  font-size: 0.78rem;
  line-height: 1.4;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.igwv-premium-content .igwv-card:nth-child(8n + 1) {
  --igwv-accent: #e1306c;
  --igwv-accent-two: #f77737;
  --igwv-soft: rgba(225, 48, 108, 0.11);
}

.igwv-premium-content .igwv-card:nth-child(8n + 2) {
  --igwv-accent: #833ab4;
  --igwv-accent-two: #c13584;
  --igwv-soft: rgba(131, 58, 180, 0.11);
}

.igwv-premium-content .igwv-card:nth-child(8n + 3) {
  --igwv-accent: #d9487d;
  --igwv-accent-two: #ff9a5a;
  --igwv-soft: rgba(217, 72, 125, 0.11);
}

.igwv-premium-content .igwv-card:nth-child(8n + 4) {
  --igwv-accent: #b83280;
  --igwv-accent-two: #fdc468;
  --igwv-soft: rgba(184, 50, 128, 0.10);
}

.igwv-premium-content .igwv-card:nth-child(8n + 5) {
  --igwv-accent: #6d5dfc;
  --igwv-accent-two: #e1306c;
  --igwv-soft: rgba(109, 93, 252, 0.10);
}

.igwv-premium-content .igwv-card:nth-child(8n + 6) {
  --igwv-accent: #ef5d45;
  --igwv-accent-two: #ffb457;
  --igwv-soft: rgba(239, 93, 69, 0.10);
}

.igwv-premium-content .igwv-card:nth-child(8n + 7) {
  --igwv-accent: #0f9f8f;
  --igwv-accent-two: #f77737;
  --igwv-soft: rgba(15, 159, 143, 0.09);
}

.igwv-premium-content .igwv-card:nth-child(8n + 8) {
  --igwv-accent: #c13584;
  --igwv-accent-two: #833ab4;
  --igwv-soft: rgba(193, 53, 132, 0.10);
}

@media (min-width: 1200px) {
  .igwv-premium-content .igwv-container {
    width: min(100%, 1240px);
    padding: 96px 28px;
  }

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

@media (min-width: 1024px) and (max-width: 1199px) {
  .igwv-premium-content .igwv-container {
    width: min(100%, 1040px);
    padding: 82px 24px;
  }

  .igwv-premium-content .igwv-heading-wrap {
    margin-bottom: 36px;
  }

  .igwv-premium-content .igwv-heading-wrap p {
    font-size: 0.97rem;
  }

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

  .igwv-premium-content .igwv-card {
    padding: 25px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .igwv-premium-content .igwv-container {
    padding: 70px 22px;
  }

  .igwv-premium-content .igwv-heading-wrap {
    margin-bottom: 32px;
  }

  .igwv-premium-content .igwv-heading-wrap p {
    font-size: 0.95rem;
    line-height: 1.68;
  }

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

  .igwv-premium-content .igwv-card {
    padding: 24px;
    border-radius: 20px;
  }

  .igwv-premium-content h3 {
    font-size: 1.02rem;
  }

  .igwv-premium-content .igwv-card p {
    font-size: 0.92rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .igwv-premium-content .igwv-container {
    padding: 56px 18px;
  }

  .igwv-premium-content .igwv-heading-wrap {
    margin-bottom: 26px;
  }

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

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

  .igwv-premium-content .igwv-card {
    padding: 22px;
    border-radius: 18px;
  }

  .igwv-premium-content .igwv-cta {
    white-space: normal;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .igwv-premium-content .igwv-container {
    padding: 48px 15px;
  }

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

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

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

  .igwv-premium-content .igwv-card {
    padding: 19px;
    border-radius: 17px;
  }

  .igwv-premium-content .igwv-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .igwv-premium-content .igwv-icon i {
    font-size: 1.12rem;
  }

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

  .igwv-premium-content .igwv-card p {
    font-size: 0.89rem;
  }

  .igwv-premium-content .igwv-step-bg {
    font-size: 3.8rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .igwv-premium-content .igwv-container {
    padding: 42px 12px;
  }

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

  .igwv-premium-content .igwv-heading-wrap p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

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

  .igwv-premium-content .igwv-card {
    padding: 16px;
    border-radius: 16px;
  }

  .igwv-premium-content .igwv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

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

  .igwv-premium-content h3 {
    font-size: 0.94rem;
  }

  .igwv-premium-content .igwv-card p {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .igwv-premium-content .igwv-cta {
    font-size: 0.82rem;
  }

  .igwv-premium-content .igwv-step-line {
    font-size: 0.7rem;
  }

  .igwv-premium-content .igwv-step-bg {
    top: 12px;
    right: 12px;
    font-size: 3.2rem;
  }
}

@media (max-width: 319px) {
  .igwv-premium-content .igwv-container {
    padding: 36px 10px;
  }

  .igwv-premium-content .igwv-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .igwv-premium-content .igwv-card {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .igwv-premium-content .igwv-card,
  .igwv-premium-content .igwv-card *,
  .igwv-premium-content .igwv-card::before,
  .igwv-premium-content .igwv-card::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .igwv-premium-content .igwv-card,
  .igwv-premium-content .igwv-card:hover,
  .igwv-premium-content .igwv-card.is-visible {
    transform: none !important;
  }
}