/* Lokale Fonts – kein Google-Kontakt, kein Cookie-Banner nötig */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-700.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dmsans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/dmsans-500.woff2') format('woff2');
}

:root {
  --navy:       #1a2744;
  --teal:       #2a8a7a;
  --teal-light: #e8f5f3;
  --teal-dark:  #1d6b5e;
  --amber:      #d4890a;
  --amber-bg:   #f5a623;
  --cream:      #faf8f4;
  --text:       #1a1a1a;
  --text-muted: #4a5568;
  --white:      #ffffff;
  --border:     #d1d5db;
  --radius:     14px;

  /* Seniorengerechte Basisgrößen */
  --font-base:  18px;
  --font-sm:    16px;
  --font-xs:    15px;
  --font-lg:    20px;
  --font-xl:    24px;
  --font-h2:    2rem;
  --font-h1:    2.6rem;
  --line-height: 1.85;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: var(--font-base);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
.site-header {
  background: var(--navy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.site-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.site-logo span { color: var(--amber-bg); }

.main-nav { display: flex; gap: 0.25rem; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.main-nav a.active { color: var(--amber-bg); }
.main-nav .nav-cta {
  background: var(--amber-bg);
  color: var(--navy) !important;
  font-weight: 500;
  padding: 0.55rem 1.2rem;
  border-radius: 24px;
  margin-left: 0.5rem;
}
.main-nav .nav-cta:hover { background: #e8950f; }

/* Hamburger für kleine Bildschirme */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--white); border-radius: 2px;
  margin: 5px 0; transition: 0.3s;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243660 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '+';
  position: absolute;
  font-size: 22rem;
  color: rgba(255,255,255,0.03);
  top: -3rem; right: -3rem;
  font-family: 'Playfair Display', serif;
  pointer-events: none;
  line-height: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1.5px solid rgba(245,166,35,0.45);
  color: var(--amber-bg);
  padding: 0.4rem 1.2rem;
  border-radius: 24px;
  font-size: var(--font-sm);
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { color: var(--amber-bg); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: var(--font-lg);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.65);
  font-size: var(--font-sm);
}
.trust-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--amber-bg);
  color: var(--navy);
  border: none;
  padding: 1rem 2.25rem;
  border-radius: 32px;
  font-size: var(--font-lg);
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
  display: inline-block;
  min-height: 54px;
  line-height: 1.2;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.4);
  background: #e8950f;
  color: var(--navy);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 1rem 2.25rem;
  border-radius: 32px;
  font-size: var(--font-lg);
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
  min-height: 54px;
  line-height: 1.2;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }
.btn-white {
  background: var(--white);
  color: var(--teal);
  border: none;
  padding: 1rem 2.25rem;
  border-radius: 32px;
  font-size: var(--font-lg);
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  min-height: 54px;
  line-height: 1.2;
  transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 1rem 2.25rem;
  border-radius: 32px;
  font-size: var(--font-lg);
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  min-height: 54px;
  line-height: 1.2;
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 28px;
  font-size: var(--font-sm);
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
  min-height: 50px;
  line-height: 1.2;
}
.btn-teal:hover { background: var(--teal-dark); }

/* ── SECTIONS ── */
.section {
  padding: 4rem 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.section-label {
  font-size: var(--font-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-h2);
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.section-sub {
  color: var(--text-muted);
  font-size: var(--font-lg);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── SYMPTOME ── */
.symptom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.symptom-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  display: block;
}
.symptom-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42,138,122,0.15);
}
.symptom-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.symptom-title { font-weight: 500; font-size: var(--font-base); color: var(--navy); line-height: 1.4; }
.symptom-desc { font-size: var(--font-sm); color: var(--text-muted); margin-top: 0.3rem; line-height: 1.5; }

