.op-hero {
  background:
    radial-gradient(circle at top right, rgba(107, 48, 221, 0.14), transparent 22%),
    linear-gradient(180deg, #eef7ff 0%, #f7fbff 52%, #ffffff 100%);
}

.op-hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background-size: cover;
  background-position: center;
}

.op-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(88, 28, 214, 0.82), rgba(88, 28, 214, 0.70)),
    linear-gradient(180deg, rgba(15,23,42,0.10), rgba(15,23,42,0.24));
}

.op-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.10), transparent 50%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.op-hero-banner-content {
  position: relative;
  z-index: 1;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.op-hero-banner-title {
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 28px rgba(15, 23, 42, 0.30);
}

.op-hero-banner-subtitle {
  margin-top: 1rem;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.op-hero-banner-breadcrumb {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}

.op-hero-banner-breadcrumb a {
  color: rgba(255,255,255,0.96);
  transition: opacity 0.2s ease;
}

.op-hero-banner-breadcrumb a:hover {
  opacity: 0.82;
}

.op-hero-banner-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.op-panel {
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.op-image-shell {
  position: relative;
}

.op-image-shell::before {
  content: "";
  position: absolute;
  inset: auto 8% -8% 8%;
  height: 18%;
  background: radial-gradient(circle, rgba(107, 48, 221, 0.16), transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

.op-stat-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.op-hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
  background-color: #dbeafe;
  background-size: cover;
  background-position: center;
}

.op-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(15,23,42,0.06), rgba(15,23,42,0.02));
}

@media (max-width: 1024px) {
  .op-hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .op-hero-banner,
  .op-hero-banner-content {
    min-height: 280px;
  }

  .op-hero-banner-title {
    font-size: 2.2rem;
  }

  .op-hero-visual {
    min-height: 320px;
    border-radius: 24px;
  }
}

.op-feature {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.op-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 48, 221, 0.22);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.09);
}

.op-gradient-text {
  background: linear-gradient(90deg, #0f172a 0%, #6b30dd 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.op-check {
  display: inline-flex;
  height: 1.5rem;
  width: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(107, 48, 221, 0.1);
  color: #6b30dd;
  flex-shrink: 0;
}
