/* ============================================================
   AS-Bewerbung.ch – Premium Design System
   "Geordnete Geschichte" — ruhig, präzise, schweizerisch.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&family=Inter:wght@400;500;600;700&display=swap');

/* --- Tokens ------------------------------------------------ */
:root {
  --paper:       #F5F3EE;
  --paper-2:     #FBFAF7;
  --surface:     #ECEAE2;
  --border:      #DDD9CF;
  --border-soft: #E7E3DA;
  --ink:         #1B1A16;
  --text-body:   #45433C;
  --text-muted:  #847F73;

  --accent:      #143F3C;   /* petrol-grün */
  --accent-mid:  #1C5450;
  --accent-deep: #0E2E2C;
  --accent-tint: #E7EEEB;
  --accent-line: #B9C8C3;

  --clay:        #9A5B3F;   /* sehr sparsam eingesetzter Warmton */

  --radius-sm:   3px;
  --radius-md:   7px;
  --radius-lg:   12px;

  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    2rem;
  --space-lg:    3.5rem;
  --space-xl:    6.5rem;

  --max-w:       1120px;
  --measure:     66ch;

  --font-body:   'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-display:'Newsreader', Georgia, 'Times New Roman', serif;

  --shadow-sm:   0 1px 2px rgba(20,20,16,0.04);
  --shadow-md:   0 8px 30px rgba(20,40,38,0.08);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/* --- Typography -------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: -0.012em;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; color: var(--ink); letter-spacing: 0; }
p  { max-width: var(--measure); }
strong { color: var(--ink); font-weight: 600; }

/* --- Layout helpers ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}
.section { padding-block: var(--space-xl); position: relative; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--accent-deep); color: rgba(255,255,255,0.82); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

/* Hairline rule — the structural signature */
.section--alt, .section--dark { border-top: 1px solid var(--border-soft); }

/* --- Eyebrows / structural labels (signature) -------------- */
.section-eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent-line);
}
.section-label { color: var(--text-muted); }
.section-label::before { background: var(--border); }
.section--dark .section-eyebrow { color: rgba(255,255,255,0.6); }
.section--dark .section-eyebrow::before { background: rgba(255,255,255,0.3); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
  text-align: center;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-mid); }
.btn-secondary { background: transparent; color: var(--accent); border: 1.5px solid var(--accent-line); }
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-tint); }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { background: var(--paper); }

:focus-visible { outline: 2.5px solid var(--accent-mid); outline-offset: 2px; border-radius: 2px; }

/* --- Navigation -------------------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,243,238,0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
  padding-block: 0.95rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); white-space: nowrap; letter-spacing: -0.01em; }
.nav-logo::first-letter { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.25rem; flex-wrap: nowrap; }
.nav-links a { font-size: 0.82rem; white-space: nowrap; color: var(--text-body); transition: color 0.15s; position: relative; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-cta { white-space: nowrap; padding: 0.55rem 1rem; font-size: 0.82rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.2s; }

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--paper);
  z-index: 200; flex-direction: column; padding: 1.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-menu-close { font-size: 1.4rem; color: var(--text-body); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu nav a { font-size: 1.1rem; color: var(--text-body); border-bottom: 1px solid var(--border-soft); padding-block: 1rem; font-family: var(--font-display); }
.mobile-menu nav a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 2rem; width: 100%; }

.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--accent); color: #fff; padding: 0.95rem 1.5rem;
  font-weight: 600; text-align: center; font-size: 0.92rem;
  box-shadow: 0 -2px 20px rgba(14,46,44,0.18);
}

/* --- Hero -------------------------------------------------- */
.hero { padding-block: clamp(3.5rem, 8vw, 6.5rem) var(--space-xl); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4.5rem; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent-line); }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-subline { font-size: 1.22rem; line-height: 1.5; color: var(--ink); margin-bottom: 1.5rem; max-width: 30ch; font-family: var(--font-display); }
.hero-body { margin-bottom: 2.25rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }
.hero-micro { margin-top: 1.75rem; font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-micro span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-micro span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-line); }

