:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --brand: #1d4ed8;
  --ok: #166534;
  --warn: #b45309;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at top, #eef4ff 0%, var(--bg) 38%, #f8fafc 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 72px 0 52px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 14px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 24px;
  max-width: 760px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.section {
  padding: 22px 0;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin: 0 0 8px;
}

.muted {
  color: var(--muted);
}

.wizard {
  padding: 26px 0 42px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 34px;
  width: auto;
  display: block;
}

.language-picker {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font-weight: 600;
  min-width: 150px;
}

.wizard-steps {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 16px;
}

.step-pill {
  white-space: nowrap;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--muted);
}

.step-pill.active {
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 600;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 840px) {
  .row {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}

.list {
  display: grid;
  gap: 10px;
}

.list-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: #eef2ff;
  color: #3730a3;
}

.label-preview {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #fff;
  padding: 14px;
}

.label-title {
  font-size: 1rem;
  margin: 0 0 8px;
}

.label-price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.status {
  margin-top: 10px;
  font-size: 0.92rem;
}

.status.ok {
  color: var(--ok);
}

.status.warn {
  color: var(--warn);
}

.wizard-nav {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.footer-inner {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.footer-inner p {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand);
}
