/* =========================================================
   Simge Ekici – Social Media Management
   Ruhig · klar · hochwertig
   ========================================================= */

:root {
  --bg: #F7F3EC;
  --bg-2: #EFE8DC;
  --surface: #FCFAF6;
  --ink: #2E2416;
  --ink-soft: #5E5243;
  --muted: #8B7E6A;
  --gold: #B39B72;
  --gold-deep: #8C7550;
  --gold-soft: #E7DDCB;
  --line: rgba(46, 36, 22, .12);
  --dark: #2E2416;
  --dark-ink: #F2EBDF;

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 20px;
  --radius-lg: 32px;
  --max: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 30px 60px -32px rgba(46, 36, 22, .30);
  --shadow-sm: 0 12px 30px -18px rgba(46, 36, 22, .28);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); font-size: 17px; line-height: 1.7;
  color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--gold-soft); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.005em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.7rem, 5.6vw, 4.9rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
p { margin: 0 0 1em; }
.hl { color: var(--gold-deep); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.center { text-align: center; }
.narrow { max-width: 780px; margin-left: auto; margin-right: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--surface); padding: 10px 16px; border-radius: 10px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.center .eyebrow::after { content: ""; width: 32px; height: 1px; background: currentColor; }
.lead { font-size: clamp(1.06rem, 1.4vw, 1.2rem); color: var(--ink-soft); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; }
.logo-mark .moon { fill: none; stroke: var(--gold); stroke-width: 1; }
.logo-mark .letter { font: 600 23px var(--serif); fill: currentColor; }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word strong { font: 600 1.32rem/1 var(--serif); letter-spacing: .14em; text-transform: uppercase; }
.logo-word strong span { color: var(--gold-deep); }
.logo-word small { font-size: .6rem; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); margin-top: 7px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px; border-radius: 999px; border: 0; font: 600 .98rem/1 var(--sans);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s;
}
.btn-primary { background: var(--dark); color: var(--dark-ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); background: #3E3120; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px rgba(46,36,22,.3); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1px var(--ink); }
.btn-light { background: var(--dark-ink); color: var(--dark); }
.btn-light:hover { background: #fff; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-deep); outline-offset: 3px;
}
.micro { font-size: .88rem; color: var(--muted); display: flex; align-items: flex-start; gap: 9px; margin-top: 18px; }
.micro svg { flex-shrink: 0; margin-top: 5px; color: var(--gold-deep); }

/* ---------- Navigation ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 18px 0; transition: background .4s, box-shadow .4s, padding .4s; }
.nav.scrolled {
  background: rgba(247, 243, 236, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line); padding: 10px 0;
}
.nav .container { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav-links a.btn { color: var(--dark-ink); }
.logo { position: relative; z-index: 2; }
.nav-links a:not(.btn) { white-space: nowrap; text-decoration: none; font-size: .94rem; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: var(--gold-deep); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-tools { display: flex; align-items: center; gap: 22px; }
.lang { display: flex; align-items: center; gap: 4px; }
.lang button {
  background: none; border: 0; cursor: pointer; font: 600 .82rem var(--sans); letter-spacing: .06em; color: var(--muted);
  padding: 6px 7px; position: relative;
}
.lang button[aria-pressed="true"] { color: var(--ink); }
.lang button[aria-pressed="true"]::after { content: ""; position: absolute; left: 6px; right: 6px; bottom: 0; height: 1.5px; background: var(--gold); }
.lang i { width: 1px; height: 14px; background: var(--line); }
.icons { display: flex; gap: 14px; }
.icons a { color: var(--ink-soft); display: grid; place-items: center; transition: color .3s, transform .3s var(--ease); }
.icons a:hover { color: var(--gold-deep); transform: translateY(-2px); }
.nav .btn { padding: 14px 24px; font-size: .9rem; }
.burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; margin-left: -8px; }
.burger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease); }
.burger span:nth-child(1) { top: 17px; } .burger span:nth-child(2) { top: 26px; }
.menu-open .burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
.menu-only { display: none; }
.menu-tab-li { display: none; }
@media (max-width: 600px) { .menu-tab-li { display: block; } }

/* ---------- Side-Tab "Warum KLAR?" ---------- */
.side-tab {
  position: fixed; right: 0; top: 50%; z-index: 40; transform: translateY(-50%);
  writing-mode: vertical-rl; background: var(--dark); color: var(--dark-ink); border: 0; cursor: pointer;
  font: 600 .8rem var(--sans); letter-spacing: .08em; padding: 20px 11px; border-radius: 14px 0 0 14px;
  transition: padding .3s var(--ease), background .3s;
}
.side-tab:hover { padding-right: 16px; background: var(--gold-deep); }
.panel-backdrop { position: fixed; inset: 0; background: rgba(46,36,22,.35); z-index: 80; opacity: 0; pointer-events: none; transition: opacity .4s; }
.panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(460px, 100%); background: var(--surface); z-index: 90;
  padding: 70px 44px 44px; overflow-y: auto; transform: translateX(100%); transition: transform .6s var(--ease);
  box-shadow: -30px 0 60px -30px rgba(46,36,22,.3); visibility: hidden;
}
.panel-open .panel { transform: none; visibility: visible; }
.panel-open .panel-backdrop { opacity: 1; pointer-events: auto; }
.panel .close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: none; cursor: pointer; font-size: 1.3rem; color: var(--ink); }
.panel h2 { font-size: 2.4rem; }
.panel p { color: var(--ink-soft); }
.panel .klar-mini { display: grid; gap: 10px; margin: 28px 0; padding: 0; list-style: none; }
.panel .klar-mini li { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; }
.panel .klar-mini b { font: 600 1.4rem var(--serif); color: var(--gold-deep); width: 38px; height: 38px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; line-height: 1; }
.panel blockquote { margin: 30px 0 0; padding-left: 20px; border-left: 1px solid var(--gold); font: 500 1.35rem/1.4 var(--serif); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; padding: 150px 0 100px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; width: 760px; height: 760px; right: -240px; top: -200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(179,155,114,.20), transparent 65%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 64px; align-items: center; position: relative; }
.hero h1 { margin-bottom: 28px; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); animation: rise 1.1s var(--ease) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise { to { transform: translateY(0); } }
.hero .lead { max-width: 580px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.fade-up { opacity: 0; transform: translateY(22px); animation: fadeUp 1s var(--ease) forwards; }
.d1 { animation-delay: .45s; } .d2 { animation-delay: .6s; } .d3 { animation-delay: .75s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero-visual { position: relative; width: 100%; max-width: 400px; justify-self: end; aspect-ratio: 4 / 5; }
.arch-line { position: absolute; left: 14%; right: -8%; top: 4%; aspect-ratio: 1; border: 1px solid var(--gold); border-radius: 50%; }
.photo { position: absolute; left: 0; right: 6%; bottom: 0; aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: linear-gradient(160deg, #E9E0CF, #D3C4A8); box-shadow: var(--shadow); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.placeholder { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--ink); }
.placeholder .mono { font: 500 7rem/1 var(--serif); opacity: .5; }
.placeholder small { display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; opacity: .6; margin-top: 4px; }
.float-card {
  position: absolute; background: var(--surface); border-radius: 16px; padding: 12px 16px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 12px; font-size: .84rem; line-height: 1.35;
  animation: floaty 7s ease-in-out infinite;
}
.float-card strong { display: block; font-size: .88rem; }
.float-card span { color: var(--muted); font-size: .78rem; }
.float-card .ic { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-deep); flex-shrink: 0; }
.fc-1 { left: -64px; top: 30%; }
.fc-2 { right: -34px; bottom: 12%; animation-delay: -3.5s; }
@keyframes floaty { 50% { transform: translateY(-10px); } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 42s linear infinite; }
.marquee-track span { font: 500 clamp(1.25rem, 2vw, 1.6rem)/1 var(--serif); white-space: nowrap; display: flex; align-items: center; gap: 44px; color: var(--ink-soft); }
.marquee-track span::after { content: "✦"; font-size: .6em; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Hook-Zitat ---------- */
.hook { text-align: center; }
.hook .quote { font: 500 clamp(2rem, 4.6vw, 3.6rem)/1.15 var(--serif); max-width: 900px; margin: 0 auto 24px; }
.hook p { max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Problem ---------- */
.problem { background: var(--bg-2); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.pain { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.pain:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.pain .q { font: 600 1.4rem/1.25 var(--serif); margin-bottom: 12px; }
.pain .q::before { content: "„"; color: var(--gold); }
.pain .q::after { content: "“"; color: var(--gold); }
html[lang="en"] .pain .q::before { content: "“"; }
html[lang="en"] .pain .q::after { content: "”"; }
.pain p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.night {
  margin-top: 70px; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); background: var(--dark); color: var(--dark-ink);
  display: grid; grid-template-columns: auto 1fr; gap: 44px; align-items: center;
}
.time-label { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.night .time span { font-size: .32em; letter-spacing: .06em; }
.night .time { font: 500 clamp(3.5rem, 8vw, 6rem)/1 var(--serif); color: var(--gold); }
.night p { font: 500 clamp(1.4rem, 2.4vw, 2rem)/1.3 var(--serif); margin: 0; }
.night p small { display: block; font: 400 1rem/1.6 var(--sans); opacity: .65; margin-top: 16px; }
.truth { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.truth h3 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.myth-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.myth-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; align-items: start; padding: 18px 20px; background: var(--surface); border-radius: 16px; border: 1px solid var(--line); }
.myth-list .x { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-deep); font-size: .8rem; }
.myth-list s { color: var(--muted); font-size: .95rem; }
.myth-list b { display: block; font-weight: 500; }

/* ---------- Sehnsucht ---------- */
.desire-intro { font: 500 clamp(2rem, 4vw, 3.3rem)/1.15 var(--serif); max-width: 860px; margin: 0 auto; text-align: center; }
.timeline { margin: 76px auto 0; max-width: 820px; position: relative; }
.timeline::before, .timeline .progress { content: ""; position: absolute; left: 120px; top: 10px; width: 1px; }
.timeline::before { bottom: 10px; background: var(--line); }
.timeline .progress { height: 0; background: var(--gold); }
.moment { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 20px 0; }
.moment .t { font: 600 1.25rem var(--serif); color: var(--gold-deep); text-align: right; padding-right: 26px; position: relative; }
.moment .t::after { content: ""; position: absolute; right: -5px; top: 10px; width: 9px; height: 9px; border-radius: 50%; background: var(--bg); border: 1px solid var(--gold-deep); }
.moment p { margin: 0; font-size: 1.08rem; color: var(--ink-soft); }
.moment strong { color: var(--ink); font-weight: 600; }
.desire-close { text-align: center; margin-top: 64px; font: 500 clamp(1.6rem, 2.6vw, 2.2rem)/1.3 var(--serif); }

/* ---------- KLAR-Methode ---------- */
.klar-section { background: var(--bg-2); }
.method-head { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 60px; }
.method-head .lead { margin: 0; }
.klar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.klar-card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; min-height: 440px;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), background .6s, color .6s;
}
.klar-card .letter { font: 500 6.5rem/.85 var(--serif); color: var(--gold); margin-bottom: 20px; transition: transform .8s var(--ease); }
.klar-card .step { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.klar-card p { color: var(--ink-soft); font-size: .95rem; }
.klar-card ul { margin: auto 0 0; padding: 18px 0 0; list-style: none; border-top: 1px solid var(--line); font-size: .88rem; display: grid; gap: 7px; }
.klar-card li { display: flex; gap: 10px; color: var(--ink-soft); }
.klar-card li::before { content: "—"; color: var(--gold); }
.klar-card .tag { position: absolute; top: 26px; right: 22px; font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--gold); padding: 5px 10px; border-radius: 999px; }
@media (hover: hover) {
  .klar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); background: var(--dark); color: var(--dark-ink); }
  .klar-card:hover .letter { transform: translateY(-4px); }
  .klar-card:hover p, .klar-card:hover li, .klar-card:hover .step { color: rgba(242,235,223,.7); }
  .klar-card:hover ul { border-color: rgba(242,235,223,.15); }
  .klar-card:hover .tag { color: var(--gold); }
}

/* ---------- Warum ich ---------- */
.why { background: var(--dark); color: var(--dark-ink); }
.why h2 { color: #fff; }
.why .eyebrow { color: var(--gold); }
.why .lead { color: rgba(242,235,223,.7); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(242,235,223,.12); border-radius: var(--radius-lg); overflow: hidden; margin-top: 60px; }
.why-item { background: var(--dark); padding: 44px 36px; transition: background .5s; }
.why-item:hover { background: #382C1C; }
.why-item .num { font: 500 1.1rem var(--serif); color: var(--gold); margin-bottom: 26px; display: block; }
.why-item h3 { color: #fff; }
.why-item p { color: rgba(242,235,223,.7); font-size: .97rem; margin: 0; }
.big-quote { margin: 90px auto 0; max-width: 900px; text-align: center; font: 500 clamp(1.9rem, 3.6vw, 3rem)/1.25 var(--serif); color: #fff; }
.big-quote::before { content: ""; display: block; width: 1px; height: 60px; background: var(--gold); margin: 0 auto 30px; }
.legal-note { margin-top: 28px; font-size: .8rem; color: rgba(242,235,223,.45); text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.benefit { padding: 34px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.benefit .ic { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-deep); margin-bottom: 22px; }
.benefit p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---------- Angebot ---------- */
.offer { background: var(--bg-2); }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 60px; }
.pkg { background: var(--surface); border-radius: var(--radius-lg); padding: 42px 38px; border: 1px solid var(--line); display: flex; flex-direction: column; position: relative; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.pkg:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg .kicker { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; font-weight: 600; }
.pkg h3 { font-size: clamp(1.8rem, 2.5vw, 2.2rem); }
.pkg > p { color: var(--ink-soft); }
.pkg ul { list-style: none; padding: 0; margin: 10px 0 30px; display: grid; gap: 11px; }
.pkg li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; font-size: .96rem; }
.pkg li svg { margin-top: 5px; color: var(--gold-deep); }
.pkg .btn { margin-top: auto; align-self: flex-start; }
.pkg.featured { background: var(--dark); color: var(--dark-ink); border-color: transparent; }
.pkg.featured h3 { color: #fff; }
.pkg.featured > p { color: rgba(242,235,223,.65); }
.pkg.featured .kicker, .pkg.featured li svg { color: var(--gold); }
.pkg .badge { position: absolute; top: 30px; right: 30px; background: var(--gold); color: #fff; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding: 7px 13px; border-radius: 999px; }
.addon { margin-top: 22px; border-radius: var(--radius-lg); padding: 32px 38px; border: 1px solid var(--gold); display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.addon .ic { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-soft); display: grid; place-items: center; color: var(--gold-deep); }
.addon h3 { margin-bottom: 4px; font-size: 1.6rem; }
.addon p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.offer-note { text-align: center; margin-top: 40px; color: var(--ink-soft); }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 64px; position: relative; }
.steps::before { content: ""; position: absolute; top: 27px; left: 6%; right: 6%; height: 1px; background: var(--gold); opacity: .5; }
.step-item .n { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); border: 1px solid var(--gold-deep); font: 600 1.4rem var(--serif); margin-bottom: 24px; position: relative; transition: background .4s, color .4s; }
.step-item:hover .n { background: var(--dark); color: var(--dark-ink); }
.step-item p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.testi { margin: 0; background: var(--surface); border-radius: var(--radius); padding: 34px 30px; border: 1px dashed var(--gold); display: flex; flex-direction: column; }
.testi .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; }
.testi blockquote { margin: 0 0 26px; font: 500 1.25rem/1.45 var(--serif); }
.testi .who { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: .9rem; }
.testi .av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); }
.testi .who span { display: block; color: var(--muted); font-size: .82rem; }
.founding { margin-top: 36px; border-radius: var(--radius-lg); padding: 30px 36px; background: var(--bg-2); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.founding p { margin: 0; max-width: 680px; }
.founding strong { font: 600 1.4rem var(--serif); display: block; margin-bottom: 2px; }

/* ---------- Über mich ---------- */
.about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-visual { position: sticky; top: 110px; }
.about-photo { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; position: relative; background: linear-gradient(160deg, #E9E0CF, #D3C4A8); box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.facts span { font-size: .82rem; padding: 8px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft); }
.about-text h2 { margin-bottom: 30px; }
.about-text p { font-size: 1.06rem; color: var(--ink-soft); }
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-text .pull { font: 500 clamp(1.6rem, 2.4vw, 2.1rem)/1.3 var(--serif); color: var(--ink); border-left: 1px solid var(--gold); padding-left: 26px; margin: 36px 0; }
.adhs { margin-top: 36px; padding: 26px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; }
.adhs .spark { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; color: var(--gold-deep); }
.adhs p { margin: 0; font-size: 1rem !important; }

/* ---------- Zusagen ---------- */
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 60px; }
.promise { padding-top: 28px; border-top: 1px solid var(--gold); }
.promise h3 { font-size: 1.7rem; }
.promise p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Freebie ---------- */
.freebie-box { border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 80px); background: var(--dark); color: var(--dark-ink); display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: center; overflow: hidden; }
.freebie-box h2 { color: #fff; font-size: clamp(2rem, 3.8vw, 3.1rem); }
.freebie-box .eyebrow { color: var(--gold); }
.freebie-box .lead { color: rgba(242,235,223,.72); }
.freebie-box ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 8px; color: rgba(242,235,223,.85); }
.freebie-box li::before { content: "✦  "; color: var(--gold); }
.guide-mock { aspect-ratio: 3 / 4; max-width: 300px; justify-self: center; width: 100%; background: var(--bg); color: var(--ink); border-radius: 10px; box-shadow: 30px 40px 60px -30px rgba(0,0,0,.6); padding: 34px 28px; position: relative; transform: rotate(3deg); transition: transform .8s var(--ease); }
.freebie-box:hover .guide-mock { transform: rotate(0) translateY(-6px); }
.guide-mock .gm-top { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 20px; }
.guide-mock .gm-title { font: 600 2.3rem/1 var(--serif); margin-bottom: 20px; }
.guide-mock .gm-line { height: 6px; border-radius: 3px; background: var(--gold-soft); margin-bottom: 9px; }
.guide-mock .gm-line.s { width: 68%; }
.guide-mock .gm-stamp { position: absolute; right: -20px; bottom: 40px; width: 92px; height: 92px; border-radius: 50%; background: var(--gold); color: #fff; display: grid; place-items: center; text-align: center; font: 600 .64rem/1.25 var(--sans); letter-spacing: .08em; text-transform: uppercase; transform: rotate(-10deg); }
.freebie-form { display: grid; gap: 14px; position: relative; }
.ff-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ff-check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; line-height: 1.5; color: rgba(242,235,223,.7); }
.ff-check input { margin-top: 3px; accent-color: var(--gold); }
.ff-check a { color: inherit; }
.freebie-form .btn { justify-self: start; }
.freebie-form .btn:disabled { opacity: .6; cursor: wait; }
.ff-msg { margin: 0; font-size: .92rem; min-height: 1em; }
.ff-msg.is-ok { color: #CFE3C2; }
.ff-msg.is-error { color: #F0C2B4; }
.ff-row input { flex: 1 1 200px; padding: 16px 22px; border-radius: 999px; border: 1px solid rgba(242,235,223,.25); font: 1rem var(--sans); background: rgba(242,235,223,.06); color: #fff; }
.ff-row input::placeholder { color: rgba(242,235,223,.5); }
.fine { font-size: .8rem; opacity: .6; margin-top: 12px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-grid .sticky { position: sticky; top: 120px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 50px 24px 0; position: relative; font: 600 clamp(1.25rem, 1.7vw, 1.45rem)/1.3 var(--serif); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after { content: ""; position: absolute; right: 12px; top: 50%; width: 14px; height: 1.5px; background: var(--gold-deep); transition: transform .4s var(--ease); }
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq .answer p { color: var(--ink-soft); padding-bottom: 24px; margin: 0; max-width: 640px; }

/* ---------- Empfehlung ---------- */
.referral { border-radius: var(--radius-lg); border: 1px solid var(--gold); padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.referral h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-bottom: 14px; }
.referral p { color: var(--ink-soft); margin: 0; max-width: 700px; }

/* ---------- Final CTA ---------- */
.final { background: var(--dark); color: var(--dark-ink); text-align: center; }
.final h2 { color: #fff; font-size: clamp(2.5rem, 5.5vw, 4.4rem); }
.final .lead { color: rgba(242,235,223,.7); max-width: 640px; margin: 0 auto 40px; }
.final .eyebrow { color: var(--gold); }
.final .micro { justify-content: center; color: rgba(242,235,223,.55); }
.final .micro svg { color: var(--gold); }
.contact-alt { margin-top: 70px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; text-align: left; border: 1px solid rgba(242,235,223,.12); border-radius: var(--radius-lg); padding: 44px; }
.contact-alt h3 { color: #fff; }
.contact-alt p, .contact-alt a { color: rgba(242,235,223,.7); }
.contact-alt a:hover { color: #fff; }
.form { display: grid; gap: 12px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form input, .form textarea, .form select { width: 100%; padding: 15px 18px; border-radius: 12px; border: 1px solid rgba(242,235,223,.18); background: rgba(242,235,223,.05); color: #fff; font: .97rem var(--sans); }
.form select option { color: #000; }
.form textarea { min-height: 110px; resize: vertical; }
.form ::placeholder { color: rgba(242,235,223,.45); }
.form label.check { display: flex; gap: 10px; font-size: .82rem; color: rgba(242,235,223,.6); align-items: flex-start; }
.form label.check input { width: auto; margin-top: 4px; }
.form label.check a { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(242,235,223,.6); padding: 50px 0 40px; border-top: 1px solid rgba(242,235,223,.08); font-size: .9rem; }
.footer .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer .logo { color: var(--dark-ink); }
.footer .logo-word small { color: rgba(242,235,223,.5); }
.footer .logo-word strong span { color: var(--gold); }
.footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }
.footer .icons a { color: rgba(242,235,223,.7); }

/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: none; transform: translateY(140%); transition: transform .5s var(--ease); }
.mobile-cta.show { transform: none; }
.mobile-cta .btn { width: 100%; box-shadow: var(--shadow); }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(2) { transition-delay: .08s; }
.stagger.is-in > *:nth-child(3) { transition-delay: .16s; }
.stagger.is-in > *:nth-child(4) { transition-delay: .24s; }
.stagger.is-in > *:nth-child(5) { transition-delay: .32s; }
.stagger.is-in > *:nth-child(6) { transition-delay: .40s; }
.no-js .reveal, .no-js .stagger > * { opacity: 1; transform: none; }

/* ---------- Rechtsseiten ---------- */
.legal-page { padding: 150px 0 100px; }
.legal-page h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); margin-bottom: 40px; }
.legal-page h2 { font-size: 1.7rem; margin: 48px 0 14px; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.todo { background: #FFF3B0; color: #5A4500; padding: 1px 6px; border-radius: 5px; font-size: .92em; }
.todo-box { background: #FFF3B0; color: #5A4500; padding: 18px 22px; border-radius: 14px; margin-bottom: 36px; font-size: .95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1140px) {
  .nav-links, .nav-tools .icons, .nav-tools .btn { display: none; }
  .nav-tools { margin-left: auto; }
  .burger { display: block; z-index: 2; }
  .menu-open .nav-links {
    display: flex; position: fixed; inset: 0; background: var(--bg); flex-direction: column; justify-content: center; align-items: center; gap: 24px; margin: 0;
  }
  .nav-links a:not(.btn) { font: 600 1.9rem var(--serif); color: var(--ink); }
  .menu-only { display: block; }
  .menu-only .btn { margin-top: 10px; }
  .menu-only .icons { display: flex; gap: 22px; justify-content: center; }
  .klar { grid-template-columns: repeat(2, 1fr); }
  .klar-card { min-height: 0; }
  .steps, .promise-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps::before { display: none; }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .hero { padding-top: 130px; min-height: auto; }
  .hero-grid, .truth, .method-head, .about-grid, .faq-grid, .freebie-box, .contact-alt, .referral { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { justify-self: center; max-width: 320px; }
  .fc-1 { left: -24px; } .fc-2 { right: -12px; }
  .pain-grid, .benefit-grid, .testi-grid, .why-grid, .offer-grid { grid-template-columns: 1fr; }
  .night { grid-template-columns: 1fr; gap: 14px; }
  .addon { grid-template-columns: 1fr; }
  .about-visual, .faq-grid .sticky { position: static; }
  .about-visual { max-width: 360px; }
  .mobile-cta { display: block; }
  .side-tab { top: auto; bottom: 90px; transform: none; padding: 14px 9px; font-size: .72rem; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 2.9rem); }
  .logo { gap: 10px; }
  .logo-word strong { font-size: 1.08rem; letter-spacing: .12em; }
  .logo-word small { font-size: .5rem; letter-spacing: .24em; }
  .logo-mark { width: 38px; height: 38px; }
  .klar, .steps, .promise-grid { grid-template-columns: 1fr; }
  .timeline::before, .timeline .progress { left: 76px; }
  .moment { grid-template-columns: 76px 1fr; gap: 26px; }
  .moment .t { font-size: 1.05rem; padding-right: 18px; }
  .form .row { grid-template-columns: 1fr; }
  .contact-alt, .pkg { padding: 32px 24px; }
  .float-card { font-size: .76rem; padding: 9px 12px; }
  .float-card .ic { width: 28px; height: 28px; }
  .hero-ctas .btn { width: 100%; }
  .panel { padding: 70px 26px 36px; }
  .side-tab { display: none; }
  .menu-tab { background: none; border: 0; font: 600 1.9rem var(--serif); color: var(--gold-deep); cursor: pointer; }
  .nav .container { gap: 10px; }
  .nav-tools { gap: 2px; }
  .lang button { padding: 6px 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .stagger > *, .fade-up { opacity: 1 !important; transform: none !important; }
  .hero h1 .line > span { transform: none !important; }
}