/* Hero signature module — "Frage wird zu geordneter Antwort" */
.hero-signature {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.hero-signature::before {
  content: 'IM GESPRÄCH';
  position: absolute; top: -9px; left: 1.75rem;
  background: var(--paper-2); padding: 0 0.6rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; color: var(--text-muted);
}
.sig-question {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem; color: var(--text-muted); line-height: 1.4;
  padding-bottom: 1.25rem; margin-bottom: 1.25rem;
  border-bottom: 1px dashed var(--border);
}
.sig-question span { color: var(--ink); font-style: normal; }
.sig-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.85rem; }
.sig-steps { display: flex; flex-direction: column; gap: 0.7rem; }
.sig-step { display: flex; gap: 0.85rem; align-items: flex-start; }
.sig-step-n {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--accent);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.sig-step p { font-size: 0.9rem; line-height: 1.45; color: var(--text-body); margin: 0; }
.sig-step strong { display: block; color: var(--ink); font-weight: 600; }

/* --- Leitsatz --------------------------------------------- */
.leitsatz { padding-block: var(--space-lg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.leitsatz-text {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.45rem, 3vw, 2.15rem); color: var(--ink);
  line-height: 1.4; max-width: 24ch; letter-spacing: -0.01em;
}
.leitsatz-text em { color: var(--accent); font-style: italic; }
.leitsatz--big .leitsatz-text { max-width: 30ch; }

/* --- Tag --------------------------------------------------- */
.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 100px;
  background: var(--accent-tint); color: var(--accent); margin-bottom: 1.1rem;
}

/* --- Problem Section --------------------------------------- */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.problem-questions { display: flex; flex-direction: column; gap: 0.6rem; }
.problem-q {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.95rem 1.15rem; background: var(--paper); border: 1px solid var(--border-soft);
  border-left: 2px solid var(--accent); border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--text-body); font-family: var(--font-display); font-style: italic;
  transition: border-color 0.2s, background 0.2s;
}
.problem-q:hover { background: var(--accent-tint); border-left-color: var(--accent-mid); }
.problem-q::before { content: '?'; color: var(--accent); font-weight: 700; font-style: normal; font-family: var(--font-body); flex-shrink: 0; }
.section--alt .problem-q { background: var(--paper); }

/* --- Decision cards --------------------------------------- */
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.75rem; }
.decision-card {
  background: var(--paper-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.85rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.decision-card:hover { border-color: var(--accent-line); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.decision-card h3 { font-size: 1.18rem; }
.decision-card p { font-size: 0.9rem; color: var(--text-body); }
.decision-matches { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding-top: 0.5rem; border-top: 1px solid var(--border-soft); }
.decision-matches span { display: block; color: var(--accent); margin-top: 0.25rem; }
.decision-card .btn { margin-top: auto; font-size: 0.85rem; }

/* --- Pricing ---------------------------------------------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.75rem; }
.price-card {
  background: var(--paper-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.85rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.7rem; position: relative;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card--featured { border-color: var(--accent); border-width: 1.5px; background: #fff; box-shadow: var(--shadow-md); }
.price-card--featured .price-badge {
  display: block; position: absolute; top: -11px; left: 1.6rem;
  background: var(--accent); color: #fff; font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.8rem; border-radius: 100px; white-space: nowrap;
}
.price-badge { display: none; }
.price-name { font-weight: 600; font-size: 1rem; color: var(--ink); }
.price-amount { font-family: var(--font-display); font-size: 2rem; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.price-amount span { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-body); display: block; margin-top: 0.4rem; letter-spacing: 0.01em; }
.price-desc { font-size: 0.86rem; color: var(--text-body); }
.price-includes { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.4rem; padding-top: 0.9rem; border-top: 1px solid var(--border-soft); }
.price-includes li { font-size: 0.8rem; color: var(--text-body); display: flex; align-items: flex-start; gap: 0.5rem; }
.price-includes li::before { content: ''; width: 14px; height: 14px; margin-top: 3px; flex-shrink: 0; background: var(--accent); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 4L6 11.5 2.5 8' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 4L6 11.5 2.5 8' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat; }
.price-card .btn { margin-top: auto; width: 100%; }

/* --- Process steps (true sequence → numbering justified) --- */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-top: 2.75rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 25px; left: 10%; right: 10%; height: 1px; background: var(--border); z-index: 0; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.85rem; padding: 0.5rem; position: relative; z-index: 1; }
.step-num {
  width: 50px; height: 50px; border-radius: 50%; background: var(--paper);
  border: 1.5px solid var(--accent); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--accent); flex-shrink: 0;
}
.section--alt .step-num { background: var(--paper-2); }
.process-step h4 { font-size: 0.92rem; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); max-width: 22ch; }

