/* ============================================================
   VANTAGE:BRAIN – Global Stylesheet
   vantagebrain.com
   ============================================================ */

/* Bildschutz */
img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Skip-Link für Barrierefreiheit */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--amber);
  color: var(--dark);
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Schriften lokal gehostet – kein externer Aufruf, DSGVO-konform */
@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/DMSerifDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Serif Display';
  src: url('../fonts/DMSerifDisplay-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── Variables ── */
:root {
  --dark:        #0D0D0D;
  --dark-mid:    #1A1A1A;
  --dark-soft:   #222222;
  --light:       #F5F2EE;
  --light-warm:  #EDE8E1;
  --text-dark:   #F0EDE8;
  --text-light:  #1A1A1A;
  --text-muted:  #888888;
  --amber:       #C8872A;
  --amber-light: #D4922F;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w:      860px;
  --max-w-wide: 1100px;
  --section-pad: clamp(60px, 8vw, 120px);
  --side-pad:    clamp(24px, 5vw, 60px);
  --transition:  0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 250;
  padding: 10px var(--side-pad);
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,135,42,0.15);
}
.nav-logo { font-family: var(--font-display); font-size: 1.25rem; color: var(--text-dark); letter-spacing: 0.02em; }
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
@media (max-width: 1200px) {
  .nav-links { gap: 20px; }
  .nav-cta { padding: 8px 14px !important; }
}
.nav-links a {
  font-size: 0.875rem; font-weight: 400;
  color: rgba(240,237,232,0.7); letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text-dark); }
.nav-cta {
  background: var(--amber) !important; color: var(--dark) !important;
  padding: 8px 20px !important; font-weight: 600 !important;
  font-size: 0.8125rem !important; letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--amber-light) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text-dark); transition: var(--transition); }

/* ── CTA Buttons ── */
.btn-primary {
  display: inline-block; background: var(--amber); color: var(--dark);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 40px; cursor: pointer; border: none;
  transition: background var(--transition), transform 0.2s ease;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block; background: transparent; color: var(--text-dark);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 400;
  letter-spacing: 0.06em; padding: 14px 36px;
  border: 1px solid rgba(240,237,232,0.3); cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amber); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em; cursor: pointer; border: none; background: none;
  transition: gap var(--transition);
}
.btn-text:hover { gap: 14px; }
.btn-text::after { content: '→'; }

/* ── Section Layouts ── */
.section-dark      { background: var(--dark);       color: var(--text-dark);  padding: var(--section-pad) var(--side-pad); }
.section-dark-mid  { background: var(--dark-mid);   color: var(--text-dark);  padding: var(--section-pad) var(--side-pad); }
.section-light     { background: var(--light);      color: var(--text-light); padding: var(--section-pad) var(--side-pad); }
.section-light-warm{ background: var(--light-warm); color: var(--text-light); padding: var(--section-pad) var(--side-pad); }

.section-inner      { max-width: var(--max-w);      margin: 0 auto; }
.section-inner-wide { max-width: var(--max-w-wide); margin: 0 auto; }

.section-label {
  font-family: var(--font-body); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 24px; display: block;
}

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── Footer ── */
.footer {
  background: #080808;
  padding: 56px var(--side-pad) 32px;
  border-top: 1px solid rgba(200,135,42,0.15);
}
.footer-inner { max-width: var(--max-w-wide); margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px; margin-bottom: 40px;
}
.footer-logo { font-family: var(--font-display); font-size: 1.125rem; color: var(--text-dark); }
.footer-logo span { color: var(--amber); }
.footer-tagline { font-size: 0.8125rem; color: var(--text-muted); margin-top: 6px; line-height: 1.5; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: 0.8125rem; color: rgba(240,237,232,0.5); transition: color var(--transition); letter-spacing: 0.02em; }
.footer-nav a:hover { color: var(--text-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.75rem; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-dark); }

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #111; border-top: 1px solid rgba(200,135,42,0.3);
  padding: 20px var(--side-pad);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 0.8125rem; color: rgba(240,237,232,0.75); max-width: 640px; line-height: 1.6; }
.cookie-text a { color: var(--amber); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; }
.btn-cookie-accept {
  background: var(--amber); color: var(--dark);
  border: none; padding: 10px 24px; font-size: 0.8125rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer; letter-spacing: 0.04em;
}
.btn-cookie-decline {
  background: transparent; color: rgba(240,237,232,0.6);
  border: 1px solid rgba(240,237,232,0.2); padding: 10px 24px;
  font-size: 0.8125rem; font-family: var(--font-body); cursor: pointer;
  transition: border-color var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(240,237,232,0.5); }

