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

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

.ttwv-section-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #172026;
  font-family: inherit;
}

.ttwv-section-wrap .ttwv-band {
  width: 100% !important;
  position: relative;
}

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

.ttwv-section-wrap .ttwv-band-tint {
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 242, 234, 0.14), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(255, 0, 80, 0.10), transparent 28%),
    #f7fbfb;
}

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

.ttwv-section-wrap h2,
.ttwv-section-wrap h3,
.ttwv-section-wrap p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.ttwv-section-wrap h2 {
  color: #11171b;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 14px;
}

.ttwv-section-wrap .ttwv-intro {
  color: #516068;
  line-height: 1.68;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 760px;
}

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

.ttwv-section-wrap .ttwv-card {
  height: 100% !important;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 40, 0.10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: 0 18px 45px rgba(16, 29, 34, 0.08);
  text-align: center !important;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background-position 320ms ease;
}

.ttwv-section-wrap .ttwv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.10), transparent 42%, rgba(255, 0, 80, 0.08));
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.ttwv-section-wrap .ttwv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 184, 177, 0.34);
  box-shadow: 0 26px 62px rgba(0, 184, 177, 0.13), 0 12px 34px rgba(255, 0, 80, 0.08);
}

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

.ttwv-section-wrap .ttwv-card:hover .ttwv-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 34px rgba(0, 184, 177, 0.22);
}

.ttwv-section-wrap .ttwv-card:hover .ttwv-i {
  transform: translateY(-1px);
}

.ttwv-section-wrap .ttwv-icon {
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  background: linear-gradient(135deg, #00b8b1 0%, #11171b 52%, #ff0050 100%);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 184, 177, 0.18);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.ttwv-section-wrap .ttwv-i {
  display: block;
  color: #ffffff;
  line-height: 1;
  transition: transform 320ms ease;
}

.ttwv-section-wrap .ttwv-card h3 {
  position: relative;
  color: #141f24;
  font-weight: 760;
  line-height: 1.24;
  letter-spacing: 0;
  margin-top: 0;
}

.ttwv-section-wrap .ttwv-card p {
  position: relative;
  color: #5b6870;
  line-height: 1.62;
  margin-top: 0;
  margin-bottom: 0;
}

.ttwv-section-wrap .ttwv-reveal {
  opacity: 1;
  transform: translateY(0);
}

.ttwv-section-wrap.ttwv-js-ready .ttwv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ttwv-section-wrap.ttwv-js-ready .ttwv-reveal.ttwv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

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

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

  .ttwv-section-wrap h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  .ttwv-section-wrap .ttwv-intro {
    font-size: 17px;
  }

  .ttwv-section-wrap .ttwv-grid {
    gap: 24px;
    margin-top: 42px;
  }

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

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

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

  .ttwv-section-wrap .ttwv-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }

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

  .ttwv-section-wrap .ttwv-card h3 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .ttwv-section-wrap .ttwv-card p {
    font-size: 15px;
  }
}

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

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

  .ttwv-section-wrap h2 {
    font-size: 34px;
  }

  .ttwv-section-wrap .ttwv-intro {
    font-size: 16px;
  }

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

  .ttwv-section-wrap .ttwv-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .ttwv-section-wrap .ttwv-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

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

  .ttwv-section-wrap .ttwv-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .ttwv-section-wrap .ttwv-card p {
    font-size: 14.5px;
  }
}

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

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

  .ttwv-section-wrap h2 {
    font-size: 28px;
  }

  .ttwv-section-wrap .ttwv-intro {
    font-size: 14.5px;
    line-height: 1.58;
  }

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

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

  .ttwv-section-wrap .ttwv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 17px;
  }

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

  .ttwv-section-wrap .ttwv-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .ttwv-section-wrap .ttwv-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

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

  .ttwv-section-wrap h2 {
    font-size: 25px;
  }

  .ttwv-section-wrap .ttwv-intro {
    font-size: 13.5px;
    line-height: 1.52;
  }

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

  .ttwv-section-wrap .ttwv-card {
    min-height: 226px;
    padding: 19px 11px 18px;
    border-radius: 16px;
  }

  .ttwv-section-wrap .ttwv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

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

  .ttwv-section-wrap .ttwv-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .ttwv-section-wrap .ttwv-card p {
    font-size: 12.4px;
    line-height: 1.46;
  }
}

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

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

  .ttwv-section-wrap h2 {
    font-size: 22px;
  }

  .ttwv-section-wrap .ttwv-intro {
    font-size: 13px;
    line-height: 1.48;
  }

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

  .ttwv-section-wrap .ttwv-card {
    min-height: 218px;
    padding: 17px 9px 16px;
    border-radius: 15px;
  }

  .ttwv-section-wrap .ttwv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 15px;
  }

  .ttwv-section-wrap .ttwv-i {
    font-size: 18px;
  }

  .ttwv-section-wrap .ttwv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .ttwv-section-wrap .ttwv-card p {
    font-size: 11.8px;
    line-height: 1.42;
  }
}

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