:root {
  --black: #0A0A0A;
  --black2: #111111;
  --black3: #181818;
  --black4: #222222;
  --white: #FFFFFF;
  --off-white: #F8F8F6;
  --gray-100: #F0F0EE;
  --gray-200: #E0E0DE;
  --gray-400: #AAAAAA;
  --gray-600: #666666;
  --gray-800: #333333;
  --sheen: linear-gradient(135deg, #FFFFFF 0%, #E8E8E6 40%, #F5F5F3 60%, #FFFFFF 100%);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===================== NAV ===================== */
header.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  max-width: 100vw;
}
.nav-logo {
  flex: 1;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px; width: 48px; object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--white);
  text-decoration: none;
  margin-left: 10px;
}
.nav-container {
  flex: 2;
  display: flex;
  justify-content: center;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
.nav-cta {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 2px;
  padding: 0.55rem 1.2rem; text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}
.nav-cta:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: all 0.3s;
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,10,10,0.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
}
.mobile-nav-links {
  display: flex; flex-direction: column; align-items: center; gap: 1.8rem;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400;
  color: rgba(255,255,255,0.85); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.mobile-nav-links a:hover { color: #fff; }

/* ===================== HERO ===================== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 2rem; max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.hero h1, .hero-content h1 {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 400; line-height: 1.05;
  background: var(--sheen);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1.2rem;
}
.hero h1 em, .hero-content h1 em { font-style: italic; }
.hero-sub {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; padding: 0.85rem 2rem;
  background: var(--white); color: var(--black);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  display: inline-block; padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.35); color: var(--white);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===================== SECTIONS ===================== */
section { padding: 7rem 4rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 400; line-height: 1.15;
  background: var(--sheen);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 3rem;
}
.section-title em { font-style: italic; }
.divider {
  width: 40px; height: 1px; background: rgba(255,255,255,0.15);
  margin: 2rem 0;
}

/* ===================== ABOUT ===================== */
.about { background: var(--black2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-text p {
  font-size: 0.9rem; line-height: 1.85; color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}
.about-text strong { color: var(--white); font-weight: 500; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.stat-cell {
  padding: 2rem; border: 1px solid rgba(255,255,255,0.06);
  background: var(--black3);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400;
  background: var(--sheen);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 0.3rem;
}
.stat-lbl {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ===================== PRICING ===================== */
.pricing { background: var(--black); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.pkg {
  padding: 3rem 2.5rem; border: 1px solid rgba(255,255,255,0.08);
  background: var(--black2); border-radius: 4px; position: relative;
}
.pkg.featured { border-color: rgba(255,255,255,0.2); background: var(--black3); }
.pkg-badge {
  position: absolute; top: -1px; right: 2rem;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--black);
  background: var(--white); padding: 0.3rem 0.8rem; border-radius: 0 0 4px 4px;
}
.pkg-name {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 400;
  background: var(--sheen);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 0.3rem;
}
.pkg-eur { font-size: 2rem; }
.pkg-line { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin: 1.5rem 0; }
.pkg-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.pkg-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.chk { width: 13px; height: 10px; flex-shrink: 0; margin-top: 3px; }
.pkg-btn {
  display: block; width: 100%; margin-top: 2rem;
  padding: 0.85rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.2); background: transparent;
  color: var(--white); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; transition: background 0.2s, border-color 0.2s;
}
.pkg-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.45); }
.pkg.featured .pkg-btn {
  background: var(--white); color: var(--black); border-color: var(--white);
}
.pkg.featured .pkg-btn:hover { opacity: 0.88; }

/* ===================== GALLERY ===================== */
.gallery-sec { background: var(--black2); padding: 7rem 4rem 0; overflow: hidden; }
.gallery-sec .section-inner { padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  margin-top: 3rem;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer; margin: 0;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.5s ease; display: block;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ===================== LIGHTBOX ===================== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); flex-direction: column;
  align-items: center; justify-content: center;
}
.lb-inner {
  max-width: 90vw; max-height: 85vh;
  display: flex; flex-direction: column; align-items: center;
}
.lb-inner img {
  max-width: 90vw; max-height: 80vh;
  border-radius: 4px; object-fit: contain;
}
.lb-caption { color: white; margin-top: 15px; font-family: sans-serif; font-size: 1.1rem; }
.lb-close, .lb-prev, .lb-next {
  background: none; border: none; color: white; font-size: 2.5rem;
  cursor: pointer; position: absolute; transition: color 0.3s; z-index: 10001;
}
.lb-close { top: 20px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: #ccc; }

/* ===================== CONTACT ===================== */
.contact { background: var(--black3); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-blurb { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 2rem; }
.contact-link {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; transition: opacity 0.2s;
}
.contact-link:hover { opacity: 0.7; }
.c-icon {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-icon svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); }
.c-lbl { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.c-val { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-top: 0.1rem; }
.cta-panel {
  background: var(--black4); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 3rem 2.5rem; display: flex;
  flex-direction: column; gap: 1.2rem;
}
.cta-panel-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400; line-height: 1.2;
  background: var(--sheen); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-panel-sub { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.btn-dark {
  display: block; padding: 0.9rem 1.5rem; text-align: center;
  background: var(--white); color: var(--black);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.85; }
.btn-dark-outline {
  display: block; padding: 0.9rem 1.5rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-dark-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 4rem; display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,0.2); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-right { font-size: 0.65rem; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }

/* ===================== IMPRESSUM / DATENSCHUTZ ===================== */
.impressum-page {
  min-height: 100vh; padding-top: 72px; background: var(--black);
}
.impressum-page.show { display: block; }
.impressum-inner { max-width: 760px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.impressum-back {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  background: none; border: none; cursor: pointer;
  padding: 0; margin-bottom: 3rem; transition: color 0.3s; text-decoration: none;
}
.impressum-back:hover { color: rgba(255,255,255,0.7); }
.impressum-title {
  font-family: var(--font-display); font-size: 3rem; font-weight: 400;
  background: var(--sheen); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem;
}
.impressum-intro {
  font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.3);
  line-height: 1.7; margin-bottom: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.imp-section {
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.imp-section:last-child { border-bottom: none; margin-bottom: 0; }
.imp-section-title {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.2rem;
}
.imp-row {
  display: flex; gap: 1.5rem; margin-bottom: 0.8rem;
  font-size: 0.82rem; line-height: 1.6;
}
.imp-key {
  flex: 0 0 220px; font-weight: 400;
  color: rgba(255,255,255,0.4); font-size: 0.78rem;
}
.imp-val { flex: 1; font-weight: 300; color: rgba(255,255,255,0.65); }

/* ===================== CALC MODAL ===================== */
.calc-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,0.88); align-items: center; justify-content: center;
}
.calc-modal-overlay.open { display: flex; }
.calc-modal {
  background: var(--black2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; width: 90%; max-width: 480px;
  max-height: 90vh; overflow-y: auto; position: relative;
}
.calc-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.calc-modal-close:hover { color: var(--white); }
.calc-container { padding: 2.5rem; }
.progress-track { display: flex; gap: 4px; margin-bottom: 2rem; }
.progress-seg {
  flex: 1; height: 2px; background: rgba(255,255,255,0.1);
  border-radius: 1px; transition: background 0.3s;
}
.progress-seg.active { background: var(--white); }
.calc-step { display: none; }
.calc-step.active { display: block; }
.calc-q {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  line-height: 1.3; margin-bottom: 0.5rem; color: var(--white);
}
.calc-hint { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }
.slider-wrap { margin: 1rem 0; }
.slider-ends { display: flex; justify-content: space-between; font-size: 0.65rem; color: rgba(255,255,255,0.3); margin-bottom: 0.5rem; }
input[type=range] {
  width: 100%; accent-color: var(--white); cursor: pointer;
}
.slider-display {
  text-align: center; font-family: var(--font-display); font-size: 2.5rem;
  color: var(--white); margin-top: 0.5rem;
}
.opts { display: flex; flex-direction: column; gap: 0.6rem; margin: 1rem 0; }
.opt {
  padding: 0.85rem 1rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  color: rgba(255,255,255,0.7); font-size: 0.82rem; text-align: left;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: space-between;
}
.opt:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.opt.selected { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); color: var(--white); }
.opt-sub { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.calc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; }
.c-next {
  padding: 0.7rem 1.4rem; background: var(--white); color: var(--black);
  border: none; border-radius: 3px; font-size: 0.75rem; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s; letter-spacing: 0.05em;
}
.c-next:hover { opacity: 0.85; }
.c-next:disabled { opacity: 0.35; cursor: not-allowed; }
.c-back {
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 0.75rem; cursor: pointer; transition: color 0.2s;
}
.c-back:hover { color: var(--white); }
.calc-result { display: none; text-align: center; padding: 1rem 0; }
.calc-result.show { display: block; }
.result-label {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 0.5rem;
}
.result-amount {
  font-family: var(--font-display); font-size: 4rem; font-weight: 400;
  background: var(--sheen); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.3rem;
}
.result-range { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.result-info { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 1.5rem; }
.result-btns { display: flex; flex-direction: column; gap: 0.8rem; }
.btn-reset {
  background: none; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4); padding: 0.7rem; border-radius: 3px;
  font-size: 0.72rem; cursor: pointer; transition: all 0.2s;
}
.btn-reset:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.7); }

/* ===================== MAIN WRAPPER ===================== */
#mainSite { display: block; }

/* ===================== FADE IN ===================== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== SERVICEGEBIET ===================== */
.servicegebiet { background: var(--black2); }
.ort-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
a.ort-card, a.ort-card:link, a.ort-card:visited, .ort-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 0.75rem 1.1rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; text-decoration: none; color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  min-width: 130px; flex: 0 0 auto;
}
a.ort-card:hover, .ort-card:hover {
  background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px); text-decoration: none;
}
.ort-name { color: rgba(255,255,255,0.8); font-size: 0.83rem; font-weight: 500; line-height: 1.3; }
.ort-km { color: rgba(255,255,255,0.3); font-size: 0.68rem; margin-top: 0.2rem; letter-spacing: 0.05em; }

/* Orte-Links in Unterseiten */
.imp-section ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.imp-section ul li a:not([style]),
.imp-section ul li a:not([style]):link,
.imp-section ul li a:not([style]):visited {
  display: inline-block; padding: 6px 14px;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.65) !important;
  border-radius: 20px; font-size: 0.78rem; text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.12); transition: background 0.2s, color 0.2s;
}
.imp-section ul li a:not([style]):hover {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.95) !important;
}