/* ── Subpage Header ── */
.subpage-header { background: var(--dark); padding: 140px var(--side-pad) 80px; border-bottom: 1px solid rgba(200,135,42,0.1); }
.subpage-header h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text-dark); margin-bottom: 16px; }
.subpage-header p { font-size: 1.0625rem; color: rgba(240,237,232,0.6); max-width: 540px; line-height: 1.75; }

/* ── Legal Pages ── */
.legal-content h2 { font-size: 1.25rem; margin-top: 48px; margin-bottom: 14px; color: var(--text-light); }
.legal-content h3 { font-size: 1rem; margin-top: 28px; margin-bottom: 8px; color: var(--text-light); font-family: var(--font-body); font-weight: 600; }
.legal-content p { font-size: 0.9375rem; line-height: 1.8; color: #3a3a3a; margin-bottom: 14px; }
.legal-content a { color: var(--amber); text-decoration: underline; }
.legal-content ul { margin: 0 0 14px 20px; }
.legal-content ul li { font-size: 0.9375rem; line-height: 1.8; color: #3a3a3a; margin-bottom: 4px; }

/* ── SEO Pages ── */
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 48px; }
.seo-card { padding: 36px 32px; border: 1px solid rgba(200,135,42,0.15); }
.seo-card h3 { font-size: 1.25rem; margin-bottom: 14px; color: var(--text-dark); }
.seo-card p { font-size: 0.9375rem; color: rgba(240,237,232,0.65); line-height: 1.75; }
.seo-card-light { border-color: rgba(26,26,26,0.12); }
.seo-card-light h3 { color: var(--text-light); }
.seo-card-light p { color: rgba(26,26,26,0.65); }

.faq-item { border-bottom: 1px solid rgba(240,237,232,0.1); padding: 28px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 12px; }
.faq-a { font-size: 0.9375rem; color: rgba(240,237,232,0.65); line-height: 1.8; }
.faq-item-light .faq-q { color: var(--text-light); }
.faq-item-light .faq-a { color: rgba(26,26,26,0.65); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #0D0D0D;
    justify-content: center; align-items: center;
    gap: 40px; z-index: 200;
    margin: 0; padding: 0;
    list-style: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-links.open a { font-size: 1.375rem; color: var(--text-dark); opacity: 1; }
  /* Hamburger über dem Overlay */
  .nav-hamburger { display: flex; position: relative; z-index: 300; }
  /* Nav backdrop-filter deaktivieren wenn Menü offen (verhindert Stacking-Context-Bug) */
  .nav.menu-open {
    background: #0D0D0D !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .footer-top { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 16px; }
  .seo-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   INDEX PAGE SPECIFIC STYLES
═══════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 0 var(--side-pad);
  overflow: hidden;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 120px 0 80px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(240,237,232,0.72);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(200,135,42,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── Spiegel ── */
.spiegel-fragen { margin-bottom: 40px; }
.spiegel-frage {
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,26,26,0.1);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-light);
  line-height: 1.65;
  position: relative;
  padding-left: 20px;
}
.spiegel-frage::before {
  content: '';
  position: absolute; left: 0; top: 28px;
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
}
.spiegel-footer { margin-top: 40px; padding-top: 32px; border-top: 2px solid var(--amber); }
.spiegel-italic { font-style: italic; font-size: 1.0625rem; color: rgba(26,26,26,0.6); margin-bottom: 10px; }
.spiegel-bold { font-size: 1.125rem; font-weight: 600; color: var(--text-light); }

/* ── Diagnose ── */
.diagnose-headline {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.diagnose-headline span { color: var(--amber); }
.diagnose-sub { font-size: 1.125rem; color: rgba(240,237,232,0.6); margin-bottom: 36px; }
.diagnose-punkte p {
  padding: 12px 0;
  border-bottom: 1px solid rgba(240,237,232,0.08);
  font-size: 1rem;
  color: rgba(240,237,232,0.75);
  line-height: 1.7;
}

/* ── Haltung ── */
.haltung-content p {
  font-size: 1.0625rem; line-height: 1.8; color: rgba(26,26,26,0.75);
  margin-bottom: 16px;
}
.haltung-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--amber);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--text-light);
  line-height: 1.45;
  background: rgba(200,135,42,0.06);
}
.section-dark .haltung-quote,
.section-dark-mid .haltung-quote { color: var(--text-dark); }
.haltung-closing { font-size: 1rem; color: rgba(26,26,26,0.6); font-style: italic; }

