/* =========================================================
   JAVARO – Globales Stylesheet
   Farbwelt: Dunkles Navy + Gold-Akzent (bestehende Marke)
   Systemschriften (kein Google-Fonts-Request -> DSGVO-unbedenklich)
   ========================================================= */

:root {
  /* Marke */
  --navy-950: #0a1420;
  --navy-900: #0f1c2e;
  --navy-800: #16283f;
  --navy-700: #1e3450;
  --navy-600: #2b4667;
  --gold-600: #a9822f;
  --gold-500: #c9a24b;
  --gold-400: #d9bb74;
  --gold-100: #f3e9d2;
  --cream: #f7f4ec;
  --paper: #ffffff;
  --ink: #16202c;
  --ink-soft: #4a5568;
  --muted: #8592a3;
  --line: #e4ded0;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Typografie */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-soft: 0 20px 50px -25px rgba(10, 20, 32, 0.45);
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy-950);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: clamp(56px, 8vw, 108px) 0;
}

.section-dark {
  background: var(--navy-950);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--paper); }
.section-dark p { color: rgba(247, 244, 236, 0.75); }

.section-tint {
  background: var(--cream);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-600);
}

.lede {
  max-width: 640px;
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-gold:hover { background: var(--gold-400); }

.btn-outline {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-950);
}
.btn-outline:hover { background: rgba(10, 20, 32, 0.06); }

.btn-link {
  color: var(--gold-600);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.btn-link:hover { color: var(--gold-500); }

/* ---------- Header ---------- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px -8px rgba(20, 30, 20, 0.12);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-600); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-950);
}

@media (max-width: 940px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px -12px rgba(20, 30, 20, 0.15);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-gold span { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--cream) 0%, var(--paper) 60%);
  color: var(--ink);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 15%, rgba(201, 162, 75, 0.16), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-top: clamp(70px, 12vw, 130px);
  padding-bottom: clamp(50px, 8vw, 90px);
}
.hero h1 { color: var(--navy-950); max-width: 780px; }
.hero .lede { color: var(--ink-soft); font-size: 1.15rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero-breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero-breadcrumb a:hover { color: var(--gold-600); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .hero-photo { order: -1; aspect-ratio: 4/3; }
}
.hero-grid .hero-photo { aspect-ratio: 3 / 4; max-height: 560px; }

.page-hero {
  padding-top: clamp(120px, 15vw, 160px);
  padding-bottom: clamp(50px, 8vw, 70px);
}

/* ---------- Grids & Cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-num {
  font-family: var(--font-display);
  color: var(--gold-600);
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 0.94rem; flex: 1; }

.placeholder-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f1e8d4, #e3d3ab);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(22, 32, 44, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 12px;
  position: relative;
}
.placeholder-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(22,32,44,0.035) 0 10px, transparent 10px 20px);
}
.placeholder-img span { position: relative; }
.placeholder-img.dark {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: rgba(247, 244, 236, 0.55);
}
.placeholder-img.dark::before {
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 10px, transparent 10px 20px);
}

/* ---------- Photos ---------- */
.photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card .photo { border-radius: 0; aspect-ratio: 4 / 3; }
.photo-wide { aspect-ratio: 16 / 9; }
.photo-tall { aspect-ratio: 3 / 4; }
.photo-square { aspect-ratio: 1 / 1; }

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-badge-line1 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: bold;
  color: var(--navy-950);
  margin-top: 2px;
  line-height: 1.2;
}
.hero-badge-line2 {
  font-family: var(--font-display);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: var(--navy-950);
  line-height: 1;
}
@media (max-width: 620px) {
  .hero-badge { width: 62px; height: 62px; top: 12px; right: 12px; }
  .hero-badge svg { width: 20px; height: 20px; }
  .hero-badge-line1 { font-size: 10px; }
  .hero-badge-line2 { font-size: 7px; }
}

.step-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cta-band.has-photo {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.cta-band.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-band.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,20,32,0.92) 0%, rgba(10,20,32,0.55) 55%, rgba(10,20,32,0.3) 100%);
  z-index: -1;
}
.cta-band.has-photo h2, .cta-band.has-photo p { color: var(--paper); }
.cta-band.has-photo p { color: rgba(247,244,236,0.8); }

