:root {
  --bg: #060608;
  --bg-2: #0c0c10;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --glass: rgba(12, 12, 16, 0.72);
  --text: #f4f4f5;
  --muted: #71717a;
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.14);
  --accent: #e8934a;
  --accent-2: #f5b86a;
  --accent-soft: rgba(232, 147, 74, 0.12);
  --accent-glow: rgba(232, 147, 74, 0.45);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 80px rgba(232, 147, 74, 0.12);
  --shadow-panel: 0 24px 80px rgba(0, 0, 0, 0.55);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-logo: Fraunces, Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 1rem;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 15% -10%, rgba(232, 147, 74, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(120, 80, 255, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(232, 147, 74, 0.05), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

.wrap {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.logo {
  font-family: var(--font-logo);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.site-header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background: rgba(6, 6, 8, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  z-index: 50;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(6, 6, 8, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  margin-left: auto;
  padding: 0.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: var(--surface-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8125rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #c9732e 100%);
  color: #0a0a0a;
  box-shadow: 0 0 32px rgba(232, 147, 74, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(232, 147, 74, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.35rem 0.55rem;
}

.hide-mobile { display: inline-flex; }

@media (max-width: 720px) {
  .hide-mobile { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-left: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { border-radius: 8px; }
  .header-inner { position: relative; flex-wrap: wrap; }
}

.page-main { padding: 2.5rem 0 5rem; }

.page-title { margin-bottom: 2rem; }
.page-title h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 30%, #a1a1aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-title p { color: var(--muted); max-width: 36rem; font-size: 0.95rem; }

.panel-lead { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.panel-hint { color: var(--muted); font-size: 0.8rem; }
.hidden { display: none !important; }

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-inner a {
  color: var(--accent-2);
  text-decoration: none;
}
.footer-inner a:hover { color: var(--accent); }

/* —— landing —— */

.hero {
  padding: 3rem 0 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 0.95fr 1.05fr; gap: 4rem; }
  .hero { padding: 4.5rem 0 6rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.75rem 0.35rem 0.5rem;
  border: 1px solid rgba(232, 147, 74, 0.25);
  border-radius: 999px;
  background: var(--accent-soft);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 1.25rem;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* hero mock — cinematic glass panel */
.mock-wrap {
  position: relative;
  perspective: 1200px;
}
.mock-wrap::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle, rgba(232, 147, 74, 0.18), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

.ui-mock {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel), var(--shadow-glow);
  overflow: hidden;
  transform: rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ui-mock:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.ui-mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.ui-mock-bar span:last-child {
  padding: 0.25rem 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #a1a1aa;
}

.ui-progress {
  display: flex;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.ui-progress-seg {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: var(--border);
}
.ui-progress-seg.on {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px var(--accent-glow);
}

.ui-mock-body {
  display: grid;
  grid-template-columns: 1fr 148px;
  min-height: 300px;
}
@media (max-width: 520px) {
  .ui-mock { transform: none; }
  .ui-mock-body { grid-template-columns: 1fr; }
  .ui-mock-side { border-left: none !important; border-top: 1px solid var(--border); }
}

.ui-mock-main { padding: 1.25rem; }
.ui-step-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
.ui-step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.ui-pkg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  background: var(--surface);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.ui-pkg.on {
  border-color: rgba(232, 147, 74, 0.5);
  background: var(--accent-soft);
  box-shadow: 0 0 24px rgba(232, 147, 74, 0.08), inset 0 0 0 1px rgba(232, 147, 74, 0.15);
}
.ui-pkg-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}
.ui-pkg.on .ui-pkg-icon {
  color: var(--accent-2);
  border-color: rgba(232, 147, 74, 0.35);
  background: rgba(232, 147, 74, 0.1);
}
.ui-pkg strong { display: block; font-size: 0.8125rem; font-weight: 600; }
.ui-pkg small { color: var(--muted); font-size: 0.7rem; }

.ui-mock-side {
  padding: 1.15rem 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.ui-mock-side h3 {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.ui-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  margin-bottom: 0.5rem;
  gap: 0.25rem;
  color: #d4d4d8;
}
.ui-line span:last-child {
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.ui-total {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.ui-total span:last-child {
  color: var(--accent-2);
  text-shadow: 0 0 20px var(--accent-glow);
}
.ui-cta-mini {
  display: block;
  margin-top: 0.85rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, var(--accent), #c9732e);
  color: #0a0a0a;
  text-align: center;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

section.landing-section { padding: 5rem 0; }
section.landing-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.section-intro {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.steps-row {
  display: grid;
  gap: 1rem;
  position: relative;
}
@media (min-width: 768px) {
  .steps-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .steps-row::before {
    content: "";
    position: absolute;
    top: 2.5rem;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
    z-index: 0;
  }
}

.step-card {
  padding: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: rgba(232, 147, 74, 0.25);
  box-shadow: 0 0 40px rgba(232, 147, 74, 0.06);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.tiles {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 600px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .tiles { grid-template-columns: repeat(4, 1fr); } }

.tile {
  display: block;
  padding: 1.35rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(232, 147, 74, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 147, 74, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 32px rgba(232, 147, 74, 0.08);
}
.tile:hover::before { opacity: 1; }

.tile-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(232, 147, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 1rem;
  position: relative;
}
.tile h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  position: relative;
}
.tile p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; position: relative; }

.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: var(--glass);
  backdrop-filter: blur(20px);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(232, 147, 74, 0.2), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 0%, rgba(120, 80, 255, 0.08), transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.65rem;
}
.cta-band p {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
}

/* —— konfigurator —— */

.config-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .config-layout { grid-template-columns: 1fr 320px; }
}

.config-main {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-panel);
}

.config-steps {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  padding: 0.35rem 0.35rem 0;
  background: rgba(255, 255, 255, 0.02);
}
.config-step {
  flex: 1;
  min-width: 7rem;
  padding: 0.75rem 1rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 8px 8px 0 0;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.config-step.active {
  color: var(--text);
  background: var(--surface-2);
  box-shadow: inset 0 2px 0 var(--accent);
}
.config-step.done { color: var(--accent-2); }

.config-body { padding: 1.75rem; }

.package-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 560px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}

.pkg-btn {
  text-align: left;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  color: inherit;
}
.pkg-btn:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.pkg-btn.added {
  border-color: rgba(232, 147, 74, 0.45);
  background: var(--accent-soft);
  box-shadow: 0 0 32px rgba(232, 147, 74, 0.1);
}
.pkg-btn strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.pkg-btn span {
  font-size: 0.8rem;
  color: var(--muted);
}

.option-panel {
  display: none;
  margin-top: 1.25rem;
  padding: 1.35rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.option-panel.open { display: block; }
.option-panel > strong {
  font-family: var(--font-display);
  font-weight: 700;
}

.field-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 480px) {
  .field-grid { grid-template-columns: 1fr 1fr; }
}

label.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
label.field input,
label.field select {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  text-transform: none;
  letter-spacing: normal;
  transition: border-color 0.2s, box-shadow 0.2s;
}
label.field input:focus,
label.field select:focus {
  outline: none;
  border-color: rgba(232, 147, 74, 0.4);
  box-shadow: 0 0 0 3px rgba(232, 147, 74, 0.1);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #d4d4d8;
}
.check-row input { accent-color: var(--accent); }

.config-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.summary-card {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  position: sticky;
  top: 5.5rem;
  box-shadow: var(--shadow-glow);
}
.summary-card h2 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 1.15rem;
}
.summary-lines {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 4rem;
  margin-bottom: 1rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.summary-line small { color: var(--muted); display: block; font-size: 0.72rem; margin-top: 0.1rem; }
.summary-empty { color: var(--muted); font-size: 0.85rem; }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.summary-total span:last-child { color: var(--accent-2); }
.summary-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.5;
}
.summary-card .btn-primary { width: 100%; margin-top: 1.15rem; }

.demo-banner {
  background: var(--accent-soft);
  border: 1px solid rgba(232, 147, 74, 0.25);
  color: var(--accent-2);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
}
