@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.0.0/css/all.min.css');

.ytchv-wrapper,
.ytchv-wrapper * {
  box-sizing: border-box;
  min-width: 0;
}

.ytchv-wrapper {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #1d2028;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ytchv-wrapper .ytchv-section {
  width: 100% !important;
  overflow: hidden;
}

.ytchv-wrapper .ytchv-section-white {
  background: #ffffff;
}

.ytchv-wrapper .ytchv-section-tint {
  background: linear-gradient(180deg, #fff7f5 0%, #fffdfb 100%);
}

.ytchv-wrapper .ytchv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.ytchv-wrapper .ytchv-heading {
  margin: 0 auto;
  color: #181a22;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
  text-wrap: balance;
}

.ytchv-wrapper .ytchv-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #5d6370;
  font-weight: 450;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: center;
}

.ytchv-wrapper .ytchv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.ytchv-wrapper .ytchv-card {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #f0d5d1;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  box-shadow: 0 18px 46px rgba(204, 0, 0, 0.09);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 360ms ease;
}

.ytchv-wrapper .ytchv-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.12), transparent 42%);
  opacity: 0;
  content: "";
  transition: opacity 260ms ease, transform 260ms ease;
}

.ytchv-wrapper .ytchv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 0, 0, 0.38);
  box-shadow: 0 24px 60px rgba(204, 0, 0, 0.16);
}

.ytchv-wrapper .ytchv-card:hover::before {
  opacity: 1;
  transform: translateY(6px);
}

.ytchv-wrapper .ytchv-card-tint {
  background: linear-gradient(160deg, #ffffff 0%, #fff4f1 48%, #fffdfb 100%);
  background-size: 140% 140%;
}

.ytchv-wrapper .ytchv-card-tint:hover {
  background-position: 100% 0%;
}

.ytchv-wrapper .ytchv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(255, 0, 0, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff0033 0%, #ff7a3d 100%);
  box-shadow: 0 14px 28px rgba(255, 0, 0, 0.22);
  color: #ffffff;
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ytchv-wrapper .ytchv-card:hover .ytchv-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(255, 91, 48, 0.3);
}

.ytchv-wrapper .ytchv-i {
  display: block;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.ytchv-wrapper .ytchv-card-title {
  margin: 0;
  color: #20222a;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.ytchv-wrapper .ytchv-card-text {
  margin: 0 auto;
  color: #626875;
  font-weight: 450;
  line-height: 1.62;
  letter-spacing: 0;
  text-align: center;
}

.ytchv-wrapper .ytchv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ytchv-wrapper .ytchv-reveal.ytchv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  .ytchv-wrapper .ytchv-section {
    padding: 92px 0;
  }

  .ytchv-wrapper .ytchv-container {
    padding: 0 28px;
  }

  .ytchv-wrapper .ytchv-heading {
    max-width: 940px;
    font-size: 42px;
  }

  .ytchv-wrapper .ytchv-intro {
    padding-top: 18px;
    font-size: 17px;
  }

  .ytchv-wrapper .ytchv-grid {
    gap: 26px;
    margin-top: 46px;
  }

  .ytchv-wrapper .ytchv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ytchv-wrapper .ytchv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ytchv-wrapper .ytchv-card {
    min-height: 296px;
    padding: 34px 28px;
  }

  .ytchv-wrapper .ytchv-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .ytchv-wrapper .ytchv-i {
    font-size: 28px;
  }

  .ytchv-wrapper .ytchv-card-title {
    font-size: 20px;
  }

  .ytchv-wrapper .ytchv-card-text {
    padding-top: 12px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ytchv-wrapper .ytchv-section {
    padding: 72px 0;
  }

  .ytchv-wrapper .ytchv-container {
    padding: 0 24px;
  }

  .ytchv-wrapper .ytchv-heading {
    max-width: 740px;
    font-size: 34px;
  }

  .ytchv-wrapper .ytchv-intro {
    padding-top: 16px;
    font-size: 16px;
  }

  .ytchv-wrapper .ytchv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
  }

  .ytchv-wrapper .ytchv-card {
    min-height: 270px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .ytchv-wrapper .ytchv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
  }

  .ytchv-wrapper .ytchv-i {
    font-size: 25px;
  }

  .ytchv-wrapper .ytchv-card-title {
    font-size: 19px;
  }

  .ytchv-wrapper .ytchv-card-text {
    padding-top: 11px;
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ytchv-wrapper .ytchv-section {
    padding: 54px 0;
  }

  .ytchv-wrapper .ytchv-container {
    padding: 0 18px;
  }

  .ytchv-wrapper .ytchv-heading {
    max-width: 430px;
    font-size: 27px;
  }

  .ytchv-wrapper .ytchv-intro {
    padding-top: 12px;
    font-size: 14px;
    line-height: 1.58;
  }

  .ytchv-wrapper .ytchv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .ytchv-wrapper .ytchv-card {
    min-height: 232px;
    padding: 22px 14px;
    border-radius: 16px;
  }

  .ytchv-wrapper .ytchv-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }

  .ytchv-wrapper .ytchv-i {
    font-size: 21px;
  }

  .ytchv-wrapper .ytchv-card-title {
    font-size: 16px;
  }

  .ytchv-wrapper .ytchv-card-text {
    padding-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ytchv-wrapper .ytchv-section {
    padding: 48px 0;
  }

  .ytchv-wrapper .ytchv-container {
    padding: 0 14px;
  }

  .ytchv-wrapper .ytchv-heading {
    max-width: 360px;
    font-size: 24px;
  }

  .ytchv-wrapper .ytchv-intro {
    padding-top: 11px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .ytchv-wrapper .ytchv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .ytchv-wrapper .ytchv-card {
    min-height: 222px;
    padding: 20px 12px;
    border-radius: 15px;
  }

  .ytchv-wrapper .ytchv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .ytchv-wrapper .ytchv-i {
    font-size: 19px;
  }

  .ytchv-wrapper .ytchv-card-title {
    font-size: 15px;
  }

  .ytchv-wrapper .ytchv-card-text {
    padding-top: 8px;
    font-size: 12.5px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ytchv-wrapper .ytchv-section {
    padding: 42px 0;
  }

  .ytchv-wrapper .ytchv-container {
    padding: 0 10px;
  }

  .ytchv-wrapper .ytchv-heading {
    max-width: 310px;
    font-size: 22px;
  }

  .ytchv-wrapper .ytchv-intro {
    padding-top: 10px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .ytchv-wrapper .ytchv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .ytchv-wrapper .ytchv-card {
    min-height: 214px;
    padding: 18px 10px;
    border-radius: 14px;
  }

  .ytchv-wrapper .ytchv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .ytchv-wrapper .ytchv-i {
    font-size: 18px;
  }

  .ytchv-wrapper .ytchv-card-title {
    font-size: 14px;
  }

  .ytchv-wrapper .ytchv-card-text {
    padding-top: 7px;
    font-size: 12px;
    line-height: 1.42;
  }
}