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

.hsvg-content-wrap {
  --hsvg-bg: #fff7f1;
  --hsvg-ink: #251822;
  --hsvg-muted: #6f6470;
  --hsvg-line: rgba(120, 75, 110, 0.16);
  --hsvg-grad-a: #ef4c86;
  --hsvg-grad-b: #ff8b48;
  --hsvg-grad-c: #7c4dff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--hsvg-ink);
}

.hsvg-content-wrap *,
.hsvg-content-wrap *::before,
.hsvg-content-wrap *::after {
  box-sizing: border-box;
}

.hsvg-content-wrap .hsvg-section,
.hsvg-content-wrap .hsvg-container,
.hsvg-content-wrap .hsvg-card-grid {
  width: 100%;
  max-width: 100%;
}

.hsvg-content-wrap .hsvg-section {
  position: relative;
  padding: 92px 22px;
  overflow: hidden;
}

.hsvg-content-wrap .hsvg-section-white {
  background: #fff;
}

.hsvg-content-wrap .hsvg-section-warm {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 139, 72, 0.15), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(124, 77, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #fff7f1 0%, #fffaf6 100%);
}

.hsvg-content-wrap .hsvg-container {
  max-width: 1240px;
  margin: 0 auto;
}

.hsvg-content-wrap .hsvg-section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.hsvg-content-wrap .hsvg-section-head h2 span {
  background: linear-gradient(105deg, var(--hsvg-grad-a), var(--hsvg-grad-b) 54%, var(--hsvg-grad-c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hsvg-content-wrap .hsvg-section-head p {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--hsvg-muted);
  font-size: 1.03rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hsvg-content-wrap .hsvg-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.hsvg-content-wrap .hsvg-card {
  --fg-mx: 50%;
  --fg-my: 0%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --hsvg-accent: #ef4c86;
  --hsvg-accent-2: #ff8b48;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--hsvg-line);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), color-mix(in srgb, var(--hsvg-accent) 20%, transparent), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 246, 0.86));
  box-shadow: 0 16px 42px rgba(65, 40, 55, 0.08);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(18px);
  opacity: 0;
  transition: transform 420ms ease, opacity 420ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
  overflow: hidden;
}

.hsvg-content-wrap .hsvg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, color-mix(in srgb, var(--hsvg-accent) 13%, transparent), transparent 48%);
  opacity: 0.72;
  pointer-events: none;
}

.hsvg-content-wrap .hsvg-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hsvg-accent), var(--hsvg-accent-2));
  opacity: 0.72;
}

.hsvg-content-wrap .hsvg-card.is-visible {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(0);
}

.hsvg-content-wrap .hsvg-card:hover {
  border-color: color-mix(in srgb, var(--hsvg-accent) 42%, transparent);
  box-shadow: 0 24px 58px rgba(65, 40, 55, 0.14);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.hsvg-content-wrap .hsvg-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  border-radius: 18px;
  background: color-mix(in srgb, var(--hsvg-accent) 12%, #ffffff);
  color: var(--hsvg-accent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--hsvg-accent) 18%, transparent);
  transition: transform 280ms ease, background 280ms ease, color 280ms ease;
}

.hsvg-content-wrap .hsvg-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

.hsvg-content-wrap .hsvg-card:hover .hsvg-icon {
  transform: translateY(-3px) scale(1.06) rotate(-3deg);
  background: linear-gradient(135deg, var(--hsvg-accent), var(--hsvg-accent-2));
  color: #fff;
}

.hsvg-content-wrap .hsvg-card h3 {
  position: relative;
  margin: 22px 0 11px;
  padding-bottom: 12px;
  color: var(--hsvg-ink);
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 780;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hsvg-content-wrap .hsvg-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hsvg-accent), var(--hsvg-accent-2));
  transition: width 260ms ease;
}

.hsvg-content-wrap .hsvg-card:hover h3::after {
  width: 82px;
}

