/* ============================================================
   MUSTIC INNENAUSBAU — style.css
   Design: 1:1 Nachbau nach Webflow-Original
   Bearbeite Farben unter :root {}
   ============================================================ */

:root {
  --teal:       #10aba9;
  --teal-dark:  #0c8a89;
  --teal-light: #e0f5f5;
  --dark:       #1c2b3a;
  --dark2:      #152232;
  --gray-bg:    #f2f3f5;
  --white:      #ffffff;
  --text:       #2d3748;
  --text-light: #5a6a7a;
  --border:     #dde2e8;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --font:       'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.section-label.light { color: rgba(255,255,255,.7); }
.teal-sub { color: var(--teal); font-weight: 800; font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 20px; line-height: 1.2; }
.offer-text { font-weight: 700; font-size: .9rem; color: var(--teal); margin: 18px 0 16px; }
.center-desc { text-align: center; color: var(--text-light); max-width: 620px; margin: 0 auto 52px; font-size: 1.15rem; line-height: 1.55; }

/* ── PILL BUTTONS ── */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.btn-pill-white,
.btn-pill-outline-white,
.btn-pill-white-dark,
.btn-pill-teal,
.btn-pill-dark,
.btn-pill-gray,
.btn-teal {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 600; font-size: .87rem;
  padding: 18px 28px; border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: all .2s ease;
}

.btn-pill-white:has(.pill-icon),
.btn-pill-outline-white:has(.pill-icon),
.btn-pill-white-dark:has(.pill-icon),
.btn-pill-teal:has(.pill-icon),
.btn-pill-dark:has(.pill-icon),
.btn-pill-gray:has(.pill-icon) {
  padding: 9px 28px 9px 9px;
}
.btn-pill-white .pill-icon,
.btn-pill-outline-white .pill-icon,
.btn-pill-white-dark .pill-icon,
.btn-pill-teal .pill-icon,
.btn-pill-dark .pill-icon,
.btn-pill-gray .pill-icon { margin-right: 4px; }

.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn-pill-white { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-pill-white:hover { background: rgba(255,255,255,.85); }
.btn-pill-white .pill-icon { background: var(--teal); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-pill-white .pill-icon img { width: 13px; filter: brightness(0) invert(1); }

.btn-pill-outline-white { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-pill-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-pill-outline-white .pill-icon { background: var(--white); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-pill-outline-white .pill-icon img { display: none; }
.btn-pill-outline-white .pill-icon::before {
  content: "";
  display: block;
  width: 13px; height: 13px;
  background-color: var(--teal);
  -webkit-mask: url('../images/arrow.svg') center / contain no-repeat;
          mask: url('../images/arrow.svg') center / contain no-repeat;
}

.btn-pill-white-dark { background: var(--white); color: var(--dark); border: 1.5px solid var(--dark); }
.btn-pill-white-dark:hover { background: rgba(0,0,0,.05); }
.btn-pill-white-dark .pill-icon { background: var(--teal); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-pill-white-dark .pill-icon img { width: 13px; filter: brightness(0) invert(1); }

.btn-pill-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-pill-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn-pill-teal .pill-icon { background: var(--white); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-pill-teal .pill-icon img { display: none; }
.btn-pill-teal .pill-icon::before {
  content: "";
  display: block;
  width: 13px; height: 13px;
  background-color: var(--teal);
  -webkit-mask: url('../images/arrow.svg') center / contain no-repeat;
          mask: url('../images/arrow.svg') center / contain no-repeat;
}

.btn-pill-dark { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-pill-dark:hover { background: rgba(255,255,255,.25); }
.btn-pill-dark .pill-icon { background: rgba(255,255,255,.2); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-pill-dark .pill-icon img { width: 13px; filter: brightness(0) invert(1); }

.btn-pill-gray { background: rgba(28,43,58,.08); color: var(--text-light); border-color: var(--border); }
.btn-pill-gray:hover { background: rgba(28,43,58,.14); }
.btn-pill-gray .pill-icon { background: rgba(28,43,58,.12); border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-pill-gray .pill-icon img { width: 13px; opacity: .5; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #444;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.10); }

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 84px; gap: 40px;
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex; gap: 36px; align-items: center;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9);
  transition: color .2s;
}
.nav-links a:hover { color: rgba(255,255,255,.9); }

.nav-cta { margin-left: 20px; padding: 10px 24px; font-size: .85rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto;
  width: 28px; height: 22px; justify-content: center; position: relative;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO — Split 50/50
══════════════════════════════════════ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 84px;
  overflow: hidden;
  background: var(--dark);
}

.hero-background {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
  opacity: .75;
  position: absolute; inset: 0;
  z-index: 0;
}

/* Left: logo + van + tagline, centered */
.hero-left {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
  background:
    linear-gradient(to top right, rgba(16,171,169,0.6) 0%, rgba(16,171,169,0) 100%),
    rgba(0,0,0,0.5);
}
.hero-logo { width: clamp(200px, 26vw, 320px); height: auto; }
.hero-van  { width: min(100%, 980px); height: auto; border-radius: var(--radius-md); }
.hero-tagline {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800; color: var(--white); line-height: 1.2;
}

/* Right: teal content */
.hero-right {
  position: relative;
  z-index: 1;
  background: var(--teal);
  padding: clamp(40px, 6vw, 72px) clamp(32px, 5vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-right h1 {
  font-size: clamp(2.34rem, 3.9vw, 3.38rem);
  font-weight: 800; color: var(--white); margin-bottom: 2px; line-height: 1.15;
}
.hero-sub {
  font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,.95); margin-bottom: 20px;
}
.hero-body {
  color: rgba(255,255,255,.82); font-size: 1.261rem; margin-bottom: 18px; line-height: 1.7;
}
.hero-body strong { color: var(--white); }
.hero-cta-label {
  font-weight: 700; font-size: 1.209rem; color: var(--white); margin-bottom: 22px;
}

/* ══════════════════════════════════════
   LEISTUNGEN — Slider
══════════════════════════════════════ */
.leistungen-section {
  padding: 80px 0 60px;
  background: #f5f6f7;
}
.leistungen-section .section-label { font-size: 1.08rem; }
.leistungen-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; color: var(--dark); margin-bottom: 12px;
}
.section-desc { color: var(--text-light); max-width: 500px; margin-bottom: 44px; font-size: 1.15rem; line-height: 1.5; }

/* Slider */
.slider-wrap { padding: 0 32px; max-width: 1160px; margin: 0 auto; }
.slider-track {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 0 16px;
}
.slider-track::-webkit-scrollbar { display: none; }

/* Service Card */
.service-card {
  min-width: 352px; max-width: 352px;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #2a3a4a;
  cursor: pointer;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,.22); }
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%;
  background: var(--teal);
  z-index: 1;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 40%;
  background: rgba(16,171,169,0.25);
  z-index: 1;
  pointer-events: none;
}
.service-card:hover { transform: translateY(-4px); }

.card-icon {
  position: absolute; z-index: 2;
  top: 20px; left: 20px;
  width: 76px; height: 76px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.card-icon img { width: 44px; height: 44px; filter: none; }

.card-body {
  position: absolute; z-index: 2;
  left: 0; right: 0; top: 40%; bottom: 0;
  padding: 18px 22px 22px;
  text-align: left;
  display: flex; flex-direction: column;
}
.card-body h3 { font-size: 1.45rem; font-weight: 700; color: var(--white); margin-bottom: 2px; line-height: 1.15; }
.card-sub { font-size: .78rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 4px; }
.card-body p { font-size: .85rem; color: var(--white); line-height: 1.45; margin-bottom: 10px; }

.btn-mehr {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 22px;
  background: var(--white);
  border: none;
  border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  color: var(--dark);
  transition: background .2s, transform .2s;
}
.btn-mehr:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }

/* Slider controls */
.slider-controls {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px;
  padding: 0 32px;
}
.slider-dots { display: flex; gap: 8px; margin-left: 32px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: background .2s;
}
.dot.active { background: var(--teal); }

.slider-arrows { display: flex; gap: 14px; margin-right: 32px; }
.arrow-btn {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid #000;
  background: var(--white); color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s;
  padding: 0;
}
.arrow-btn svg { width: 20px; height: 20px; display: block; }
.arrow-btn-next svg { transform: scaleX(-1); }
.arrow-btn:hover { color: var(--teal); }

/* ══════════════════════════════════════
   TERMIN SECTION — Teal BG
══════════════════════════════════════ */
.termin-section {
  background: var(--teal);
  padding: 120px 0;
}
.termin-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

.termin-card-dark {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.termin-card-label {
  color: var(--teal); font-weight: 700; font-size: 1.5rem; margin-bottom: 24px; text-align: center;
}
.calendly-placeholder img {
  width: 100%; height: auto; border-radius: var(--radius-md);
  display: block;
}
.termin-card-dark { display: flex; flex-direction: column; align-items: center; }
.termin-card-dark .calendly-placeholder { width: 100%; }
.termin-book-btn { margin-top: 24px; }

.termin-text h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800; color: var(--white); margin-bottom: 22px;
}
.termin-text p { color: rgba(255,255,255,.9); margin-bottom: 14px; font-size: 1.15rem; line-height: 1.55; }
.termin-text p.termin-also { font-size: 1.35rem; margin-top: 20px; margin-bottom: 20px; }
.termin-also strong { color: var(--white); }

/* ══════════════════════════════════════
   TROCKENBAU VORTEILE
══════════════════════════════════════ */
.vorteile-section {
  padding: 96px 0;
  background: var(--gray-bg);
  text-align: center;
}
.teal-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--teal); margin-bottom: 16px;
}

.vorteile-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  align-items: stretch; text-align: left; margin-top: 0;
}
.vorteile-img { position: relative; min-height: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); }
.vorteile-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
  z-index: 1;
}
.vorteile-img-icon {
  position: absolute; z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  display: none;
  align-items: center; justify-content: center;
  pointer-events: none;
}
.vorteile-img-icon.show { display: flex; }
.vorteile-img-icon svg { width: 200px; height: 200px; }
.vorteile-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.vorteil-item {
  padding: 12px 0 12px 16px;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.vorteil-item:last-child { border-bottom: none; }
.vorteil-item.active {
  border-left-color: var(--teal);
}
.vorteil-item h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px;
}
.vorteil-item p { font-size: .9rem; color: var(--text-light); line-height: 1.55; }

/* ══════════════════════════════════════
   BADUMBAU — Teal BG
══════════════════════════════════════ */
.bad-section {
  background: var(--teal);
  padding: 80px 0;
}
.bad-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: stretch;
}

.bad-card-dark {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.bad-card-dark h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 20px;
}
.bad-card-dark h2 .light-weight { font-weight: 400; }
.bad-card-dark > p { color: rgba(255,255,255,.78); font-size: .92rem; margin-bottom: 24px; line-height: 1.7; }

.bad-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.bad-features h4 { font-size: .9rem; font-weight: 700; color: var(--teal); margin-bottom: 5px; }
.bad-features p { font-size: .83rem; color: rgba(255,255,255,.65); }

.bad-photo { position: relative; min-height: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.bad-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════
   MALER & SPACHTEL
══════════════════════════════════════ */
.maler-section {
  padding: 96px 0;
  background: var(--white);
}
.maler-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.maler-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--dark); margin-bottom: 6px;
}
.maler-text p { color: var(--text-light); font-size: .93rem; margin-bottom: 10px; line-height: 1.7; }