/* --- Differenzierung --------------------------------------- */
.diff-list { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
.diff-item { display: flex; align-items: center; gap: 1rem; font-size: 1.05rem; color: rgba(255,255,255,0.88); font-family: var(--font-display); padding-block: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.diff-item:last-child { border-bottom: none; }
.diff-item::before { content: ''; width: 18px; height: 1px; background: rgba(255,255,255,0.4); flex-shrink: 0; }

/* --- About ------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }
.about-photo {
  background: linear-gradient(160deg, var(--surface), var(--paper));
  border-radius: var(--radius-lg); aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem; text-align: center; padding: 1rem;
  border: 1px solid var(--border);
}

/* --- FAQ --------------------------------------------------- */
.faq-list { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; font-size: 1.08rem; font-weight: 500; font-family: var(--font-display);
  color: var(--ink); text-align: left; gap: 1rem; transition: color 0.18s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: var(--accent); transition: transform 0.25s var(--ease), border-color 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); }
.faq-answer { display: none; padding-bottom: 1.3rem; color: var(--text-body); font-size: 0.96rem; max-width: var(--measure); }
.faq-item.open .faq-answer { display: block; }

/* --- CTA box ---------------------------------------------- */
.cta-box {
  background: var(--accent-deep); border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem); text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-box::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(28,84,80,0.5), transparent 55%);
  pointer-events: none;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; margin-bottom: 1rem; max-width: 22ch; margin-inline: auto; }
.cta-box p { color: rgba(255,255,255,0.78); margin-inline: auto; margin-bottom: 2rem; }
.cta-box-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Footer ------------------------------------------------ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.62); padding-block: 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 260px repeat(3, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.86rem; margin-top: 0.85rem; color: rgba(255,255,255,0.45); max-width: 30ch; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.25rem; color: #fff; }
.footer-logo::first-letter { color: var(--accent-line); }

/* --- Inner page hero --------------------------------------- */
.page-hero { background: var(--paper-2); padding-block: clamp(3rem, 6vw, 4.5rem); border-bottom: 1px solid var(--border); }
.page-hero .tag { margin-bottom: 0.9rem; }
.page-hero h1 { margin-bottom: 1.1rem; max-width: 18ch; }
.page-hero p { font-size: 1.12rem; color: var(--text-body); max-width: 56ch; margin-bottom: 1.75rem; }

/* --- Content lists ---------------------------------------- */
.check-list, .bullet-list { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.check-list li, .bullet-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.97rem; }
.check-list li::before { content: ''; width: 16px; height: 16px; margin-top: 4px; flex-shrink: 0; background: var(--accent); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 4L6 11.5 2.5 8' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 4L6 11.5 2.5 8' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat; }
.bullet-list li::before { content: ''; width: 16px; height: 1px; margin-top: 12px; flex-shrink: 0; background: var(--accent-line); }
.section--dark .check-list li::before { background: rgba(255,255,255,0.7); }

/* --- Content cards ---------------------------------------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.content-card { background: var(--paper-2); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.35rem; font-size: 0.9rem; font-weight: 600; color: var(--ink); transition: border-color 0.2s; }
.content-card:hover { border-color: var(--accent-line); }
.content-card p { font-weight: 400; color: var(--text-body); font-size: 0.84rem; margin-top: 0.4rem; line-height: 1.5; }
.section--alt .content-card { background: #fff; }

/* --- Sitzung boxes ---------------------------------------- */
.sitzung-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 2rem; }
.sitzung-box { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; background: var(--paper-2); }
.sitzung-box h3 { margin-bottom: 1rem; }
.sitzung-box ul { display: flex; flex-direction: column; gap: 0.55rem; }
.sitzung-box ul li { font-size: 0.9rem; display: flex; gap: 0.6rem; }
.sitzung-box ul li::before { content: ''; width: 14px; height: 1px; margin-top: 12px; background: var(--accent-line); flex-shrink: 0; }

