/* ==========================================================
   BzpW – Refactored Stylesheet
   Desktop first → Tablet → Mobile
   (HTML bleibt unverändert)
   ========================================================== */

/* =========================
   1) VARIABLES
   ========================= */
:root {
  --primary: #3fa59a;            /* mint */
  --text: #2f2f2f;               /* headings */
  --body: #5f5f5f;               /* body copy */
  --header-bg: #eef3ee;          /* header background */

  --card-light: #dbeadf;         /* offers card light */
  --card-dark: #5a6256;          /* offers card dark */

  --btn-primary-bg: #a8d5b5;
  --btn-primary-bg-hover: #96c7a4;
  --btn-secondary-bg: #ffffff;
  --btn-secondary-border: #1f1f1f;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;

  --max-width: 1200px;
  --text-width: 1200px;
  --header-height: 72px;
}

/* =========================
   2) RESET / BASE
   ========================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: var(--body);
  background: #ffffff;
  line-height: 1.6;
}

/* Anchor targets should not hide under sticky header */
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }

img { max-width: 100%; height: auto; display: block; }

/* =========================
   3) LAYOUT HELPERS
   ========================= */
.section {
  width: 100%;
  padding: 4rem 1.5rem;
}

.section + .section {
  padding-top: 5rem;
}

.section--green {
  background: linear-gradient(135deg, rgba(63,165,154,0.10), rgba(255,255,255,1));
}

.section--white {
  background: #ffffff;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-block {
  max-width: var(--text-width);
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   4) TYPOGRAPHY
   ========================= */
h1 {
  font-size: 3.1rem;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

h2 {
  font-size: 2.1rem;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--text);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-weight: 600;
}

p, li {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--body);
}

/* =========================
   5) LINKS
   ========================= */
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

/* =========================
   6) BUTTONS (GLOBAL)
   ========================= */
.cta-button {
  display: inline-flex;            /* fixes vertical/horizontal centering */
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
  white-space: normal;             /* allow wrap when needed */
}

.cta-primary {
  background: var(--btn-primary-bg);
  color: #1f1f1f;
  border: 1px solid #6fbfa6;
}

.cta-primary:hover {
  background: var(--btn-primary-bg-hover);
  text-decoration: none;
}

.cta-secondary {
  background: var(--btn-secondary-bg);
  color: #1f1f1f;
  border: 1px solid var(--btn-secondary-border);
}

.cta-secondary:hover {
  background: #f7f7f7;
  text-decoration: none;
}

/* =========================
   7) HEADER / NAVIGATION
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.nav-logo img { height: 36px; }

.nav-menu { display: block; }

.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-list a {
  color: #1f2a1f;
  font-weight: 500;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid #1f2a1f;
  border-radius: 6px;
  font-weight: 500;
  color: #1f2a1f;
  background: transparent;
  text-decoration: none;
}

.nav-button:hover {
  background: #1f2a1f;
  color: #ffffff;
  text-decoration: none;
}

.nav-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 0.4rem;
  gap: 0.35rem;
}

.nav-cta-alt {
  font-size: 0.82rem;
  color: var(--body);
}

.nav-cta-alt a {
  color: #1f2a1f;
  text-decoration: none;
}

.nav-cta-alt a:hover { text-decoration: underline; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #1f2a1f;
}

/* =========================
   8) HERO (TEXT ONLY)
   ========================= */
.hero-text-only {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-text-only .hero-content {
  max-width: var(--text-width);
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.6rem;
  margin-bottom: 1.4rem;
}

.hero-text-only h1 {
  font-size: 2.5rem;
  line-height: 1.25;
}

.hero-text-only p { max-width: 100%; }

.hero-cta-wrap {
  margin-top: auto;
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;   
  align-items: flex-start;

}


.cta-alt {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--body);
  padding-left: 2rem;    
  width: auto;
}

.cta-alt a { color: var(--primary); font-weight: 500; }

/* =========================
   9) TARGET GROUP
   ========================= */
.target-group {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.target-list h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.recognition-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recognition-list li {
  position: relative;
  padding-left: 2.6rem;
  margin-bottom: 1.25rem;
  color: #4a4a4a;
  line-height: 1.45;
}

.recognition-list li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 1.05rem;
  opacity: 0.85;
  color: var(--primary);
}

