:root {
  --mkt-ink: #0f172a;
  --mkt-muted: #475569;
  --mkt-line: #e2e8f0;
  --mkt-bg: #f8fafc;
  --mkt-surface: #ffffff;
  --mkt-brand: #1d4ed8;
  --mkt-brand-d: #1e3a8a;
  --mkt-brand-soft: #eff6ff;
  --mkt-accent: #0284c7;
  --mkt-dark: #0b1220;
  --mkt-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --mkt-radius: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
.mkt-body {
  margin: 0;
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  color: var(--mkt-ink);
  background: var(--mkt-bg);
  line-height: 1.6;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.mkt-body a:not(.mkt-btn) { color: var(--mkt-brand); text-decoration: none; }
.mkt-body a:not(.mkt-btn):hover { text-decoration: underline; color: var(--mkt-brand-d); }

.mkt-top-banner {
  background: #1e3a8a;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
}

.mkt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.mkt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--mkt-ink);
  white-space: nowrap;
}
.mkt-brand:hover { text-decoration: none; color: var(--mkt-ink); }
.mkt-logo {
  background: linear-gradient(135deg, var(--mkt-brand), var(--mkt-accent));
  color: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.mkt-nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.mkt-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #334155;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.mkt-nav a:hover,
.mkt-nav a.active {
  background: var(--mkt-brand-soft);
  color: var(--mkt-brand);
  text-decoration: none;
}
.mkt-header-actions { display: flex; gap: 10px; align-items: center; }
.mkt-nav-toggle {
  display: none;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: var(--mkt-ink);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 18px;
  cursor: pointer;
  margin-left: auto;
}

.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.15s;
  text-decoration: none !important;
  line-height: 1.2;
}
.mkt-btn-primary {
  background: var(--mkt-brand);
  border-color: var(--mkt-brand);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.28);
}
.mkt-btn-primary:hover { background: var(--mkt-brand-d); border-color: var(--mkt-brand-d); color: #fff !important; }
.mkt-btn-secondary {
  background: #fff;
  border-color: #cbd5e1;
  color: var(--mkt-ink) !important;
}
.mkt-btn-secondary:hover { border-color: #94a3b8; background: #f8fafc; color: var(--mkt-ink) !important; }
.mkt-btn-lg { padding: 14px 24px; font-size: 15px; }
.mkt-btn-on-dark {
  background: #fff;
  border-color: #fff;
  color: var(--mkt-brand) !important;
}
.mkt-btn-on-dark:hover { background: #f1f5f9; color: var(--mkt-brand-d) !important; }
.mkt-btn-on-dark-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff !important;
}
.mkt-btn-on-dark-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff !important; }

.mkt-main { flex: 1 0 auto; }
.mkt-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.mkt-section { padding: 72px 0; }
.mkt-section-tight { padding: 48px 0; }
.mkt-section-alt { background: #fff; }
.mkt-section-title { text-align: center; margin-bottom: 44px; }
.mkt-section-title h2 { margin: 0 0 10px; font-size: 32px; letter-spacing: -0.02em; color: var(--mkt-ink); }
.mkt-section-title p { margin: 0; color: var(--mkt-muted); font-size: 16px; }
.mkt-muted { color: var(--mkt-muted); }
.mkt-center-actions { text-align: center; margin-top: 28px; }

.mkt-hero {
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, rgba(29, 78, 216, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(2, 132, 199, 0.08), transparent),
    linear-gradient(180deg, #fff 0%, var(--mkt-bg) 100%);
}
.mkt-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.mkt-hero-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mkt-brand-soft);
  color: #1e40af;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.mkt-hero h1 { margin: 0 0 16px; font-size: clamp(32px, 5vw, 46px); line-height: 1.15; letter-spacing: -0.03em; color: var(--mkt-ink); }
.mkt-hero-lead { margin: 0 0 28px; font-size: 18px; color: var(--mkt-muted); max-width: 540px; }
.mkt-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.mkt-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mkt-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cbd5e1;
  font-size: 13px;
  color: #334155;
}

.mkt-preview {
  background: var(--mkt-dark);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--mkt-shadow);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.mkt-preview-flat { transform: none; }
.mkt-preview-bar { display: flex; gap: 6px; padding: 4px 6px 12px; }
.mkt-preview-bar span { width: 10px; height: 10px; border-radius: 50%; }
.mkt-preview-bar span:nth-child(1) { background: #ef4444; }
.mkt-preview-bar span:nth-child(2) { background: #f59e0b; }
.mkt-preview-bar span:nth-child(3) { background: #22c55e; }
.mkt-preview-body {
  background: linear-gradient(180deg, #111827, #0f172a);
  border-radius: 12px;
  padding: 18px;
  min-height: 280px;
}
.mkt-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.mkt-kpi { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px; }
.mkt-kpi strong { display: block; font-size: 22px; color: #fff; }
.mkt-kpi em { font-style: normal; font-size: 11px; color: #cbd5e1; }
.mkt-preview-chart {
  height: 120px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.35), transparent 70%), repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 48px);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 12px;
}
.mkt-preview-list { display: grid; gap: 8px; }
.mkt-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  color: #e2e8f0;
}
.mkt-pill { padding: 4px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.mkt-pill-warn { background: rgba(251, 191, 36, 0.22); color: #fde68a; }
.mkt-pill-ok { background: rgba(74, 222, 128, 0.18); color: #bbf7d0; }
.mkt-pill-warn-solid { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.mkt-pill-ok-solid { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.mkt-pill-danger-solid { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

.mkt-trust { padding: 28px 0; border-top: 1px solid var(--mkt-line); border-bottom: 1px solid var(--mkt-line); background: #fff; }
.mkt-trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 16px; color: var(--mkt-muted); font-size: 14px; }
.mkt-trust-inner strong { color: var(--mkt-ink); }
.mkt-trust-sep { opacity: 0.45; }

.mkt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mkt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mkt-grid-tight { gap: 10px; }
.mkt-card { background: var(--mkt-surface); border: 1px solid var(--mkt-line); border-radius: var(--mkt-radius); padding: 24px; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04); }
.mkt-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--mkt-brand-soft); font-size: 20px; margin-bottom: 14px; }
.mkt-card h3, .mkt-card-title { margin: 0 0 8px; font-size: 18px; color: var(--mkt-ink); }
.mkt-card p { margin: 0; color: var(--mkt-muted); font-size: 14px; }
.mkt-card-lead { margin-bottom: 14px !important; }
.mkt-card-action { margin-top: 18px; margin-bottom: 0; }

.mkt-solution-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.mkt-solution-tab { padding: 10px 18px; border-radius: 999px; border: 1px solid #cbd5e1; background: #fff; color: #334155; font-weight: 600; font-size: 14px; }
.mkt-solution-tab.active { background: var(--mkt-brand); border-color: var(--mkt-brand); color: #fff; }
.mkt-solution-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.mkt-panel-title { margin: 0 0 8px; font-size: 22px; color: var(--mkt-ink); }
.mkt-panel-lead { color: var(--mkt-muted); margin: 0; }
.mkt-inline-link { margin-top: 20px; margin-bottom: 0; }

.mkt-checklist { list-style: none; padding: 0; margin: 16px 0 0; }
.mkt-checklist li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--mkt-muted); font-size: 15px; }
.mkt-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--mkt-brand); font-weight: 700; }
.mkt-ordered { margin: 0; padding-left: 20px; color: var(--mkt-muted); line-height: 1.9; }

.mkt-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mkt-step { text-align: center; padding: 20px 14px; background: #fff; border: 1px solid var(--mkt-line); border-radius: var(--mkt-radius); }
.mkt-step-num { width: 36px; height: 36px; margin: 0 auto 12px; border-radius: 50%; background: var(--mkt-brand-soft); color: var(--mkt-brand); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.mkt-step h4 { margin: 0 0 6px; font-size: 15px; color: var(--mkt-ink); }
.mkt-step p { margin: 0; font-size: 13px; color: var(--mkt-muted); }

.mkt-faq { max-width: 760px; margin: 0 auto; }
.mkt-faq details { background: #fff; border: 1px solid var(--mkt-line); border-radius: 12px; padding: 16px 18px; margin-bottom: 10px; }
.mkt-faq summary { cursor: pointer; font-weight: 600; color: var(--mkt-ink); list-style: none; }
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq p { margin: 12px 0 0; color: var(--mkt-muted); font-size: 14px; }

.mkt-cta {
  background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
  color: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--mkt-shadow);
}
.mkt-cta h2 { margin: 0 0 10px; font-size: 28px; color: #fff; }
.mkt-cta p { margin: 0 0 24px; color: #e2e8f0; }
.mkt-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.mkt-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.mkt-contact-card { background: #fff; border: 1px solid var(--mkt-line); border-radius: var(--mkt-radius); padding: 24px; }
.mkt-contact-card h3 { margin: 0 0 8px; color: var(--mkt-ink); }
.mkt-contact-card p { margin: 0 0 16px; color: var(--mkt-muted); font-size: 14px; }
.mkt-contact-highlight { background: var(--mkt-brand-soft); border-color: #bfdbfe; }
.mkt-contact-phone a { font-weight: 600; }

.mkt-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.mkt-price-card { background: #fff; border: 1px solid var(--mkt-line); border-radius: var(--mkt-radius); padding: 28px 24px; display: flex; flex-direction: column; }
.mkt-price-card.featured { border-color: var(--mkt-brand); box-shadow: 0 12px 40px rgba(29, 78, 216, 0.12); transform: translateY(-4px); }
.mkt-price-card h3 { margin: 0 0 6px; color: var(--mkt-ink); }
.mkt-price-tagline { margin: 0 0 0; color: var(--mkt-muted); font-size: 14px; }
.mkt-price-card .price { font-size: 36px; font-weight: 800; margin: 16px 0; letter-spacing: -0.03em; color: var(--mkt-ink); }
.mkt-price-card .price small { font-size: 14px; font-weight: 500; color: var(--mkt-muted); }
.mkt-price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; color: var(--mkt-muted); font-size: 14px; }
.mkt-price-card li { padding: 6px 0; border-bottom: 1px dashed var(--mkt-line); }
.mkt-price-card li:last-child { border-bottom: none; }
.mkt-pricing-note { text-align: center; margin-top: 28px; color: var(--mkt-muted); font-size: 14px; max-width: 640px; margin-left: auto; margin-right: auto; }

.mkt-page-hero { padding: 48px 0 32px; background: linear-gradient(180deg, #fff, var(--mkt-bg)); border-bottom: 1px solid var(--mkt-line); }
.mkt-page-hero h1 { margin: 0 0 10px; font-size: 34px; color: var(--mkt-ink); }
.mkt-page-hero p { margin: 0; color: var(--mkt-muted); font-size: 16px; max-width: 640px; }

.mkt-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 56px; }
.mkt-feature-row.reverse .mkt-feature-copy { order: 2; }
.mkt-feature-row.reverse .mkt-feature-visual { order: 1; }
.mkt-feature-copy h2 { margin: 0 0 10px; color: var(--mkt-ink); }
.mkt-feature-visual { background: #fff; border: 1px solid var(--mkt-line); border-radius: var(--mkt-radius); padding: 20px; min-height: 220px; }
.mkt-feature-visual-warn { background: #fffbeb; border-color: #fde68a; }
.mkt-visual-label { margin: 0 0 10px; font-size: 13px; color: var(--mkt-muted); font-weight: 600; }
.mkt-alert-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 8px; background: #fff; border: 1px solid var(--mkt-line); margin-bottom: 8px; font-size: 13px; color: var(--mkt-ink); }
.mkt-mini-card { background: #f8fafc; border: 1px solid var(--mkt-line); border-radius: 10px; padding: 12px; }
.mkt-mini-card strong { display: block; color: var(--mkt-ink); font-size: 13px; }
.mkt-mini-card span { color: var(--mkt-muted); font-size: 12px; }

.mkt-mock-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.mkt-mock-table th, .mkt-mock-table td { padding: 8px 10px; border-bottom: 1px solid var(--mkt-line); text-align: left; color: var(--mkt-ink); }
.mkt-mock-table th { color: var(--mkt-muted); font-weight: 600; background: #f8fafc; }

.mkt-body .site-footer { margin-top: auto; flex-shrink: 0; border-top: 1px solid var(--mkt-line); background: #fff; color: var(--mkt-muted); font-size: 13px; }
.mkt-body .foot-inner { max-width: 1180px; margin: 0 auto; padding: 16px 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.mkt-body .site-footer a { color: var(--mkt-muted); }
.mkt-body .site-footer a:hover { color: var(--mkt-brand); }
.mkt-body .foot-sep { opacity: 0.5; }

.mkt-btn-ghost {
  background: transparent;
  border-color: var(--mkt-line);
  color: var(--mkt-ink) !important;
}
.mkt-btn-ghost:hover { background: #f8fafc; border-color: #94a3b8; color: var(--mkt-ink) !important; }

.mkt-flash {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.mkt-flash-success { background: #ecfdf5; border-color: #86efac; color: #166534; }
.mkt-flash-error { background: #fef2f2; border-color: #fca5a5; color: #991b1b; }

/* 官网 · 商标质押查询 */
.mkt-pledge-hero .mkt-hero-badge { display: inline-block; margin-bottom: 12px; }
.mkt-pledge-hero h1 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 38px); color: var(--mkt-ink); letter-spacing: -0.02em; }
.mkt-pledge-hero p { margin: 0; max-width: 640px; }

.mkt-pledge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.mkt-pledge-card {
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 28px;
  box-shadow: var(--mkt-shadow);
}
.mkt-pledge-card-head { margin-bottom: 22px; }
.mkt-pledge-card-head h2 { margin: 0 0 6px; font-size: 20px; color: var(--mkt-ink); }
.mkt-pledge-card-head p { margin: 0; font-size: 14px; color: var(--mkt-muted); }

.mkt-pledge-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mkt-brand-soft) 0%, #fff 100%);
  border: 1px solid #bfdbfe;
}
.mkt-pledge-price strong { font-size: 32px; font-weight: 800; color: var(--mkt-brand); letter-spacing: -0.03em; }
.mkt-pledge-price span { font-size: 14px; color: var(--mkt-muted); }
.mkt-pledge-price em { font-style: normal; font-size: 12px; color: var(--mkt-muted); margin-left: auto; }

.mkt-form .mkt-field { margin-bottom: 18px; }
.mkt-form .mkt-field:last-of-type { margin-bottom: 0; }
.mkt-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--mkt-ink);
  margin-bottom: 8px;
}
.mkt-form label .mkt-opt { font-weight: 400; color: var(--mkt-muted); }
.mkt-form input[type="text"],
.mkt-form input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  color: var(--mkt-ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.mkt-form input::placeholder { color: #94a3b8; }
.mkt-form input:focus {
  outline: none;
  border-color: var(--mkt-brand);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}
.mkt-form .mkt-hint { margin: 8px 0 0; font-size: 13px; color: var(--mkt-muted); line-height: 1.5; }
.mkt-form .mkt-submit { width: 100%; margin-top: 22px; padding: 14px 20px; font-size: 15px; }

.mkt-pledge-aside { display: grid; gap: 16px; }
.mkt-pledge-aside .mkt-card { padding: 20px; }
.mkt-pledge-aside h3 { margin: 0 0 12px; font-size: 15px; color: var(--mkt-ink); }
.mkt-pledge-steps { list-style: none; padding: 0; margin: 0; }
.mkt-pledge-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--mkt-line);
  font-size: 13px;
  color: var(--mkt-muted);
}
.mkt-pledge-steps li:last-child { border-bottom: none; padding-bottom: 0; }
.mkt-pledge-steps strong {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mkt-brand-soft);
  color: var(--mkt-brand);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mkt-pledge-steps span { padding-top: 2px; line-height: 1.45; }

.mkt-pledge-warn {
  background: #fffbeb;
  border-color: #fde68a;
  padding: 20px 22px;
}
.mkt-pledge-warn p { margin: 0 0 14px; color: #92400e; font-size: 14px; }

.mkt-pay-section { padding-top: 40px; padding-bottom: 64px; }
.mkt-pay-wrap { max-width: 440px; margin: 0 auto; text-align: center; }
.mkt-pay-wrap h1 { margin: 0 0 8px; font-size: 26px; color: var(--mkt-ink); }
.mkt-pay-wrap .mkt-pay-lead { margin: 0 0 24px; color: var(--mkt-muted); font-size: 15px; }
.mkt-pay-card {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 28px 24px 24px;
  box-shadow: var(--mkt-shadow);
}
.mkt-pay-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
}
.mkt-pay-summary strong { color: var(--mkt-brand); font-size: 22px; font-weight: 800; }
.mkt-pay-qr-box {
  display: inline-block;
  padding: 16px;
  background: #fff;
  border: 2px dashed #cbd5e1;
  border-radius: 14px;
  margin-bottom: 16px;
}
.mkt-pay-status { margin: 0; font-size: 14px; color: var(--mkt-muted); }
.mkt-pay-status.is-success { color: #166534; font-weight: 600; }
.mkt-pay-wechat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  font-size: 13px;
  font-weight: 600;
}
.mkt-pay-back { margin-top: 20px; font-size: 14px; }

.mkt-result-hero {
  padding: 32px 0 24px;
  background: linear-gradient(180deg, #fff, var(--mkt-bg));
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-result-hero-inner { max-width: 960px; margin: 0 auto; }
.mkt-result-hero h1 { margin: 0 0 10px; font-size: 28px; color: var(--mkt-ink); }
.mkt-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  color: var(--mkt-muted);
  font-size: 14px;
}
.mkt-result-meta strong { color: var(--mkt-ink); }
.mkt-result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.mkt-result-section { padding: 32px 0 48px; }
.mkt-result-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.mkt-result-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 720px;
}
.mkt-result-table th,
.mkt-result-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--mkt-line);
  text-align: left;
  color: var(--mkt-ink);
}
.mkt-result-table th {
  background: #f8fafc;
  color: var(--mkt-muted);
  font-weight: 600;
  white-space: nowrap;
}
.mkt-result-table tr:last-child td { border-bottom: none; }
.mkt-result-empty {
  text-align: center;
  padding: 48px 24px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
}
.mkt-result-empty .mkt-result-empty-icon { font-size: 40px; margin-bottom: 12px; opacity: 0.6; }
.mkt-result-empty h2 { margin: 0 0 8px; font-size: 18px; color: var(--mkt-ink); }
.mkt-result-empty p { margin: 0; color: var(--mkt-muted); font-size: 14px; }

.mkt-result-email {
  max-width: 480px;
  margin-top: 24px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
}
.mkt-result-email h3 { margin: 0 0 14px; font-size: 16px; color: var(--mkt-ink); }
.mkt-result-email .mkt-form .mkt-submit { margin-top: 14px; width: auto; min-width: 120px; }
.mkt-result-email-sent { margin-left: 12px; font-size: 13px; color: var(--mkt-muted); }

@media (max-width: 960px) {
  .mkt-pledge-grid { grid-template-columns: 1fr; }
  .mkt-pledge-aside { order: -1; }
  .mkt-hero-grid, .mkt-solution-panel, .mkt-contact-grid, .mkt-feature-row, .mkt-feature-row.reverse { grid-template-columns: 1fr; }
  .mkt-feature-row.reverse .mkt-feature-copy, .mkt-feature-row.reverse .mkt-feature-visual { order: unset; }
  .mkt-grid-3, .mkt-price-grid, .mkt-steps { grid-template-columns: 1fr 1fr; }
  .mkt-preview { transform: none; }
  .mkt-kpi-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .mkt-nav-toggle { display: block; }
  .mkt-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--mkt-line);
    padding: 12px 16px 16px;
    box-shadow: var(--mkt-shadow);
  }
  .mkt-nav-open .mkt-nav { display: flex; }
  .mkt-header-inner { position: relative; flex-wrap: wrap; height: auto; min-height: 68px; padding-top: 12px; padding-bottom: 12px; }
  .mkt-header-actions { width: 100%; justify-content: flex-end; order: 4; }
  .mkt-grid-3, .mkt-grid-2, .mkt-price-grid, .mkt-steps { grid-template-columns: 1fr; }
  .mkt-section { padding: 48px 0; }
  .mkt-section-title h2 { font-size: 26px; }
  .mkt-cta { padding: 32px 20px; }
}