/* --- Form ------------------------------------------------- */
.form-section { background: var(--paper-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.contact-notes { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2rem; }
.contact-note { font-size: 0.86rem; color: var(--text-muted); display: flex; gap: 0.6rem; align-items: center; }
.contact-note::before { content: ''; width: 16px; height: 1px; background: var(--accent-line); flex-shrink: 0; }

.form-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-sm); }
.form-card h3 { margin-bottom: 1.5rem; }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; letter-spacing: 0.02em; }
.form-field label .opt { color: var(--text-muted); font-weight: 400; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.8rem; font-family: var(--font-body); font-size: 0.92rem; color: var(--text-body);
  background: var(--paper-2); transition: border-color 0.18s, box-shadow 0.18s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-radios { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.25rem; }
.form-radios label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 400; cursor: pointer; }
.form-radios input { width: auto; accent-color: var(--accent); }
.form-consent label { display: flex; align-items: flex-start; gap: 0.5rem; font-weight: 400; font-size: 0.82rem; cursor: pointer; color: var(--text-muted); }
.form-consent input { width: auto; margin-top: 3px; accent-color: var(--accent); }
.form-submit { width: 100%; margin-top: 1.5rem; padding: 1rem; font-size: 0.96rem; }
.form-success { display: none; background: var(--accent-tint); border: 1px solid var(--accent); color: var(--accent-deep); border-radius: var(--radius-md); padding: 1.5rem; text-align: center; margin-top: 1rem; }

/* --- Breadcrumb ------------------------------------------- */
.breadcrumb { font-size: 0.8rem; color: var(--text-muted); padding: 0.85rem 0; border-bottom: 1px solid var(--border-soft); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span::before { content: ' / '; color: var(--border); }

/* --- Blog ------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 2.75rem; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; background: var(--paper-2); transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent-line); }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-card-tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.blog-card h3 { font-size: 1.18rem; line-height: 1.25; }
.blog-card p { font-size: 0.88rem; color: var(--text-body); flex: 1; }
.blog-card-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); margin-top: auto; }
.blog-placeholder { aspect-ratio: 16/9; background: linear-gradient(160deg, var(--surface), var(--paper)); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.05em; }

.content-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* --- Utilities --------------------------------------------- */
.mt-sm { margin-top: var(--space-sm); } .mt-md { margin-top: var(--space-md); } .mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); } .mb-md { margin-bottom: var(--space-md); }
.text-muted { color: var(--text-muted); } .text-accent { color: var(--accent); }
.centered { text-align: center; } .centered p { margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === RESPONSIVE =========================================== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-signature { max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --space-xl: 4.25rem; --space-lg: 2.75rem; }
  h1 { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.1rem); }
  .hero-subline { font-size: 1.12rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 56px; }
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .decision-grid, .pricing-grid, .process-steps, .blog-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 1; max-width: 220px; }
  .content-2col, .sitzung-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-box-actions .btn { width: 100%; }
  .cta-box-actions { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   LESERFÜHRUNG / Reader guidance
   Ruhige, gerichtete Bewegung. Nur aktiv mit JS + ohne
   "prefers-reduced-motion". Ohne JS bleibt alles sichtbar.
   ============================================================ */

/* Lese-Fortschritt — Orientierung auf langen Seiten */
.read-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent); z-index: 300;
  transition: width 0.08s linear;
}

