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

.ytev26-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  background: #ffffff;
  color: #18202a;
  font-family: inherit;
}

.ytev26-wrapper *,
.ytev26-wrapper *::before,
.ytev26-wrapper *::after {
  box-sizing: border-box;
  min-width: 0;
}

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

.ytev26-section-one,
.ytev26-section-three {
  background: #ffffff;
}

.ytev26-section-two {
  background: linear-gradient(180deg, #fff7f5 0%, #fffaf8 100%);
}

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

.ytev26-heading,
.ytev26-intro,
.ytev26-card-title,
.ytev26-card-text {
  text-align: center !important;
}

.ytev26-heading {
  margin: 0 auto;
  color: #151b23;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.ytev26-intro {
  margin: 0 auto;
  color: #54606d;
  line-height: 1.65;
  font-weight: 400;
}

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

.ytev26-card {
  height: 100% !important;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)) padding-box,
    linear-gradient(135deg, rgba(255,0,0,.24), rgba(255,179,71,.22)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 44px rgba(173, 28, 28, .09);
  border-radius: 20px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background-position .28s ease;
  position: relative;
  overflow: hidden;
}

.ytev26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 0, .08), transparent 46%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.ytev26-icon {
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  background: linear-gradient(135deg, #ff0000 0%, #ff6b35 58%, #ffb347 100%);
  box-shadow: 0 14px 28px rgba(255, 0, 0, .22);
  border-radius: 18px;
  text-align: center !important;
  transition: transform .28s ease, box-shadow .28s ease;
  position: relative;
  z-index: 1;
}

.ytev26-i {
  color: #ffffff;
  line-height: 1;
  text-align: center !important;
}

.ytev26-card-title {
  margin: 0;
  color: #18202a;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.ytev26-card-text {
  margin: 0;
  color: #5b6673;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.ytev26-card:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 24px 56px rgba(173, 28, 28, .15);
  border-color: rgba(255, 0, 0, .28);
}

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

.ytev26-card:hover .ytev26-icon {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(255, 0, 0, .28);
}

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

.ytev26-card.ytev26-reveal.ytev26-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .ytev26-heading {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

  .ytev26-intro {
    font-size: 17px;
    max-width: 760px;
    padding-top: 16px;
  }

  .ytev26-grid {
    gap: 24px;
    margin-top: 44px;
  }

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

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

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

  .ytev26-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
  }

  .ytev26-i {
    font-size: 28px;
  }

  .ytev26-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

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

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

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

  .ytev26-heading {
    font-size: 34px;
    max-width: 720px;
  }

  .ytev26-intro {
    font-size: 16px;
    max-width: 680px;
    padding-top: 14px;
  }

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

  .ytev26-card {
    min-height: 266px;
    padding: 30px 24px;
    border-radius: 18px;
  }

  .ytev26-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .ytev26-i {
    font-size: 25px;
  }

  .ytev26-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

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

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

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

  .ytev26-heading {
    font-size: 28px;
    max-width: 410px;
  }

  .ytev26-intro {
    font-size: 14px;
    max-width: 420px;
    padding-top: 12px;
    line-height: 1.55;
  }

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

  .ytev26-card {
    min-height: 226px;
    padding: 22px 14px;
    border-radius: 16px;
  }

  .ytev26-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .ytev26-i {
    font-size: 21px;
  }

  .ytev26-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .ytev26-card-text {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

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

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

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

  .ytev26-intro {
    font-size: 13.5px;
    max-width: 360px;
    padding-top: 10px;
    line-height: 1.5;
  }

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

  .ytev26-card {
    min-height: 218px;
    padding: 20px 12px;
    border-radius: 15px;
  }

  .ytev26-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 13px;
  }

  .ytev26-i {
    font-size: 19px;
  }

  .ytev26-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

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

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

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

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

  .ytev26-intro {
    font-size: 13px;
    max-width: 310px;
    padding-top: 9px;
    line-height: 1.45;
  }

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

  .ytev26-card {
    min-height: 210px;
    padding: 18px 10px;
    border-radius: 14px;
  }

  .ytev26-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .ytev26-i {
    font-size: 18px;
  }

  .ytev26-card-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .ytev26-card-text {
    font-size: 11.5px;
    line-height: 1.4;
  }
}

@media (max-width: 319px) {
  .ytev26-grid,
  .ytev26-grid-3,
  .ytev26-grid-4 {
    grid-template-columns: 1fr;
  }
}