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

.ytvv-content-block,
.ytvv-content-block * {
  box-sizing: border-box;
}

.ytvv-content-block {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2937;
  background: #fff;
}

.ytvv-content-block .ytvv-section,
.ytvv-content-block .ytvv-container,
.ytvv-content-block .ytvv-grid {
  width: 100%;
  max-width: 100%;
}

.ytvv-content-block .ytvv-section {
  padding: 92px 24px;
}

.ytvv-content-block .ytvv-section-white {
  background: #fff;
}

.ytvv-content-block .ytvv-section-warm {
  background:
    radial-gradient(circle at top left, rgba(255, 90, 95, 0.12), transparent 34%),
    linear-gradient(180deg, #fff7f3 0%, #fffdfb 100%);
}

.ytvv-content-block .ytvv-container {
  max-width: 1240px;
  margin: 0 auto;
}

.ytvv-content-block .ytvv-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.ytvv-content-block .ytvv-section-head h2 span {
  background: linear-gradient(135deg, #ff0033 0%, #ff7a45 52%, #6d28d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ytvv-content-block .ytvv-section-head p {
  margin: 14px auto 0;
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.7;
  color: #667085;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.ytvv-content-block .ytvv-card {
  --ytvv-card-a: #ff0033;
  --ytvv-card-b: #ff7a45;
  --ytvv-card-soft: rgba(255, 0, 51, 0.1);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, var(--ytvv-card-soft), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ytvv-content-block .ytvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--ytvv-mx, 50%) var(--ytvv-my, 20%), rgba(255,255,255,0.9), transparent 34%);
  transition: opacity 260ms ease;
}

.ytvv-content-block .ytvv-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--ytvv-card-a), var(--ytvv-card-b));
  transform: scaleX(0.42);
  transform-origin: left;
  opacity: 0.42;
  transition: transform 260ms ease, opacity 260ms ease;
}

.ytvv-content-block .ytvv-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--ytvv-card-a) 36%, transparent);
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.14);
}

.ytvv-content-block .ytvv-card:hover::before {
  opacity: 1;
}

.ytvv-content-block .ytvv-card:hover::after {
  transform: scaleX(1);
  opacity: 0.85;
}

.ytvv-content-block .ytvv-tilt-card:hover {
  transform: perspective(900px) rotateX(var(--ytvv-tilt-x, 0deg)) rotateY(var(--ytvv-tilt-y, 0deg)) translateY(-7px);
}

