:root {
  --primary: #715A5A;
  --primary-600: #5d4a4a;
  --accent: #D3DAD9;
  --accent-700: #b8c4c2;
  --success: #6b9b7f;
  --warning: #c9a66b;
  --danger: #b96b6b;
  --bg: #1a1820;
  --bg-alt: #252130;
  --surface: #2d2838;
  --muted: #8a8595;
  --text: #c4bfd0;
  --heading: #e8e4f0;
  --border: #3d3848;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --glow: 0 0 30px rgba(113, 90, 90, 0.4);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --font-family: 'Space Grotesk', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-family);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-600); }

.bw-nav {
  background: rgba(26, 24, 32, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  z-index: 1000;
}

.bw-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bw-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.bw-nav-logo {
  width: 42px;
  height: 42px;
}

.bw-nav-brand span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading);
}

.bw-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.bw-nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--heading);
  transition: .3s;
}

.bw-nav-menu {
  display: flex;
  gap: 8px;
}

.bw-nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: .3s;
  text-decoration: none;
}

.bw-nav-link:hover {
  color: var(--heading);
  background: var(--surface);
}

.bw-hero {
  min-height: 100vh;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bw-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(113,90,90,0.15), transparent 60%),
  radial-gradient(circle at 80% 70%, rgba(211,218,217,0.08), transparent 60%);
}

.bw-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: pulse 8s ease-in-out infinite;
}

.bw-glow-1 {
  top: -150px;
  left: -100px;
  background: var(--primary);
  animation-delay: 0s;
}

.bw-glow-2 {
  bottom: -150px;
  right: -100px;
  background: var(--accent);
  animation-delay: 4s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

.bw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  box-shadow: var(--glow);
}

.bw-hero-badge i {
  font-size: 1.3rem;
}

.bw-h1 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.15;
  margin: 0;
}

.bw-gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bw-lead {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  font-weight: 600;
  transition: .3s;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: scale(0.98);
}

.btn-outline-light {
  border: 2px solid var(--border);
  color: var(--heading);
  font-weight: 600;
  transition: .3s;
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--surface);
  border-color: var(--primary);
  opacity: 0.9;
  transform: scale(0.98);
}

.bw-hero-visual {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

.bw-hero-main {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.bw-hero-main img {
  border-radius: var(--radius-md);
  width: 100%;
}

.bw-float-element {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  box-shadow: var(--glow);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.bw-el-1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.bw-el-2 {
  bottom: -20px;
  right: -30px;
  animation-delay: 2s;
}

.bw-el-3 {
  top: 40%;
  right: -40px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.bw-hero.bw-hero-loaded .bw-hero-badge,
.bw-hero.bw-hero-loaded .bw-h1,
.bw-hero.bw-hero-loaded .bw-lead,
.bw-hero.bw-hero-loaded .btn,
.bw-hero.bw-hero-loaded .bw-hero-visual {
  opacity: 0;
  transform: translateY(30px);
}

.bw-hero.animate-in .bw-hero-badge { animation: fadeUp 0.7s ease-out 0.1s forwards; }
.bw-hero.animate-in .bw-h1 { animation: fadeUp 0.8s ease-out 0.2s forwards; }
.bw-hero.animate-in .bw-lead { animation: fadeUp 0.9s ease-out 0.3s forwards; }
.bw-hero.animate-in .btn { animation: fadeUp 1s ease-out 0.4s forwards; }
.bw-hero.animate-in .bw-hero-visual { animation: fadeUp 1.2s ease-out 0.6s forwards; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.bw-section {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.bw-section-alt {
  padding: 120px 0;
  background: var(--bg-alt);
  position: relative;
}

.bw-h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0;
}

.bw-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.bw-ebene-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: .4s;
  height: 100%;
}

.bw-ebene-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
}

.bw-ebene-card.bw-featured {
  background: linear-gradient(135deg, rgba(113,90,90,0.15), rgba(211,218,217,0.08));
}

.bw-ebene-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--bg);
}

.bw-ebene-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 14px;
}

.bw-ebene-card p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bw-ebene-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bw-feature-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bw-feature-tag i {
  color: var(--primary);
  font-size: 0.9rem;
}
.bw-prozess-illustration img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}

.bw-prozess-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: .35s;
}

.bw-prozess-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.bw-prozess-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.bw-prozess-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.bw-prozess-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.bw-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--text);
}
.bw-method-wide {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 26px;
  transition: .35s;
  height: 100%;
}

.bw-method-wide:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.bw-method-wide-icon {
  min-width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--bg);
}

.bw-method-wide-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}

.bw-method-wide-content p {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .bw-method-wide {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .bw-method-wide-icon {
    margin-bottom: 12px;
  }

  .bw-method-wide-content h3 {
    font-size: 1.35rem;
  }
}
.bw-transform-illustration {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}

.bw-transform-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.bw-transform-item {
  display: flex;
  gap: 20px;
  padding: 22px 26px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: .3s;
  align-items: flex-start;
}

.bw-transform-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.bw-transform-item-icon {
  min-width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: var(--bg);
}

.bw-transform-item-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.bw-transform-item-content p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .bw-transform-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .bw-transform-item-icon {
    margin: 0 auto 10px;
  }

  .bw-transform-item-content h4 {
    font-size: 1.15rem;
  }
}

.bw-impact-grid {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}

.bw-impact-item {
  padding: 20px;
}