.recognition-list li:nth-child(1)::before { content: "😐"; }
.recognition-list li:nth-child(2)::before { content: "😕"; }
.recognition-list li:nth-child(3)::before { content: "😶"; }
.recognition-list li:nth-child(4)::before { content: "😟"; }
.recognition-list li:nth-child(5)::before { content: "🙂"; }

/* =========================
   10) OFFERS (COACHING-BOXEN)
   ========================= */
.offers-title {
  text-align: center;
  margin-bottom: 1.25rem;
}

.offers-intro {
  max-width: var(--text-width);
  margin: 0 auto;
  text-align: left;
}

.offers-intro p {
  max-width: 100%;
  margin-bottom: 0.9rem;
}

.offers-divider {
  border: 0;
  height: 1px;
  width: 100%;
  margin: 2rem 0 2.5rem 0;
  background: rgba(47, 47, 47, 0.18);
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.offer-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.offer-button-wrap {
  margin-top: auto;
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}



.offer-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}

.offer-card p { text-align: left; }


.offer-card--light {
  background: var(--card-light);
}

.offer-card--light h3,
.offer-card--light p {
  color: var(--text);
}

.offer-card--dark {
  background: var(--card-dark);
}

.offer-card--dark h3,
.offer-card--dark p {
  color: #ffffff;
}

/* =========================
   11) OFFER DETAILS (ZIELKLÄRUNG)
   ========================= */
.offer-detail-grid {
  display: grid;
  grid-template-columns: 3fr 2fr; /* 60% Text – 40% Bild */
  gap: 4rem;
  align-items: stretch;
}

/* Umgekehrte Reihenfolge */
.offer-detail-grid--reverse {
  grid-template-columns: 2fr 3fr; /* 40% Bild – 60% Text */
}

.offer-detail-text h2 { margin-bottom: 1.4rem; }

.offer-detail-text h3 {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}

