/*
Theme Name: Unspoken Theme
Theme URI: https://unspoken.ch
Author: nq68
Version: 2.0.0
Text Domain: unspoken
*/

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #C9A66B;
  --gold-light:  #DDB97C;
  --gold-dark:   #A8854A;
  --dark:        #0E1520;
  --trust:       #1A2332;
  --charcoal:    #2C2C2C;
  --offwhite:    #F8F6F4;
  --white:       #FFFFFF;
  --text:        #2C2C2C;
  --text-muted:  #6B6B6B;
  --border:      #E4DDD6;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  88px;
  --space-2xl: 140px;

  --font-ui:    -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-logo:  'Cinzel', serif;

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --r:          6px;

  --shadow-sm:  0 2px 8px rgba(14,21,32,.07);
  --shadow-md:  0 8px 32px rgba(14,21,32,.12);
  --shadow-lg:  0 24px 64px rgba(14,21,32,.18);
  --shadow-gold:0 8px 32px rgba(201,166,107,.25);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-ui); cursor: pointer; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  z-index: 200;
  transition: width .1s linear;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.15; color: var(--charcoal); font-weight: 400; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
em { font-style: italic; color: var(--gold); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.container--narrow { max-width: 780px; }
.container--wide   { max-width: 1400px; }

.section { padding: var(--space-2xl) 0; }
.section--sm { padding: var(--space-xl) 0; }

/* Alternating backgrounds */
.bg-dark    { background: var(--dark); }
.bg-trust   { background: var(--trust); }
.bg-white   { background: var(--white); }
.bg-offwhite{ background: var(--offwhite); }

.bg-dark  h1,.bg-dark  h2,.bg-dark  h3,
.bg-trust h1,.bg-trust h2,.bg-trust h3 { color: var(--white); }
.bg-dark p, .bg-trust p { color: rgba(255,255,255,.65); }
.bg-dark .label,.bg-trust .label { color: var(--gold-light); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--r);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,166,107,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.btn-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(44,44,44,.3);
}
.btn-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.0625rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(14,21,32,.06);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo__img {
  height: 30px; width: auto;
  display: block;
  transition: filter .4s var(--ease), opacity .3s;
}
.site-logo__img--dark   { display: none; }
.site-logo__img--white  { display: block; }
/* On transparent header: white logo */
.site-header .site-logo__img--white  { display: block; }
.site-header .site-logo__img--dark   { display: none; }
/* After scroll: dark logo */
.site-header.scrolled .site-logo__img--white { display: none; }
.site-header.scrolled .site-logo__img--dark  { display: block; }

/* Desktop nav */
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  position: relative;
  transition: color .25s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { width: 100%; }

.site-header.scrolled .site-nav a { color: var(--text-muted); }
.site-header.scrolled .site-nav a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--r);
  font-weight: 600;
  letter-spacing: .03em;
  box-shadow: 0 4px 16px rgba(201,166,107,.3);
  transition: all .25s var(--ease) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(201,166,107,.45) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__close {
  position: absolute;
  top: 20px; right: 28px;
  background: none; border: none;
  color: rgba(255,255,255,.5);
  font-size: 2rem;
  line-height: 1;
  transition: color .2s;
}
.mobile-nav__close:hover { color: var(--white); }

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

/* Animated particle canvas bg */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: .18; }
  90%  { opacity: .12; }
  100% { transform: translateY(-100px) scale(0.6); opacity: 0; }
}

/* Radial glow */
.hero-glow {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,107,.07) 0%, transparent 70%);
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,166,107,.12);
  border: 1px solid rgba(201,166,107,.25);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .45s forwards;
}
.hero-headline em { color: var(--gold-light); }

.hero-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .65s forwards;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .95s forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.1s forwards;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}
.hero-trust-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .7;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.25);
  font-size: .6875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  writing-mode: vertical-lr;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(201,166,107,.5));
  margin-bottom: 8px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--trust);
  border-top: 1px solid rgba(201,166,107,.15);
  border-bottom: 1px solid rgba(201,166,107,.15);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   SECTION 2: PROBLEM
   ============================================================ */
