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

.ytsv26-wrap,
.ytsv26-wrap * {
  box-sizing: border-box !important;
  min-width: 0;
}

.ytsv26-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17202a;
  font-family: inherit;
  text-align: center;
}

.ytsv26-section {
  width: 100% !important;
  position: relative;
}

.ytsv26-section-white {
  background: #ffffff;
}

.ytsv26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 68, 0.08), transparent 34%),
    linear-gradient(180deg, #fff7f8 0%, #f8fbff 100%);
}

.ytsv26-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 20px;
  padding-right: 20px;
}

.ytsv26-heading {
  margin: 0 auto;
  color: #16191f;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.ytsv26-intro {
  margin: 14px auto 0;
  max-width: 760px;
  color: #526071;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
}

.ytsv26-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
}

.ytsv26-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 68, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 50% -20%, rgba(255, 0, 68, 0.1), transparent 48%);
  box-shadow: 0 18px 46px rgba(26, 36, 52, 0.09);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
}

.ytsv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 0, 68, 0.09), rgba(0, 191, 166, 0.08), rgba(255, 214, 10, 0.07));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.ytsv26-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 0, 68, 0.34);
  box-shadow: 0 24px 60px rgba(255, 0, 68, 0.13), 0 12px 26px rgba(26, 36, 52, 0.1);
}

.ytsv26-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.ytsv26-icon {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 0, 68, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 0, 68, 0.12), rgba(0, 191, 166, 0.12)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 30px rgba(255, 0, 68, 0.12);
  color: #ff0044;
  text-align: center;
  transition: transform 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.ytsv26-card:hover .ytsv26-icon {
  transform: translateY(-4px) scale(1.04);
  color: #00a891;
  box-shadow: 0 16px 34px rgba(0, 191, 166, 0.18);
}

.ytsv26-i {
  display: inline-block;
  line-height: 1;
  text-align: center;
}

.ytsv26-card-title {
  margin: 0;
  color: #17202a;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.ytsv26-card-text {
  margin: 0 auto;
  color: #5d6978;
  line-height: 1.62;
  text-align: center;
}

.ytsv26-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ytsv26-reveal.ytsv26-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  .ytsv26-section {
    padding: 86px 0;
  }

  .ytsv26-heading {
    font-size: 42px;
    white-space: nowrap;
  }

  .ytsv26-intro {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .ytsv26-grid {
    gap: 24px;
  }

  .ytsv26-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ytsv26-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ytsv26-card {
    min-height: 292px;
    padding: 34px 26px 30px;
    border-radius: 24px;
  }

  .ytsv26-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 22px;
    font-size: 30px;
  }

  .ytsv26-card-title {
    font-size: 19px;
    margin-bottom: 13px;
  }

  .ytsv26-card-text {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytsv26-section {
    padding: 68px 0;
  }

  .ytsv26-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ytsv26-heading {
    font-size: 34px;
  }

  .ytsv26-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .ytsv26-grid,
  .ytsv26-grid-3,
  .ytsv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .ytsv26-card {
    min-height: 268px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .ytsv26-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 21px;
    border-radius: 20px;
    font-size: 27px;
  }

  .ytsv26-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .ytsv26-card-text {
    font-size: 14px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytsv26-section {
    padding: 52px 0;
  }

  .ytsv26-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ytsv26-heading {
    font-size: 28px;
    max-width: 460px;
  }

  .ytsv26-intro {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .ytsv26-grid,
  .ytsv26-grid-3,
  .ytsv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ytsv26-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .ytsv26-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 17px;
    font-size: 22px;
  }

  .ytsv26-card-title {
    font-size: 15px;
    margin-bottom: 9px;
  }

  .ytsv26-card-text {
    font-size: 12.5px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytsv26-section {
    padding: 46px 0;
  }

  .ytsv26-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ytsv26-heading {
    font-size: 25px;
    max-width: 350px;
  }

  .ytsv26-intro {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .ytsv26-grid,
  .ytsv26-grid-3,
  .ytsv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ytsv26-card {
    min-height: 220px;
    padding: 20px 11px 18px;
    border-radius: 16px;
  }

  .ytsv26-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
    border-radius: 16px;
    font-size: 20px;
  }

  .ytsv26-card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .ytsv26-card-text {
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytsv26-section {
    padding: 40px 0;
  }

  .ytsv26-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ytsv26-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .ytsv26-intro {
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .ytsv26-grid,
  .ytsv26-grid-3,
  .ytsv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ytsv26-card {
    min-height: 214px;
    padding: 18px 9px 16px;
    border-radius: 14px;
  }

  .ytsv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 13px;
    border-radius: 14px;
    font-size: 18px;
  }

  .ytsv26-card-title {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .ytsv26-card-text {
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .ytsv26-section {
    padding: 38px 0;
  }

  .ytsv26-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ytsv26-heading {
    font-size: 21px;
  }

  .ytsv26-intro {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .ytsv26-grid,
  .ytsv26-grid-3,
  .ytsv26-grid-4 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ytsv26-card {
    min-height: 210px;
    padding: 18px 12px 16px;
    border-radius: 14px;
  }

  .ytsv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 18px;
  }

  .ytsv26-card-title {
    font-size: 13px;
    margin-bottom: 7px;
  }

  .ytsv26-card-text {
    font-size: 11.5px;
  }
}