summary::-webkit-details-marker { display: none; }

/* ── Hero (Supahero 스타일: 크고 대담한 히어로) ───────────────── */
.hero-glow {
  position: absolute;
  inset: -8% -10% auto -10%;
  height: 640px;
  background:
    radial-gradient(55% 55% at 25% 20%, rgba(37,99,235,0.16), transparent 70%),
    radial-gradient(45% 45% at 85% 15%, rgba(37,99,235,0.10), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.hero-img-frame {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(15, 23, 42, 0.35);
}
.hero-img-frame-sm {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(15, 23, 42, 0.3);
}
.stat-chip {
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #eef0f3;
  box-shadow: 0 10px 25px -18px rgba(15,23,42,0.3);
  padding: 1rem 1.1rem;
}
.feature-img-frame {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 24px 50px -25px rgba(15, 23, 42, 0.3);
}

.cost-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cost-table th, .cost-table td {
  border: 1px solid #e5e7eb;
  padding: 0.65rem 0.8rem;
  text-align: left;
  vertical-align: top;
}
.cost-table thead th {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
}
.cost-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.step-list li {
  counter-increment: step;
  position: relative;
  padding-left: 2.75rem;
  margin-bottom: 1.1rem;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .cost-table table { font-size: 0.82rem; }
  .cost-table th, .cost-table td { padding: 0.5rem 0.55rem; }
}