/* ===================== RESPONSIVE ===================== */

/* Tablet */
@media (max-width: 900px) {
  header.site-header { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  footer { padding: 1.8rem 1.5rem; flex-direction: column; text-align: center; gap: 0.8rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  section { padding: 5rem 2rem; }
  .section-inner { padding: 0; }
  .calc-container { padding: 2rem 1.5rem; }
  .cta-panel { padding: 2.2rem 1.5rem; }
  .imp-row { flex-direction: column; gap: 0.2rem; }
  .imp-key { flex: none; }
  .pkg { padding: 2rem 1.5rem; }
  .hero-btns { gap: 0.8rem; }
  .gallery-sec { padding: 5rem 2rem 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 8px; }
}

/* Mobil */
@media (max-width: 600px) {
  /* Layout */
  section { padding: 4rem 1.5rem; }
  .section-inner { padding: 0; }

  /* Hero */
  .hero h1, .hero-content h1 { font-size: 2.5rem; }
  .hero-eyebrow { font-size: 0.55rem; letter-spacing: 0.12em; }
  .hero-sub { font-size: 0.58rem; letter-spacing: 0.1em; }
  .hero-content { padding: 0 1.5rem; width: 100%; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; box-sizing: border-box; }

  /* Section Titel */
  .section-title { font-size: 2rem; word-break: break-word; }
  .section-label { letter-spacing: 0.18em; }

  /* Preise – 3 Pakete nebeneinander auf Mobile */
  .pricing-grid-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.4rem !important;
  }
  /* Verhindert, dass Kinder die Karte aufsprengen */
  .pricing-grid-3 .pkg {
    padding: 0.85rem 0.55rem !important;
    min-width: 0;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .pricing-grid-3 .pkg-name {
    font-size: 0.48rem !important;
    letter-spacing: 0.05em;
    word-break: break-word;
    white-space: normal;
  }
  .pricing-grid-3 .pkg-sub {
    font-size: 0.48rem !important;
    margin-bottom: 0.35rem;
    white-space: normal;
    word-break: break-word;
    color: rgba(255,255,255,0.35);
  }
  .pricing-grid-3 .pkg-price {
    font-size: 1.25rem !important;
    line-height: 1.1;
    margin: 0.35rem 0;
    white-space: nowrap;
  }
  .pricing-grid-3 .pkg-price span[style] {
    font-size: 0.7rem !important;
  }
  .pricing-grid-3 .pkg-eur {
    font-size: 0.85rem !important;
  }
  .pricing-grid-3 .pkg-ab {
    font-size: 0.55rem !important;
  }
  .pricing-grid-3 .pkg-line {
    margin: 0.5rem 0;
  }
  .pricing-grid-3 .pkg-list {
    font-size: 0.55rem !important;
    gap: 0.35rem !important;
  }
  .pricing-grid-3 .pkg-list li {
    font-size: 0.55rem !important;
    line-height: 1.35 !important;
    gap: 0.35rem !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  /* Haken-Icon */
  .pricing-grid-3 .chk {
    width: 8px !important;
    height: 8px !important;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .pricing-grid-3 .pkg-btn {
    font-size: 0.48rem !important;
    padding: 0.5rem 0.25rem !important;
    margin-top: 0.7rem;
    letter-spacing: 0.08em;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    line-height: 1.3;
  }
  .pricing-grid-3 .pkg-badge {
    font-size: 0.42rem !important;
    padding: 0.18rem 0.35rem !important;
    margin-bottom: 0.35rem;
    right: 0.5rem;
    white-space: nowrap;
  }
  .pricing-grid-3 .pkg-upgrade-hint {
    font-size: 0.48rem !important;
    margin: 0.35rem 0 0.45rem !important;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;
  }
  .pricing-grid-3 .pkg-benefit-strip {
    display: none;
  }
  .pricing-grid-3 .pkg.pkg-hero {
    transform: none !important;
  }
  /* Standard pricing-grid bleibt 1 Spalte */
  .pricing-grid { grid-template-columns: 1fr; }
  .pkg { padding: 1.8rem 1.4rem; }
  .pkg-name { letter-spacing: 0.1em; font-size: 0.6rem; word-break: break-word; }

  /* Galerie */
  .gallery-sec { padding: 4rem 1.5rem 0; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 8px; margin-top: 2rem; }
  .gallery-item { aspect-ratio: 4/3; }

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

  /* Orte */
  .ort-grid { gap: 0.4rem; }
  a.ort-card, .ort-card { min-width: 90px; padding: 0.6rem 0.9rem; }
  .ort-name { font-size: 0.78rem; }

  /* Kontakt */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .c-val { font-size: 0.8rem; }

  /* Footer */
  footer { padding: 1.5rem 1.5rem; flex-direction: column; text-align: center; gap: 0.8rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  /* Calc Modal */
  .calc-container { padding: 1.5rem 1.2rem; }
  .result-btns { flex-direction: column; }

  /* Impressum */
  .impressum-inner { padding: 2rem 1.5rem 5rem; overflow-x: hidden; width: 100%; box-sizing: border-box; }
  .impressum-title { font-size: 1.8rem; word-break: break-word; }
  .imp-row { flex-direction: column; gap: 0.25rem; word-break: break-word; overflow-wrap: anywhere; }
  .imp-key { flex: none; width: 100%; }
  .imp-val { width: 100%; word-break: break-word; overflow-wrap: anywhere; }
  .imp-val a { word-break: break-all; }
  .impressum-page { overflow-x: hidden; width: 100%; }
  .imp-section ul { flex-wrap: wrap; }
}
/* ===================== HERO IMPROVEMENTS ===================== */
.hero-btn-primary {
  background: #fff !important;
  color: #0a0a0a !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 0.9rem 2rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.12em !important;
}
.hero-btn-primary:hover { opacity: 0.88 !important; }
.hero-btn-secondary {
  padding: 0.9rem 2rem !important;
  font-size: 0.8rem !important;
}
.hero-trust-strip {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.hero-trust-strip span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .hero-trust-strip { flex-direction: column; gap: 0.4rem; }
  .hero-trust-strip span { font-size: 0.68rem; }
}

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: #25D366;
  color: #fff;
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 160px;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.wa-float svg { flex-shrink: 0; }
.wa-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.wa-hint {
  font-size: 0.62rem;
  opacity: 0.8;
  text-align: center;
}
@media (max-width: 600px) {
  .wa-float {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.7rem 1rem;
    min-width: 140px;
  }
  .wa-hint { display: none; }
}

/* ===================== REVIEWS SECTION ===================== */
.reviews-sec {
  background: var(--black2);
  padding: 7rem 0;
}
.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0 3.5rem;
  flex-wrap: wrap;
}
.reviews-stat { text-align: center; }
.reviews-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.reviews-stars { color: rgba(255,210,100,0.9); font-size: 1rem; margin: 0.3rem 0; }
.reviews-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }
.reviews-stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }
@media (max-width: 600px) { .reviews-stat-divider { display: none; } }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 1100px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card-featured {
  background: rgba(255,210,100,0.05);
  border-color: rgba(255,210,100,0.2);
}
.review-stars { color: rgba(255,210,100,0.9); font-size: 0.85rem; letter-spacing: 0.1em; }
.review-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.review-name { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.review-source { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 0.1rem; }
.reviews-cta { text-align: center; margin-top: 3rem; }

/* ===================== USP SECTION ===================== */
.usp-sec {
  background: var(--black);
  padding: 7rem 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 1100px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .usp-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
.usp-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.usp-item:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}
.usp-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.usp-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.usp-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ===================== FAQ SECTION ===================== */
.faq-sec {
  background: var(--black2);
  padding: 7rem 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 3rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
details[open] .faq-q { color: #fff; }
.faq-a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  padding-bottom: 1.1rem;
}
.faq-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.faq-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-body);
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: rgba(255,255,255,0.35); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-select option { background: #1a1a1a; color: #fff; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-submit {
  margin-top: 0.3rem;
  text-align: center;
  width: 100%;
  cursor: pointer;
  border: none;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em;
}
.form-success {
  text-align: center;
  color: rgba(80,220,120,0.9);
  font-size: 0.88rem;
  padding: 1rem;
  background: rgba(80,220,120,0.08);
  border: 1px solid rgba(80,220,120,0.2);
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

/* ===================== MOBILE OPTIMIERUNG KOMPLETT ===================== */

/* --- Sticky Mobile CTA Bar --- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.8rem 1.2rem;
  gap: 0.7rem;
  padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
}
.mobile-sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
}
.mobile-sticky-cta .ms-primary {
  background: #fff;
  color: #000;
}
.mobile-sticky-cta .ms-wa {
  background: #25D366;
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }

  /* Push WhatsApp float up so it doesn't overlap sticky bar */
  .wa-float {
    bottom: 5.5rem !important;
    right: 1rem !important;
    min-width: unset !important;
    padding: 0.75rem !important;
    border-radius: 50% !important;
    flex-direction: row !important;
    gap: 0 !important;
  }
  .wa-label, .wa-hint { display: none !important; }

  /* Add bottom padding to page so sticky bar doesn't cover content */
  body { padding-bottom: 72px; }

  /* Nav */
  header.site-header { padding: 0 1.2rem; height: 64px; }
  .nav-logo img { height: 40px; width: 40px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero h1, .hero-content h1 { font-size: 2.8rem; line-height: 1.1; }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.2em; }
  .hero-sub { font-size: 0.6rem; letter-spacing: 0.15em; margin-bottom: 2rem; }
  .hero-content { padding: 0 1.2rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .hero-btn-primary, .hero-btn-secondary {
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    font-size: 0.75rem !important;
    text-align: center;
  }
  .hero-trust-strip {
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1rem;
  }
  .hero-trust-strip span { font-size: 0.7rem; }
  .hero-cert-badge { font-size: 0.6rem; margin-bottom: 1.2rem; }

  /* Sections allgemein */
  section { padding: 4rem 1.2rem; }
  .section-title { font-size: 2.2rem; }
  .section-inner { padding: 0; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .stat-num { font-size: 1.6rem; }

  /* Pricing – Pakete */
  .pricing-grid-4 { grid-template-columns: 1fr !important; gap: 1rem; }
  .pkg-price { font-size: 2.2rem; }
  .pkg-list { font-size: 0.8rem; }
  .pkg-btn { font-size: 0.72rem; padding: 0.75rem; }
  .pkg-category-big-title { font-size: 1.4rem; }

  /* Preistabellen */
  .pl-table { font-size: 0.72rem; }
  .pl-table th, .pl-table td { padding: 0.55rem 0.5rem; }
  .pl-upsells-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .pl-upsell { padding: 0.85rem 0.9rem; }

  /* Konfigurator */
  .konfig-wrap { flex-direction: column !important; gap: 1.5rem; }
  .konfig-left, .konfig-right { width: 100% !important; }
  .konfig-opts { gap: 0.5rem; }
  .kopt { padding: 0.8rem 1rem; font-size: 0.82rem; }
  .kres-total { font-size: 2.5rem; }
  .kres-book-btn { font-size: 0.75rem; padding: 0.9rem; }

  /* Galerie */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0; }
  .gallery-item { aspect-ratio: 1/1; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .reviews-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .reviews-stat-num { font-size: 2.2rem; }
  .reviews-stat-divider { width: 40px; height: 1px; }
  .review-card { padding: 1.2rem; }
  .review-text { font-size: 0.85rem; }

  /* USP */
  .usp-grid { grid-template-columns: 1fr 1fr !important; gap: 0.8rem; }
  .usp-item { padding: 1.1rem; }
  .usp-icon { font-size: 1.4rem; margin-bottom: 0.5rem; }
  .usp-title { font-size: 0.78rem; }
  .usp-desc { font-size: 0.72rem; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr !important; gap: 0; }
  .faq-q { font-size: 0.85rem; padding: 1rem 0; }
  .faq-a { font-size: 0.8rem; }

  /* Kontakt */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-panel { padding: 1.8rem 1.2rem; }
  .cta-panel-title { font-size: 1.6rem; }
  .contact-blurb { font-size: 0.85rem; }
  .c-val { font-size: 0.82rem; }
  .form-input { font-size: 0.85rem; padding: 0.85rem 0.9rem; }
  .form-submit { padding: 1rem; font-size: 0.75rem !important; }

  /* Calc modal */
  .calc-modal { width: 95vw; max-height: 90svh; overflow-y: auto; }
  .calc-container { padding: 1.2rem 1rem; }
  .calc-q { font-size: 1.2rem !important; }
  .result-btns { flex-direction: column; gap: 0.6rem; }
  .result-amount { font-size: 2.8rem !important; }
  .opts { gap: 0.5rem; }
  .opt { padding: 0.85rem 1rem; font-size: 0.82rem; }

  /* Footer */
  footer { padding: 1.5rem 1.2rem 1.5rem; flex-direction: column; text-align: center; gap: 0.8rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.8rem; }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero h1, .hero-content h1 { font-size: 2.3rem; }
  .section-title { font-size: 1.9rem; }
  .usp-grid { grid-template-columns: 1fr !important; }
  .reviews-stats { gap: 1rem; }
  .reviews-stat-divider { display: none; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
/* ===== NEW CONVERSION OPTIMIZATIONS ===== */

/* Hero/featured Kombi card */
.pkg.pkg-hero {
  transform: scale(1.04);
  border: 2px solid rgba(255, 180, 0, 0.6) !important;
  box-shadow: 0 0 40px rgba(255, 180, 0, 0.18), 0 8px 32px rgba(0,0,0,0.5);
  background: linear-gradient(160deg, rgba(255,180,0,0.08) 0%, rgba(20,20,30,0.95) 60%);
  z-index: 2;
  position: relative;
}

.pkg-badge-hot {
  background: linear-gradient(90deg, #ff6b00, #ffb700);
  color: #000;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 12px rgba(255,150,0,0.4);
}

/* Benefit strip inside pkg */
.pkg-benefit-strip {
  background: rgba(255,180,0,0.06);
  border: 1px solid rgba(255,180,0,0.2);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  margin: 0.6rem 0;
}
.pkg-benefit {
  font-size: 0.75rem;
  color: rgba(255,210,100,0.85);
  padding: 0.18rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pkg-benefit::before {
  content: '✓';
  font-weight: 700;
  color: rgba(255,180,0,0.9);
  flex-shrink: 0;
}

/* Tagline below list */
.pkg-tagline {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin: 0.6rem 0 0.3rem;
  text-align: center;
}

/* Savings badge */
.pkg-savings {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(80, 200, 120, 0.9);
  background: rgba(80,200,120,0.08);
  border: 1px solid rgba(80,200,120,0.2);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  margin: 0.5rem 0;
  text-align: center;
}

/* Primary CTA button variant */
.pkg-btn-primary {
  background: linear-gradient(135deg, #ff9500, #ffb700) !important;
  color: #000 !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(255,150,0,0.35) !important;
}
.pkg-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,150,0,0.5) !important;
}

/* Mobile sticky CTA bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,18,0.97);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem;
  gap: 0.6rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.mobile-cta-btn:active { opacity: 0.8; }
.mobile-cta-call {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.mobile-cta-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
  }
  /* Add bottom padding to body so content isn't hidden by sticky bar */
  body {
    padding-bottom: 80px;
  }
  /* Scale-up hero card causes overflow on mobile, reset */
  .pkg.pkg-hero {
    transform: none;
    margin-bottom: 1rem;
  }
}

/* ===== VORHER/NACHHER PROOF STRIP ===== */
.proof-strip {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, rgba(255,180,0,0.03) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proof-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.proof-strip-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.proof-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,210,100,0.8);
  margin-bottom: 0.8rem;
}
.proof-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}
.proof-title em {
  font-style: italic;
  color: rgba(255,210,100,0.9);
}
.proof-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.proof-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  margin: 0;
  background: rgba(255,255,255,0.03);
}
.proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.proof-item:hover img { transform: scale(1.06); }
.proof-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1rem 0.7rem 0.55rem;
  text-transform: uppercase;
}
.proof-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-gallery-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.proof-gallery-link:hover { color: rgba(255,255,255,0.85); }
.proof-cta-btn {
  font-size: 0.82rem !important;
  padding: 0.75rem 1.8rem !important;
}

@media (max-width: 768px) {
  .proof-strip { padding: 3rem 0 2.5rem; }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .proof-strip-inner { padding: 0 1rem; }
}

/* ===== KATEGORISIERTE GALERIE ===== */
.gal-category {
  margin-bottom: 3.5rem;
}
.gal-cat-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gal-cat-icon {
  font-size: 1.4rem;
}
.gal-cat-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  margin: 0;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .gal-cat-title { font-size: 0.95rem; }
  .gallery-sec .section-inner { padding: 0 1rem; }
}

/* ===== VORHER / NACHHER LIGHTBOX ===== */
.vnlb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.vnlb-overlay.open {
  display: flex;
}
.vnlb-overlay * {
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
}

.vnlb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 90vw;
  max-width: 820px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vnlb-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.8rem; cursor: pointer;
  line-height: 1; z-index: 10;
  transition: color 0.2s;
}
.vnlb-close:hover { color: #fff; }


/* The slider itself */
.vnlb-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.vnlb-after, .vnlb-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  draggable: false;
}
.vnlb-before-wrap {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
}
.vnlb-before {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; /* will be overridden by JS to match slider width */
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  pointer-events: none;
}
.vnlb-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2.5px;
  background: rgba(255,255,255,0.95);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
}
.vnlb-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  color: #0a0a0a;
  z-index: 5;
}
.vnlb-handle svg { width: 22px; height: 22px; }

