@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.5.2/css/all.min.css");

.schv-premium-block,
.schv-premium-block * {
  box-sizing: border-box;
}

.schv-premium-block {
  --schv-ink: #191724;
  --schv-muted: #655f73;
  --schv-soft: #fff7ef;
  --schv-line: rgba(107, 76, 55, 0.14);
  --schv-grad-a: #ff7a59;
  --schv-grad-b: #b455ff;
  --schv-grad-c: #2aa7a1;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--schv-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.schv-premium-block .schv-premium-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.schv-premium-block .schv-premium-section-white {
  background: #fff;
}

.schv-premium-block .schv-premium-section-warm {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 122, 89, 0.16), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(42, 167, 161, 0.14), transparent 26%),
    linear-gradient(180deg, #fff8f2 0%, #fffdf9 52%, #f8fffd 100%);
}

.schv-premium-block .schv-premium-container {
  width: min(1240px, calc(100% - 48px));
  max-width: 100%;
  margin: 0 auto;
  padding: 92px 0;
}

.schv-premium-block .schv-premium-heading-wrap {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.schv-premium-block .schv-premium-heading-wrap h2 {
  margin: 0;
  color: var(--schv-ink);
  font-size: clamp(1.2rem, 4vw, 2.2rem) !important;
  line-height: 1.14;
  font-weight: 820;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.schv-premium-block .schv-premium-heading-wrap h2 span {
  display: inline;
  background: linear-gradient(135deg, var(--schv-grad-a), var(--schv-grad-b) 48%, var(--schv-grad-c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.schv-premium-block .schv-premium-heading-wrap p {
  margin: 14px auto 0;
  max-width: 660px;
  color: var(--schv-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.schv-premium-block .schv-premium-grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.schv-premium-block .schv-premium-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --schv-card-a: #ff7a59;
  --schv-card-b: #b455ff;
  --schv-card-c: #fff7ef;
  position: relative;
  isolation: isolate;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 254px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(31, 23, 36, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--schv-card-a) 16%, transparent), transparent 42%),
    linear-gradient(180deg, #fff, var(--schv-card-c));
  box-shadow: 0 16px 38px rgba(50, 35, 24, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.schv-premium-block .schv-premium-card.schv-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}

.schv-premium-block .schv-card-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--schv-card-a) 23%, transparent), transparent 34%),
    linear-gradient(135deg, color-mix(in srgb, var(--schv-card-b) 10%, transparent), transparent 52%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.schv-premium-block .schv-premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, color-mix(in srgb, var(--schv-card-a) 13%, transparent), color-mix(in srgb, var(--schv-card-b) 9%, transparent));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.schv-premium-block .schv-premium-card:hover {
  border-color: color-mix(in srgb, var(--schv-card-a) 34%, rgba(31, 23, 36, 0.12));
  box-shadow: 0 24px 58px rgba(45, 31, 24, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.schv-premium-block .schv-premium-card:hover .schv-card-glow,
.schv-premium-block .schv-premium-card:hover::before {
  opacity: 1;
}

.schv-premium-block .schv-icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  max-width: 100%;
  margin: 0 0 20px;
  border-radius: 16px;
  color: var(--schv-card-a);
  background: color-mix(in srgb, var(--schv-card-a) 11%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--schv-card-a) 16%, transparent);
  transition: transform 0.24s ease, color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.schv-premium-block .schv-icon-box i {
  font-size: 1.12rem;
  line-height: 1;
}

.schv-premium-block .schv-premium-card:hover .schv-icon-box {
  color: #fff;
  background: linear-gradient(135deg, var(--schv-card-a), var(--schv-card-b));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--schv-card-a) 26%, transparent);
  transform: translateY(-3px) scale(1.04) rotate(-2deg);
}

.schv-premium-block .schv-premium-card h3 {
  position: relative;
  margin: 0 0 12px;
  padding-bottom: 12px;
  color: var(--schv-ink);
  font-size: 1.06rem;
  line-height: 1.25;
  font-weight: 780;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.schv-premium-block .schv-premium-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--schv-card-a), var(--schv-card-b));
  transition: width 0.26s ease;
}

