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

.tsv-premium-section,
.tsv-premium-section * {
  box-sizing: border-box;
  min-width: 0;
}

.tsv-premium-section {
  width: 100% !important;
  overflow: hidden;
  color: #172026;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

.tsv-premium-section .tsv-band {
  width: 100% !important;
  overflow: hidden;
}

.tsv-premium-section .tsv-band-white {
  background: #ffffff;
}

.tsv-premium-section .tsv-band-tint {
  background:
    radial-gradient(circle at 18% 8%, rgba(37, 244, 238, 0.16), transparent 34%),
    radial-gradient(circle at 84% 26%, rgba(254, 44, 85, 0.11), transparent 32%),
    #f7fbfb;
}

.tsv-premium-section .tsv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
}

.tsv-premium-section h2 {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
  color: #101719;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.tsv-premium-section .tsv-intro {
  margin: 16px auto 0;
  max-width: 760px;
  text-align: center;
  color: #536066;
  font-weight: 450;
  line-height: 1.65;
}

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

.tsv-premium-section .tsv-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,1)),
    #ffffff;
  border: 1px solid rgba(15, 31, 35, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(10, 25, 28, 0.08);
  overflow: hidden;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background-position 420ms ease;
  background-size: 100% 100%, 180% 180%;
}

.tsv-premium-section .tsv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(37, 244, 238, 0.11), transparent 36%, rgba(254, 44, 85, 0.09));
  opacity: 0;
  transition: opacity 260ms ease;
}

.tsv-premium-section .tsv-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(254, 44, 85, 0.34);
  box-shadow:
    0 22px 60px rgba(15, 31, 35, 0.12),
    0 0 0 4px rgba(37, 244, 238, 0.08);
}

.tsv-premium-section .tsv-card:hover::before {
  opacity: 1;
}

.tsv-premium-section .tsv-card:hover .tsv-icon {
  transform: translateY(-4px);
  box-shadow:
    0 18px 36px rgba(254, 44, 85, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.64);
}

.tsv-premium-section .tsv-card:hover .tsv-i {
  transform: scale(1.08);
}

.tsv-premium-section .tsv-card.tsv-card-tint {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.98)),
    #ffffff;
  border-color: rgba(37, 244, 238, 0.18);
}

.tsv-premium-section .tsv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 20px;
  background:
    linear-gradient(135deg, #101719 0%, #173237 42%, #fe2c55 100%);
  color: #ffffff;
  box-shadow:
    0 16px 32px rgba(16, 23, 25, 0.16),
    inset 0 0 0 1px rgba(255,255,255,0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.tsv-premium-section .tsv-i {
  display: block;
  color: #ffffff;
  line-height: 1;
  transition: transform 260ms ease;
}

.tsv-premium-section h3 {
  margin: 0;
  text-align: center;
  color: #141c20;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.tsv-premium-section .tsv-card p {
  margin: 0 auto;
  text-align: center;
  color: #5b666b;
  font-weight: 430;
  line-height: 1.58;
}

.tsv-premium-section [data-tsv-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.tsv-premium-section .tsv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

  .tsv-premium-section h2 {
    font-size: 44px;
    white-space: nowrap;
  }

  .tsv-premium-section .tsv-intro {
    font-size: 18px;
    margin-bottom: 42px;
  }

  .tsv-premium-section .tsv-grid {
    gap: 24px;
  }

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

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

  .tsv-premium-section .tsv-card {
    min-height: 300px;
    padding: 34px 26px 30px;
  }

  .tsv-premium-section .tsv-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
  }

  .tsv-premium-section .tsv-i {
    font-size: 31px;
  }

  .tsv-premium-section h3 {
    font-size: 21px;
    margin-bottom: 13px;
  }

  .tsv-premium-section .tsv-card p {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tsv-premium-section .tsv-band {
    padding: 76px 0;
  }

  .tsv-premium-section .tsv-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .tsv-premium-section h2 {
    font-size: 36px;
  }

  .tsv-premium-section .tsv-intro {
    font-size: 16.5px;
    margin-bottom: 34px;
  }

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

  .tsv-premium-section .tsv-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .tsv-premium-section .tsv-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 21px;
  }

  .tsv-premium-section .tsv-i {
    font-size: 28px;
  }

  .tsv-premium-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .tsv-premium-section .tsv-card p {
    font-size: 15px;
  }
}

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

  .tsv-premium-section .tsv-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tsv-premium-section h2 {
    font-size: 29px;
    line-height: 1.18;
  }

  .tsv-premium-section .tsv-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-top: 12px;
    margin-bottom: 24px;
  }

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

  .tsv-premium-section .tsv-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .tsv-premium-section .tsv-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .tsv-premium-section .tsv-i {
    font-size: 23px;
  }

  .tsv-premium-section h3 {
    font-size: 16.5px;
    margin-bottom: 9px;
  }

  .tsv-premium-section .tsv-card p {
    font-size: 13.2px;
    line-height: 1.48;
  }
}

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

  .tsv-premium-section .tsv-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .tsv-premium-section h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  .tsv-premium-section .tsv-intro {
    font-size: 13.8px;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 20px;
  }

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

  .tsv-premium-section .tsv-card {
    min-height: 222px;
    padding: 18px 11px 17px;
    border-radius: 15px;
  }

  .tsv-premium-section .tsv-icon {
    width: 49px;
    height: 49px;
    margin-bottom: 13px;
    border-radius: 14px;
  }

  .tsv-premium-section .tsv-i {
    font-size: 20px;
  }

  .tsv-premium-section h3 {
    font-size: 15.2px;
    margin-bottom: 8px;
  }

  .tsv-premium-section .tsv-card p {
    font-size: 12.5px;
    line-height: 1.44;
  }
}

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

  .tsv-premium-section .tsv-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .tsv-premium-section h2 {
    font-size: 23px;
    line-height: 1.18;
  }

  .tsv-premium-section .tsv-intro {
    font-size: 13px;
    line-height: 1.46;
    margin-top: 9px;
    margin-bottom: 18px;
  }

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

  .tsv-premium-section .tsv-card {
    min-height: 214px;
    padding: 16px 8px 15px;
    border-radius: 13px;
  }

  .tsv-premium-section .tsv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 11px;
    border-radius: 13px;
  }

  .tsv-premium-section .tsv-i {
    font-size: 18px;
  }

  .tsv-premium-section h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .tsv-premium-section .tsv-card p {
    font-size: 11.8px;
    line-height: 1.38;
  }
}