.offer-steps {
  margin-top: 1.2rem;
  margin-left: 1.2rem;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.offer-steps li {
  margin-bottom: 1rem;
  line-height: 1.45;
}

.offer-steps li strong {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.offer-meta {
  margin-top: 1rem;
  margin-left: 1.2rem;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  list-style: disc;
}

.offer-meta li {
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

.offer-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

.offer-detail-image {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}



.offer-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.offer-detail-image--personal img {
  filter: saturate(0.85) brightness(1.05) hue-rotate(-10deg);
}

.offer-detail-image--personal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(168, 213, 181, 0.18);
  pointer-events: none;
}

.offer-detail-image--business img {
  filter: saturate(0.5) brightness(0.98) contrast(1.05);
}

.offer-detail-image--business::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(95, 95, 95, 0.22);
  pointer-events: none;
}

/* =========================
   12) ABOUT
   ========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.about-text h2 { margin-bottom: 1.4rem; }

.about-text p { max-width: 680px; }

.about-cta { margin-top: 2rem; }

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}


.about-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  filter: saturate(0.9) brightness(1.05);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(168, 213, 181, 0.18);
  pointer-events: none;
}


/* =========================
   13) PROCESS
   ========================= */
.process-title {
  text-align: center;
  margin-bottom: 3rem;
}

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

.process-step {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.process-step img {
  width: 100%;
  max-width: 220px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1.6rem;
}

@media (min-width: 901px) {
  .offer-detail-image {
    height: 100%;
  }

  .offer-detail-image img {
    height: 100%;
  }
}


@media (min-width: 1200px) {
  .process-step img {
    max-width: 260px;
    height: 200px;
  }
  .offer-detail-image {
    min-height: 520px;
  }
}

.process-label {
  display: block;
  font-size: 2rem;
  color: #2f2f2f;
  margin-bottom: 0.4rem;
}

.process-step h3 { margin-bottom: 0.9rem; }

/* =========================
   14) FAQ
   ========================= */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.faq-title h2 {
  text-align: center;
  margin-bottom: 1.2rem;
}

.faq-intro {
  margin: 0 auto 2.5rem auto;
}

.faq-intro p {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  max-width: 100%;
  margin-bottom: 1.2rem;
}

.faq-list {
  border-top: 1px solid rgba(0,0,0,0.15);
  margin-top: 0.6rem;
}

.faq-list details {
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 1rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details p { margin-top: 0.2rem; }

/* =========================
   15) FOOTER
   ========================= */
.footer {
  background: linear-gradient(to top, #f3f7f3 0%, #ffffff 100%);
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.footer-logo img { height: 36px; width: auto; }

.footer-name {
  font-weight: 600;
  color: var(--text);
}

.footer-copy {
  font-size: 0.9rem;
  color: #6f6f6f;
}

.footer,
.footer a {
  color: #4a4a4a;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer a:hover { text-decoration: underline; }

.footer-sep {
  margin: 0 0.35rem;
  color: #9a9a9a;
}

/* =========================
   16) LEGAL PAGES
   ========================= */
.legal { max-width: 760px; }

.legal h2 {
  text-align: left;
  margin-bottom: 2.2rem;
}

.legal h3 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}

.legal p {
  max-width: 100%;
  margin-bottom: 1rem;
}

.legal address,
.legal p strong {
  display: block;
  margin-bottom: 0.4rem;
}

/* ==========================================================
   TABLET (<= 1024px / <= 900px)
   ========================================================== */

@media (max-width: 1024px) {
  /* Typography */
  h1 { font-size: 2.6rem; }

  /* Layout */
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  /* Target group */
  .target-group {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Offers */
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .offer-card {
    padding: 2.5rem 1.75rem;
  }

  /* Offer detail layouts */
  .offer-detail-grid,
  .offer-detail-grid--reverse {
    grid-template-columns: 1fr;
  }

  .offer-detail-image {
    order: -1;
  }

  .offer-detail-image {
    height: auto;
    margin-top: 2rem;
  }

  .offer-detail-image img {
    height: auto;
	aspect-ratio: 4 / 3;
	min-height: auto;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image { 
	order: -1; 
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Mobile header / burger */
  .nav {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .nav-list li {
    padding: 0.6rem 1.5rem;
  }

  .nav.open .nav-list {
    display: flex;
  }

  /* CTA only inside open burger */
  .nav-cta {
    display: none !important;
  }
  
 
  .nav.open .nav-cta {
    display: none !important;
  }
}

/* ==========================================================
   MOBILE (<= 700px / <= 600px)
   ========================================================== */

@media (max-width: 700px) {
  .nav-cta-alt { display: none !important; }
}

@media (max-width: 600px) {
  /* Spacing */
  .section {
    padding: 2.4rem 1.25rem;
  }

  .section + .section {
    padding-top: 2.8rem;
  }

  /* Typography */
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.25rem; }
  p, li { font-size: 0.98rem; }

  /* Hero */
  .hero-text-only {
    padding-top: 2.2rem;
    padding-bottom: 2.6rem;
  }

  .hero-badge {
    margin-bottom: 0.8rem;
    font-size: 0.7rem;
  }

  .hero-text-only h1 {
    margin-bottom: 1rem;
    font-size: 1.85rem;
  }

  .hero-text-only p { margin-bottom: 0.8rem; }

  /* Offers cards: keep clean padding & centered button */
  .offer-card {
    padding: 2rem 1.5rem;
  }

  .offer-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
  }

  .offer-card p {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }


  /* Offer CTAs: stacked, but NOT full-width */
  .offer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-cta .cta-button {
    margin-top: 0;
  }

  /* Process: center + smaller images */
  .process-step {
    align-items: center;
    text-align: left;
  }

  .process-step img {
    max-width: 100%;
	width: 100%;
    height: auto;
	max-height: 220px;
	max-width: 260px;
	object-fit: cover;
	border-radius: var(--radius-md);
    margin-bottom: 1rem;
	aspect-ratio: 13/10;
  }

  /* FAQ spacing */
  .faq-list details {
    padding: 0.75rem 0;
  }

  .faq-list summary {
    font-size: 0.95rem;
  }

  .faq-list details p {
    font-size: 0.9rem;
  }
}
/* =================================
   404 PAGE – Footer immer unten
   ================================= */

body.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-404 main,
body.page-404 section {
  flex: 1;
}
