:root {
  /* Salon / Beauty: warmes Dunkel, Champagner-Gold, Dusty Rose, sanfte Pfirsich-Highlights */
  --bg: #1a1416;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 250, 248, 0.94);
  --muted: rgba(255, 235, 230, 0.72);
  --line: rgba(232, 196, 184, 0.18);
  --brand: #d4a373;
  --brand2: #c4717d;
  --accent-blush: #e8c4b5;
  --shadow: 0 20px 50px rgba(10, 6, 8, 0.55);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 12% 8%, rgba(212, 163, 115, 0.22), transparent 58%),
    radial-gradient(900px 480px at 88% 12%, rgba(196, 113, 125, 0.2), transparent 56%),
    radial-gradient(700px 420px at 50% 92%, rgba(232, 196, 184, 0.08), transparent 55%),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  line-height: 1.5;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: #111827;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.skip:focus { left: 12px; z-index: 50; background: #2a2224; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(26, 20, 22, 0.72);
  border-bottom: 1px solid rgba(232, 196, 184, 0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}
.brand__logo {
  height: 52px;
  width: auto;
  max-width: min(260px, 48vw);
  display: block;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.brand__logo--footer {
  height: 44px;
  max-width: min(230px, 55vw);
}
.brand__name { font-weight: 800; letter-spacing: 0.2px; }

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--text); text-decoration: none; }
.nav__cta {
  margin-left: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text) !important;
}
.nav__cta:hover { background: rgba(255, 255, 255, 0.10); }

.menuBtn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 700;
}
.mobileNav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mobileNav__inner {
  display: grid;
  gap: 10px;
  padding: 14px 0 16px;
}
.mobileNav__inner a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.hero { padding: 56px 0 24px; }
/* Fließtext: Bild float rechts (~¼ Breite), Text läuft links daran vorbei; danach .hero__full volle Breite */
.hero__wrap {
  display: block;
}
.hero__ragged::after {
  content: "";
  display: table;
  clear: both;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 12px;
}
.kicker::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}
.hero h1 {
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.6px;
}
.lead { color: var(--muted); font-size: 18px; margin: 0 0 18px; }
.lead--tight {
  margin-top: -6px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.55;
}
.lead--tight a { font-weight: 800; text-decoration: none; }
.lead--tight a:hover { text-decoration: underline; }

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  text-decoration: none !important;
}
.btn:hover { background: rgba(255, 255, 255, 0.10); }
.btn--primary {
  border-color: rgba(212, 163, 115, 0.55);
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.95), rgba(196, 113, 125, 0.88));
  color: #1a1214 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn--primary:hover {
  background: linear-gradient(135deg, rgba(212, 163, 115, 1), rgba(196, 113, 125, 0.93));
  filter: brightness(1.06);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.trust {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.80);
}
.trust li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 12px 14px;
}

/* Schmal: Bild oben (kein Float). Ab ~600px: float rechts, Text fließt links, unterhalb Bildes volle Breite */
.hero__visual {
  display: block;
  margin: 0 auto 1.25rem;
  width: min(340px, 92vw);
  max-width: 100%;
}
.hero__visual--zoomable {
  cursor: zoom-in;
  border-radius: 14px;
  outline: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.hero__visual--zoomable:hover {
  box-shadow: 0 0 0 2px rgba(212, 163, 115, 0.55);
}
.hero__visual--zoomable:focus-visible {
  box-shadow: 0 0 0 3px rgba(196, 113, 125, 0.65);
}
.hero__visual img,
.hero__visual-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  pointer-events: none;
}
@media (min-width: 600px) {
  .hero__visual {
    float: right;
    width: clamp(240px, 34%, 360px);
    max-width: none;
    margin: 0 0 12px 22px;
  }
  .hero__visual img,
  .hero__visual-img {
    max-height: 320px;
  }
}

/* Vollbild-Overlay (native dialog, Top-Layer über der Seite) */
.lightbox {
  padding: 0;
  border: none;
  margin: 0;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}