/* ── Denkgrenzen ── */
.denkgrenzen-bg-section {
  position: relative;
  overflow: hidden;
}
.denkgrenzen-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.70) 0%, rgba(13,13,13,0.90) 50%, rgba(13,13,13,1) 100%);
  z-index: 0;
}
.denkgrenzen-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.35);
}
.denkgrenzen-text-only {
  max-width: 680px;
}
.denkgrenzen-text-only p,
.denkgrenzen-text p { font-size: 1rem; color: rgba(240,237,232,0.82); line-height: 1.8; }
.denkgrenzen-quote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--amber);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(240,237,232,0.9);
  line-height: 1.5;
}

/* ── Was wir tun ── */
.wastun-content { margin-bottom: 48px; }
.wastun-line {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  padding: 14px 0;
  border-bottom: 1px solid rgba(240,237,232,0.06);
  color: rgba(240,237,232,0.85);
}
.wastun-line:first-child { color: var(--text-dark); font-weight: 500; }
.wastun-cta {
  padding: 32px;
  border: 1px solid rgba(200,135,42,0.2);
  background: rgba(200,135,42,0.04);
}
.wastun-cta p { font-size: 0.9375rem; color: rgba(240,237,232,0.7); line-height: 1.75; margin-bottom: 20px; }

/* ── Praxis ── */
.praxis-content p {
  font-size: 1rem; line-height: 1.85; color: rgba(26,26,26,0.75);
  margin-bottom: 20px;
}
.praxis-break {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  color: var(--text-light) !important;
  font-weight: 400;
  margin: 32px 0 !important;
}
.praxis-cta {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(26,26,26,0.12);
}
.praxis-cta p {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(26,26,26,0.65); margin-bottom: 28px !important;
}

/* ── Zusammenarbeit ── */
.zusammen-content p { font-size: 1rem; line-height: 1.85; color: rgba(240,237,232,0.72); }
.zusammen-closing {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(200,135,42,0.2);
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: rgba(240,237,232,0.9);
  line-height: 1.5;
}

/* ── Gründer ── */
.gruender-grid {
  display: grid; grid-template-columns: 340px 1fr; gap: 72px;
  align-items: start;
}
.gruender-photo-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top;
  filter: grayscale(15%);
}
.gruender-text p { font-size: 1rem; line-height: 1.85; color: rgba(240,237,232,0.72); }
.gruender-closing {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(200,135,42,0.2);
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: rgba(240,237,232,0.85);
  line-height: 1.55;
}

/* ── Abschluss ── */
.abschluss { padding-top: 100px; padding-bottom: 100px; }
.abschluss-intro { font-size: 1.125rem; color: rgba(240,237,232,0.55); margin-bottom: 24px; }
.abschluss-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--amber);
  font-style: italic;
  margin-bottom: 32px;
  line-height: 1.25;
}
.abschluss-sub {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--text-dark);
  margin-bottom: 12px;
}
.abschluss-text {
  font-size: 1rem; color: rgba(240,237,232,0.55);
  margin-bottom: 40px; line-height: 1.7;
}

/* ── Responsive Index ── */
@media (max-width: 900px) {
  .gruender-grid { grid-template-columns: 1fr; gap: 40px; }
  .gruender-photo-wrap { max-width: 300px; }
}
@media (max-width: 600px) {
  .hero-sub br { display: none; }
  .hero-cta { flex-direction: column; }
  .haltung-quote { padding: 20px; font-size: 1.125rem; }
}

/* ══════════════════════════════════════════
   SUBPAGE STYLES – Leistungen / Ansatz
═══════════════════════════════════════════ */