.problem-section { background: var(--white); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-intro { font-size: 1.125rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 40px; }

.problem-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #FDF9F6;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .2s, box-shadow .2s;
}
.problem-item:hover {
  border-color: rgba(201,166,107,.4);
  box-shadow: 0 4px 16px rgba(201,166,107,.08);
}
.problem-item__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,166,107,.12);
  display: flex; align-items: center; justify-content: center;
}
.problem-item__icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.problem-item__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  padding-top: 6px;
}

.problem-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-diagram { width: 100%; max-width: 420px; }

/* ============================================================
   SECTION 3: WHY UNSPOKEN
   ============================================================ */
.why-section { background: var(--dark); }
.why-header { text-align: center; margin-bottom: 64px; }
.why-header h2 { color: var(--white); }
.why-header p { color: rgba(255,255,255,.5); max-width: 560px; margin: 16px auto 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.05);
  border-radius: var(--r);
  overflow: hidden;
}
.why-card {
  background: rgba(255,255,255,.02);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.why-card:hover { background: rgba(255,255,255,.05); }
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.why-card:hover::before { width: 100%; }

.why-card__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(201,166,107,.12);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 300;
}
.why-card__icon {
  margin-bottom: 20px;
}
.why-card__icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.why-card__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p { font-size: .9375rem; color: rgba(255,255,255,.78); line-height: 1.7; margin: 0; }

/* ============================================================
   SECTION 4: PROCESS
   ============================================================ */
.process-section { background: var(--offwhite); }
.process-header { text-align: center; margin-bottom: 72px; }

.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 740px; margin: 0 auto; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  left: 28px; top: 28px; bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,166,107,.1));
}

.process-step {
  display: flex;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }

.process-step__num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: background .25s, color .25s;
}
.process-step:hover .process-step__num {
  background: var(--gold);
  color: var(--white);
}

.process-step__body { padding-top: 12px; }
.process-step__tag {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}
.process-step__meta {
  font-size: .8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
}
.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.process-step p { font-size: .9375rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.process-cta { text-align: center; margin-top: 56px; }

/* ============================================================
   SECTION 5: FÜR WEN?
   ============================================================ */
.forwhom-section { background: var(--white); }
.forwhom-header { text-align: center; margin-bottom: 64px; }
.forwhom-header p { color: var(--text-muted); max-width: 540px; margin: 16px auto 0; }

.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.forwhom-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s var(--ease), border-color .3s;
}
.forwhom-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(201,166,107,.35);
}
.forwhom-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.forwhom-card:hover::after { transform: scaleX(1); }

.forwhom-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,166,107,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.forwhom-card__icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.forwhom-card__title {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.forwhom-card h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.forwhom-card p { font-size: .9375rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   SECTION 6: PAKETE
   ============================================================ */
.packages-section { background: var(--offwhite); }
.packages-header { text-align: center; margin-bottom: 16px; }
.packages-subline {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  position: relative;
  transition: box-shadow .3s, transform .3s var(--ease);
}
.pkg-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.pkg-card--featured {
  background: var(--trust);
  border-color: rgba(201,166,107,.3);
  padding-top: 56px;
}
.pkg-card--featured h3,
.pkg-card--featured .pkg-name { color: var(--white); }
.pkg-card--featured p { color: rgba(255,255,255,.6); }
.pkg-card--featured .pkg-features li { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.08); }
.pkg-card--featured .pkg-features li::before { background: var(--gold); }

.pkg-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 0 0 var(--r) var(--r);
}

.pkg-name {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pkg-card h3 { font-size: 1.625rem; margin-bottom: 6px; }
.pkg-ideal { font-size: .8125rem; color: var(--text-muted); font-style: italic; margin-bottom: 28px; }
.pkg-card--featured .pkg-ideal { color: rgba(255,255,255,.45); }

.pkg-features { margin-bottom: 32px; }
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--text-muted);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}

.pkg-cta { display: block; text-align: center; }
.pkg-card--featured .btn-dark {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  color: var(--white);
}
.pkg-card--featured .btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   SECTION 7: ABOUT
   ============================================================ */
.about-section { background: var(--trust); }
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }
.about-image {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r);
}
.about-image-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.2);
  font-size: .875rem;
}
.about-image-placeholder svg { width: 48px; height: 48px; opacity: .3; }
.about-frame {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 1.5px solid rgba(201,166,107,.3);
  border-radius: var(--r);
  pointer-events: none;
}

