/* ==========================================================================
   balkanhaus.de – Verkaufslandingpage
   Eigenständiges Premiumdesign: warm, hochwertig, geschäftlich.
   Keine externen Abhängigkeiten. Systemschriften.
   ========================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  /* Farbwelt */
  --burgundy: #5C1F2B;
  --burgundy-deep: #431621;
  --burgundy-soft: #7A3140;
  --terracotta: #B8623F;
  --terracotta-deep: #9E4F30;
  --cream: #FAF4EC;
  --cream-deep: #F3EADF;
  --card: #FFFDF9;
  --ink: #2B2A28;
  --ink-soft: #5F594F;
  --brass: #A9853E;
  --brass-light: #C9A45C;
  --line: rgba(92, 31, 43, 0.14);
  --line-soft: rgba(92, 31, 43, 0.08);

  /* Radius laut Designrichtung: 14–22 px */
  --r-sm: 14px;
  --r-md: 18px;
  --r-lg: 22px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(67, 22, 33, 0.06), 0 2px 8px rgba(67, 22, 33, 0.06);
  --shadow-md: 0 2px 6px rgba(67, 22, 33, 0.07), 0 12px 32px rgba(67, 22, 33, 0.10);
  --shadow-lg: 0 4px 10px rgba(67, 22, 33, 0.08), 0 24px 56px rgba(67, 22, 33, 0.14);

  /* Typografie */
  --font-stack: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* Layout */
  --max-w: 1240px;
  --header-h: 68px;
}

/* ---------- Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-stack);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("pattern.svg");
  background-size: 120px 120px;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3 {
  line-height: 1.15;
  color: var(--burgundy-deep);
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
}

h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.25rem);
  font-weight: 700;
}

h3 {
  font-size: 1.125rem;
  font-weight: 650;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--terracotta-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--burgundy);
}

img, svg {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid var(--brass-light);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--terracotta);
  color: #fff;
}

/* Sprungmarken nicht unter dem Header verschwinden lassen */
[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ---------- Screenreader-Text ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--burgundy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus-visible {
  left: 0;
  color: #fff;
}

/* ---------- Layout-Helfer ---------- */
.wrap {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: clamp(3.5rem, 3rem + 3vw, 6rem);
}

.section--tint {
  background: var(--cream-deep);
  border-block: 1px solid var(--line-soft);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.section-head .lead {
  color: var(--ink-soft);
  font-size: 1.06rem;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease,
    color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

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

.btn--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--terracotta-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background: var(--burgundy);
  color: #fff;
}

.btn--dark:hover {
  background: var(--burgundy-deep);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--burgundy);
  color: var(--burgundy-deep);
  background: rgba(92, 31, 43, 0.04);
}

.btn--light {
  background: var(--cream);
  color: var(--burgundy-deep);
}

.btn--light:hover {
  background: #fff;
  color: var(--burgundy-deep);
}

.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 244, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--burgundy-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand svg {
  width: 30px;
  height: 30px;
  flex: none;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
  padding-block: 0.25rem;
}

.main-nav a:hover {
  color: var(--terracotta-deep);
}

.header-cta {
  min-height: 42px;
  padding: 0.5rem 1.1rem;
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(169, 133, 62, 0.12);
  border: 1px solid rgba(169, 133, 62, 0.35);
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 1.8rem + 4.5vw, 4.25rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  margin-bottom: 0.35em;
  overflow-wrap: anywhere;
}

.hero h1 .tld {
  color: var(--terracotta);
}

.hero-sub {
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.4rem);
  font-weight: 550;
  color: var(--burgundy-soft);
  max-width: 34rem;
  margin-bottom: 0.75rem;
}

.hero-text {
  color: var(--ink-soft);
  max-width: 34rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--burgundy);
  box-shadow: var(--shadow-sm);
}

.chip svg {
  width: 16px;
  height: 16px;
  flex: none;
}

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

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.micro-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.micro-trust svg {
  width: 16px;
  height: 16px;
  color: var(--brass);
  flex: none;
}

/* ---------- Kaufkarte ---------- */
.buy-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  position: relative;
}