.leistung-block { padding: 8px 0; }
.leistung-subtitle {
  font-size: 1.125rem; color: rgba(26,26,26,0.55);
  margin-bottom: 28px; font-style: italic;
}
.leistung-beschreibung p {
  font-size: 1rem; line-height: 1.85; color: rgba(26,26,26,0.72);
  margin-bottom: 16px;
}
.section-dark-mid .leistung-beschreibung p,
.section-dark .leistung-beschreibung p {
  color: rgba(240,237,232,0.72);
}
.leistung-details {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 40px; padding-top: 36px;
  border-top: 1px solid rgba(26,26,26,0.1);
}
.leistung-details-dark {
  border-top-color: rgba(240,237,232,0.1);
}
.leistung-detail-item h3 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px;
}
.leistung-detail-item p {
  font-size: 0.9375rem; line-height: 1.75; color: rgba(26,26,26,0.65);
}
.leistung-details-dark .leistung-detail-item p { color: rgba(240,237,232,0.6); }

.ansatz-text p {
  font-size: 1rem; line-height: 1.85;
  color: rgba(26,26,26,0.72); margin-bottom: 18px;
}

@media (max-width: 768px) {
  .leistung-details { grid-template-columns: 1fr; gap: 24px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE ERGÄNZUNGEN – Tablet & Mobile
   Breakpoints: 1024px / 768px / 600px / 480px
═══════════════════════════════════════════ */

/* ── Tablet Querformat (1024px) ── */
@media (max-width: 1024px) {
  /* Leistungs-Detail-Raster: 3 → 2 Spalten auf Tablet */
  .leistung-details { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Gründer-Grid etwas enger */
  .gruender-grid { grid-template-columns: 280px 1fr; gap: 48px; }

  /* Denkgrenzen-Grid etwas enger */
}

/* ── Tablet Hochformat (900px) – globale Ergänzungen ── */
@media (max-width: 900px) {
  /* Section-Padding reduzieren */
  :root { --section-pad: clamp(48px, 6vw, 80px); }

  /* Buttons volle Breite auf engen Viewports */
  .hero-cta { flex-wrap: wrap; }

  /* Abschluss-Quote Schrift etwas kleiner */
  .abschluss-quote { font-size: clamp(1.75rem, 4vw, 2.5rem); }
}

/* ── Smartphone Querformat / kleines Tablet (768px) ── */
@media (max-width: 768px) {
  /* Leistungs-Detail-Raster: 2 → 1 Spalte (überschreibt style.css Zeile oben) */
  .leistung-details { grid-template-columns: 1fr; gap: 20px; }

  /* Gründer-Grid: 1 Spalte */
  .gruender-grid { grid-template-columns: 1fr; gap: 32px; }
  .gruender-photo-wrap { max-width: 260px; }

  /* Denkgrenzen: 1 Spalte */

  /* wastun-cta Padding reduzieren */
  .wastun-cta { padding: 24px 20px; }

  /* Haltung-Quote kompakter */
  .haltung-quote { padding: 20px 24px; }

  /* Praxis-Break Schriftgrösse */
  .praxis-break { font-size: 1.25rem !important; }

  /* Abschluss kompakter */
  .abschluss { padding-top: 72px; padding-bottom: 72px; }
}

/* ── Smartphone (600px) ── */
@media (max-width: 600px) {
  /* Schriften: Überschriften etwas kompakter */
  .diagnose-headline { font-size: clamp(1.5rem, 5vw, 2rem); }
  .abschluss-sub { font-size: 1.25rem; }

  /* Zusammenarbeit-Closing */
  .zusammen-closing { font-size: 1.125rem; }

  /* Gründer-Closing */
  .gruender-closing { font-size: 1rem; }

  /* Wastun-Line Schrift */
  .wastun-line { font-size: 1rem; padding: 12px 0; }

  /* Diagnose-Punkte kompakter */
  .diagnose-punkte p { font-size: 0.9375rem; }
}

/* ── Kleines Smartphone (480px) ── */
@media (max-width: 480px) {
  /* Side-Padding reduzieren */
  :root { --side-pad: 20px; }

  /* Nav-Logo Schriftgrösse */
  .nav-logo { font-size: 1.1rem; }

  /* Hero: Abstand oben/unten */
  .hero-content { padding: 100px 0 60px; }

  /* Buttons: volle Breite */
  .btn-primary { width: 100%; text-align: center; padding: 16px 24px; }
  .hero-cta { flex-direction: column; }

  /* Spiegel-Fragen Schrift */
  .spiegel-frage { font-size: 0.9375rem; }

  /* Haltung-Quote kompakt */
  .haltung-quote { font-size: 1rem; padding: 16px 20px; }

  /* Abschluss-Quote */
  .abschluss-quote { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Denkgrenzen-Quote */
  .denkgrenzen-quote { font-size: 1.125rem; padding: 18px 20px; }
}