.about-text h2 { color: var(--white); margin-bottom: 28px; }
.about-pullquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 32px;
}
.about-pullquote p {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  margin: 0;
}
.about-bio { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 32px; }
.about-sig { font-family: var(--font-serif); font-size: 1.125rem; font-style: italic; color: var(--gold); margin-bottom: 32px; }

.about-creds { display: flex; flex-direction: column; gap: 10px; }
.about-cred {
  display: flex; align-items: center; gap: 12px;
  font-size: .875rem; color: rgba(255,255,255,.45);
}
.about-cred::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 18px; height: 1px;
  background: var(--gold); opacity: .6;
}

/* ============================================================
   SECTION 8: TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 64px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testi-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
  margin-bottom: -20px;
  display: block;
}
.testi-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-star {
  width: 14px; height: 14px;
  fill: var(--gold);
}
.testi-author { font-size: .8125rem; font-weight: 600; color: var(--text-muted); letter-spacing: .05em; }
.testi-role { font-size: .8rem; color: var(--text-muted); opacity: .6; margin-top: 2px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--dark); position: relative; overflow: hidden; padding: 100px 0; }
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,107,.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-banner-inner { text-align: center; position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.5); max-width: 500px; margin: 0 auto 40px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SECTION 9: FAQ
   ============================================================ */
.faq-section { background: var(--offwhite); }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  transition: color .2s;
}
.faq-btn:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before,.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}
.faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  display: none;
  padding-bottom: 24px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SECTION 10: CONTACT
   ============================================================ */
.contact-section { background: var(--white); }
.contact-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-inner h2 { margin-bottom: 12px; }
.contact-sub { color: var(--text-muted); margin-bottom: 48px; }

.contact-booking {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 56px 40px;
  margin-bottom: 40px;
  min-height: 240px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
}
.contact-booking svg { color: var(--gold); }
.contact-booking-label {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
}
.contact-booking-hint {
  font-size: .875rem;
  color: var(--text-muted);
}

.contact-or {
  display: flex; align-items: center; gap: 16px;
  color: var(--text-muted); font-size: .875rem;
  margin-bottom: 40px;
}
.contact-or::before,.contact-or::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.contact-details {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.contact-detail { text-align: center; }
.contact-detail-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 1rem; color: var(--charcoal); }
.contact-detail-value a { color: var(--gold); transition: opacity .2s; }
.contact-detail-value a:hover { opacity: .7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: 28px 0;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: var(--font-logo);
  font-size: .8125rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
}
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: .8125rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   LEGAL PAGES (Impressum / AGB / Datenschutz)
   ============================================================ */
.legal-page {
  padding-top: 120px;
  padding-bottom: var(--space-2xl);
  background: var(--white);
  min-height: 100vh;
}
.legal-page h1 { margin-bottom: 8px; font-size: clamp(1.75rem, 4vw, 2.75rem); }
.legal-page .legal-meta { color: var(--text-muted); font-size: .875rem; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-page h2 { font-size: 1.375rem; margin: 40px 0 12px; }
.legal-page p { color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.legal-page a { color: var(--gold); }
.legal-page ul li { color: var(--text-muted); padding: 4px 0 4px 16px; position: relative; }
.legal-page ul li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }

/* ============================================================
   SYMPTOMS GRID ("Erkenne ich mich wieder?")
   ============================================================ */
.symptoms-section { background: var(--trust); }
.symptoms-header { text-align: center; margin-bottom: 56px; }
.symptoms-header h2 { color: var(--white); }
.symptoms-header p { color: rgba(255,255,255,.5); max-width: 520px; margin: 14px auto 0; }

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.symptom-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background .25s, border-color .25s;
}
.symptom-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,166,107,.25);
}
.symptom-card__dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  opacity: .8;
}
.symptom-card__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.symptom-card p { font-size: .9375rem; color: rgba(255,255,255,.82); line-height: 1.55; margin: 0; }