/* ── ABLAUF ── */
.ablauf-bg { background: var(--teal-light); padding: 4rem 2rem; }
.ablauf-inner { max-width: 760px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  left: 24px; top: 48px; bottom: 48px;
  width: 2px; background: var(--teal); opacity: 0.25;
}
.step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem 0; }
.step-num {
  width: 48px; height: 48px;
  background: var(--teal); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: var(--font-lg);
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-content h3 { font-weight: 500; color: var(--navy); margin-bottom: 0.35rem; font-size: var(--font-lg); }
.step-content p { color: var(--text-muted); font-size: var(--font-base); line-height: var(--line-height); }

/* ── PATIENTENTYPEN ── */
.typen-bg { background: var(--navy); padding: 4rem 2rem; }
.typen-inner { max-width: 760px; margin: 0 auto; }
.typen-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.typ-card {
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.75rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.typ-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 5px; height: 100%;
}
.typ-1::before { background: #378ADD; }
.typ-2::before { background: #1D9E75; }
.typ-3::before { background: #EF9F27; }
.typ-1 { background: rgba(55,138,221,0.06); }
.typ-2 { background: rgba(29,158,117,0.06); }
.typ-3 { background: rgba(239,159,39,0.06); }
.typ-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.9rem; }
.typ-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: var(--font-lg); flex-shrink: 0;
}
.typ-1 .typ-num { background: rgba(55,138,221,0.2); color: #5aabee; }
.typ-2 .typ-num { background: rgba(29,158,117,0.2); color: #2ecc9a; }
.typ-3 .typ-num { background: rgba(239,159,39,0.2); color: #f5b842; }
.typ-title { font-weight: 500; color: var(--white); font-size: var(--font-lg); }
.typ-subtitle { font-size: var(--font-sm); color: rgba(255,255,255,0.5); margin-top: 0.1rem; }
.typ-body { color: rgba(255,255,255,0.72); font-size: var(--font-base); line-height: var(--line-height); margin-bottom: 0.9rem; }
.typ-quote {
  font-style: italic; color: rgba(255,255,255,0.45); font-size: var(--font-sm);
  border-left: 3px solid rgba(255,255,255,0.2);
  padding-left: 1rem; margin-bottom: 0.75rem; line-height: 1.6;
}
.typ-badge {
  display: inline-block; padding: 0.3rem 0.9rem;
  border-radius: 14px; font-size: var(--font-xs); font-weight: 500; margin-top: 0.5rem;
}
.typ-1 .typ-badge { background: rgba(55,138,221,0.2); color: #5aabee; }
.typ-2 .typ-badge { background: rgba(29,158,117,0.2); color: #2ecc9a; }
.typ-3 .typ-badge { background: rgba(239,159,39,0.2); color: #f5b842; }

/* ── PAKETE ── */
.pakete-bg { background: var(--navy); padding: 4rem 2rem; }
.pakete-inner { max-width: 760px; margin: 0 auto; }
.paket-cards { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.paket-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  transition: background 0.2s;
  position: relative;
}
.paket-card:hover { background: rgba(255,255,255,0.11); }
.paket-card.featured {
  border-color: var(--amber-bg);
  background: rgba(245,166,35,0.08);
}
.paket-badge-top {
  position: absolute; top: -12px; right: 1.75rem;
  background: var(--amber-bg); color: var(--navy);
  font-size: var(--font-xs); font-weight: 500;
  padding: 0.25rem 0.9rem; border-radius: 12px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.paket-name {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 1.3rem; margin-bottom: 0.4rem;
}
.paket-desc { color: rgba(255,255,255,0.6); font-size: var(--font-sm); line-height: 1.65; }
.paket-includes { list-style: none; margin-top: 0.9rem; }
.paket-includes li {
  font-size: var(--font-sm); color: rgba(255,255,255,0.55);
  padding: 0.2rem 0; line-height: 1.5;
}
.paket-includes li::before { content: '✓ '; color: var(--teal); font-weight: 500; }
.paket-price { text-align: right; flex-shrink: 0; }
.paket-amount {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 2rem;
}
.paket-period { color: rgba(255,255,255,0.4); font-size: var(--font-xs); display: block; margin-top: 0.1rem; }
.paket-note { color: rgba(255,255,255,0.3); font-size: var(--font-xs); margin-top: 1.5rem; text-align: center; line-height: 1.6; }

/* ── LÖSUNGSSEITE ── */
.loesungen-header { background: var(--navy); padding: 4rem 2rem 2.5rem; text-align: center; }
.loesungen-header h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-top: 1rem;
}
.loesungen-header p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; font-size: var(--font-lg); line-height: 1.65; }

.kategorie-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  display: flex; overflow-x: auto; padding: 0 1rem;
  position: sticky; top: 64px; z-index: 90;
  -webkit-overflow-scrolling: touch;
}
.kat-tab {
  padding: 1rem 1.4rem;
  border: none; background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: var(--font-sm);
  color: var(--text-muted); cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap; transition: color 0.2s;
  min-height: 56px;
}
.kat-tab.active { color: var(--navy); border-bottom-color: var(--teal); font-weight: 500; }
.kat-tab:hover { color: var(--navy); }

.kat-section { display: none; }
.kat-section.active { display: block; }

.problem-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.1rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: #9ca3af; }
.problem-card.open { border-color: var(--teal); }

.problem-header {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.25rem 1.5rem; cursor: pointer;
  transition: background 0.15s;
  min-height: 72px;
}
.problem-header:hover { background: #f9fafb; }
.problem-icon { font-size: 1.6rem; flex-shrink: 0; }
.problem-title { font-weight: 500; color: var(--navy); font-size: var(--font-base); line-height: 1.4; }
.problem-tag {
  margin-left: auto; flex-shrink: 0;
  padding: 0.25rem 0.8rem; border-radius: 12px;
  font-size: var(--font-xs); font-weight: 500;
}
.tag-selbst { background: #e8f5f3; color: #0F6E56; }
.tag-anruf  { background: #fef3c7; color: #92400e; }
.tag-profi  { background: #fee2e2; color: #991b1b; }
.chevron { margin-left: 0.75rem; color: var(--text-muted); font-size: 1rem; transition: transform 0.25s; flex-shrink: 0; }
.problem-card.open .chevron { transform: rotate(180deg); }

.problem-body {
  display: none; padding: 0 1.5rem 1.5rem;
  border-top: 1.5px solid #f0f0f0;
}
.problem-card.open .problem-body { display: block; }

.diagnose-box {
  background: var(--teal-light);
  border-radius: 10px; padding: 1rem 1.25rem;
  margin: 1.1rem 0 0.9rem;
  font-size: var(--font-base); color: #1a3a35; line-height: 1.7;
}
.diagnose-box strong {
  display: block; margin-bottom: 0.3rem;
  color: var(--teal); font-size: var(--font-xs);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.schritte { list-style: none; margin: 0.9rem 0; }
.schritte li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 0.55rem 0; font-size: var(--font-base); color: var(--text);
  border-bottom: 1px solid #f0f0f0; line-height: 1.6;
}
.schritte li:last-child { border-bottom: none; }
.schritt-num {
  width: 26px; height: 26px; background: var(--teal);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--font-xs); font-weight: 500; flex-shrink: 0; margin-top: 3px;
}
.warn-box {
  background: #fffbeb; border-left: 4px solid var(--amber-bg);
  border-radius: 0 10px 10px 0;
  padding: 0.9rem 1.1rem; font-size: var(--font-base);
  color: #78350f; margin-top: 0.9rem; line-height: 1.65;
}
.warn-box strong { display: block; margin-bottom: 0.25rem; color: #92400e; }

/* ── TESTIMONIALS ── */
.testi-section { padding: 4rem 2rem; max-width: 760px; margin: 0 auto; }
.testi-cards { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.testi-card {
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
}
.testi-text { font-style: italic; color: var(--text); font-size: var(--font-base); margin-bottom: 0.6rem; line-height: 1.75; }
.testi-name { font-size: var(--font-sm); font-weight: 500; color: var(--text-muted); }

/* ── CTA ── */
.cta-section { background: var(--teal); padding: 4rem 2rem; text-align: center; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: var(--font-h2); margin-bottom: 0.75rem;
}
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: var(--font-lg); }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── KONTAKT ── */
.kontakt-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.6rem; border: 2px solid var(--border); margin-bottom: 1.1rem;
  transition: border-color 0.2s;
}
.kontakt-card:hover { border-color: var(--teal); }
.kontakt-label { font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; font-size: var(--font-lg); }
.kontakt-value { font-size: 1.4rem; font-weight: 500; color: var(--teal); text-decoration: none; display: block; }
.kontakt-value:hover { color: var(--teal-dark); }
.kontakt-sub { font-size: var(--font-sm); color: var(--text-muted); margin-top: 0.3rem; }
.kontakt-garantie {
  background: var(--teal-light); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; text-align: center;
  font-size: var(--font-base); color: var(--navy); line-height: 1.75;
}

/* ── ÜBER MICH ── */
.ueber-hero { background: var(--navy); padding: 4rem 2rem 3rem; }
.ueber-inner { max-width: 760px; margin: 0 auto; display: flex; gap: 2.5rem; align-items: center; }
.avatar {
  width: 110px; height: 110px; background: var(--teal);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; color: var(--white); font-size: 2.5rem;
  border: 3px solid rgba(255,255,255,0.15);
}
.ueber-name { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.8rem; }
.ueber-role { color: var(--amber-bg); font-size: var(--font-base); margin-top: 0.4rem; }
.ueber-exp { color: rgba(255,255,255,0.6); font-size: var(--font-sm); margin-top: 0.6rem; line-height: 1.6; }
.zitat-box {
  background: var(--teal-light); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; border-left: 4px solid var(--teal); margin-top: 2rem;
}
.zitat-box blockquote { font-style: italic; color: var(--navy); font-size: var(--font-lg); line-height: 1.6; }
.zitat-box cite { font-size: var(--font-sm); color: var(--text-muted); display: block; margin-top: 0.5rem; }

/* ── FOOTER ── */
.site-footer {
  background: #111827; padding: 2.5rem 2rem;
  text-align: center; color: rgba(255,255,255,0.35);
  font-size: var(--font-sm); line-height: 1.7;
}
.site-footer a { color: rgba(255,255,255,0.45); text-decoration: none; margin: 0 0.6rem; }
.site-footer a:hover { color: rgba(255,255,255,0.75); }

/* ── DARK-NAVY SECTION LABELS ── */
.typen-bg .section-label,
.pakete-bg .section-label,
.loesungen-header .section-label { color: var(--amber-bg); }
.typen-bg h2,
.pakete-bg h2 { color: var(--white); }

/* ── UTILITIES ── */
.divider { border: none; border-top: 1px solid #e5e7eb; margin: 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  :root { --font-base: 17px; --font-lg: 18px; }
  .symptom-grid { grid-template-columns: 1fr; }
  .paket-card { flex-direction: column; }
  .paket-price { text-align: left; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 1rem; gap: 0.25rem; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .ueber-inner { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