.hsvg-content-wrap .hsvg-card p {
  margin: 0;
  color: var(--hsvg-muted);
  font-size: 0.95rem;
  line-height: 1.66;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hsvg-content-wrap .hsvg-cta {
  display: inline-block;
  max-width: 100%;
  margin-top: 18px;
  color: var(--hsvg-accent);
  font-size: 0.9rem;
  font-weight: 760;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hsvg-content-wrap .hsvg-card:hover .hsvg-cta {
  opacity: 1;
  transform: translateY(0);
}

.hsvg-content-wrap .hsvg-process-card {
  min-height: 270px;
  padding-top: 30px;
}

.hsvg-content-wrap .hsvg-process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 8px;
  z-index: -1;
  font-size: 5.6rem;
  line-height: 1;
  font-weight: 900;
  color: color-mix(in srgb, var(--hsvg-accent) 10%, transparent);
  transition: transform 300ms ease, color 300ms ease;
  pointer-events: none;
}

.hsvg-content-wrap .hsvg-step-num {
  margin-bottom: 14px;
  color: var(--hsvg-accent);
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.hsvg-content-wrap .hsvg-process-card:hover::before {
  transform: translateY(-4px) scale(1.05);
  color: color-mix(in srgb, var(--hsvg-accent) 16%, transparent);
}

.hsvg-content-wrap .hsvg-card:nth-child(1) { --hsvg-accent: #ef4c86; --hsvg-accent-2: #ff8b48; }
.hsvg-content-wrap .hsvg-card:nth-child(2) { --hsvg-accent: #7c4dff; --hsvg-accent-2: #ef4c86; }
.hsvg-content-wrap .hsvg-card:nth-child(3) { --hsvg-accent: #0ea5a4; --hsvg-accent-2: #38bdf8; }
.hsvg-content-wrap .hsvg-card:nth-child(4) { --hsvg-accent: #f59e0b; --hsvg-accent-2: #ef4444; }
.hsvg-content-wrap .hsvg-card:nth-child(5) { --hsvg-accent: #2563eb; --hsvg-accent-2: #a855f7; }
.hsvg-content-wrap .hsvg-card:nth-child(6) { --hsvg-accent: #10b981; --hsvg-accent-2: #84cc16; }
.hsvg-content-wrap .hsvg-card:nth-child(7) { --hsvg-accent: #db2777; --hsvg-accent-2: #9333ea; }
.hsvg-content-wrap .hsvg-card:nth-child(8) { --hsvg-accent: #ea580c; --hsvg-accent-2: #e11d48; }

@media (min-width: 1200px) {
  .hsvg-content-wrap .hsvg-section { padding: 96px 28px; }
  .hsvg-content-wrap .hsvg-container { max-width: 1240px; }
  .hsvg-content-wrap .hsvg-card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .hsvg-content-wrap .hsvg-section { padding: 82px 24px; }
  .hsvg-content-wrap .hsvg-container { max-width: 1060px; }
  .hsvg-content-wrap .hsvg-section-head p { font-size: 1rem; }
  .hsvg-content-wrap .hsvg-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
  .hsvg-content-wrap .hsvg-card { padding: 24px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hsvg-content-wrap .hsvg-section { padding: 68px 20px; }
  .hsvg-content-wrap .hsvg-section-head { margin-bottom: 34px; }
  .hsvg-content-wrap .hsvg-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .hsvg-content-wrap .hsvg-card { padding: 23px; min-height: 235px; }
  .hsvg-content-wrap .hsvg-card h3 { font-size: 1.02rem; }
  .hsvg-content-wrap .hsvg-card p { font-size: 0.93rem; }
}

@media (min-width: 430px) and (max-width: 767px) {
  .hsvg-content-wrap .hsvg-section { padding: 54px 16px; }
  .hsvg-content-wrap .hsvg-section-head { margin-bottom: 28px; }
  .hsvg-content-wrap .hsvg-section-head p { font-size: 0.95rem; line-height: 1.62; }
  .hsvg-content-wrap .hsvg-card-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .hsvg-content-wrap .hsvg-card { padding: 22px; min-height: auto; }
  .hsvg-content-wrap .hsvg-cta { white-space: normal; }
}

@media (min-width: 375px) and (max-width: 429px) {
  .hsvg-content-wrap .hsvg-section { padding: 46px 14px; }
  .hsvg-content-wrap .hsvg-section-head { margin-bottom: 24px; }
  .hsvg-content-wrap .hsvg-section-head p { font-size: 0.91rem; }
  .hsvg-content-wrap .hsvg-card-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .hsvg-content-wrap .hsvg-card { padding: 19px; border-radius: 18px; min-height: auto; }
  .hsvg-content-wrap .hsvg-icon { width: 48px; height: 48px; border-radius: 15px; }
  .hsvg-content-wrap .hsvg-card h3 { font-size: 0.98rem; }
  .hsvg-content-wrap .hsvg-card p { font-size: 0.9rem; }
  .hsvg-content-wrap .hsvg-process-card::before { font-size: 4.6rem; }
}

@media (min-width: 320px) and (max-width: 374px) {
  .hsvg-content-wrap .hsvg-section { padding: 40px 12px; }
  .hsvg-content-wrap .hsvg-section-head { margin-bottom: 22px; }
  .hsvg-content-wrap .hsvg-section-head p { font-size: 0.88rem; line-height: 1.58; }
  .hsvg-content-wrap .hsvg-card-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .hsvg-content-wrap .hsvg-card { padding: 17px; border-radius: 16px; min-height: auto; }
  .hsvg-content-wrap .hsvg-icon { width: 44px; height: 44px; border-radius: 14px; }
  .hsvg-content-wrap .hsvg-icon i { font-size: 1.05rem; }
  .hsvg-content-wrap .hsvg-card h3 { margin-top: 18px; font-size: 0.94rem; }
  .hsvg-content-wrap .hsvg-card p,
  .hsvg-content-wrap .hsvg-cta { font-size: 0.86rem; }
  .hsvg-content-wrap .hsvg-process-card::before { font-size: 4rem; right: 12px; }
}

@media (max-width: 319px) {
  .hsvg-content-wrap .hsvg-card-grid { grid-template-columns: 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  .hsvg-content-wrap .hsvg-card,
  .hsvg-content-wrap .hsvg-icon,
  .hsvg-content-wrap .hsvg-card h3::after,
  .hsvg-content-wrap .hsvg-cta,
  .hsvg-content-wrap .hsvg-process-card::before {
    transition: none !important;
    animation: none !important;
  }

  .hsvg-content-wrap .hsvg-card,
  .hsvg-content-wrap .hsvg-card.is-visible,
  .hsvg-content-wrap .hsvg-card:hover {
    transform: none !important;
  }
}