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

.scv-premium-editorial,
.scv-premium-editorial * {
  box-sizing: border-box;
}

.scv-premium-editorial {
  --scv-ink: #172033;
  --scv-muted: #667085;
  --scv-line: rgba(23, 32, 51, 0.1);
  --scv-soft: #fff7ed;
  --scv-grad: linear-gradient(135deg, #ffb703 0%, #ff5f6d 44%, #7c3aed 100%);
  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(--scv-ink);
}

.scv-premium-editorial .scv-section,
.scv-premium-editorial .scv-container,
.scv-premium-editorial .scv-card-grid {
  width: 100%;
  max-width: 100%;
}

.scv-premium-editorial .scv-section {
  position: relative;
  overflow: hidden;
}

.scv-premium-editorial .scv-section-white {
  background: #fff;
}

.scv-premium-editorial .scv-section-warm {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 183, 3, 0.2), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(124, 58, 237, 0.12), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, #fffaf6 100%);
}

.scv-premium-editorial .scv-container {
  margin: 0 auto;
}

.scv-premium-editorial .scv-heading-wrap {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}

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

.scv-premium-editorial h2 span {
  background: var(--scv-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scv-premium-editorial .scv-heading-wrap p {
  margin: 14px auto 0;
  color: var(--scv-muted);
  line-height: 1.7;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.scv-premium-editorial .scv-card-grid {
  display: grid;
  padding: 0;
  margin: 0;
}

.scv-premium-editorial .scv-card {
  --fg-mx: 50%;
  --fg-my: 50%;
  --fg-tilt-x: 0deg;
  --fg-tilt-y: 0deg;
  --scv-a: #ffb703;
  --scv-b: #ff5f6d;
  --scv-c: rgba(255, 183, 3, 0.12);
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--scv-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.95), transparent 0 24%, transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 246, 0.9));
  box-shadow: 0 16px 42px rgba(23, 32, 51, 0.075);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(20px);
  opacity: 0;
  transition: transform 360ms ease, opacity 520ms ease, box-shadow 360ms ease, border-color 360ms ease, background 360ms ease;
}

.scv-premium-editorial .scv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, var(--scv-c), transparent 48%),
    radial-gradient(circle at var(--fg-mx) var(--fg-my), rgba(255, 255, 255, 0.7), transparent 28%);
  opacity: 0.78;
  pointer-events: none;
}

.scv-premium-editorial .scv-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--scv-a), var(--scv-b));
  opacity: 0.72;
}

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

.scv-premium-editorial .scv-card:hover {
  border-color: color-mix(in srgb, var(--scv-a) 42%, rgba(23, 32, 51, 0.14));
  box-shadow: 0 24px 58px rgba(23, 32, 51, 0.13);
  transform: perspective(900px) rotateX(var(--fg-tilt-x)) rotateY(var(--fg-tilt-y)) translateY(-7px);
}

.scv-premium-editorial .scv-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  max-width: 100%;
  border-radius: 18px;
  color: var(--scv-a);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--scv-c));
  border: 1px solid rgba(23, 32, 51, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(23, 32, 51, 0.07);
  transition: transform 320ms ease, color 320ms ease, background 320ms ease;
}

.scv-premium-editorial .scv-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

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

.scv-premium-editorial h3 {
  position: relative;
  display: inline-block;
  margin: 22px 0 0;
  color: var(--scv-ink);
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 780;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.scv-premium-editorial h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 34%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--scv-a), var(--scv-b));
  transition: width 320ms ease;
}

.scv-premium-editorial .scv-card:hover h3::after {
  width: 100%;
}

