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

.tkdv-section-wrap,
.tkdv-section-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.tkdv-section-wrap {
  --tkdv-primary: #ff2f6d;
  --tkdv-secondary: #16d7d2;
  --tkdv-accent: #15151f;
  --tkdv-text: #171724;
  --tkdv-muted: #626274;
  --tkdv-tint: #fff7fa;
  --tkdv-border: rgba(255, 47, 109, 0.18);
  --tkdv-shadow: rgba(21, 21, 31, 0.11);
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: var(--tkdv-text);
  font-family: inherit;
}

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

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

.tkdv-section-wrap .tkdv-band-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 215, 210, 0.12), transparent 34%),
    linear-gradient(180deg, var(--tkdv-tint) 0%, #fffdfd 100%);
}

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

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

.tkdv-section-wrap .tkdv-heading {
  margin: 0 auto;
  color: var(--tkdv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.tkdv-section-wrap .tkdv-intro {
  margin: 0 auto;
  max-width: 760px;
  color: var(--tkdv-muted);
  line-height: 1.65;
  font-weight: 450;
}

.tkdv-section-wrap .tkdv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.tkdv-section-wrap .tkdv-card {
  position: relative;
  display: block;
  height: 100% !important;
  overflow: hidden;
  text-align: center !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(255, 47, 109, 0.34), rgba(22, 215, 210, 0.24)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 46px var(--tkdv-shadow);
  transform: translateY(18px);
  opacity: 1;
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease, background 420ms ease;
}

.tkdv-section-wrap .tkdv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 47, 109, 0.08), rgba(22, 215, 210, 0.08));
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.tkdv-section-wrap .tkdv-card.tkdv-visible {
  transform: translateY(0);
}

.tkdv-section-wrap .tkdv-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 26px 62px rgba(255, 47, 109, 0.18);
  border-color: rgba(22, 215, 210, 0.38);
}

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

.tkdv-section-wrap .tkdv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
  color: #ffffff;
  background: linear-gradient(135deg, var(--tkdv-primary), var(--tkdv-secondary));
  box-shadow: 0 14px 30px rgba(255, 47, 109, 0.22);
  transition: transform 420ms ease, box-shadow 420ms ease, background-position 420ms ease;
  background-size: 160% 160%;
}

.tkdv-section-wrap .tkdv-card:hover .tkdv-icon {
  transform: translateY(-4px);
  background-position: 100% 50%;
  box-shadow: 0 18px 38px rgba(22, 215, 210, 0.25);
}

.tkdv-section-wrap .tkdv-i {
  display: block;
  line-height: 1;
  text-align: center !important;
}

.tkdv-section-wrap .tkdv-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--tkdv-text);
  font-weight: 780;
  line-height: 1.22;
  letter-spacing: 0;
}

.tkdv-section-wrap .tkdv-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: var(--tkdv-muted);
  line-height: 1.6;
  font-weight: 430;
}

@media (min-width: 1024px) {
  .tkdv-section-wrap .tkdv-band {
    padding: 92px 0;
  }

  .tkdv-section-wrap .tkdv-container {
    padding: 0 28px;
  }

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

  .tkdv-section-wrap .tkdv-intro {
    margin-top: 18px;
    font-size: 17px;
  }

  .tkdv-section-wrap .tkdv-grid {
    margin-top: 46px;
    gap: 26px;
  }

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

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

  .tkdv-section-wrap .tkdv-card {
    min-height: 292px;
    padding: 34px 26px 30px;
    border-radius: 24px;
  }

  .tkdv-section-wrap .tkdv-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    margin-bottom: 24px;
    font-size: 28px;
  }

  .tkdv-section-wrap .tkdv-card-title {
    font-size: 21px;
  }

  .tkdv-section-wrap .tkdv-card-text {
    margin-top: 13px;
    font-size: 15.5px;
  }
}

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

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

  .tkdv-section-wrap .tkdv-heading {
    font-size: 35px;
  }

  .tkdv-section-wrap .tkdv-intro {
    margin-top: 16px;
    font-size: 16px;
  }

  .tkdv-section-wrap .tkdv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    gap: 22px;
  }

  .tkdv-section-wrap .tkdv-card {
    min-height: 268px;
    padding: 30px 24px 28px;
    border-radius: 22px;
  }

  .tkdv-section-wrap .tkdv-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    margin-bottom: 22px;
    font-size: 25px;
  }

  .tkdv-section-wrap .tkdv-card-title {
    font-size: 20px;
  }

  .tkdv-section-wrap .tkdv-card-text {
    margin-top: 12px;
    font-size: 15px;
  }
}

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

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

  .tkdv-section-wrap .tkdv-heading {
    font-size: 28px;
    max-width: 360px;
  }

  .tkdv-section-wrap .tkdv-intro {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.55;
  }

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

  .tkdv-section-wrap .tkdv-card {
    min-height: 236px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .tkdv-section-wrap .tkdv-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    margin-bottom: 17px;
    font-size: 21px;
  }

  .tkdv-section-wrap .tkdv-card-title {
    font-size: 17px;
  }

  .tkdv-section-wrap .tkdv-card-text {
    margin-top: 9px;
    font-size: 13.5px;
    line-height: 1.5;
  }
}

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

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

  .tkdv-section-wrap .tkdv-heading {
    font-size: 25px;
    max-width: 330px;
  }

  .tkdv-section-wrap .tkdv-intro {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.5;
  }

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

  .tkdv-section-wrap .tkdv-card {
    min-height: 224px;
    padding: 20px 12px 18px;
    border-radius: 16px;
  }

  .tkdv-section-wrap .tkdv-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    margin-bottom: 15px;
    font-size: 19px;
  }

  .tkdv-section-wrap .tkdv-card-title {
    font-size: 16px;
  }

  .tkdv-section-wrap .tkdv-card-text {
    margin-top: 8px;
    font-size: 12.8px;
    line-height: 1.46;
  }
}

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

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

  .tkdv-section-wrap .tkdv-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .tkdv-section-wrap .tkdv-intro {
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.45;
  }

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

  .tkdv-section-wrap .tkdv-card {
    min-height: 214px;
    padding: 18px 9px 16px;
    border-radius: 14px;
  }

  .tkdv-section-wrap .tkdv-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 13px;
    font-size: 18px;
  }

  .tkdv-section-wrap .tkdv-card-title {
    font-size: 15px;
  }

  .tkdv-section-wrap .tkdv-card-text {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.42;
  }
}

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