/* ═══════════════════════════════════════════════════════
   BEWEI – Seiten-CSS
═══════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.p-hero { height: clamp(480px, 65vw, 720px); }

/* ─── INTRO ─── */
.bw-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-gap);
  align-items: center;
  padding: var(--sp-section) var(--sp-inner);
}

.bw-intro-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.bw-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bw-intro-body { display: flex; flex-direction: column; gap: 14px; }

.bw-label {
  font-size: clamp(9px,.9vw,11px);
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--green-primary);
}

.bw-title {
  font-size: clamp(24px,3.4vw,46px);
  line-height: 1.1;
}

.bw-title em { font-style:italic; color:var(--green-primary); }

.bw-text {
  font-size: clamp(13px,1.1vw,15px);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── WIE ES FUNKTIONIERT ─── */
.bw-how {
  background: #f6f9f2;
  padding: var(--sp-section) var(--sp-inner);
}

.bw-how-head { text-align:center; margin-bottom: clamp(24px,4vw,48px); }

.bw-steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--sp-gap);
}

.bw-step {
  background: #fff;
  border-radius: 6px;
  padding: clamp(18px,2.5vw,28px);
  border: 1px solid rgba(46,107,46,.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: .25s;
}

.bw-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green-primary);
}

.bw-step-num {
  width: 40px; height: 40px;
  background: var(--green-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.bw-step h3 {
  font-size: clamp(15px,1.4vw,19px);
  font-weight: 400;
}

.bw-step p {
  font-size: clamp(12px,1vw,14px);
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── BODY / FACE TABS ─── */
.bw-tabs {
  padding: var(--sp-section) var(--sp-inner);
}

.bw-tabs-head { text-align:center; margin-bottom: clamp(20px,3vw,36px); }

.bw-tab-btns {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(20px,3vw,36px);
}

.bw-tab-btn {
  padding: 10px 28px;
  border-radius: 4px;
  border: 2px solid var(--green-primary);
  background: transparent;
  color: var(--green-primary);
  font-size: clamp(11px,1vw,13px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .2s;
}

.bw-tab-btn.active,
.bw-tab-btn:hover {
  background: var(--green-primary);
  color: #fff;
}

.bw-tab-panel { display: none; }
.bw-tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-gap); align-items: center; }

.bw-tab-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}

.bw-tab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bw-tab-body { display: flex; flex-direction: column; gap: 14px; }

.bw-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,107,46,.1);
  border: 1px solid rgba(46,107,46,.3);
  color: var(--green-primary);
  padding: 4px 14px;
  border-radius: 4px;
  font-size: clamp(9px,.9vw,11px);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
}

.bw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bw-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(12px,1.05vw,14px);
  color: var(--text-muted);
  line-height: 1.5;
}

.bw-list li::before {
  content: '✓';
  color: var(--green-primary);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── ABLAUF ─── */
.bw-process {
  background: var(--green-deep);
  padding: var(--sp-section) var(--sp-inner);
  color: #fff;
}

.bw-process-head { text-align:center; margin-bottom: clamp(24px,4vw,48px); }
.bw-process-head .bw-label { color: var(--green-light); }
.bw-process-head .bw-title { color: #fff; }
.bw-process-head .bw-text  { color: rgba(216,230,216,.75); }

.bw-process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: var(--sp-gap);
  position: relative;
}

.bw-process-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(216,230,216,.2);
}

.bw-ps {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
}

.bw-ps-num {
  width: 40px; height: 40px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(46,107,46,.3);
}

.bw-ps h4 {
  font-size: clamp(14px,1.3vw,17px);
  font-weight: 400;
  color: #fff;
}

.bw-ps p {
  font-size: clamp(11px,.95vw,13px);
  color: rgba(216,230,216,.7);
  line-height: 1.6;
}

/* ─── WARNSEKTION ─── */
.bw-warn {
  padding: var(--sp-section) var(--sp-inner);
  background: #fff8f0;
  border-top: 3px solid #e07c00;
}

.bw-warn-inner {
  max-width: 860px;
  margin: 0 auto;
}

.bw-warn-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bw-warn-icon {
  width: 44px; height: 44px;
  background: #e07c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}

.bw-warn-title h2 {
  font-size: clamp(20px,2.4vw,30px);
  color: #7a3d00;
}

.bw-warn-sub {
  font-size: clamp(13px,1.1vw,15px);
  color: #5a3800;
  margin-bottom: 18px;
  line-height: 1.7;
}

.bw-warn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px,2vw,24px);
}

.bw-warn-box {
  background: #fff;
  border: 1px solid #f0c080;
  border-radius: 6px;
  padding: clamp(14px,2vw,20px);
}

.bw-warn-box h4 {
  font-size: clamp(13px,1.2vw,15px);
  color: #7a3d00;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bw-warn-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bw-warn-box ul li {
  font-size: clamp(12px,1vw,14px);
  color: #5a4030;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.bw-warn-box ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e07c00;
  font-weight: 700;
}

.bw-warn-note {
  margin-top: 16px;
  font-size: clamp(11px,.95vw,13px);
  color: #7a3d00;
  background: rgba(224,124,0,.08);
  border-radius: 4px;
  padding: 10px 14px;
  border-left: 3px solid #e07c00;
}

