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

.ytcmv-wrapper,
.ytcmv-wrapper * {
  box-sizing: border-box;
}

.ytcmv-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #19202a;
  font-family: Arial, Helvetica, sans-serif;
}

.ytcmv-wrapper .ytcmv-section {
  width: 100% !important;
}

.ytcmv-wrapper .ytcmv-section-white {
  background: #ffffff;
}

.ytcmv-wrapper .ytcmv-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.075), transparent 34%),
    linear-gradient(180deg, #fff8f8 0%, #fffdfb 100%);
}

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

.ytcmv-wrapper .ytcmv-heading,
.ytcmv-wrapper .ytcmv-intro,
.ytcmv-wrapper .ytcmv-card,
.ytcmv-wrapper .ytcmv-card h3,
.ytcmv-wrapper .ytcmv-card p {
  text-align: center !important;
}

.ytcmv-wrapper .ytcmv-heading {
  margin: 0 auto;
  color: #15191f;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.ytcmv-wrapper .ytcmv-intro {
  margin: 14px auto 0;
  max-width: 720px;
  color: #5b6470;
  line-height: 1.7;
}

.ytcmv-wrapper .ytcmv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.ytcmv-wrapper .ytcmv-card {
  position: relative;
  height: 100% !important;
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  background: linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  border: 1px solid #f0d8d8;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(142, 18, 18, 0.09);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.ytcmv-wrapper .ytcmv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.09), rgba(255, 176, 48, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.ytcmv-wrapper .ytcmv-card > * {
  position: relative;
  z-index: 1;
}

.ytcmv-wrapper .ytcmv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, #ff0000 0%, #ff7a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(255, 0, 0, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ytcmv-wrapper .ytcmv-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.ytcmv-wrapper .ytcmv-card h3 {
  margin: 18px 0 0;
  color: #191d24;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ytcmv-wrapper .ytcmv-card p {
  margin: 10px 0 0;
  color: #626b76;
  line-height: 1.65;
}

.ytcmv-wrapper .ytcmv-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 0, 0, 0.32);
  box-shadow: 0 24px 54px rgba(142, 18, 18, 0.15);
  background: #ffffff;
}

.ytcmv-wrapper .ytcmv-card:hover::before {
  opacity: 1;
}

.ytcmv-wrapper .ytcmv-card:hover .ytcmv-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 34px rgba(255, 74, 25, 0.26);
}

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

.ytcmv-wrapper .ytcmv-reveal.ytcmv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

@media (min-width: 1024px) {
  .ytcmv-wrapper .ytcmv-section {
    padding: 86px 24px;
  }

  .ytcmv-wrapper .ytcmv-heading {
    font-size: 38px;
    white-space: nowrap;
  }

  .ytcmv-wrapper .ytcmv-intro {
    font-size: 17px;
  }

  .ytcmv-wrapper .ytcmv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
  }

  .ytcmv-wrapper .ytcmv-card {
    min-height: 292px;
    padding: 34px 28px;
  }

  .ytcmv-wrapper .ytcmv-icon {
    width: 68px;
    height: 68px;
  }

  .ytcmv-wrapper .ytcmv-i {
    font-size: 28px;
  }

  .ytcmv-wrapper .ytcmv-card h3 {
    font-size: 20px;
  }

  .ytcmv-wrapper .ytcmv-card p {
    font-size: 15px;
  }
}

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

  .ytcmv-wrapper .ytcmv-heading {
    font-size: 32px;
  }

  .ytcmv-wrapper .ytcmv-intro {
    font-size: 16px;
  }

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

  .ytcmv-wrapper .ytcmv-card {
    min-height: 268px;
    padding: 30px 24px;
  }

  .ytcmv-wrapper .ytcmv-icon {
    width: 62px;
    height: 62px;
  }

  .ytcmv-wrapper .ytcmv-i {
    font-size: 25px;
  }

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

  .ytcmv-wrapper .ytcmv-card p {
    font-size: 14.5px;
  }
}

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

  .ytcmv-wrapper .ytcmv-heading {
    font-size: 27px;
  }

  .ytcmv-wrapper .ytcmv-intro {
    font-size: 14.5px;
  }

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

  .ytcmv-wrapper .ytcmv-card {
    min-height: 230px;
    padding: 22px 14px;
    border-radius: 15px;
  }

  .ytcmv-wrapper .ytcmv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .ytcmv-wrapper .ytcmv-i {
    font-size: 21px;
  }

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

  .ytcmv-wrapper .ytcmv-card p {
    font-size: 13px;
    line-height: 1.55;
  }
}

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

  .ytcmv-wrapper .ytcmv-heading {
    font-size: 24px;
  }

  .ytcmv-wrapper .ytcmv-intro {
    font-size: 13.5px;
    line-height: 1.6;
  }

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

  .ytcmv-wrapper .ytcmv-card {
    min-height: 220px;
    padding: 18px 10px;
    border-radius: 14px;
  }

  .ytcmv-wrapper .ytcmv-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .ytcmv-wrapper .ytcmv-i {
    font-size: 19px;
  }

  .ytcmv-wrapper .ytcmv-card h3 {
    font-size: 15px;
  }

  .ytcmv-wrapper .ytcmv-card p {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

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

  .ytcmv-wrapper .ytcmv-heading {
    font-size: 22px;
  }

  .ytcmv-wrapper .ytcmv-intro {
    font-size: 13px;
    line-height: 1.55;
  }

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

  .ytcmv-wrapper .ytcmv-card {
    min-height: 214px;
    padding: 16px 8px;
    border-radius: 12px;
  }

  .ytcmv-wrapper .ytcmv-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .ytcmv-wrapper .ytcmv-i {
    font-size: 18px;
  }

  .ytcmv-wrapper .ytcmv-card h3 {
    font-size: 14px;
  }

  .ytcmv-wrapper .ytcmv-card p {
    font-size: 12px;
    line-height: 1.45;
  }
}