@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-snap-highlight-viewer,
.schv-snap-highlight-viewer * {
  box-sizing: border-box;
  min-width: 0;
}

.schv-snap-highlight-viewer {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #18201f;
  font-family: inherit;
  --schv-primary: #00b890;
  --schv-secondary: #ffcf24;
  --schv-accent: #121816;
  --schv-tint: #f5fbf8;
  --schv-border: rgba(0, 184, 144, 0.18);
  --schv-shadow: rgba(4, 75, 61, 0.12);
  --schv-text: #18201f;
  --schv-muted: #5e6b68;
}

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

.schv-snap-highlight-viewer .schv-section-white {
  background: #ffffff !important;
}

.schv-snap-highlight-viewer .schv-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 207, 36, 0.18), transparent 34%),
    linear-gradient(180deg, #f6fbf8 0%, #eef9f5 100%);
}

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

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

.schv-snap-highlight-viewer .schv-intro {
  margin: 0 auto;
  color: var(--schv-muted);
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
  max-width: 760px;
}

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

.schv-snap-highlight-viewer .schv-card {
  position: relative;
  height: 100% !important;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92)),
    radial-gradient(circle at 50% 0%, rgba(0,184,144,0.10), transparent 48%);
  border: 1px solid var(--schv-border);
  box-shadow: 0 18px 44px var(--schv-shadow);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background-position 320ms ease;
}

.schv-snap-highlight-viewer .schv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,184,144,0.10), rgba(255,207,36,0.12), transparent 58%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.schv-snap-highlight-viewer .schv-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 184, 144, 0.38);
  box-shadow: 0 24px 56px rgba(4, 75, 61, 0.18);
}

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

.schv-snap-highlight-viewer .schv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--schv-primary), var(--schv-secondary));
  color: var(--schv-accent);
  box-shadow: 0 14px 30px rgba(0, 184, 144, 0.22);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.schv-snap-highlight-viewer .schv-card:hover .schv-icon {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(255, 207, 36, 0.25);
}

.schv-snap-highlight-viewer .schv-i {
  color: var(--schv-accent);
  line-height: 1;
  text-align: center;
}

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

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

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

.schv-snap-highlight-viewer .schv-reveal.schv-ready {
  opacity: 0;
  transform: translateY(18px);
}

.schv-snap-highlight-viewer .schv-reveal.schv-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  .schv-snap-highlight-viewer .schv-section {
    padding: 88px 24px;
  }

  .schv-snap-highlight-viewer .schv-container {
    padding: 0 18px;
  }

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

  .schv-snap-highlight-viewer .schv-intro {
    margin-top: 16px;
    font-size: 17px;
  }

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

  .schv-snap-highlight-viewer .schv-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .schv-snap-highlight-viewer .schv-grid-eight {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .schv-snap-highlight-viewer .schv-card {
    min-height: 292px;
    padding: 34px 24px 30px;
  }

  .schv-snap-highlight-viewer .schv-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }

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

  .schv-snap-highlight-viewer .schv-card h3 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .schv-snap-highlight-viewer .schv-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .schv-snap-highlight-viewer .schv-section {
    padding: 70px 22px;
  }

  .schv-snap-highlight-viewer .schv-container {
    padding: 0 14px;
  }

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

  .schv-snap-highlight-viewer .schv-intro {
    margin-top: 14px;
    font-size: 16px;
  }

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

  .schv-snap-highlight-viewer .schv-card {
    min-height: 268px;
    padding: 30px 22px 26px;
    border-radius: 20px;
  }

  .schv-snap-highlight-viewer .schv-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 21px;
  }

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

  .schv-snap-highlight-viewer .schv-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .schv-snap-highlight-viewer .schv-card p {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .schv-snap-highlight-viewer .schv-section {
    padding: 54px 16px;
  }

  .schv-snap-highlight-viewer .schv-container {
    padding: 0 6px;
  }

  .schv-snap-highlight-viewer .schv-heading {
    font-size: 28px;
    max-width: 430px;
  }

  .schv-snap-highlight-viewer .schv-intro {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.55;
  }

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

  .schv-snap-highlight-viewer .schv-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .schv-snap-highlight-viewer .schv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

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

  .schv-snap-highlight-viewer .schv-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .schv-snap-highlight-viewer .schv-card p {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .schv-snap-highlight-viewer .schv-section {
    padding: 48px 12px;
  }

  .schv-snap-highlight-viewer .schv-container {
    padding: 0 4px;
  }

  .schv-snap-highlight-viewer .schv-heading {
    font-size: 25px;
    max-width: 360px;
  }

  .schv-snap-highlight-viewer .schv-intro {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.5;
  }

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

  .schv-snap-highlight-viewer .schv-card {
    min-height: 222px;
    padding: 19px 11px 17px;
    border-radius: 16px;
  }

  .schv-snap-highlight-viewer .schv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

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

  .schv-snap-highlight-viewer .schv-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .schv-snap-highlight-viewer .schv-card p {
    font-size: 12.5px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .schv-snap-highlight-viewer .schv-section {
    padding: 42px 10px;
  }

  .schv-snap-highlight-viewer .schv-container {
    padding: 0 2px;
  }

  .schv-snap-highlight-viewer .schv-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .schv-snap-highlight-viewer .schv-intro {
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.45;
  }

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

  .schv-snap-highlight-viewer .schv-card {
    min-height: 214px;
    padding: 17px 9px 15px;
    border-radius: 14px;
  }

  .schv-snap-highlight-viewer .schv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

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

  .schv-snap-highlight-viewer .schv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .schv-snap-highlight-viewer .schv-card p {
    font-size: 11.8px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .schv-snap-highlight-viewer .schv-section {
    padding: 38px 10px;
  }

  .schv-snap-highlight-viewer .schv-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .schv-snap-highlight-viewer .schv-heading {
    font-size: 21px;
  }

  .schv-snap-highlight-viewer .schv-intro {
    margin-top: 9px;
    font-size: 12.5px;
  }

  .schv-snap-highlight-viewer .schv-card {
    min-height: 210px;
    padding: 18px 12px;
  }

  .schv-snap-highlight-viewer .schv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

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

  .schv-snap-highlight-viewer .schv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .schv-snap-highlight-viewer .schv-card p {
    font-size: 12px;
  }
}