.bw-impact-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.bw-impact-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}

.bw-impact-item p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.bw-packages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bw-package-line {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 50px rgba(0,0,0,0.25);
  transition: .35s;
}

.bw-package-line:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
}

.bw-package-info {
  max-width: 65%;
}

.bw-package-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 12px;
}

.bw-package-info p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.bw-package-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bw-package-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.bw-package-info li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.bw-package-price-box {
  min-width: 180px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bw-price {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bw-price-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .bw-package-line {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .bw-package-info {
    max-width: 100%;
  }

  .bw-package-price-box {
    text-align: center;
    margin-top: 20px;
  }
}

.bw-testimonial {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: .4s;
  height: 100%;
  min-height: 360px;
}

.bw-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.bw-test-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bw-test-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.bw-test-header strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
}

.bw-test-header span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 2px;
}

.bw-test-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.bw-test-rating i {
  color: #f7c65a;
  font-size: 1.2rem;
}

.bw-test-rating span {
  font-weight: 700;
  color: var(--heading);
  font-size: 1.1rem;
}

.bw-test-text {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}
.bw-testimonial-swiper {
  padding-bottom: 60px;
}

.bw-testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.bw-test-prev,
.bw-test-next {
  width: 46px;
  height: 46px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  font-size: 1.4rem;
  cursor: pointer;
  transition: .3s;
}

.bw-test-prev:hover,
.bw-test-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

.swiper-pagination-bullet {
  background: var(--muted);
  opacity: .5;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}
.bw-contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bw-contact-tile {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: .35s;
}

.bw-contact-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.bw-contact-tile-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.bw-contact-tile h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 6px 0;
}

.bw-contact-tile a,
.bw-contact-tile p {
  font-size: 0.98rem;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.bw-contact-tile a:hover {
  color: var(--primary);
}

.bw-contact-form-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-control {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: .3s;
  padding: 12px 16px;
  background: var(--bg-alt);
  color: var(--text);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(113,90,90,0.25);
  color: var(--heading);
}

.form-floating label {
  font-weight: 600;
  color: var(--muted);
}

.error-message {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.form-control.error {
  border-color: var(--danger);
}

.form-control.error + label {
  color: var(--danger);
}

.form-control.error ~ .error-message {
  display: block;
}

@media (max-width: 767px) {
  .bw-contact-form-wrapper {
    padding: 28px;
  }
}
.bw-footer {
  background: var(--surface);
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}

.bw-footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bw-footer-logo {
  width: 58px;
  height: 58px;
}

.bw-footer-brand-name {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading);
}

.bw-footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.bw-footer-nav a {
  color: var(--text);
  font-weight: 600;
  transition: .3s;
  font-size: 0.95rem;
}

.bw-footer-nav a:hover {
  color: var(--accent);
}

.bw-footer-contact-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bw-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.bw-footer-contact-item i {
  font-size: 1.3rem;
  color: var(--accent);
}

.bw-footer-contact-item a,
.bw-footer-contact-item span {
  color: var(--text);
  font-weight: 600;
}

.bw-footer-contact-item a:hover {
  color: var(--accent);
}

.bw-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}

.bw-footer-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.bw-footer-legal {
  display: flex;
  gap: 20px;
}

.bw-footer-legal a {
  color: var(--text);
  font-size: 0.9rem;
  transition: .3s;
}

.bw-footer-legal a:hover {
  color: var(--accent);
}

@media (max-width: 767px) {
  .bw-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .bw-footer-legal {
    justify-content: center;
  }
}


.cookie-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 360px;
  width: 100%;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  z-index: 9999;
  opacity: 0;
  transform: translateY(40px);
  transition: all .45s ease;
}

.cookie-wrapper.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-wrapper h4 {
  color: var(--heading);
  font-weight: 700;
}

.cookie-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-text a {
  color: var(--primary);
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons .btn {
  font-weight: 600;
  padding: 10px 0;
}

.btn-outline-secondary {
  border-color: var(--border);
  color: var(--text);
}

.btn-outline-secondary:hover {
  background: var(--bg-alt);
  color: var(--heading);
  border-color: var(--primary);
}


@media (max-width: 991px) {
  .bw-nav-toggle {
    display: flex;
  }

  .bw-nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(26, 24, 32, 0.98);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
  }

  .bw-nav-menu.active {
    display: flex;
  }

  .bw-h1 { font-size: 2.8rem; }
  .bw-h2 { font-size: 2.2rem; }
  .bw-hero { padding: 140px 0 80px; }
  .bw-section { padding: 80px 0; }
  .bw-section-alt { padding: 80px 0; }
  .bw-contact-wrapper { padding: 36px 28px; }
  .bw-impact-grid { padding: 40px 28px; }
}

@media (max-width: 767px) {
  .bw-h1 { font-size: 2.2rem; text-align: center; }
  .bw-lead { text-align: center; }
  .bw-h2 { font-size: 1.9rem; }
  .bw-hero-badge { margin: 0 auto 16px; }
  .bw-contact-wrapper { padding: 28px 20px; }
  .bw-package-card.bw-featured { transform: scale(1); }
  .bw-package-card.bw-featured:hover { transform: translateY(-8px) scale(1); }
  .bw-footer-legal { justify-content: center; margin-top: 16px; }
  .bw-prozess-item { flex-direction: column; gap: 16px; }
  .bw-prozess-item::before { display: none; }
}