.badesanierung-page{
  background:var(--surface-services);
}

/* HERO */
.badesanierung-hero{
  position:relative;
  min-height:600px;
  overflow:hidden;
}

.badesanierung-hero-bg{
  position:absolute;
  inset:0;
  background:url("../images/bad.jpg") center/cover no-repeat;
  z-index:0;

  opacity:0;
  transform:scale(1.05);
  animation:badesanierungHeroFade 1.8s ease forwards;
}

.badesanierung-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.3) 100%);
  z-index:1;
}

.badesanierung-hero-inner{
  position:relative;
  z-index:2;
  min-height:600px;
  padding-top:126px;
}

.badesanierung-hero-content{
  min-height:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin-left:130px;
}

.badesanierung-hero-title{
  font-family:"InterCuostom", sans-serif;
  font-size:48px;
  line-height:1.05;
  color:#cfc4bc;
  max-width:760px;

  opacity:0;
  transform:translateY(50px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(0.22,1,0.36,1);
}

.badesanierung-hero-title.in-view{
  opacity:1;
  transform:translateY(0);
}

/* ANIMATION */
@keyframes badesanierungHeroFade{
  0%{
    opacity:0;
    transform:scale(1.05);
  }
  100%{
    opacity:1;
    transform:scale(1);
  }
}

/* CONTENT */
.badesanierung-content-section{
  position:relative;
  padding:100px 0 230px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.04) 0%, transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.025) 0%, transparent 24%),
    linear-gradient(180deg, #2a2a2a 0%, #232323 100%);
}

.badesanierung-content-wrap{
  display:flex;
  justify-content:center;
}

.badesanierung-premium-grid{
  width:100%;
  max-width:1180px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
}

/* CARDS */
.badesanierung-premium-card{
  position:relative;
  background:
    linear-gradient(180deg, rgba(42,42,42,.95) 0%, rgba(28,28,28,.97) 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  box-shadow:
    0 24px 50px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.04);
  overflow:hidden;

  opacity:0;
  transform:translateY(55px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(0.22,1,0.36,1),
    box-shadow .25s ease,
    border-color .25s ease;
}

.badesanierung-premium-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.06) 0%, transparent 34%);
}

.badesanierung-premium-card.in-view{
  opacity:1;
  transform:translateY(0);
}

.badesanierung-premium-card:hover{
  border-color:rgba(255,255,255,.14);
  box-shadow:
    0 30px 60px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.06);
}

/* GRID SPACING */
.badesanierung-premium-card-main{
  padding:38px 38px 34px;
  min-height:320px;
}

.badesanierung-premium-card-side{
  padding:34px 30px;
  min-height:320px;
}

.badesanierung-premium-card-text{
  padding:30px;
  min-height:250px;
}

.badesanierung-premium-card-advantages{
  grid-column:1 / -1;
  padding:36px;
}

/* TEXT */
.badesanierung-card-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(160,200,255,.08);
  border:1px solid rgba(160,200,255,.18);
  color:#a9c8ff;
  font-size:13px;
  font-family:"InterCuostom600", sans-serif;
  letter-spacing:.3px;
  text-transform:uppercase;
}

.badesanierung-content-title{
  margin:0 0 16px;
  font-family:"InterCuostom700", sans-serif;
  font-size:52px;
  line-height:1.02;
  letter-spacing:-1px;
  color:#cfc4bc;
}

.badesanierung-lead{
  margin:0;
  max-width:720px;
  font-size:19px;
  line-height:1.75;
  color:var(--text-muted-2);
}

.badesanierung-premium-card h3{
  margin:0 0 20px;
  font-family:"InterCuostom700", sans-serif;
  font-size:26px;
  line-height:1.15;
  color:#cfc4bc;
}

.badesanierung-text{
  margin:0;
  color:var(--text-muted-2);
  font-size:17px;
  line-height:1.8;
}

/* FEATURES */
.badesanierung-feature-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.badesanierung-feature-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.badesanierung-feature-dot{
  width:12px;
  height:12px;
  margin-top:8px;
  border-radius:50%;
  background:linear-gradient(180deg, #c6dcff 0%, #9ec2ff 100%);
  box-shadow:0 0 0 6px rgba(160,200,255,.08);
  flex:0 0 12px;
}

.badesanierung-feature-item strong{
  display:block;
  margin-bottom:4px;
  color:#cfc4bc;
  font-family:"InterCuostom600", sans-serif;
  font-size:18px;
}

.badesanierung-feature-item p{
  margin:0;
  color:var(--text-muted-2);
  font-size:15px;
  line-height:1.65;
}

/* ADVANTAGES */
.badesanierung-advantages-title{
  margin:0 0 24px;
  font-family:"InterCuostom700", sans-serif;
  font-size:40px;
  line-height:1.08;
  letter-spacing:-0.8px;
  color:#cfc4bc;
  max-width:760px;
}

.badesanierung-advantages-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px 26px;
}

.badesanierung-adv-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.badesanierung-adv-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 28px;
  background:#9ec2ff;
  color:#1f1f1f; /* dunkler Text = edler */
  font-family:"InterCuostom700", sans-serif;
  font-size:15px;
  line-height:1;
  box-shadow:0 0 0 6px rgba(160,200,255,.08);
}

.badesanierung-adv-item p{
  margin:0;
  color:#cfc4bc;
  font-family:"InterCuostom600", sans-serif;
  font-size:17px;
  line-height:1.55;
}

.badesanierung-premium-card:nth-child(1){ transition-delay:.04s; }
.badesanierung-premium-card:nth-child(2){ transition-delay:.12s; }
.badesanierung-premium-card:nth-child(3){ transition-delay:.20s; }
.badesanierung-premium-card:nth-child(4){ transition-delay:.28s; }