.vnlb-label {
  position: absolute;
  top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  pointer-events: none;
  z-index: 4;
}
.vnlb-label-before { left: 0.75rem; }
.vnlb-label-after  { right: 0.75rem; }

/* Navigation row */
.vnlb-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.vnlb-prev, .vnlb-next {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.vnlb-prev:hover, .vnlb-next:hover { background: rgba(255,255,255,0.2); }
.vnlb-counter {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  min-width: 3rem;
  text-align: center;
}

@media (max-width: 600px) {
  .vnlb-inner { width: 96vw; gap: 0.9rem; }
  .vnlb-handle { width: 36px; height: 36px; }
  .vnlb-handle svg { width: 18px; height: 18px; }
}


.gal-folder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.gal-folder-center {
  grid-column: 1 / 3;
  justify-self: center;
  width: calc(50% - 0.5rem);
}
.gal-folder {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.gal-folder:hover {
  transform: translateY(-3px);
  border-color: rgba(255,180,0,0.4);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.gal-folder-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gal-folder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gal-folder:hover .gal-folder-img img {
  transform: scale(1.05);
}
.gal-folder-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gal-folder:hover .gal-folder-overlay {
  opacity: 1;
}
.gal-folder-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gal-folder-open {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.gal-folder-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.gal-folder-icon {
  font-size: 1rem;
}
.gal-folder-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

/* Mobile: alle 3 nebeneinander in einer Zeile */
@media (max-width: 600px) {
  .gal-folder-layout {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    max-width: 100%;
    gap: 0.4rem;
  }
  .gal-folder-center {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
  .gal-folder {
    border-radius: 8px;
  }
  .gal-folder-label {
    padding: 0.45rem 0.5rem;
    gap: 0.3rem;
  }
  .gal-folder-icon {
    font-size: 0.75rem;
  }
  .gal-folder-name {
    font-size: 0.55rem;
    letter-spacing: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  /* Overlay immer sichtbar auf Touch-Geräten */
  .gal-folder-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.25);
  }
  .gal-folder-count {
    font-size: 0.55rem;
  }
  .gal-folder-open {
    font-size: 0.65rem;
  }
}