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

.turlv-wrap,
.turlv-wrap * {
  box-sizing: border-box;
}

.turlv-wrap {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172126;
  font-family: Arial, Helvetica, sans-serif;
}

.turlv-wrap .turlv-section {
  width: 100% !important;
  overflow: hidden;
}

.turlv-wrap .turlv-section-white {
  background: #ffffff;
}

.turlv-wrap .turlv-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 59, 119, 0.09), transparent 38%),
    linear-gradient(180deg, #f7fbfb 0%, #fff7fa 100%);
}

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

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

.turlv-wrap .turlv-heading {
  margin: 0 auto;
  color: #101820;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.turlv-wrap .turlv-intro {
  margin: 14px auto 0;
  max-width: 720px;
  color: #556169;
  line-height: 1.65;
  font-weight: 500;
}

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

.turlv-wrap .turlv-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(37, 244, 238, 0.18), transparent 48%);
  border: 1px solid rgba(20, 35, 41, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(20, 35, 41, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-position 280ms ease;
}

.turlv-wrap .turlv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(255, 59, 119, 0.12));
  opacity: 0;
  transition: opacity 280ms ease;
}

.turlv-wrap .turlv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 59, 119, 0.34);
  box-shadow: 0 24px 58px rgba(255, 59, 119, 0.14), 0 12px 34px rgba(37, 244, 238, 0.12);
}

.turlv-wrap .turlv-card:hover::before {
  opacity: 1;
}

.turlv-wrap .turlv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #101820;
  background: linear-gradient(135deg, #25f4ee 0%, #ff3b77 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 28px rgba(37, 244, 238, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.turlv-wrap .turlv-card:hover .turlv-icon {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(255, 59, 119, 0.2), 0 12px 26px rgba(37, 244, 238, 0.18);
}

.turlv-wrap .turlv-i {
  color: #ffffff;
  line-height: 1;
}

.turlv-wrap .turlv-card-title {
  margin: 0;
  color: #121c22;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.turlv-wrap .turlv-card-text {
  margin: 0 auto;
  color: #5b6870;
  line-height: 1.6;
  font-weight: 500;
}

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

.turlv-wrap .turlv-reveal.turlv-visible {
  opacity: 1;
  transform: translateY(0);
}

.turlv-wrap .turlv-card.turlv-reveal {
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background-position 280ms ease;
}

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

  .turlv-wrap .turlv-container {
    padding: 0 24px;
  }

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

  .turlv-wrap .turlv-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .turlv-wrap .turlv-grid {
    gap: 24px;
  }

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

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

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

  .turlv-wrap .turlv-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .turlv-wrap .turlv-i {
    font-size: 28px;
  }

  .turlv-wrap .turlv-card-title {
    font-size: 20px;
    margin-bottom: 13px;
  }

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

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

  .turlv-wrap .turlv-container {
    padding: 0 22px;
  }

  .turlv-wrap .turlv-heading {
    font-size: 34px;
  }

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

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

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

  .turlv-wrap .turlv-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 21px;
  }

  .turlv-wrap .turlv-i {
    font-size: 25px;
  }

  .turlv-wrap .turlv-card-title {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .turlv-wrap .turlv-card-text {
    font-size: 14.5px;
  }
}

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

  .turlv-wrap .turlv-container {
    padding: 0 16px;
  }

  .turlv-wrap .turlv-heading {
    max-width: 420px;
    font-size: 27px;
  }

  .turlv-wrap .turlv-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

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

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

  .turlv-wrap .turlv-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    margin-bottom: 16px;
  }

  .turlv-wrap .turlv-i {
    font-size: 21px;
  }

  .turlv-wrap .turlv-card-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .turlv-wrap .turlv-card-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

  .turlv-wrap .turlv-container {
    padding: 0 12px;
  }

  .turlv-wrap .turlv-heading {
    max-width: 350px;
    font-size: 24px;
  }

  .turlv-wrap .turlv-intro {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

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

  .turlv-wrap .turlv-card {
    min-height: 218px;
    padding: 18px 11px;
    border-radius: 15px;
  }

  .turlv-wrap .turlv-icon {
    width: 47px;
    height: 47px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .turlv-wrap .turlv-i {
    font-size: 19px;
  }

  .turlv-wrap .turlv-card-title {
    font-size: 14.5px;
    margin-bottom: 8px;
  }

  .turlv-wrap .turlv-card-text {
    font-size: 12.2px;
    line-height: 1.45;
  }
}

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

  .turlv-wrap .turlv-container {
    padding: 0 10px;
  }

  .turlv-wrap .turlv-heading {
    max-width: 300px;
    font-size: 21px;
  }

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

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

  .turlv-wrap .turlv-card {
    min-height: 210px;
    padding: 16px 9px;
    border-radius: 14px;
  }

  .turlv-wrap .turlv-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .turlv-wrap .turlv-i {
    font-size: 17px;
  }

  .turlv-wrap .turlv-card-title {
    font-size: 13.5px;
    margin-bottom: 7px;
  }

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