:root {
  --bg: #030406;
  --bg-soft: #07090d;
  --bg-soft-2: #0b0e13;
  --text: #ffffff;
  --text-soft: #c3c7cd;
  --text-muted: #9ea5ae;
  --gold: #B89B4D;
  --gold-light: #EDC860;
  --line: rgba(255,255,255,0.06);
  --line-strong: rgba(255,255,255,0.1);
  --shadow: 0 24px 60px rgba(0,0,0,0.35);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shell-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-color: var(--gold) #1a1a1a;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  border-radius: 6px;
  border: 2px solid #1a1a1a;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/woff/subset-Roboto-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans Condensed';
  src: url('/assets/fonts/woff/subset-OpenSansCondensed-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.50), rgba(0,0,0,0.58)),
    radial-gradient(circle at top right, rgba(184,155,77,0.10), transparent 30%),
    var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, .btn, nav {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
}

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

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

.hidden {
  display: none !important;
}

.page-shell {
  width: min(var(--shell-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 110px;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 54px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20px -40px 0 -40px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    radial-gradient(circle at top right, rgba(184,155,77,0.10), transparent 34%);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.04);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(184,155,77,.55);
  color: var(--gold-light);
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at top right, rgba(184,155,77,0.12), transparent 38%);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero h1 {
  margin: 26px 0 20px;
  font-size: clamp(2.5rem, 5.4vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  font-weight: 700;
  max-width: 820px;
}

.hero-lead,
.hero-copy {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #cfd4da;
}

.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled,
.btn.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-primary:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.18);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.06);
  color: #ffffff;
}

.btn-secondary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  color: #fff;
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.btn-secondary:hover {
  border-color: rgba(184,155,77,0.30);
  color: var(--gold-light);
}

.btn-secondary-strong {
  border-color: rgba(184,155,77,0.28);
}

.btn-hero {
  width: auto;
  display: inline-flex;
}

.panel {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    radial-gradient(circle at top right, rgba(184,155,77,0.12), transparent 35%);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.panel-inner {
  padding: 24px;
  margin-top: 0;
}

.app-card,
.result-card {
  padding: 28px;
}

.progress-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.progress-label {
  color: var(--gold-light);
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.step-indicator {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
}

.progress-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.step-header h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.step-header p {
  margin: 0 0 24px;
  color: #c6cad1;
  font-size: 1.04rem;
  line-height: 1.7;
  max-width: 860px;
}

.question-group {
  display: grid;
  gap: 18px;
}

.question-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018)),
    rgba(10, 13, 22, 0.78);
  box-shadow: 0 16px 42px rgba(0,0,0,0.22);
}

.question-card.is-invalid {
  border-color: rgba(217, 107, 107, 0.72);
  box-shadow: 0 0 0 1px rgba(217, 107, 107, 0.2);
}

.question-label {
  display: block;
  margin-bottom: 14px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.question-helper {
  margin: -4px 0 16px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.option-list {
  display: grid;
  gap: 12px;
}

.option-item {
  display: block;
}

.option-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card {
  display: block;
  width: 100%;
  min-height: 78px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(14, 18, 30, 0.88);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.option-item input:checked + .option-card {
  border-color: rgba(184,155,77,0.5);
  background:
    linear-gradient(180deg, rgba(184,155,77,0.14), rgba(184,155,77,0.06)),
    rgba(16, 20, 32, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 12px 28px rgba(0,0,0,0.18);
}

textarea,
input[type="email"],
input[type="text"] {
  width: 100%;
  min-height: 62px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

textarea::placeholder,
input::placeholder {
  color: rgba(244,245,247,0.42);
}

input:focus,
textarea:focus {
  border-color: rgba(184,155,77,0.55);
  box-shadow: 0 0 0 1px rgba(184,155,77,0.18);
}

.nav-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(184,155,77,.55);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.result-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.result-intro {
  margin: 0 0 20px;
  color: #c6cad1;
  font-size: 1.08rem;
  line-height: 1.72;
}

.result-section {
  margin-top: 18px;
}

.result-section h3 {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 1.2rem;
  line-height: 1.2;
}

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

.result-section li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.66;
  margin-bottom: 12px;
}

.result-section li:last-child {
  margin-bottom: 0;
}

.result-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.result-divider {
  height: 1px;
  background: var(--line);
  margin: 26px 0;
}

.result-note {
  color: #c6cad1;
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 18px;
}

.result-cta {
  margin-top: 26px;
}

.result-cta-intro {
  margin-bottom: 16px;
  padding: 18px 20px;
}

.result-cta-copy h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  line-height: 1.2;
  color: var(--text);
}

.result-cta-copy p {
  margin: 0;
  color: #c6cad1;
  line-height: 1.64;
  font-size: .98rem;
}

.result-delivery {
  margin-bottom: 18px;
  padding: 18px 20px;
}

.delivery-toggle,
.delivery-privacy {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 12px;
  align-items: start;
  cursor: pointer;
  color: var(--text);
}

.delivery-toggle input,
.delivery-privacy input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.delivery-toggle-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(184,155,77,0.55);
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  margin-top: 2px;
  position: relative;
}

.delivery-toggle input:checked + .delivery-toggle-box,
.delivery-privacy input:checked + .delivery-toggle-box {
  background: linear-gradient(180deg, rgba(184,155,77,0.92), rgba(184,155,77,0.75));
  border-color: rgba(184,155,77,0.95);
}

.delivery-toggle input:checked + .delivery-toggle-box::after,
.delivery-privacy input:checked + .delivery-toggle-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #101114;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.delivery-toggle-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.delivery-fields {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.form-field {
  margin-bottom: 16px;
}


.form-privacy-note {
  margin-top: 8px;
  color: rgba(158,165,174,0.75); /* softer als var(--text-muted) */
  font-size: 0.78rem;
  line-height: 1.45;
}

.delivery-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 600;
}