.lightbox::backdrop {
  background: rgba(12, 8, 10, 0.85);
  backdrop-filter: blur(4px);
}
.lightbox__scrim {
  min-height: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 16px 24px;
  box-sizing: border-box;
  cursor: zoom-out;
}
.lightbox__panel {
  position: relative;
  cursor: default;
  max-width: 100%;
  width: fit-content;
  margin-inline: auto;
}
.lightbox__closeform {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2;
  margin: 0;
}
.lightbox__close {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(232, 196, 184, 0.35);
  background: rgba(26, 20, 22, 0.94);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.12);
}
.lightbox__img {
  display: block;
  max-width: min(96vw, 1200px);
  max-height: min(88vh, 900px);
  width: auto;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero__full {
  clear: both;
  width: 100%;
  padding-top: 4px;
}

.logos { padding: 10px 0 24px; }
.logos__bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.logos__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}
.logos__icon { font-size: 18px; }

.section { padding: 56px 0; }
.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section__head { margin-bottom: 22px; }
.section__head h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.2px;
}
.section__head p { margin: 0; color: var(--muted); max-width: 72ch; }

.grid { display: grid; gap: 14px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.pain-loesung-grid {
  align-items: stretch;
}
.pain-card--solution {
  border-color: rgba(196, 113, 125, 0.4);
  background: rgba(196, 113, 125, 0.08);
}
.pain-list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
}
.pain-list li {
  margin: 0.55rem 0;
  padding-left: 0.15rem;
  line-height: 1.45;
}

#technik code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.technik-footnote {
  max-width: 72ch;
  margin-top: 8px;
}

.feature, .price {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
}
.feature h3, .price h3 { margin: 0 0 10px; }
.feature p { margin: 0; color: rgba(255, 255, 255, 0.78); }

.callout {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.18), rgba(196, 113, 125, 0.14));
  border: 1px solid rgba(232, 196, 184, 0.22);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.callout h3 { margin: 0 0 8px; }
.callout p { margin: 0; color: rgba(255, 255, 255, 0.78); max-width: 80ch; }

.testphase-box {
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.14), rgba(196, 113, 125, 0.1));
  border: 1px solid rgba(232, 196, 184, 0.28);
  border-radius: 18px;
  padding: 22px 24px;
  margin: 0 0 28px;
}
.testphase-box h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}
.testphase-box > p {
  margin: 0 0 14px;
  color: rgba(255, 248, 245, 0.82);
  max-width: 85ch;
}
.testphase-box ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 248, 245, 0.82);
}
.testphase-box li { margin: 8px 0; }

.testphase-footnote {
  margin-top: -8px;
  margin-bottom: 0;
}

.price { position: relative; }
.price__tag { margin: 6px 0 8px; color: rgba(255, 255, 255, 0.82); }
.price__noshow {
  margin: 0 0 14px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 248, 245, 0.95);
  background: rgba(212, 163, 115, 0.14);
  border: 1px solid rgba(212, 163, 115, 0.4);
  border-radius: 12px;
}
.price__noshow strong {
  color: rgba(255, 228, 210, 0.98);
}
.price ul { margin: 0 0 16px; padding-left: 18px; color: rgba(255, 255, 255, 0.78); }
.price li { margin: 8px 0; }
.price--highlight {
  border-color: rgba(196, 113, 125, 0.45);
  background: rgba(196, 113, 125, 0.07);
  box-shadow: 0 18px 55px rgba(26, 14, 18, 0.45);
}
.fineprint { color: rgba(255, 255, 255, 0.65); font-size: 13px; margin-top: 16px; }
.muted { color: rgba(255, 255, 255, 0.68); }

.faq details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 10px 0;
}
.faq summary { cursor: pointer; font-weight: 900; }
.faq p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.78); }

.form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
}
label { display: grid; gap: 8px; }
label span { font-weight: 900; color: rgba(255, 255, 255, 0.82); }
input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 16, 32, 0.55);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus { border-color: rgba(212, 163, 115, 0.65); box-shadow: 0 0 0 4px rgba(196, 113, 125, 0.18); }
.form__actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.form__hint { margin: 12px 0 0; color: rgba(255, 255, 255, 0.76); font-weight: 700; }

.footer { padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; }
.footer__links { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer__links a { color: rgba(255, 255, 255, 0.74); font-weight: 700; }
.footer__instagram { color: rgba(255, 228, 210, 0.92) !important; }
.footer__instagram:hover { color: var(--brand) !important; text-decoration: underline; }

@media (max-width: 980px) {
  .grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .menuBtn { display: inline-flex; }
  .grid--2 { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
}

