@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-editorial-block,
.schv-editorial-block * {
  box-sizing: border-box;
}

.schv-editorial-block {
  --schv-ink: #1c1720;
  --schv-muted: #6f6573;
  --schv-line: rgba(88, 60, 111, 0.15);
  --schv-grad-a: #ffb347;
  --schv-grad-b: #ff5fa2;
  --schv-grad-c: #7c5cff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--schv-ink);
  background: #fff;
}

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

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

.schv-editorial-block .schv-section-warm {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 179, 71, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(124, 92, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #fff8f1 0%, #fff4f7 100%);
}

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

.schv-editorial-block .schv-section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.schv-editorial-block .schv-section-head h2 span {
  background: linear-gradient(120deg, var(--schv-grad-a), var(--schv-grad-b), var(--schv-grad-c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.schv-editorial-block .schv-section-head p {
  margin: 14px auto 0;
  color: var(--schv-muted);
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 720px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.schv-editorial-block .schv-card {
  --fg-mx: 50%;
  --fg-my: 20%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --schv-card-a: #ffb347;
  --schv-card-b: #ff5fa2;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 250px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--schv-line);
  border-radius: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.9));
  box-shadow: 0 16px 38px rgba(45, 31, 54, 0.08);
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.schv-editorial-block .schv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.66;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--schv-card-a) 18%, transparent), transparent 42%),
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--schv-card-b) 18%, transparent), transparent 30%);
  transition: opacity 240ms ease;
}

.schv-editorial-block .schv-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--schv-card-a), var(--schv-card-b));
  transform: scaleX(0.25);
  transform-origin: left;
  opacity: 0.58;
  transition: transform 240ms ease, opacity 240ms ease;
}

.schv-editorial-block .schv-card:nth-child(2) { --schv-card-a: #7c5cff; --schv-card-b: #41d6c3; }
.schv-editorial-block .schv-card:nth-child(3) { --schv-card-a: #ff6b6b; --schv-card-b: #ffd166; }
.schv-editorial-block .schv-card:nth-child(4) { --schv-card-a: #3a86ff; --schv-card-b: #ff5fa2; }
.schv-editorial-block .schv-card:nth-child(5) { --schv-card-a: #06d6a0; --schv-card-b: #7c5cff; }
.schv-editorial-block .schv-card:nth-child(6) { --schv-card-a: #f15bb5; --schv-card-b: #fee440; }
.schv-editorial-block .schv-card:nth-child(7) { --schv-card-a: #00bbf9; --schv-card-b: #ffb347; }
.schv-editorial-block .schv-card:nth-child(8) { --schv-card-a: #9b5de5; --schv-card-b: #00f5d4; }

.schv-editorial-block .schv-icon {
  width: 54px;
  height: 54px;
  max-width: 100%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--schv-card-b);
  background: color-mix(in srgb, var(--schv-card-a) 13%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--schv-card-a) 22%, transparent);
  transition: transform 240ms ease, background 240ms ease, color 240ms ease;
}

.schv-editorial-block .schv-icon i {
  font-size: 1.35rem;
  line-height: 1;
}

.schv-editorial-block .schv-card h3 {
  position: relative;
  display: inline;
  margin: 0;
  color: var(--schv-ink);
  font-size: 1.08rem;
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: 0;
  background-image: linear-gradient(90deg, var(--schv-card-a), var(--schv-card-b));
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 240ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.schv-editorial-block .schv-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: color-mix(in srgb, var(--schv-card-b) 72%, #1c1720);
  font-size: 0.9rem;
  font-weight: 760;
  opacity: 0.28;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.schv-editorial-block .schv-card:hover {
  border-color: color-mix(in srgb, var(--schv-card-b) 35%, var(--schv-line));
  box-shadow: 0 24px 58px rgba(45, 31, 54, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.schv-editorial-block .schv-card:hover::before {
  opacity: 0.92;
}

.schv-editorial-block .schv-card:hover::after {
  transform: scaleX(1);
  opacity: 0.9;
}

.schv-editorial-block .schv-card:hover .schv-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--schv-card-a), var(--schv-card-b));
  transform: translateY(-3px) rotate(-3deg);
}

.schv-editorial-block .schv-card:hover h3 {
  background-size: 100% 2px;
}

.schv-editorial-block .schv-card:hover .schv-cta {
  opacity: 1;
  transform: translateY(0);
}

.schv-editorial-block .schv-tilt-grid .schv-card:hover {
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-8px);
}

.schv-editorial-block .schv-process-card {
  min-height: 270px;
}

.schv-editorial-block .schv-step-number {
  position: absolute;
  right: 20px;
  top: 12px;
  max-width: 100%;
  color: color-mix(in srgb, var(--schv-card-b) 18%, transparent);
  font-size: 4.9rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
  transition: transform 240ms ease, color 240ms ease;
}

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

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

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

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

  .schv-editorial-block .schv-section-head p {
    font-size: 1rem;
  }

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

  .schv-editorial-block .schv-card {
    padding: 26px;
  }
}

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

  .schv-editorial-block .schv-section-head {
    margin-bottom: 34px;
  }

  .schv-editorial-block .schv-section-head p {
    font-size: 0.98rem;
  }

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

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

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

  .schv-editorial-block .schv-card p {
    font-size: 0.94rem;
  }
}

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

  .schv-editorial-block .schv-section-head {
    margin-bottom: 28px;
  }

  .schv-editorial-block .schv-section-head p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .schv-editorial-block .schv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .schv-editorial-block .schv-card {
    padding: 22px;
    min-height: auto;
  }

  .schv-editorial-block .schv-icon {
    width: 50px;
    height: 50px;
  }
}

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

  .schv-editorial-block .schv-section-head {
    margin-bottom: 24px;
  }

  .schv-editorial-block .schv-section-head p {
    font-size: 0.91rem;
    line-height: 1.58;
  }

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

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

  .schv-editorial-block .schv-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    margin-bottom: 18px;
  }

  .schv-editorial-block .schv-icon i {
    font-size: 1.15rem;
  }

  .schv-editorial-block .schv-step-number {
    font-size: 4rem;
    right: 16px;
  }
}

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

  .schv-editorial-block .schv-section-head {
    margin-bottom: 22px;
  }

  .schv-editorial-block .schv-section-head p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

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

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

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

  .schv-editorial-block .schv-card p,
  .schv-editorial-block .schv-cta {
    font-size: 0.86rem;
  }

  .schv-editorial-block .schv-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .schv-editorial-block .schv-step-number {
    font-size: 3.5rem;
    right: 14px;
    top: 10px;
  }
}

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