.triggers-strip {
  background: rgba(201,166,107,.08);
  border: 1px solid rgba(201,166,107,.18);
  border-radius: var(--r);
  padding: 28px 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.triggers-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.trigger-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.trigger-tag {
  background: rgba(201,166,107,.1);
  border: 1px solid rgba(201,166,107,.2);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
}

/* ============================================================
   SERVICES (6 cards, 3-col)
   ============================================================ */
.services-section { background: var(--offwhite); }
.services-header { text-align: center; margin-bottom: 16px; }
.services-subline {
  text-align: center;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 56px;
}

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

.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.srv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(201,166,107,.3);
}
.srv-card:hover::before { transform: scaleX(1); }

.srv-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(201,166,107,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.srv-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

.srv-name {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.srv-card h3 { font-size: 1.25rem; color: var(--charcoal); margin-bottom: 10px; }
.srv-tagline { font-size: .9375rem; color: var(--text-muted); font-style: italic; margin-bottom: 20px; line-height: 1.5; }

.srv-features {
  margin-bottom: 20px;
  flex: 1;
}
.srv-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.srv-features li:last-child { border-bottom: none; }
.srv-features li::before {
  content: '';
  flex-shrink: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.srv-ideal {
  font-size: .8125rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 4px;
}
.srv-cta { margin-top: auto; }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases-section { background: var(--white); }
.cases-header { text-align: center; margin-bottom: 56px; }
.cases-header p { color: var(--text-muted); max-width: 500px; margin: 14px auto 0; }

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.case-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.case-card__header {
  background: var(--trust);
  padding: 28px 32px;
}
.case-card__tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.case-card__header h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 6px; }
.case-card__header p { color: rgba(255,255,255,.5); font-size: .875rem; margin: 0; }

.case-card__body { padding: 28px 32px; }
.case-block { margin-bottom: 20px; }
.case-block:last-child { margin-bottom: 0; }
.case-block-title {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.case-block ul { display: flex; flex-direction: column; gap: 4px; }
.case-block li {
  font-size: .9rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}
.case-block li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: .6;
}
.case-result {
  background: rgba(201,166,107,.08);
  border: 1px solid rgba(201,166,107,.2);
  border-radius: var(--r);
  padding: 16px 18px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ============================================================
   URGENCY / "WARUM JETZT HANDELN"
   ============================================================ */
.urgency-section { background: var(--dark); }
.urgency-header { text-align: center; margin-bottom: 64px; }
.urgency-header h2 { color: var(--white); }
.urgency-header p { color: rgba(255,255,255,.45); max-width: 500px; margin: 14px auto 0; }

.urgency-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.05);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 56px;
}
.urgency-point {
  background: rgba(255,255,255,.02);
  padding: 40px 32px;
  transition: background .25s;
}
.urgency-point:hover { background: rgba(255,255,255,.05); }
.urgency-point__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(201,166,107,.15);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 300;
}
.urgency-point h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.urgency-point p { font-size: .9375rem; color: rgba(255,255,255,.45); line-height: 1.7; margin: 0; }

.urgency-kicker {
  text-align: center;
  padding: 32px 40px;
  background: rgba(201,166,107,.07);
  border: 1px solid rgba(201,166,107,.18);
  border-radius: var(--r);
  margin-bottom: 48px;
}
.urgency-kicker p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
}
.urgency-kicker .answer {
  font-size: .9375rem;
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-ui);
  font-weight: 600;
}

.urgency-cta { text-align: center; }
.urgency-cta p { color: rgba(255,255,255,.35); font-size: .875rem; margin-top: 16px; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp  { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 400px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.06); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.06); border-right: none; }
  .symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .urgency-points { grid-template-columns: 1fr; gap: 1px; }
}