.buy-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(90deg, var(--burgundy), var(--terracotta), var(--brass-light));
}

.buy-card__kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.buy-card__domain {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--burgundy-deep);
  overflow-wrap: anywhere;
  margin-bottom: 0.75rem;
}

.buy-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: #2E6B3F;
  background: rgba(46, 107, 63, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
}

.buy-card__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2E6B3F;
}

.buy-card__price-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.1rem;
}

.buy-card__price {
  font-size: 1.6rem;
  font-weight: 750;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.buy-card__vat {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.buy-card__text {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.buy-card .btn--primary {
  margin-block: 0.75rem;
}

.buy-card__alt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.buy-card__alt .btn {
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  font-size: 0.92rem;
}

.buy-card__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.buy-card__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.buy-card__trust svg {
  width: 15px;
  height: 15px;
  color: var(--brass);
  flex: none;
}

/* ---------- Kartenraster ---------- */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0;
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(184, 98, 63, 0.14), rgba(169, 133, 62, 0.14));
  color: var(--terracotta-deep);
  margin-bottom: 1rem;
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

/* ---------- Markenvorschau / Mockups ---------- */
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mockup {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mockup__frame {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mockup:hover .mockup__frame {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mockup__caption {
  text-align: center;
}

.mockup__caption strong {
  display: block;
  color: var(--burgundy-deep);
  font-size: 0.98rem;
}

.mockup__caption span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* Browserzeilen-Mockup */
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line-soft);
  padding: 0.6rem 0.8rem;
}

.browser-bar .dots {
  display: flex;
  gap: 5px;
}

.browser-bar .dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.browser-bar .url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
}

.browser-bar .url svg {
  width: 12px;
  height: 12px;
  color: #2E6B3F;
  flex: none;
}

.mockup__body {
  padding: 1.4rem 1.2rem 1.6rem;
}

.mockup--site .mockup__body {
  background: linear-gradient(180deg, rgba(92, 31, 43, 0.05), transparent 60%);
}

.mockup-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 750;
  color: var(--burgundy-deep);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.mockup-logo svg {
  width: 20px;
  height: 20px;
}

.mockup-h {
  font-weight: 700;
  color: var(--burgundy-deep);
  font-size: 1.05rem;
  line-height: 1.3;
  margin-bottom: 0.45rem;
}

.mockup-p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.mockup-btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.4rem 0.9rem;
}

.mockup-lines span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: var(--cream-deep);
  margin-bottom: 6px;
}

.mockup-lines span:nth-child(1) { width: 90%; }
.mockup-lines span:nth-child(2) { width: 75%; }
.mockup-lines span:nth-child(3) { width: 60%; }

/* Verpackungs-Mockup */
.pack {
  display: flex;
  justify-content: center;
  padding: 1.6rem 1rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 164, 92, 0.15), transparent 55%),
    var(--cream-deep);
}

.pack__jar {
  width: 130px;
  background: var(--burgundy);
  border-radius: 12px 12px 16px 16px;
  padding: 0.9rem 0.8rem 1.1rem;
  color: var(--cream);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

.pack__jar::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 14px;
  right: 14px;
  height: 12px;
  background: var(--brass-light);
  border-radius: 6px;
}

.pack__brand {
  font-weight: 750;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 0.35rem;
}

.pack__type {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-light);
  display: block;
  margin-top: 0.3rem;
}

.pack__rule {
  width: 34px;
  height: 2px;
  background: var(--brass-light);
  margin: 0.5rem auto 0;
  border-radius: 1px;
}

/* ---------- Kaufablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  font-weight: 750;
  margin-bottom: 0.9rem;
}

.step h3 {
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0;
}

.process-note {
  background: rgba(169, 133, 62, 0.1);
  border: 1px solid rgba(169, 133, 62, 0.3);
  border-radius: var(--r-sm);
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  color: var(--ink);
  max-width: 46rem;
}

.process-note p {
  margin: 0;
}

/* ---------- Verkäuferkarte ---------- */
.seller {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

.seller__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--terracotta));
  color: var(--cream);
  font-weight: 750;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.seller__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy-deep);
}