.scv-premium-editorial .scv-card p {
  margin: 17px 0 0;
  color: var(--scv-muted);
  font-size: 0.95rem;
  line-height: 1.68;
  font-weight: 480;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.scv-premium-editorial .scv-cta {
  display: inline-flex;
  max-width: 100%;
  margin-top: 20px;
  color: var(--scv-b);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 760;
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease, color 300ms ease;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.scv-premium-editorial .scv-card:hover .scv-cta {
  opacity: 1;
  transform: translateY(0);
  color: var(--scv-a);
}

.scv-premium-editorial .scv-process::before {
  content: var(--scv-step);
  position: absolute;
  right: 16px;
  bottom: -16px;
  z-index: -1;
  color: rgba(23, 32, 51, 0.045);
  font-size: 6.4rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 340ms ease, color 340ms ease;
  pointer-events: none;
}

.scv-premium-editorial .scv-process:hover::before {
  color: color-mix(in srgb, var(--scv-a) 13%, transparent);
  transform: translateY(-8px) scale(1.04);
}

.scv-premium-editorial .scv-step-text {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--scv-a);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.scv-premium-editorial .scv-card:nth-child(1) { --scv-a: #ffb703; --scv-b: #fb5607; --scv-c: rgba(255, 183, 3, 0.13); }
.scv-premium-editorial .scv-card:nth-child(2) { --scv-a: #ff5f6d; --scv-b: #7c3aed; --scv-c: rgba(255, 95, 109, 0.12); }
.scv-premium-editorial .scv-card:nth-child(3) { --scv-a: #06b6d4; --scv-b: #3b82f6; --scv-c: rgba(6, 182, 212, 0.12); }
.scv-premium-editorial .scv-card:nth-child(4) { --scv-a: #10b981; --scv-b: #14b8a6; --scv-c: rgba(16, 185, 129, 0.12); }
.scv-premium-editorial .scv-card:nth-child(5) { --scv-a: #f97316; --scv-b: #ec4899; --scv-c: rgba(249, 115, 22, 0.12); }
.scv-premium-editorial .scv-card:nth-child(6) { --scv-a: #8b5cf6; --scv-b: #06b6d4; --scv-c: rgba(139, 92, 246, 0.12); }
.scv-premium-editorial .scv-card:nth-child(7) { --scv-a: #22c55e; --scv-b: #84cc16; --scv-c: rgba(34, 197, 94, 0.12); }
.scv-premium-editorial .scv-card:nth-child(8) { --scv-a: #ef4444; --scv-b: #f59e0b; --scv-c: rgba(239, 68, 68, 0.12); }

@media (min-width: 1200px) {
  .scv-premium-editorial .scv-section { padding: 96px 32px; }
  .scv-premium-editorial .scv-container { max-width: 1240px; }
  .scv-premium-editorial .scv-heading-wrap p { font-size: 1.05rem; }
  .scv-premium-editorial .scv-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 46px;
  }
  .scv-premium-editorial .scv-card { padding: 28px; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .scv-premium-editorial .scv-section { padding: 84px 26px; }
  .scv-premium-editorial .scv-container { max-width: 1060px; }
  .scv-premium-editorial .scv-heading-wrap p { font-size: 1rem; }
  .scv-premium-editorial .scv-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
  }
  .scv-premium-editorial .scv-card { padding: 26px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .scv-premium-editorial .scv-section { padding: 72px 22px; }
  .scv-premium-editorial .scv-container { max-width: 820px; }
  .scv-premium-editorial .scv-heading-wrap p { font-size: 0.98rem; }
  .scv-premium-editorial .scv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
  }
  .scv-premium-editorial .scv-card { padding: 24px; }
  .scv-premium-editorial h3 { font-size: 1rem; }
  .scv-premium-editorial .scv-card p { font-size: 0.93rem; }
}

@media (min-width: 430px) and (max-width: 767px) {
  .scv-premium-editorial .scv-section { padding: 58px 18px; }
  .scv-premium-editorial .scv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
    margin-top: 30px;
  }
  .scv-premium-editorial .scv-heading-wrap p { font-size: 0.94rem; }
  .scv-premium-editorial .scv-card { padding: 22px; border-radius: 21px; }
}

@media (min-width: 375px) and (max-width: 429px) {
  .scv-premium-editorial .scv-section { padding: 50px 15px; }
  .scv-premium-editorial .scv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    margin-top: 28px;
  }
  .scv-premium-editorial .scv-heading-wrap p { font-size: 0.9rem; }
  .scv-premium-editorial .scv-card { padding: 20px; border-radius: 20px; }
  .scv-premium-editorial .scv-icon { width: 48px; height: 48px; border-radius: 16px; }
  .scv-premium-editorial .scv-icon i { font-size: 1.08rem; }
}

@media (min-width: 320px) and (max-width: 374px) {
  .scv-premium-editorial .scv-section { padding: 44px 12px; }
  .scv-premium-editorial .scv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin-top: 24px;
  }
  .scv-premium-editorial .scv-heading-wrap p { font-size: 0.86rem; line-height: 1.58; }
  .scv-premium-editorial .scv-card { padding: 18px; border-radius: 18px; }
  .scv-premium-editorial .scv-icon { width: 44px; height: 44px; border-radius: 15px; }
  .scv-premium-editorial .scv-icon i { font-size: 1rem; }
  .scv-premium-editorial h3 { font-size: 0.96rem; }
  .scv-premium-editorial .scv-card p,
  .scv-premium-editorial .scv-cta { font-size: 0.86rem; }
  .scv-premium-editorial .scv-process::before { font-size: 5rem; }
}

@media (max-width: 319px) {
  .scv-premium-editorial .scv-section { padding: 40px 10px; }
  .scv-premium-editorial .scv-card-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 22px;
  }
  .scv-premium-editorial .scv-card { padding: 16px; }
}

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

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