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

.schv-wrapper,
.schv-wrapper * {
  box-sizing: border-box !important;
  min-width: 0;
}

.schv-wrapper {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  --schv-primary: #ffdd2d;
  --schv-secondary: #00b7c7;
  --schv-accent: #ff5f7e;
  --schv-soft: #fffbea;
  --schv-text: #18202a;
  --schv-muted: #66717f;
  --schv-border: rgba(24, 32, 42, 0.12);
  --schv-shadow: rgba(255, 221, 45, 0.24);
  font-family: inherit;
}

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

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

.schv-section-two {
  background: linear-gradient(180deg, #fffbea 0%, #f5feff 100%);
}

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

.schv-heading {
  margin: 0 auto;
  color: var(--schv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.schv-intro {
  margin: 0 auto;
  color: var(--schv-muted);
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

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

.schv-card {
  position: relative;
  display: block;
  height: 100% !important;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--schv-border);
  box-shadow: 0 18px 45px rgba(24, 32, 42, 0.07);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
  overflow: hidden;
}

.schv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 221, 45, 0.18), transparent 46%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.schv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 183, 199, 0.34);
  box-shadow: 0 24px 58px var(--schv-shadow), 0 10px 25px rgba(24, 32, 42, 0.08);
  background: #ffffff;
}

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

.schv-card:hover .schv-icon {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 183, 199, 0.18);
}

.schv-card:hover .schv-i {
  transform: scale(1.08);
  color: var(--schv-accent);
}

.schv-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 221, 45, 0.24), rgba(0, 183, 199, 0.18));
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.schv-i {
  color: var(--schv-text);
  line-height: 1;
  transition: transform 280ms ease, color 280ms ease;
}

.schv-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--schv-text);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  text-align: center;
}

.schv-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: var(--schv-muted);
  font-weight: 500;
  line-height: 1.58;
  text-align: center;
}

.schv-reveal {
  opacity: 1;
  transform: translateY(0);
}

.schv-wrapper.schv-js .schv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.schv-wrapper.schv-js .schv-reveal.schv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

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

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

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

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

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

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

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

  .schv-card {
    min-height: 292px;
    padding: 34px 26px 30px;
    border-radius: 22px;
  }

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

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

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

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

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

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

  .schv-heading {
    max-width: 760px;
    font-size: 34px;
  }

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

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

  .schv-card {
    min-height: 264px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .schv-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

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

  .schv-card-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

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

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

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

  .schv-heading {
    max-width: 520px;
    font-size: 27px;
  }

  .schv-intro {
    max-width: 520px;
    margin-top: 12px;
    font-size: 14px;
  }

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

  .schv-card {
    min-height: 228px;
    padding: 22px 14px 20px;
    border-radius: 16px;
  }

  .schv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

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

  .schv-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .schv-card-text {
    font-size: 12.8px;
    line-height: 1.5;
  }
}

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

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

  .schv-heading {
    max-width: 360px;
    font-size: 24px;
  }

  .schv-intro {
    max-width: 360px;
    margin-top: 10px;
    font-size: 13.4px;
    line-height: 1.55;
  }

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

  .schv-card {
    min-height: 222px;
    padding: 20px 11px 18px;
    border-radius: 15px;
  }

  .schv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 13px;
  }

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

  .schv-card-title {
    font-size: 14.8px;
    margin-bottom: 7px;
  }

  .schv-card-text {
    font-size: 12.2px;
    line-height: 1.46;
  }
}

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

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

  .schv-heading {
    max-width: 310px;
    font-size: 21px;
  }

  .schv-intro {
    max-width: 310px;
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .schv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

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

  .schv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 11px;
  }

  .schv-i {
    font-size: 17px;
  }

  .schv-card-title {
    font-size: 13.4px;
    margin-bottom: 6px;
  }

  .schv-card-text {
    font-size: 11.4px;
    line-height: 1.42;
  }
}