.maler-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.maler-photo-item img {
  width: 100%; border-radius: var(--radius-sm);
  object-fit: cover; height: 200px; margin-bottom: 10px;
}
.maler-photo-item p { font-size: .85rem; color: var(--text-light); }
.maler-photo-item p strong { color: var(--dark); display: block; margin-bottom: 4px; }

/* ══════════════════════════════════════
   ÜBER UNS
══════════════════════════════════════ */
.ueber-section {
  padding: 96px 0;
  background: var(--gray-bg);
}
.ueber-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start;
}
.ueber-left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: var(--dark); margin-bottom: 32px; line-height: 1.25;
}
.ueber-logo-box {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 52px 64px;
  display: inline-block;
}
.ueber-logo-box img { height: 80px; width: auto; }

.ueber-right { display: flex; flex-direction: column; gap: 0; }
.ueber-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.ueber-block:last-child { border-bottom: none; }
.ueber-block h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px;
}
.ueber-block p { font-size: .9rem; color: var(--text-light); line-height: 1.75; }

/* ══════════════════════════════════════
   UNSERE VORTEILE — Textured bg
══════════════════════════════════════ */
.unsere-vorteile {
  padding: 80px 0;
  background: #e8eaed;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(62,205,176,.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(28,43,58,.06) 0%, transparent 50%);
}
.unsere-vorteile h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 44px;
}
.vorteile-4grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px;
}
.v4-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.v4-item img { width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px; }
.v4-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.v4-item p { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════════════
   KONTAKT — Dark Card + Form
══════════════════════════════════════ */
.kontakt-section {
  padding: 96px 0;
  background: var(--gray-bg);
}
.kontakt-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--dark); margin-bottom: 48px;
}
.kontakt-tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.kontakt-tile {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: 14px;
  color: var(--dark);
  text-decoration: none;
}
.kontakt-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.kontakt-tile-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.kontakt-tile-icon svg { width: 36px; height: 36px; }
.kontakt-tile h3 { font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.kontakt-tile p { color: var(--text-light); font-size: .98rem; line-height: 1.5; }
.kontakt-tile-link { margin-top: auto; color: var(--teal); font-weight: 700; font-size: 1rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 150px; width: auto; }
.footer-col h4 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--teal); margin-bottom: 16px;
}
.footer-col p, .footer-col li {
  font-size: .85rem; color: rgba(255,255,255,.55);
  margin-bottom: 6px; line-height: 1.6;
}
.footer-col a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-col strong { color: rgba(255,255,255,.85); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: .8rem; color: rgba(255,255,255,.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal a:hover { color: var(--teal); }

/* ══════════════════════════════════════
   IMPRESSUM / DATENSCHUTZ PAGES
══════════════════════════════════════ */
.legal-page { padding: 120px 0 80px; min-height: 80vh; }
.legal-page h1 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.legal-page .legal-update { color: var(--text-light); font-size: .85rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin: 32px 0 10px; }
.legal-page h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 24px 0 8px; }
.legal-page p { color: var(--text-light); font-size: .92rem; line-height: 1.8; margin-bottom: 12px; }
.legal-page a { color: var(--teal); }
.legal-page a:hover { text-decoration: underline; }
.legal-page ul { margin: 8px 0 16px 20px; }
.legal-page ul li { color: var(--text-light); font-size: .92rem; line-height: 1.8; list-style: disc; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; }
.anim.visible { animation: fadeUp .55s ease both; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { min-height: 55vw; }
  .bad-grid, .termin-grid { grid-template-columns: 1fr; }
  .bad-photo { order: -1; }
  .bad-photo img { min-height: 260px; max-height: 320px; }
  .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
  .vorteile-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-tiles { grid-template-columns: 1fr; }
}

.nav-mobile-cta { display: none; }

@media (max-width: 768px) {
  .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 84px; left: 0; right: 0;
    background: #444;
    padding: 12px 32px 24px;
    gap: 0; z-index: 999;
    align-items: stretch; text-align: center;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .25s ease, visibility 0s linear .3s;
    will-change: transform, opacity;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform .3s ease, opacity .25s ease, visibility 0s;
  }
  .nav-links a { font-size: 1.15rem; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); text-align: center; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-mobile-cta { display: inline-flex; margin: 20px auto 0; padding: 10px 48px !important; justify-content: center; align-self: center; text-align: center; border-bottom: none !important; min-width: 260px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-logo { width: min(50vw, 240px); }
  .vorteile-4grid { grid-template-columns: 1fr; }
  .maler-grid { grid-template-columns: 1fr; }
  .maler-photos { grid-template-columns: 1fr 1fr; }
  .bad-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .slider-wrap { padding: 0 16px; }
  .service-card { min-width: 280px; max-width: 280px; }
}

@media (max-width: 480px) {
  .btn-row { flex-direction: column; align-items: flex-start; }
  .hero-right { padding: 32px 24px; }
  .container { padding: 0 20px; }
}

/* ══════════════════════════════════════
   SUBPAGES — Leistungs-Unterseiten
══════════════════════════════════════ */

/* HERO — zentriert, weißer Hintergrund */
.sub-hero {
  padding: 160px 0 80px;
  background: var(--white);
  text-align: center;
}
.sub-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
.sub-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.sub-hero p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* INTRO-SECTION */
.sub-intro {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}
.sub-intro-inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 32px;
}
.sub-intro h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.sub-intro h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.sub-intro p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* FEATURES-GRID — Teal Hintergrund */
.sub-features-teal {
  background: #3ecdb0;
  padding: 60px 0;
}
.sub-features-teal .sub-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.sub-feature-box {
  padding: 40px 36px;
  border-radius: 4px;
}
.sub-features-teal .sub-feature-box {
  background: #3ecdb0;
}
.sub-features-teal .sub-feature-box.dark-teal {
  background: #34b69c;
}
.sub-features-teal .sub-feature-box h3 {
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 14px;
  line-height: 1.3;
}
.sub-features-teal .sub-feature-box p {
  color: rgba(255, 255, 255, 0.92);
  font-size: .98rem;
  line-height: 1.65;
}