@media (max-width: 768px) {
  :root { --space-xl: 52px; --space-2xl: 72px; }

  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-scroll { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-visual { display: none; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; gap: 1px; }
  .cta-banner { padding: 60px 0; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .triggers-strip { flex-direction: column; align-items: flex-start; }
  .cases-section { display: none; }
  .process-steps::before { left: 20px; }
  .process-step__num { width: 40px; height: 40px; font-size: 1rem; }
  .process-step { gap: 20px; padding-bottom: 28px; }

  /* Services: swipeable horizontal carousel */
  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 4px 0 20px;
    margin: 0;
  }
  .services-grid::-webkit-scrollbar { display: none; }
  .srv-card {
    flex: 0 0 calc(100vw - 56px);
    max-width: 340px;
    scroll-snap-align: start;
    transform: none !important;
    box-shadow: var(--shadow-sm) !important;
  }

  /* Testimonials: swipeable horizontal carousel */
  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 4px 0 20px;
    margin: 0;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testi-card {
    flex: 0 0 calc(100vw - 56px);
    max-width: 400px;
    scroll-snap-align: start;
    transform: none !important;
  }

  /* Form */
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }

  /* FAB */
  .fab { bottom: 18px; right: 14px; padding: 11px 16px 11px 12px; }
  .fab__sub { display: none; }

  /* Cookie */
  .cookie-inner { gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept { flex: 1; }
}

@media (max-width: 480px) {
  :root { --space-xl: 36px; --space-2xl: 52px; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-details { flex-direction: column; gap: 20px; }
  .urgency-kicker { padding: 20px 16px; }
  .srv-card { flex: 0 0 calc(100vw - 48px); }
  .testi-card { flex: 0 0 calc(100vw - 48px); }
  .about-grid { gap: 28px; }
  .fab { right: 12px; bottom: 14px; }
  .stat-item { padding: 28px 16px; }
  .urgency-points { grid-template-columns: 1fr; }
  .urgency-point { padding: 28px 24px; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-inner { max-width: 760px; }
.contact-form-wrap {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 44px 40px;
  margin-bottom: 40px;
  text-align: left;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-req { color: var(--gold); }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 1rem;
  font-family: var(--font-ui);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,166,107,.12);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A66B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-submit {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 15px 40px;
  border-radius: var(--r);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-ui);
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-gold);
  width: 100%;
}
.form-submit:hover { background: var(--gold-dark); transform: translateY(-2px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-notice {
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: .9375rem;
  line-height: 1.5;
  display: none;
}
.form-notice--success { background: rgba(201,166,107,.08); border: 1px solid rgba(201,166,107,.3); color: var(--charcoal); }
.form-notice--error   { background: rgba(220,50,50,.06);   border: 1px solid rgba(220,50,50,.2);   color: #b91c1c; }

/* ============================================================
   FAB (Floating Action Button – Schreib mir)
   ============================================================ */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  padding: 13px 22px 13px 16px;
  border-radius: 99px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(201,166,107,.5), 0 2px 6px rgba(0,0,0,.12);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease), background .2s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
}
.fab.fab--visible { transform: translateY(0); opacity: 1; }
.fab:hover { background: var(--gold-dark); box-shadow: 0 12px 40px rgba(201,166,107,.55); transform: translateY(-3px); }
.fab__icon { width: 19px; height: 19px; flex-shrink: 0; }
.fab__text { display: flex; flex-direction: column; }
.fab__label { font-size: .875rem; font-weight: 600; }
.fab__sub { font-size: .625rem; font-weight: 400; opacity: .7; margin-top: 2px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--dark);
  border-top: 1px solid rgba(201,166,107,.2);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.cookie-banner.cookie--visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text {
  flex: 1; min-width: 180px;
  font-size: .875rem; color: rgba(255,255,255,.65);
  line-height: 1.5; margin: 0;
}
.cookie-text a { color: var(--gold); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--gold); color: var(--white); border: none;
  padding: 10px 20px; border-radius: var(--r);
  font-size: .875rem; font-weight: 600; font-family: var(--font-ui);
  cursor: pointer; white-space: nowrap; transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--gold-dark); }
.cookie-btn-decline {
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5); padding: 10px 14px; border-radius: var(--r);
  font-size: .875rem; font-family: var(--font-ui);
  cursor: pointer; transition: all .2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.4); color: rgba(255,255,255,.8); }

/* ============================================================
   CONTRAST IMPROVEMENTS
   ============================================================ */