.ytvv-content-block .ytvv-card:nth-child(2) { --ytvv-card-a: #f97316; --ytvv-card-b: #e11d48; --ytvv-card-soft: rgba(249, 115, 22, 0.11); }
.ytvv-content-block .ytvv-card:nth-child(3) { --ytvv-card-a: #7c3aed; --ytvv-card-b: #ff0033; --ytvv-card-soft: rgba(124, 58, 237, 0.1); }
.ytvv-content-block .ytvv-card:nth-child(4) { --ytvv-card-a: #0f766e; --ytvv-card-b: #14b8a6; --ytvv-card-soft: rgba(20, 184, 166, 0.11); }
.ytvv-content-block .ytvv-card:nth-child(5) { --ytvv-card-a: #2563eb; --ytvv-card-b: #06b6d4; --ytvv-card-soft: rgba(37, 99, 235, 0.1); }
.ytvv-content-block .ytvv-card:nth-child(6) { --ytvv-card-a: #db2777; --ytvv-card-b: #fb7185; --ytvv-card-soft: rgba(219, 39, 119, 0.1); }
.ytvv-content-block .ytvv-card:nth-child(7) { --ytvv-card-a: #ca8a04; --ytvv-card-b: #f59e0b; --ytvv-card-soft: rgba(245, 158, 11, 0.12); }
.ytvv-content-block .ytvv-card:nth-child(8) { --ytvv-card-a: #4f46e5; --ytvv-card-b: #ec4899; --ytvv-card-soft: rgba(79, 70, 229, 0.1); }

.ytvv-content-block .ytvv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--ytvv-card-a);
  background: linear-gradient(135deg, #fff, var(--ytvv-card-soft));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.76), 0 12px 26px rgba(17, 24, 39, 0.08);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

.ytvv-content-block .ytvv-icon i {
  font-size: 1.28rem;
  line-height: 1;
}

.ytvv-content-block .ytvv-card:hover .ytvv-icon {
  transform: translateY(-3px) scale(1.05) rotate(-3deg);
  color: #fff;
  background: linear-gradient(135deg, var(--ytvv-card-a), var(--ytvv-card-b));
}

.ytvv-content-block .ytvv-card h3 {
  position: relative;
  z-index: 1;
  display: inline;
  margin: 0;
  padding-bottom: 5px;
  font-size: 1.06rem;
  line-height: 1.35;
  letter-spacing: 0;
  color: #111827;
  font-weight: 800;
  background-image: linear-gradient(90deg, var(--ytvv-card-a), var(--ytvv-card-b));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 2px;
  transition: background-size 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.ytvv-content-block .ytvv-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-size: 0.94rem;
  line-height: 1.68;
  color: #667085;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

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

.ytvv-content-block .ytvv-process-card {
  min-height: 292px;
}

.ytvv-content-block .ytvv-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 16px;
  top: 8px;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 900;
  color: var(--ytvv-card-a);
  opacity: 0.055;
  transform: translateY(0) scale(1);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.ytvv-content-block .ytvv-process-card:hover::before {
  opacity: 0.12;
  transform: translateY(-4px) scale(1.04);
}

.ytvv-content-block .ytvv-step-line {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: var(--ytvv-card-a);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1200px) {
  .ytvv-content-block .ytvv-container {
    max-width: 1240px;
  }

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

  .ytvv-content-block .ytvv-section {
    padding: 92px 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .ytvv-content-block .ytvv-section {
    padding: 78px 22px;
  }

  .ytvv-content-block .ytvv-container {
    max-width: 980px;
  }

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

  .ytvv-content-block .ytvv-card {
    padding: 24px;
  }

  .ytvv-content-block .ytvv-section-head p {
    font-size: 0.98rem;
  }
}

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

  .ytvv-content-block .ytvv-section-head {
    margin-bottom: 34px;
  }

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

  .ytvv-content-block .ytvv-card {
    padding: 23px;
    min-height: 250px;
  }

  .ytvv-content-block .ytvv-card h3 {
    font-size: 1rem;
  }

  .ytvv-content-block .ytvv-card p {
    font-size: 0.92rem;
  }
}

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

  .ytvv-content-block .ytvv-section-head {
    margin-bottom: 28px;
  }

  .ytvv-content-block .ytvv-section-head p {
    font-size: 0.94rem;
  }

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

  .ytvv-content-block .ytvv-card {
    padding: 22px;
    min-height: auto;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytvv-content-block .ytvv-section {
    padding: 48px 14px;
  }

  .ytvv-content-block .ytvv-section-head {
    margin-bottom: 24px;
  }

  .ytvv-content-block .ytvv-section-head p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

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

  .ytvv-content-block .ytvv-card {
    padding: 20px;
    border-radius: 18px;
    min-height: auto;
  }

  .ytvv-content-block .ytvv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .ytvv-content-block .ytvv-card h3 {
    font-size: 0.98rem;
  }

  .ytvv-content-block .ytvv-card p {
    font-size: 0.9rem;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytvv-content-block .ytvv-section {
    padding: 42px 12px;
  }

  .ytvv-content-block .ytvv-section-head {
    margin-bottom: 22px;
  }

  .ytvv-content-block .ytvv-section-head p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

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

  .ytvv-content-block .ytvv-card {
    padding: 18px;
    border-radius: 16px;
    min-height: auto;
  }

  .ytvv-content-block .ytvv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 13px;
  }

  .ytvv-content-block .ytvv-icon i {
    font-size: 1.05rem;
  }

  .ytvv-content-block .ytvv-card h3 {
    font-size: 0.94rem;
  }

  .ytvv-content-block .ytvv-card p {
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .ytvv-content-block .ytvv-process-card::before {
    font-size: 3.8rem;
  }
}

@media (max-width: 319px) {
  .ytvv-content-block .ytvv-grid {
    grid-template-columns: 1fr !important;
  }
}

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

  .ytvv-content-block .ytvv-card:hover,
  .ytvv-content-block .ytvv-tilt-card:hover {
    transform: none;
  }
}