/* FEATURES-GRID 2 — weißer Hintergrund */
.sub-features-white {
  background: var(--white);
  padding: 80px 0;
}
.sub-features-white .sub-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.sub-features-white .sub-feature-box {
  padding: 0;
}
.sub-features-white .sub-feature-box h3 {
  color: var(--dark);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 14px;
  line-height: 1.3;
}
.sub-features-white .sub-feature-box p {
  color: var(--text-light);
  font-size: .98rem;
  line-height: 1.7;
}

/* CTA-SECTION — dunkler Hintergrund */
.sub-cta {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.sub-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
.sub-cta h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}
.sub-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.sub-cta .sub-cta-highlight {
  color: var(--teal);
  font-weight: 700;
  margin: 20px 0 28px;
}
.sub-cta .btn-row {
  justify-content: center;
}

/* RESPONSIVE — Subpages */
@media (max-width: 768px) {
  .sub-hero { padding: 130px 0 60px; }
  .sub-intro { padding: 60px 0; }
  .sub-features-teal { padding: 40px 0; }
  .sub-features-white { padding: 60px 0; }
  .sub-cta { padding: 60px 0; }
  .sub-features-teal .sub-features-grid,
  .sub-features-white .sub-features-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .sub-features-white .sub-features-grid { gap: 32px; }
  .sub-feature-box { padding: 30px 24px; }
}