/* ---------- Product tile (home teaser) ---------- */
.product-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-tile:hover { border-color: var(--gold-500); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.product-tile .card-num { color: var(--gold-600); }
.product-tile h3 { color: var(--navy-950); }
.product-tile p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Advantages strip ---------- */
.advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.advantages li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

/* ---------- Steps ---------- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr 132px;
  gap: 26px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-photo { width: 132px; }
@media (max-width: 700px) {
  .step { grid-template-columns: 60px 1fr; }
  .step-photo { display: none; }
}
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-600);
}
.step-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.step-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-600);
  border: 1px solid var(--gold-100);
  background: var(--gold-100);
  border-radius: 999px;
  padding: 4px 10px;
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: var(--gold-600); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.testimonial-author { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }
.testimonial-author strong { color: var(--ink); display: block; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy-950);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.faq-icon { color: var(--gold-500); font-size: 1.3rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer-inner { padding-bottom: 20px; color: var(--ink-soft); }

/* ---------- Article / Ratgeber ---------- */
.article-card { display: flex; flex-direction: column; }
.article-meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.article-body {
  max-width: 760px;
  font-size: 1.02rem;
}
.article-body h2 { margin-top: 1.6em; }
.article-body ul { margin: 0 0 1.2em; padding-left: 1.2em; list-style: disc; color: var(--ink-soft); }
.article-body li { margin-bottom: 0.4em; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-detail { margin-bottom: 24px; }
.contact-detail span { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-600); margin-bottom: 6px; }
.contact-detail a, .contact-detail p { font-size: 1.05rem; margin: 0; color: var(--navy-950); }
.contact-detail a:hover { color: var(--gold-600); }

form.js-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.form-note { font-size: 0.82rem; color: var(--muted); }
.form-status { font-size: 0.9rem; margin-top: 6px; }
.form-status.success { color: #2f7a4f; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-950);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 60px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h2 { color: var(--paper); margin-bottom: 6px; }
.cta-band p { color: rgba(247,244,236,0.7); margin: 0; }

/* ---------- Footer ---------- */
#site-footer {
  background: var(--navy-950);
  color: rgba(247,244,236,0.7);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  color: var(--paper);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-grid li { margin-bottom: 10px; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--gold-400); }

.footer-trust {
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
}
.footer-trust-caption {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-badge img { flex-shrink: 0; width: 44px; height: 44px; }
.trust-badge span {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(247,244,236,0.65);
  max-width: 130px;
}
@media (max-width: 620px) {
  .trust-badges { gap: 26px; }
  .trust-badge span { max-width: 110px; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; gap: 10px; }
.eyebrow-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.eyebrow-list span {
  font-size: 0.72rem;
  color: var(--gold-600);
  border: 1px solid var(--gold-100);
  background: var(--gold-100);
  border-radius: 999px;
  padding: 4px 10px;
}
.two-col-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.reveal {
  transition: opacity 640ms ease, transform 640ms ease;
}
.reveal.reveal-armed {
  opacity: 0;
  transform: translateY(18px);
}
.reveal.reveal-armed.in-view {
  opacity: 1;
  transform: translateY(0);
}
.legal-note {
  background: var(--gold-100);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--navy-950);
  margin-bottom: 30px;
}

/* ---------- Konfigurator ---------- */
.config-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 6px;
  margin-bottom: 44px;
}
.config-progress .cp-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 8px 4px;
}
.config-progress .cp-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.config-progress .cp-step.active { color: var(--navy-950); font-weight: 600; }
.config-progress .cp-step.active .cp-num,
.config-progress .cp-step.done .cp-num {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
}
.config-progress .cp-step.done .cp-num { background: var(--gold-100); color: var(--gold-600); }
.config-progress .cp-sep {
  width: 20px;
  height: 1px;
  background: var(--line);
  align-self: center;
}

.config-shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .config-shell { grid-template-columns: 1fr; }
}

.config-panel { min-height: 380px; }
.config-panel h2 { margin-bottom: 8px; }
.config-panel > .lede { margin-bottom: 32px; }
.config-step { display: none; }
.config-step.active { display: block; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 560px) { .option-grid { grid-template-columns: 1fr; } }

.option-card {
  position: relative;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  display: block;
}
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card h4 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; color: var(--navy-950); }
.option-card p { margin: 0; font-size: 0.86rem; color: var(--ink-soft); }
.option-card:hover { border-color: var(--gold-400); }
.option-card.checked { border-color: var(--gold-500); background: rgba(201,162,75,0.07); }
.option-card .oc-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  transition: border-color var(--transition), background var(--transition);
}
.option-card.checked .oc-check { border-color: var(--gold-500); background: var(--gold-500); }
.option-card.checked .oc-check::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--navy-950);
}

.range-field { margin-bottom: 28px; }
.range-field label { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.82rem; }
.range-field .rf-value { color: var(--gold-600); font-weight: 600; }
.range-field input[type="range"] {
  width: 100%;
  accent-color: var(--gold-500);
  height: 4px;
}

.swatch-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 92px;
}
.swatch input { position: absolute; opacity: 0; pointer-events: none; }
.swatch-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(10,20,32,0.12);
  transition: border-color var(--transition);
}
.swatch.checked .swatch-dot { border-color: var(--gold-500); }
.swatch span { font-size: 0.74rem; text-align: center; color: var(--ink-soft); line-height: 1.3; }

.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.check-card:hover { border-color: var(--gold-400); }
.check-card.checked { border-color: var(--gold-500); background: rgba(201,162,75,0.07); }
.check-card input { margin-top: 3px; accent-color: var(--gold-500); width: 18px; height: 18px; flex-shrink: 0; }
.check-card h4 { margin: 0 0 4px; font-family: var(--font-display); font-weight: 400; font-size: 1rem; }
.check-card p { margin: 0; font-size: 0.84rem; color: var(--ink-soft); }

.config-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.config-preview {
  position: sticky;
  top: 100px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.config-preview-stage {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.config-preview-stage img { display: block; width: 100%; height: 100%; object-fit: cover; }
.config-summary { display: flex; flex-direction: column; gap: 12px; }
.config-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.config-summary-row:last-child { border-bottom: none; padding-bottom: 0; }
.config-summary-row span:first-child { color: var(--muted); }
.config-summary-row span:last-child { color: var(--navy-950); font-weight: 600; text-align: right; }
.config-note { font-size: 0.76rem; color: var(--muted); margin-top: 18px; }

.config-success {
  text-align: center;
  padding: 60px 20px;
}
.config-success .oc-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 22px;
}