.delivery-help {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.result-actions {
  display: grid;
  gap: 14px;
}

.seo-stack {
  max-width: 980px;
  margin: 0 auto 24px;
  display: grid;
  gap: 22px;
}

.seo-panel {
  padding: 0;
}

.seo-copy,
.seo-topics,
.faq-section {
  margin-top: 0;
}

.seo-copy h2,
.seo-topics h2,
.faq-section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: var(--gold-light);
}

.seo-copy p,
.faq-answer p {
  margin: 0 0 16px;
  color: #c6cad1;
  line-height: 1.72;
  font-size: 1rem;
}

.seo-copy p:last-child,
.faq-answer p:last-child {
  margin-bottom: 0;
}

.seo-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.66;
}

.seo-list li:last-child {
  margin-bottom: 0;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.faq-section {
  padding: 0;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(10,13,22,0.7);
  overflow: hidden;
}

.faq-question {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 18px;
  padding: 0 24px;
  margin: 0;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.08;
}

.faq-question span {
  display: block;
}

.faq-question::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  flex: 0 0 auto;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-soft);
  line-height: 1.66;
}

.seo-stack {
  max-width: 980px;
  margin: 0 auto 28px;
  display: grid;
  gap: 22px;
}

.seo-panel {
  padding: 0;
}

.seo-copy,
.seo-topics,
.faq-section {
  margin-top: 0;
}

.seo-copy h2,
.seo-topics h2,
.faq-section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.02;
  color: var(--gold-light);
}

.seo-copy p,
.faq-answer p {
  margin: 0 0 16px;
  color: #c6cad1;
  line-height: 1.72;
  font-size: 1rem;
}

.seo-copy p:last-child,
.faq-answer p:last-child {
  margin-bottom: 0;
}

.seo-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.66;
}

.seo-list li:last-child {
  margin-bottom: 0;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.faq-section {
  padding: 0;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(10,13,22,0.7);
  overflow: hidden;
}

.faq-question {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 18px;
  padding: 0 24px;
  margin: 0;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: 'Open Sans Condensed', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.08;
}

.faq-question span {
  display: block;
}

.faq-question::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  flex: 0 0 auto;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-soft);
  line-height: 1.66;
}

@media (max-width: 900px) {
  .seo-stack {
    max-width: 100%;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .seo-panel,
  .faq-section {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .seo-copy h2,
  .seo-topics h2,
  .faq-section h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    margin-bottom: 16px;
  }

  .faq-accordion {
    gap: 12px;
  }

  .faq-question {
    min-height: 78px;
    padding: 0 20px;
    font-size: 1rem;
  }

  .faq-question::after {
    width: 24px;
    height: 24px;
    font-size: 1.7rem;
  }

  .faq-answer p {
    padding: 0 20px 18px;
  }
}

@media (max-width: 1100px) {
  .page-shell {
    width: calc(100% - 32px);
  }
}

@media (max-width: 900px) {
  .app-card,
  .result-card {
    padding: 24px;
  }

  .panel-inner,
  .result-delivery,
  .result-cta-intro,
  .question-card {
    padding: 20px;
  }

  .seo-stack {
    max-width: 100%;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .page-shell {
    padding: 24px 0 56px;
  }

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

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .hero-lead,
  .hero-copy,
  .result-intro,
  .result-note {
    font-size: 1rem;
    line-height: 1.66;
  }

  .nav-actions {
    grid-template-columns: 1fr 1fr;
  }

  .seo-panel,
  .faq-section {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 24px);
    padding: 18px 0 48px;
  }

  .hero {
    padding: 14px 0 42px;
  }

  .eyebrow {
    min-height: 42px;
    padding: 0 18px;
    font-size: .82rem;
  }

  .hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .question-label,
  .result-section li {
    font-size: .98rem;
  }

  .btn {
    min-height: 52px;
    border-radius: 8px;
    font-size: .98rem;
    padding: 12px 18px;
  }

  .app-card,
  .result-card {
    padding: 18px;
  }

  .panel-inner,
  .result-delivery,
  .result-cta-intro,
  .question-card {
    padding: 18px;
  }

  .option-card {
    min-height: 72px;
    padding: 16px 16px;
  }

  .delivery-toggle-text {
    font-size: .96rem;
  }

  .seo-copy h2,
  .seo-topics h2,
  .faq-section h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    margin-bottom: 16px;
  }

  .faq-accordion {
    gap: 12px;
  }

  .faq-question {
    min-height: 78px;
    padding: 0 20px;
    font-size: 1rem;
  }

  .faq-question::after {
    width: 24px;
    height: 24px;
    font-size: 1.7rem;
  }

  .faq-answer p {
    padding: 0 20px 18px;
  }
}