/* Hero-Auftakt — der Blick beginnt geführt */
.js .hero-content > *,
.js .hero-signature {
  opacity: 0;
  animation: riseIn 0.85s var(--ease) forwards;
}
.js .hero-eyebrow   { animation-delay: 0.05s; }
.js .hero h1        { animation-delay: 0.14s; }
.js .hero-subline   { animation-delay: 0.24s; }
.js .hero-body      { animation-delay: 0.32s; }
.js .hero-actions   { animation-delay: 0.40s; }
.js .hero-micro     { animation-delay: 0.48s; }
.js .hero-signature { animation-delay: 0.42s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll-Hinweis — leitet den ersten Scroll ein */
.hero-scrollcue {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  margin-top: 3.25rem; color: var(--text-muted);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: opacity 0.4s var(--ease);
}
.hero-scrollcue.gone { opacity: 0; pointer-events: none; }
.hero-scrollcue i { width: 1px; height: 36px; background: var(--accent-line); position: relative; overflow: hidden; display: block; }
.hero-scrollcue i::after { content: ''; position: absolute; left: 0; top: 0; width: 1px; height: 13px; background: var(--accent); animation: cueSlide 1.9s var(--ease) infinite; }
@keyframes cueSlide { 0% { transform: translateY(-15px); } 100% { transform: translateY(36px); } }

/* Geführte Einblendung beim Scrollen — Abschnitte treten in Sequenz ein */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

.js .reveal-group > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal-group.in > * { opacity: 1; transform: none; }
.js .reveal-group.in > *:nth-child(2) { transition-delay: 0.09s; }
.js .reveal-group.in > *:nth-child(3) { transition-delay: 0.18s; }
.js .reveal-group.in > *:nth-child(4) { transition-delay: 0.27s; }
.js .reveal-group.in > *:nth-child(5) { transition-delay: 0.34s; }
.js .reveal-group.in > *:nth-child(6) { transition-delay: 0.40s; }
.js .reveal-group.in > *:nth-child(n+7) { transition-delay: 0.46s; }

/* Gerichteter Hinweis auf Handlungsknöpfen — Vorwärtsbewegung zur Conversion */
.btn-primary::after,
.btn-white::after {
  content: '→'; font-size: 1.02em; line-height: 1;
  transition: transform 0.22s var(--ease);
}
.btn-primary:hover::after,
.btn-white:hover::after { transform: translateX(4px); }

/* Bewegung respektvoll abschalten */
@media (prefers-reduced-motion: reduce) {
  .js .hero-content > *, .js .hero-signature { animation: none; opacity: 1; }
  .js .reveal, .js .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .hero-scrollcue i::after { animation: none; }
  .btn-primary::after, .btn-white::after { transition: none; }
}

/* --- Bilder: Porträt & Ratgeber-Illustrationen ------------- */
.about-photo { overflow: hidden; padding: 0; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.blog-placeholder { padding: 0; }
.blog-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Formular-Fehlermeldung -------------------------------- */
.form-error {
  display: none;
  background: #FBECE8; border: 1px solid #B6492F; color: #7A2E1B;
  border-radius: var(--radius-md); padding: 1.1rem 1.25rem; margin-top: 1rem; font-size: 0.9rem;
}

/* ============================================================
   HERO-BLICKFÄNGER – animierte "Frage → geordnete Antwort"
   Nur aktiv mit JS + ohne reduzierte Bewegung.
   ============================================================ */
.sig-steps { position: relative; }
.sig-step-n { background: var(--paper-2); z-index: 1; }
.hero-signature .sig-thread { display: none; }

.hero-signature .sig-question {
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.hero-signature .sig-question.sig-fade-out { opacity: 0; transform: translateY(-6px); }

.js .hero-signature.animate .sig-thread {
  display: block; position: absolute; left: 10px; top: 14px; bottom: 14px;
  width: 1.5px; background: var(--accent-line);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.7s var(--ease); z-index: 0;
}
.js .hero-signature.animate .sig-steps.in .sig-thread { transform: scaleY(1); }
.js .hero-signature.animate .sig-step {
  opacity: 0; transform: translateX(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.js .hero-signature.animate .sig-step.in { opacity: 1; transform: none; }

/* ============================================================
   3D-MAUS-NEIGUNG – nur Maus/Zeiger, nicht Touch
   ============================================================ */
.js .tilt-card { transform-style: preserve-3d; }
@media (prefers-reduced-motion: reduce) {
  .hero-signature .sig-question,
  .js .hero-signature.animate .sig-step,
  .js .hero-signature.animate .sig-thread { transition: none; opacity: 1; transform: none; }
  .tilt-card { transform: none !important; }
}