/* LIGHT MODE */
body.light .badesanierung-content-section{
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.03) 0%, transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(0,0,0,.02) 0%, transparent 24%),
    linear-gradient(180deg, #f4f6f8 0%, #e9edf1 100%);
}

body.light .badesanierung-premium-card{
  color:#e8e3da;
}

body.light .badesanierung-premium-card h2,
body.light .badesanierung-premium-card h3,
body.light .badesanierung-premium-card strong,
body.light .badesanierung-advantages-title{
  color:#f1ece3;
}

body.light .badesanierung-premium-card p,
body.light .badesanierung-adv-item p{
  color:#d0cac0;
}

/* LAPTOP */
@media (max-width: 1366px){
  .badesanierung-hero{
    height:72vh;
    min-height:560px;
  }

  .badesanierung-hero-inner{
    min-height:auto;
    padding-top:118px;
    display:flex;
    justify-content:center;
    text-align:center;
  }

  .badesanierung-hero-content{
    max-width:720px;
    margin:0 auto;
    align-items:center;
  }

  .badesanierung-hero-title{
    font-size:48px;
    line-height:1.06;
    margin:0 0 16px;
    letter-spacing:-0.5px;
  }

  .badesanierung-content-section{
    padding:70px 0 55px;
  }

  .badesanierung-premium-grid{
    max-width:980px;
    gap:18px;
  }

  .badesanierung-premium-card-main{
    min-height:280px;
    padding:30px 30px 28px;
  }

  .badesanierung-premium-card-side{
    min-height:280px;
    padding:28px 24px;
  }

  .badesanierung-premium-card-text{
    min-height:auto;
    padding:24px 24px 22px;
  }

  .badesanierung-premium-card-advantages{
    padding:30px 28px 28px;
  }

  .badesanierung-card-kicker{
    font-size:12px;
    padding:7px 12px;
    margin-bottom:12px;
  }

  .badesanierung-content-title{
    font-size:42px;
    line-height:1.05;
    margin:0 0 14px;
  }

  .badesanierung-lead{
    font-size:17px;
    line-height:1.65;
  }

  .badesanierung-premium-card h3{
    font-size:22px;
    margin-bottom:16px;
  }

  .badesanierung-feature-list{
    gap:16px;
  }

  .badesanierung-feature-dot{
    width:11px;
    height:11px;
    margin-top:7px;
    flex:0 0 11px;
  }

  .badesanierung-feature-item strong{
    font-size:17px;
  }

  .badesanierung-feature-item p{
    font-size:14px;
    line-height:1.6;
  }

  .badesanierung-text{
    font-size:15px;
    line-height:1.7;
  }

  .badesanierung-advantages-title{
    font-size:34px;
    margin-bottom:20px;
  }

  .badesanierung-advantages-list{
    gap:16px 22px;
  }

  .badesanierung-adv-icon{
    width:26px;
    height:26px;
    flex:0 0 26px;
    font-size:14px;
  }

  .badesanierung-adv-item p{
    font-size:15px;
    line-height:1.5;
  }
}

/* MOBILE */
@media (max-width: 980px){
  .badesanierung-hero{
    height:auto;
    min-height:0;
    padding:120px 0 70px;
    background-position:center center;
  }

  .badesanierung-hero-inner{
    min-height:auto;
    padding-top:0;
    display:block;
    text-align:left;
  }

  .badesanierung-hero-content{
    max-width:100%;
    margin:0;
    align-items:flex-start;
  }

  .badesanierung-hero-title{
    font-size:34px;
    line-height:1.08;
    margin:0 0 14px;
  }

  .badesanierung-content-section{
    padding:48px 0 34px;
  }

  .badesanierung-premium-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .badesanierung-premium-card-main,
  .badesanierung-premium-card-side,
  .badesanierung-premium-card-text,
  .badesanierung-premium-card-advantages{
    min-height:auto;
    padding:22px 18px 20px;
    border-radius:18px;
  }

  .badesanierung-card-kicker{
    font-size:11px;
    padding:6px 10px;
    margin-bottom:10px;
  }

  .badesanierung-content-title{
    font-size:32px;
    line-height:1.08;
    margin-bottom:10px;
  }

  .badesanierung-lead{
    font-size:15px;
    line-height:1.65;
  }

  .badesanierung-premium-card h3{
    font-size:20px;
    margin-bottom:14px;
  }

  .badesanierung-feature-list{
    gap:14px;
  }

  .badesanierung-feature-item{
    gap:12px;
  }

  .badesanierung-feature-dot{
    width:10px;
    height:10px;
    margin-top:7px;
    flex:0 0 10px;
  }

  .badesanierung-feature-item strong{
    font-size:16px;
  }

  .badesanierung-feature-item p,
  .badesanierung-text{
    font-size:14px;
    line-height:1.65;
  }

  .badesanierung-advantages-title{
    font-size:28px;
    line-height:1.08;
    margin-bottom:16px;
  }

  .badesanierung-advantages-list{
    grid-template-columns:1fr;
    gap:14px;
  }

  .badesanierung-adv-item{
    gap:12px;
  }

  .badesanierung-adv-icon{
    width:24px;
    height:24px;
    flex:0 0 24px;
    font-size:13px;
  }

  .badesanierung-adv-item p{
    font-size:14px;
    line-height:1.55;
  }

  .badesanierung-hero-title,
  .badesanierung-premium-card{
    opacity:1;
    transform:none;
    transition:none;
  }
}