.seller__company {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.seller p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.seller address {
  font-style: normal;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.contact-list a:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
  color: var(--burgundy-deep);
}

.contact-list svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta-deep);
  flex: none;
}

.contact-list small {
  display: block;
  font-weight: 450;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

/* ---------- Formular ---------- */
.form-wrap {
  max-width: 46rem;
}

.inquiry-form {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
  margin-bottom: 1.1rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-weight: 650;
  font-size: 0.94rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.field .hint {
  display: block;
  font-weight: 450;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

.req {
  color: var(--terracotta-deep);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  min-height: 48px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 98, 63, 0.18);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #A3352C;
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.consent input {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--terracotta);
  flex: none;
}

.form-status {
  margin-top: 1rem;
  border-radius: var(--r-sm);
  padding: 0;
  font-weight: 600;
}

.form-status:not(:empty) {
  padding: 0.9rem 1.2rem;
}

.form-status.is-ok {
  background: rgba(46, 107, 63, 0.12);
  color: #24552F;
  border: 1px solid rgba(46, 107, 63, 0.3);
}

.form-status.is-error {
  background: rgba(163, 53, 44, 0.1);
  color: #7E2820;
  border: 1px solid rgba(163, 53, 44, 0.3);
}

/* Honeypot: für Menschen unsichtbar, für Bots vorhanden */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 50rem;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 650;
  font-size: 1.02rem;
  color: var(--burgundy-deep);
  text-align: left;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
}

.faq-q:hover {
  color: var(--terracotta-deep);
}

.faq-q .faq-icon {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--brass);
  transition: transform 0.2s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.faq-a p {
  margin: 0;
}

/* Erst wenn JS aktiv ist, werden Antworten eingeklappt */
.js .faq-a[hidden] {
  display: none;
}

/* ---------- Abschluss-CTA ---------- */
.final-cta {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(201, 164, 92, 0.2), transparent 60%),
    linear-gradient(150deg, var(--burgundy-deep), var(--burgundy) 55%, var(--burgundy-soft));
  color: var(--cream);
  border-radius: 0;
}

.final-cta h2 {
  color: var(--cream);
}

.final-cta .lead {
  color: rgba(250, 244, 236, 0.85);
  max-width: 40rem;
}

.final-cta .btn--ghost {
  color: var(--cream);
  border-color: rgba(250, 244, 236, 0.4);
}

.final-cta .btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(250, 244, 236, 0.08);
  color: #fff;
}

.final-cta .hero-actions {
  margin-top: 1.75rem;
}

.final-cta .availability {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(250, 244, 236, 0.7);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burgundy-deep);
  color: rgba(250, 244, 236, 0.8);
  padding-block: 2.5rem;
  font-size: 0.92rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer .brand {
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.site-footer p {
  margin: 0 0 0.25rem;
}

.site-footer address {
  font-style: normal;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: rgba(250, 244, 236, 0.85);
}

.footer-links a:hover {
  color: #fff;
}

/* ---------- Mobile Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  background: rgba(255, 253, 249, 0.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(67, 22, 33, 0.12);
  padding: 0.65rem clamp(1rem, 4vw, 1.5rem);
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__domain {
  font-weight: 750;
  color: var(--burgundy-deep);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.sticky-cta .btn {
  min-height: 46px;
  padding: 0.55rem 1.2rem;
  flex: none;
}

@media (max-width: 760px) {
  .js .sticky-cta {
    display: flex;
  }
}

/* ---------- Einblenden beim Scrollen ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mockup-grid,
  .steps,
  .card-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .seller {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .card-grid--4,
  .card-grid--3,
  .mockup-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .buy-card__alt {
    grid-template-columns: 1fr;
  }
  .site-footer .wrap {
    flex-direction: column;
  }
  /* Platz für die Sticky-Leiste, damit kein Inhalt verdeckt wird */
  .js body {
    padding-bottom: 76px;
  }
}

/* ---------- Unterseiten (Danke, 404, Fehleransicht) ---------- */
.page-narrow {
  max-width: 46rem;
}

.page-title {
  font-size: clamp(1.8rem, 1.4rem + 2vw, 2.6rem);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
