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

.ytarv-root,
.ytarv-root * ,
.ytarv-root *::before,
.ytarv-root *::after {
  box-sizing: border-box;
}

.ytarv-root {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #241f21;
  background: #ffffff;
}

.ytarv-section {
  width: 100% !important;
  text-align: center;
}

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

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

.ytarv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  min-width: 0;
}

.ytarv-root h2 {
  margin: 0 auto;
  max-width: 1080px;
  color: #171214;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.ytarv-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #665d60;
  font-weight: 450;
  line-height: 1.65;
  text-align: center;
}

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

.ytarv-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  height: 100% !important;
  min-width: 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(255, 0, 51, 0.09), transparent 48%);
  border: 1px solid rgba(255, 0, 51, 0.14);
  box-shadow: 0 18px 44px rgba(128, 18, 39, 0.09);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background-position 260ms ease;
  overflow: hidden;
}

.ytarv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 0, 51, 0.09), rgba(23, 31, 42, 0.04), rgba(255, 196, 0, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
}

.ytarv-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 0, 51, 0.34);
  box-shadow: 0 24px 58px rgba(128, 18, 39, 0.16);
}

.ytarv-card:hover::before {
  opacity: 1;
}

.ytarv-icon {
  display: grid;
  place-items: center;
  margin-inline: auto;
  color: #ffffff;
  background:
    linear-gradient(135deg, #ff0033 0%, #b8002a 54%, #241f21 100%);
  box-shadow: 0 14px 30px rgba(255, 0, 51, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ytarv-card:hover .ytarv-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(255, 0, 51, 0.28);
}

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

.ytarv-card h3 {
  margin: 0;
  color: #201a1d;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.ytarv-card p {
  margin: 0;
  color: #6c6265;
  font-weight: 430;
  line-height: 1.58;
  text-align: center;
}

.ytarv-reveal {
  opacity: 1;
  transform: none;
}

.ytarv-root.ytarv-js-ready .ytarv-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.ytarv-root.ytarv-js-ready .ytarv-reveal.ytarv-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .ytarv-container {
    padding: 0 28px;
  }

  .ytarv-root h2 {
    font-size: 43px;
    white-space: nowrap;
  }

  .ytarv-intro {
    margin-top: 18px;
    font-size: 17px;
  }

  .ytarv-grid {
    margin-top: 46px;
    gap: 24px;
  }

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

  .ytarv-card {
    min-height: 296px;
    padding: 34px 28px 32px;
    border-radius: 22px;
  }

  .ytarv-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin-bottom: 24px;
    font-size: 28px;
  }

  .ytarv-card h3 {
    font-size: 21px;
  }

  .ytarv-card p {
    margin-top: 13px;
    font-size: 15.5px;
  }
}

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

  .ytarv-container {
    padding: 0 24px;
  }

  .ytarv-root h2 {
    font-size: 35px;
  }

  .ytarv-intro {
    margin-top: 16px;
    font-size: 16px;
  }

  .ytarv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    gap: 20px;
  }

  .ytarv-card {
    min-height: 270px;
    padding: 30px 24px 28px;
    border-radius: 20px;
  }

  .ytarv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 21px;
    font-size: 25px;
  }

  .ytarv-card h3 {
    font-size: 19px;
  }

  .ytarv-card p {
    margin-top: 11px;
    font-size: 15px;
  }
}

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

  .ytarv-container {
    padding: 0 16px;
  }

  .ytarv-root h2 {
    font-size: 29px;
    line-height: 1.16;
  }

  .ytarv-intro {
    margin-top: 13px;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .ytarv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    gap: 14px;
  }

  .ytarv-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .ytarv-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    margin-bottom: 16px;
    font-size: 21px;
  }

  .ytarv-card h3 {
    font-size: 16px;
  }

  .ytarv-card p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.48;
  }
}

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

  .ytarv-container {
    padding: 0 12px;
  }

  .ytarv-root h2 {
    font-size: 25px;
    line-height: 1.16;
  }

  .ytarv-intro {
    margin-top: 11px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .ytarv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    gap: 10px;
  }

  .ytarv-card {
    min-height: 224px;
    padding: 19px 10px 18px;
    border-radius: 15px;
  }

  .ytarv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 14px;
    font-size: 19px;
  }

  .ytarv-card h3 {
    font-size: 14.5px;
  }

  .ytarv-card p {
    margin-top: 8px;
    font-size: 12.2px;
    line-height: 1.45;
  }
}

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

  .ytarv-container {
    padding: 0 10px;
  }

  .ytarv-root h2 {
    font-size: 22px;
    line-height: 1.16;
  }

  .ytarv-intro {
    margin-top: 10px;
    font-size: 12.8px;
    line-height: 1.48;
  }

  .ytarv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    gap: 8px;
  }

  .ytarv-card {
    min-height: 218px;
    padding: 17px 8px 16px;
    border-radius: 14px;
  }

  .ytarv-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    margin-bottom: 12px;
    font-size: 17px;
  }

  .ytarv-card h3 {
    font-size: 13.2px;
  }

  .ytarv-card p {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .ytarv-grid {
    grid-template-columns: 1fr;
  }
}