/* ─── FAQ ─── */
.bw-faq {
  padding: var(--sp-section) var(--sp-inner);
  background: #f6f9f2;
}

.bw-faq-head { text-align: center; margin-bottom: clamp(24px,4vw,48px); }

.bw-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px,2vw,24px);
}

.bw-faq-card {
  background: #fff;
  border: 1px solid rgba(46,107,46,.12);
  border-radius: 6px;
  padding: clamp(18px,2.5vw,28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: .25s;
}

.bw-faq-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.bw-faq-card-num {
  width: 30px; height: 30px;
  background: rgba(46,107,46,.1);
  color: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── FAQ CARD ─── */
.bw-faq-card-q {
  font-size: clamp(14px,1.3vw,17px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', serif;
  flex: 1;
}

.bw-faq-card-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 7px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--green-primary);
  color: var(--green-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: 'DM Sans', sans-serif;
}

.bw-faq-card-btn:hover {
  background: var(--green-primary);
  color: #fff;
}

/* ─── FAQ MODAL ─── */
.bw-faq-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.bw-faq-modal.open {
  opacity: 1;
  pointer-events: all;
}

.bw-faq-modal-inner {
  background: var(--bg);
  border-radius: 10px;
  max-width: 680px;
  width: 100%;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  transform: translateY(20px);
  transition: transform .3s;
}

.bw-faq-modal.open .bw-faq-modal-inner {
  transform: translateY(0);
}

.bw-faq-modal-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(46,107,46,.12);
  flex-shrink: 0;
}

.bw-faq-modal-hd h3 {
  font-size: clamp(16px,1.5vw,20px);
  color: var(--green-deep);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.bw-faq-modal-x {
  background: rgba(46,107,46,.08);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 15px;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.bw-faq-modal-x:hover {
  background: rgba(46,107,46,.2);
  color: var(--green-deep);
}

.bw-faq-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
}

.bw-faq-modal-body p {
  font-size: clamp(13px,1.1vw,15px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.bw-faq-modal-body h4 {
  font-size: clamp(13px,1.05vw,14px);
  color: var(--green-deep);
  margin: 18px 0 8px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.bw-faq-modal-body ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.bw-faq-modal-body ul li {
  font-size: clamp(13px,1.05vw,14px);
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
  margin-bottom: 6px;
}

.bw-faq-modal-body ul li::before {
  content: '✓';
  color: var(--green-primary);
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 4px;
}

.bw-faq-modal-disc {
  font-size: clamp(10px,.85vw,11px);
  color: #999;
  border-top: 1px solid rgba(46,107,46,.1);
  padding-top: 10px;
  margin-top: 14px;
  font-style: italic;
  line-height: 1.6;
}

/* ─── GALLERY ─── */
.bw-gallery {
  padding: var(--sp-section) var(--sp-inner);
}

.bw-gallery-head { text-align: center; margin-bottom: clamp(20px,3vw,36px); }

.bw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(6px,1vw,12px);
}

.bw-gallery-grid a {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.bw-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.bw-gallery-grid a:hover img { transform: scale(1.06); }

/* ─── CTA STRIP ─── */
.bw-cta {
  background: linear-gradient(135deg,#1e3a1e 0%,#2e6b2e 60%,#3d8b3d 100%);
  padding: var(--sp-section) var(--sp-inner);
  text-align: center;
  color: #fff;
}

.bw-cta h2 {
  font-size: clamp(22px,3.2vw,42px);
  color: #fff;
  margin-bottom: 10px;
}

.bw-cta h2 em { color: var(--green-light); }

.bw-cta p {
  font-size: clamp(13px,1.1vw,15px);
  color: rgba(216,230,216,.8);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.bw-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-bw-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg,#25D366,#128C7E);
  color: #fff;
  padding: clamp(12px,1.5vw,16px) clamp(24px,3vw,36px);
  border-radius: 6px;
  font-size: clamp(11px,1vw,13px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: .2s;
}

.btn-bw-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.btn-bw-wa svg { fill: currentColor; }

.btn-bw-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(216,230,216,.5);
  color: rgba(216,230,216,.9);
  padding: clamp(12px,1.5vw,16px) clamp(24px,3vw,36px);
  border-radius: 6px;
  font-size: clamp(11px,1vw,13px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: .2s;
}

.btn-bw-ghost:hover { border-color: #fff; color: #fff; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .bw-intro,
  .bw-tab-panel.active { grid-template-columns: 1fr; }
  .bw-tab-panel.active .bw-tab-img { aspect-ratio: 16/9; }
  .bw-steps { grid-template-columns: 1fr; }
  .bw-process-steps { grid-template-columns: 1fr 1fr; }
  .bw-process-steps::before { display: none; }
  .bw-warn-grid { grid-template-columns: 1fr; }
  .bw-gallery-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  .bw-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .bw-process-steps { grid-template-columns: 1fr; }
  .bw-gallery-grid { grid-template-columns: 1fr; }
  .bw-intro-img { aspect-ratio: 16/9; }
  .bw-tab-btns { flex-direction: column; align-items: stretch; }
  .bw-tab-btn { text-align: center; }
}