.stat-label       { color: rgba(255,255,255,.65); }
.hero-sub         { color: rgba(255,255,255,.75); }
.hero-trust-item  { color: rgba(255,255,255,.6); }
.why-card p       { color: rgba(255,255,255,.78); }
.why-header p     { color: rgba(255,255,255,.7); }
.symptoms-header p{ color: rgba(255,255,255,.7); }
.symptom-card p   { color: rgba(255,255,255,.82); }
.urgency-point p  { color: rgba(255,255,255,.65); }
.urgency-header p { color: rgba(255,255,255,.65); }
.cta-banner p     { color: rgba(255,255,255,.75); }
.about-bio        { color: rgba(255,255,255,.75); }
.about-cred       { color: rgba(255,255,255,.65); }
.case-card__header p { color: rgba(255,255,255,.65); }

/* CSS list dash removal – use clean dot instead */
.case-block li::before {
  content: '\2022';
  color: var(--gold);
  opacity: .8;
}
.legal-page ul li::before {
  content: '\2022';
  color: var(--gold);
}

/* Carousel scroll hint on mobile */
@media (max-width: 768px) {
  .services-grid::after,
  .testimonials-grid::after {
    content: '';
    flex: 0 0 4px;
    display: block;
  }
}

/* ============================================================
   PROBLEM STATEMENTS – Editorial 2×2 grid
   ============================================================ */
.problem-stmts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: 32px 0 36px;
}
.problem-stmt {
  background: var(--white);
  padding: 28px 24px;
  transition: background .2s;
}
.problem-stmt:hover { background: #fdfaf7; }
.problem-stmt__n {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: rgba(201,166,107,.2);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.problem-stmt strong {
  display: block;
  font-size: 1.0625rem;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 6px;
}
.problem-stmt p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   PROCESS – Horizontal timeline on desktop
   ============================================================ */
@media (min-width: 1025px) {
  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: none;
    gap: 0;
  }
  .process-steps::before {
    top: 20px; left: 20px; right: 20px;
    bottom: auto;
    width: auto; height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(201,166,107,.15));
  }
  .process-step {
    flex-direction: column;
    gap: 14px;
    padding-bottom: 0;
    padding-right: 20px;
    align-items: flex-start;
  }
  .process-step:last-child { padding-right: 0; }
  .process-step__num {
    width: 40px; height: 40px;
    font-size: 1rem;
    position: relative; z-index: 1;
  }
  .process-step__body { padding-top: 0; }
  .process-step__meta { display: none; }
  .process-step p { font-size: .875rem; }
}

/* ============================================================
   WHY GRID – Bento on desktop (featured first card)
   ============================================================ */
@media (min-width: 1025px) {
  .why-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 360px;
  }
  .why-card:first-child {
    grid-row: span 2;
  }
  .why-card:first-child .why-card__number {
    font-size: 5rem;
    color: rgba(201,166,107,.1);
  }
}

/* ============================================================
   MOBILE – Additional improvements
   ============================================================ */
@media (max-width: 768px) {
  /* Symptoms: 2×3 grid on mobile – minmax(0,1fr) forces strict column widths */
  .symptoms-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .symptom-card {
    flex: none !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 14px 12px !important;
    scroll-snap-align: unset;
  }
  .symptom-card__title { font-size: .65rem; overflow-wrap: break-word; word-break: break-word; }
  .symptom-card p { font-size: .8125rem; overflow-wrap: break-word; }

  /* Why grid: 2×2 compact grid on mobile */
  .why-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
    background: transparent;
  }
  .why-card {
    flex: none !important;
    max-width: none !important;
    padding: 20px 16px !important;
    scroll-snap-align: unset;
    background: rgba(255,255,255,.04) !important;
    transform: none !important;
  }
  .why-card__number { font-size: 2rem; margin-bottom: 8px; }
  .why-card__icon { margin-bottom: 10px; }
  .why-card__icon svg { width: 22px; height: 22px; }
  .why-card__title { font-size: .65rem; margin-bottom: 8px; }
  .why-card p { font-size: .8125rem; line-height: 1.55; }

  /* Hide verbose lists on service cards */
  .srv-features, .srv-ideal { display: none; }

  /* Problem stmts: single column */
  .problem-stmts { grid-template-columns: 1fr; }

  /* Process: hide descriptive text, keep title + meta */
  .process-step p:last-child { display: none; }

  /* Urgency: hide 3-point grid */
  .urgency-points { display: none !important; }

  /* Hero: fix comma spacing */
  .hero-sub br + * { display: none; }
}