.schv-premium-block .schv-premium-card:hover h3::after {
  width: 78px;
}

.schv-premium-block .schv-premium-card p {
  margin: 0;
  color: var(--schv-muted);
  font-size: 0.95rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.schv-premium-block .schv-card-cta {
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  color: var(--schv-card-a);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease, color 0.24s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.schv-premium-block .schv-premium-card:hover .schv-card-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--schv-card-b);
}

.schv-premium-block .schv-tilt-card {
  transform-style: preserve-3d;
}

.schv-premium-block .schv-tilt-card .schv-icon-box,
.schv-premium-block .schv-tilt-card h3,
.schv-premium-block .schv-tilt-card p {
  transform: translateZ(18px);
}

.schv-premium-block .schv-process-card {
  padding-top: 68px;
}

.schv-premium-block .schv-step-number {
  position: absolute;
  top: 16px;
  right: 20px;
  max-width: calc(100% - 40px);
  color: color-mix(in srgb, var(--schv-card-a) 18%, transparent);
  font-size: 3.8rem;
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: color 0.24s ease, transform 0.24s ease;
  overflow: hidden;
}

.schv-premium-block .schv-process-card:hover .schv-step-number {
  color: color-mix(in srgb, var(--schv-card-a) 28%, transparent);
  transform: translateY(-4px) scale(1.04);
}

.schv-premium-block .schv-premium-card:nth-child(8n + 1) {
  --schv-card-a: #ff7a59;
  --schv-card-b: #b455ff;
  --schv-card-c: #fff7f1;
}

.schv-premium-block .schv-premium-card:nth-child(8n + 2) {
  --schv-card-a: #2aa7a1;
  --schv-card-b: #ff7a59;
  --schv-card-c: #f2fffc;
}

.schv-premium-block .schv-premium-card:nth-child(8n + 3) {
  --schv-card-a: #6d7cff;
  --schv-card-b: #2aa7a1;
  --schv-card-c: #f5f7ff;
}

.schv-premium-block .schv-premium-card:nth-child(8n + 4) {
  --schv-card-a: #e05f9f;
  --schv-card-b: #ff9f43;
  --schv-card-c: #fff4fa;
}

.schv-premium-block .schv-premium-card:nth-child(8n + 5) {
  --schv-card-a: #18a06d;
  --schv-card-b: #6d7cff;
  --schv-card-c: #f3fff9;
}

.schv-premium-block .schv-premium-card:nth-child(8n + 6) {
  --schv-card-a: #f2a33a;
  --schv-card-b: #ff6b6b;
  --schv-card-c: #fffaf0;
}

.schv-premium-block .schv-premium-card:nth-child(8n + 7) {
  --schv-card-a: #8a5cf6;
  --schv-card-b: #24b6b0;
  --schv-card-c: #faf7ff;
}

.schv-premium-block .schv-premium-card:nth-child(8n + 8) {
  --schv-card-a: #ef5675;
  --schv-card-b: #3aaed8;
  --schv-card-c: #fff5f7;
}

@media (min-width: 1200px) {
  .schv-premium-block .schv-premium-container {
    width: min(1240px, calc(100% - 56px));
    padding: 96px 0;
  }

  .schv-premium-block .schv-premium-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .schv-premium-block .schv-premium-heading-wrap {
    margin-bottom: 42px;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .schv-premium-block .schv-premium-container {
    width: min(1080px, calc(100% - 44px));
    padding: 82px 0;
  }

  .schv-premium-block .schv-premium-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .schv-premium-block .schv-premium-heading-wrap p {
    font-size: 1rem;
  }

  .schv-premium-block .schv-premium-card {
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .schv-premium-block .schv-premium-container {
    width: min(900px, calc(100% - 36px));
    padding: 68px 0;
  }

  .schv-premium-block .schv-premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .schv-premium-block .schv-premium-heading-wrap {
    margin-bottom: 32px;
  }

  .schv-premium-block .schv-premium-heading-wrap p {
    font-size: 0.98rem;
  }

  .schv-premium-block .schv-premium-card {
    min-height: 236px;
    padding: 22px;
  }

  .schv-premium-block .schv-premium-card h3 {
    font-size: 1.02rem;
  }

  .schv-premium-block .schv-premium-card p {
    font-size: 0.93rem;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .schv-premium-block .schv-premium-container {
    width: min(100%, calc(100% - 28px));
    padding: 54px 0;
  }

  .schv-premium-block .schv-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .schv-premium-block .schv-premium-heading-wrap {
    margin-bottom: 26px;
  }

  .schv-premium-block .schv-premium-heading-wrap p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .schv-premium-block .schv-premium-card {
    min-height: auto;
    padding: 21px;
    border-radius: 18px;
  }

  .schv-premium-block .schv-process-card {
    padding-top: 58px;
  }

  .schv-premium-block .schv-card-cta {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .schv-premium-block .schv-premium-container {
    width: min(100%, calc(100% - 24px));
    padding: 46px 0;
  }

  .schv-premium-block .schv-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .schv-premium-block .schv-premium-heading-wrap {
    margin-bottom: 22px;
  }

  .schv-premium-block .schv-premium-heading-wrap p {
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .schv-premium-block .schv-premium-card {
    min-height: auto;
    padding: 18px;
    border-radius: 17px;
  }

  .schv-premium-block .schv-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .schv-premium-block .schv-premium-card h3 {
    font-size: 0.98rem;
  }

  .schv-premium-block .schv-premium-card p,
  .schv-premium-block .schv-card-cta {
    font-size: 0.89rem;
  }

  .schv-premium-block .schv-process-card {
    padding-top: 54px;
  }

  .schv-premium-block .schv-step-number {
    top: 14px;
    right: 16px;
    font-size: 3.1rem;
  }

  .schv-premium-block .schv-card-cta {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .schv-premium-block .schv-premium-container {
    width: min(100%, calc(100% - 18px));
    padding: 38px 0;
  }

  .schv-premium-block .schv-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .schv-premium-block .schv-premium-heading-wrap {
    margin-bottom: 20px;
  }

  .schv-premium-block .schv-premium-heading-wrap p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .schv-premium-block .schv-premium-card {
    min-height: auto;
    padding: 16px;
    border-radius: 16px;
  }

  .schv-premium-block .schv-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    margin-bottom: 14px;
  }

  .schv-premium-block .schv-icon-box i {
    font-size: 1rem;
  }

  .schv-premium-block .schv-premium-card h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 0.94rem;
  }

  .schv-premium-block .schv-premium-card p,
  .schv-premium-block .schv-card-cta {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .schv-premium-block .schv-process-card {
    padding-top: 50px;
  }

  .schv-premium-block .schv-step-number {
    top: 13px;
    right: 14px;
    font-size: 2.75rem;
  }

  .schv-premium-block .schv-card-cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 319px) {
  .schv-premium-block .schv-premium-container {
    width: min(100%, calc(100% - 16px));
    padding: 34px 0;
  }

  .schv-premium-block .schv-premium-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .schv-premium-block .schv-premium-card {
    min-width: 0;
    max-width: 100%;
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .schv-premium-block .schv-premium-card,
  .schv-premium-block .schv-card-glow,
  .schv-premium-block .schv-icon-box,
  .schv-premium-block .schv-card-cta,
  .schv-premium-block .schv-step-number,
  .schv-premium-block .schv-premium-card h3::after {
    transition: none !important;
    animation: none !important;
  }

  .schv-premium-block .schv-premium-card,
  .schv-premium-block .schv-premium-card.schv-visible,
  .schv-premium-block .schv-premium-card:hover {
    opacity: 1;
    transform: none !important;
  }
}