/* =====================================================
   BSR Wohnungsauflösung Berlin – Stylesheet
   Mobil-First | Orange & Weiß | Modern & Verkaufsstark
   ===================================================== */

/* ===== ROOT VARIABLES ===== */
:root {
  --orange:       #F5821F;
  --orange-dark:  #D9700F;
  --orange-light: #FFF3E8;
  --white:        #FFFFFF;
  --dark:         #1A1A1A;
  --text:         #333333;
  --text-muted:   #666666;
  --bg-light:     #F8F9FA;
  --border:       #E8E8E8;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.15);
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; transition: var(--transition); }
ul    { list-style: none; padding: 0; }
button { cursor: pointer; font-family: inherit; }

/* ===== UTILITIES ===== */
.container  { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section    { padding: 60px 0; }
.bg-light   { background: var(--bg-light); }
.bg-dark    { background: var(--dark); color: var(--white); }
.text-center{ text-align: center; }
.sr-only    { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.section-badge {
  display: inline-block; padding: 5px 14px;
  background: var(--orange-light); color: var(--orange);
  border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800;
  color: var(--dark); margin-bottom: 12px; line-height: 1.25;
}
.section-subtitle {
  color: var(--text-muted); font-size: 1rem;
  margin-bottom: 40px; max-width: 600px;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-size: 1rem;
  font-weight: 700; border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,130,31,0.4); }
.btn-outline  { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover  { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.btn-white   { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-white:hover   { background: var(--orange-light); transform: translateY(-2px); }
.btn-lg   { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header-main { padding: 14px 0; }
.header-main .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem; color: var(--dark); flex-shrink: 0;
}
.logo-mark {
  width: 44px; height: 44px; background: var(--orange);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text .line1 { display: block; font-size: 0.95rem; font-weight: 800; color: var(--dark); line-height: 1.1; }
.logo-text .line2 { display: block; font-size: 0.72rem; font-weight: 500; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }

/* Desktop Nav */
.nav-desktop { display: none; }
@media (min-width: 1024px) { .nav-desktop { display: flex; align-items: center; gap: 4px; } }
.nav-desktop a { padding: 9px 14px; font-weight: 600; font-size: 0.92rem; color: var(--text); border-radius: var(--radius); transition: var(--transition); }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--orange); background: var(--orange-light); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 14px; font-weight: 600; font-size: 0.92rem;
  color: var(--text); border-radius: var(--radius);
  transition: var(--transition); background: none; border: none;
  cursor: pointer; font-family: inherit; line-height: 1.5;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--orange); background: var(--orange-light); }
.nav-dropdown-toggle:focus { outline: none; }
.nav-dropdown-toggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); min-width: 220px; padding: 8px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); z-index: 100;
}
/* Unsichtbare Brücke schließt den 8px-Spalt – Menü bleibt beim schnellen Hovern offen */
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
/* wrap inner content so the visual box stays offset by 8px */
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 6px; font-size: 0.9rem; }
.nav-dropdown-menu a:hover { color: var(--orange); background: var(--orange-light); }

/* Header Phone (desktop) */
.header-phone { display: none; }
@media (min-width: 768px) {
  .header-phone {
    display: flex; align-items: center; gap: 8px;
    background: var(--orange); color: var(--white);
    padding: 10px 18px; border-radius: var(--radius);
    font-weight: 700; font-size: 0.95rem;
  }
  .header-phone:hover { background: var(--orange-dark); }
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 10px; border-radius: var(--radius);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { width: 26px; height: 3px; background: var(--dark); border-radius: 3px; transition: var(--transition); display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

/* Mobile Nav Overlay */
.nav-mobile {
  display: none; position: fixed; inset: 0; top: 73px;
  background: var(--white); z-index: 999; overflow-y: auto;
  overflow-x: hidden;
}
.nav-mobile.open { display: block; }
.nav-mobile-inner { padding: 20px; }
.nav-mobile a {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px; font-weight: 600; font-size: 1rem;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile-cta {
  margin-top: 24px; background: var(--orange);
  border-radius: var(--radius); padding: 20px;
  text-align: center; color: var(--white);
}
.nav-mobile-cta p { font-size: 0.85rem; margin-bottom: 8px; opacity: 0.85; }
.nav-mobile-cta a { border: none; font-size: 1.15rem; font-weight: 800; color: var(--white) !important; justify-content: center; }

/* ===== HERO SECTION ===== */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}
/* Hero BG image – linked <img> for easy replacement */
.hero-bg-link {
  position: absolute; inset: 0; display: block; z-index: 0;
  pointer-events: none; /* keeps overlay clickable */
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.55) 60%, rgba(245,130,31,0.25) 100%);
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr;
  gap: 36px; padding-top: 50px; padding-bottom: 50px;
}
@media (min-width: 1024px) {
  .hero .container { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .hero { min-height: 100vh; }
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 700; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 18px; color: var(--white);
}
.hero-title .hl { color: var(--orange); }
.hero-desc  { font-size: 1.05rem; opacity: 0.88; margin-bottom: 26px; line-height: 1.75; }
.hero-checks { margin-bottom: 30px; display: flex; flex-direction: column; gap: 9px; }
.hero-check  { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(255,255,255,0.92); }
.hero-check-icon {
  width: 22px; height: 22px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; flex-shrink: 0; color: var(--white);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: 0 12px 60px rgba(0,0,0,0.3);
}
.hero-form-header { margin-bottom: 22px; }
.hero-form-title { font-size: 1.25rem; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.hero-form-sub   { font-size: 0.875rem; color: var(--text-muted); }
.hero-form-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.mini-badge {
  font-size: 0.75rem; font-weight: 600; color: var(--orange);
  background: var(--orange-light); padding: 3px 10px; border-radius: 100px;
}

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.form-control {
  width: 100%; padding: 12px 15px; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: var(--transition); font-family: inherit;
  line-height: 1.4;
}
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,31,0.12); }
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 95px; }
.form-row { display: grid; gap: 14px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-privacy { font-size: 0.77rem; color: var(--text-muted); margin-top: 10px; }
.form-privacy a { color: var(--orange); }
.form-privacy a:hover { text-decoration: underline; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-top: 12px; font-size: 0.82rem; color: var(--text-muted); cursor: pointer; }
.form-checkbox input { margin-top: 2px; accent-color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; }

/* Captcha */
.captcha-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.captcha-q { font-weight: 800; color: var(--orange); }
.captcha-answer { width: 100%; max-width: 160px; padding: 10px 14px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; color: var(--text); background: var(--white); transition: var(--transition); font-family: inherit; }
.captcha-answer:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,31,0.12); }

/* Form success */
.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success.active { display: block; }
.form-success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success-title { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.form-success-text  { color: var(--text-muted); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--orange); padding: 22px 0; }
.trust-bar .container {
  display: flex; flex-wrap: wrap; gap: 20px;
  justify-content: center; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); }
.trust-icon { font-size: 1.6rem; line-height: 1; }
.trust-txt strong { display: block; font-size: 1.2rem; font-weight: 800; line-height: 1.1; }
.trust-txt span   { font-size: 0.78rem; opacity: 0.85; }
.trust-div { width: 1px; height: 32px; background: rgba(255,255,255,0.3); display: none; }
@media (min-width: 640px) { .trust-div { display: block; } }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-card-img-wrap { position: relative; height: 210px; overflow: hidden; }
.service-card-img-wrap span { display: block; height: 100%; }
.service-card-img {
  width: 100%; height: 210px; object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
  width: 48px; height: 48px; background: var(--orange-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 14px;
}
.service-card-title { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 9px; }
.service-card-text  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; flex: 1; }
.service-card-link  { color: var(--orange); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 5px; margin-top: auto; }
.service-card-link:hover { gap: 10px; }

/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; padding: 32px 20px; position: relative; }
.step-num {
  width: 64px; height: 64px; background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(245,130,31,0.4);
}
.step-title { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.step-text  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== USP GRID ===== */
.usp-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px)  { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }
.usp-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 22px; border: 2px solid var(--border);
  text-align: center; transition: var(--transition);
}
.usp-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-3px); }
.usp-emoji { font-size: 2.4rem; margin-bottom: 14px; }
.usp-title { font-size: 0.98rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.usp-text  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 64px 0; text-align: center;
}
.cta-banner-title { font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-banner-text  { color: rgba(255,255,255,0.88); margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner-btns  { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== REVIEWS / TESTIMONIALS ===== */
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.review-stars { color: var(--orange); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text  { color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 20px; font-size: 0.92rem; }
.review-author{ display: flex; align-items: center; gap: 12px; }
.review-avatar{
  width: 44px; height: 44px; background: var(--orange-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 800; color: var(--orange); font-size: 1.1rem; flex-shrink: 0;
}
.review-name  { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.review-loc   { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  padding: 18px 22px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; color: var(--dark); background: var(--white);
  border: none; width: 100%; text-align: left; font-size: 0.97rem; font-family: inherit;
  transition: var(--transition);
}
.faq-q:hover, .faq-q.open { color: var(--orange); background: var(--orange-light); }
.faq-icon { font-size: 1.3rem; color: var(--orange); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; color: var(--text-muted); line-height: 1.75; font-size: 0.92rem; background: var(--white); }
.faq-a.open { display: block; }

/* ===== AREAS ===== */
.areas-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tag {
  padding: 7px 16px; border: 2px solid var(--orange);
  color: var(--orange); border-radius: 100px; font-size: 0.82rem;
  font-weight: 600; transition: var(--transition);
}
.area-tag:hover { background: var(--orange); color: var(--white); }

/* ===== CONTACT SECTION ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-info-title { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.contact-info-text  { color: var(--text-muted); margin-bottom: 28px; line-height: 1.75; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--white);
  border-radius: var(--radius); margin-bottom: 14px;
  border: 1px solid var(--border); transition: var(--transition);
}
.contact-method:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.contact-method-icon {
  width: 50px; height: 50px; background: var(--orange-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.contact-method-label { font-weight: 700; color: var(--dark); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-method-value { color: var(--orange); font-weight: 700; font-size: 1rem; }
.contact-form-card   { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form-title  { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.contact-form-sub    { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 24px; }

/* ===== INLINE PHONE CTA ===== */
.phone-cta-box {
  background: var(--orange-light); border: 2px solid var(--orange);
  border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; margin: 32px 0;
}
@media (min-width: 640px) { .phone-cta-box { flex-direction: row; align-items: center; justify-content: space-between; } }
.phone-cta-text strong { font-size: 1.05rem; color: var(--dark); }
.phone-cta-text p { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  position: relative; padding: 80px 0 60px; overflow: hidden;
  background: var(--dark);
}
.page-hero-bg-link { position: absolute; inset: 0; display: block; z-index: 0; }
.page-hero-bg-img  { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(245,130,31,0.3) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.breadcrumb-cur { color: var(--orange); font-size: 0.82rem; font-weight: 600; }
.page-hero-title    { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.page-hero-subtitle { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 580px; margin-bottom: 28px; }
.page-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== CONTENT BLOCK ===== */
.content-block {
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 1024px) {
  .content-block { grid-template-columns: 1fr 1fr; gap: 72px; }
  .content-block.reverse > *:first-child { order: 2; }
  .content-block.reverse > *:last-child  { order: 1; }
}
.content-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-img-wrap span { display: block; }
.content-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 0.92rem; line-height: 1.55;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓'; width: 22px; height: 22px; background: var(--orange);
  color: var(--white); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.68rem; font-weight: 900; flex-shrink: 0; margin-top: 1px;
}

/* ===== ICON BOX GRID ===== */
.icon-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 640px)  { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .icon-grid { grid-template-columns: repeat(3, 1fr); } }
.icon-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 22px; border: 1px solid var(--border);
  transition: var(--transition);
}
.icon-box:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.icon-box-icon { font-size: 2rem; margin-bottom: 14px; }
.icon-box-title { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.icon-box-text  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

/* ===== SEO TEXT ===== */
.seo-text { border-top: 2px solid var(--border); padding-top: 48px; }
.seo-text h2 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.seo-text p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.85; margin-bottom: 14px; }
.seo-columns { columns: 1; }
@media (min-width: 768px) { .seo-columns { columns: 2; column-gap: 40px; } }
.seo-columns h2 { column-span: all; }

/* ===== MESSIE RATGEBER ===== */
.guide-wrap { max-width: 800px; margin: 0 auto; }
.guide-toc  { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 44px; }
.guide-toc-title { font-weight: 800; color: var(--dark); margin-bottom: 16px; font-size: 1.1rem; }
.guide-toc ol { padding-left: 20px; margin: 0; }
.guide-toc li { margin-bottom: 9px; }
.guide-toc a  { color: var(--orange); font-weight: 500; font-size: 0.92rem; }
.guide-toc a:hover { text-decoration: underline; }
.guide-h2 { font-size: 1.45rem; font-weight: 800; color: var(--dark); margin: 48px 0 16px; padding-top: 24px; border-top: 2px solid var(--orange-light); scroll-margin-top: 90px; }
.guide-h2:first-of-type { border-top: none; margin-top: 0; }
.guide-h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin: 26px 0 12px; }
.guide-wrap p  { color: var(--text); line-height: 1.85; margin-bottom: 16px; }
.guide-wrap ul, .guide-wrap ol { padding-left: 22px; margin-bottom: 16px; }
.guide-wrap li { color: var(--text); line-height: 1.75; margin-bottom: 8px; }
.guide-box {
  background: var(--orange-light); border-left: 4px solid var(--orange);
  padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0;
}
.guide-box-title { font-weight: 800; color: var(--dark); margin-bottom: 9px; }
.guide-box p { margin: 0; font-size: 0.92rem; }
.guide-img-wrap { margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.guide-img-wrap span { display: block; }
.guide-img-wrap img { width: 100%; max-height: 380px; object-fit: cover; }

/* ===== FOOTER ===== */
footer { background: #111; color: var(--white); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand-text { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.75; margin-bottom: 22px; }
.footer-phone { display: flex; align-items: center; gap: 10px; color: var(--orange); font-weight: 800; font-size: 1.1rem; }
.footer-phone:hover { color: #ffad60; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.87rem; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.65); font-size: 0.87rem; margin-bottom: 13px; }
.footer-contact-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0;
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { color: rgba(255,255,255,0.38); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--orange); }

/* ===== FLOATING ELEMENTS ===== */
/* Scroll to Top */
#scrollTopBtn {
  position: fixed; right: 20px; bottom: 110px;
  width: 46px; height: 46px; background: var(--orange);
  color: var(--white); border: none; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 4px 16px rgba(245,130,31,0.4);
  z-index: 997; transition: var(--transition); cursor: pointer;
}
#scrollTopBtn:hover { background: var(--orange-dark); transform: translateY(-3px); }
#scrollTopBtn.show { display: flex; }
@media (min-width: 1024px) { #scrollTopBtn { bottom: 30px; } }

/* Floating Call Button (Mobile only) */
#floatCall {
  position: fixed; bottom: 24px; right: 20px;
  display: flex; align-items: center; gap: 9px;
  background: var(--orange); color: var(--white);
  padding: 13px 20px; border-radius: 100px;
  font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(245,130,31,0.55);
  z-index: 998; text-decoration: none;
  animation: callPulse 2.2s infinite;
}
#floatCall:hover { background: var(--orange-dark); transform: scale(1.04); }
@media (min-width: 1024px) { #floatCall { display: none; } }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 56px 0 40px;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}
.legal-content { max-width: 820px; }
.legal-block { margin-bottom: 40px; }
.legal-block h2 {
  font-size: 1.2rem; font-weight: 800; color: var(--dark);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--orange-light);
}
.legal-block h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 16px 0 8px; }
.legal-block p { color: var(--text); margin-bottom: 10px; line-height: 1.75; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--orange); }
.legal-block a:hover { text-decoration: underline; }
.legal-block code {
  background: var(--bg-light); border: 1px solid var(--border);
  padding: 2px 6px; border-radius: 4px; font-size: 0.87em; font-family: monospace;
}
.legal-list { margin: 10px 0 10px 20px; list-style: disc; }
.legal-list li { margin-bottom: 6px; color: var(--text); line-height: 1.6; }

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 3px solid var(--orange);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.13);
  z-index: 9999; padding: 18px 0;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cookie-modal.show { transform: translateY(0); }
.cookie-modal-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.cookie-title { font-size: 1rem; font-weight: 800; color: var(--dark); flex-shrink: 0; white-space: nowrap; }
.cookie-text { font-size: 0.85rem; color: var(--text-muted); flex: 1; min-width: 180px; line-height: 1.55; }
.cookie-text a { color: var(--orange); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: 0.9rem; }
@keyframes callPulse {
  0%   { box-shadow: 0 6px 28px rgba(245,130,31,0.55); }
  50%  { box-shadow: 0 6px 40px rgba(245,130,31,0.85); }
  100% { box-shadow: 0 6px 28px rgba(245,130,31,0.55); }
}

/* Sticky Phone Strip (mobile) */
.phone-strip { background: var(--orange); padding: 14px 0; text-align: center; }
.phone-strip a { color: var(--white); font-weight: 800; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; }

/* ===== DESKTOP ENHANCEMENTS ===== */
@media (min-width: 768px)  { .section { padding: 80px 0; } }
@media (min-width: 1200px) { .section { padding: 100px 0; } }

/* ===== PRICING CARDS ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; transition: var(--transition);
  background: var(--white); position: relative;
}
.pricing-card.featured { border-color: var(--orange); box-shadow: var(--shadow-lg); }
.pricing-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  padding: 4px 20px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; white-space: nowrap;
}
.pricing-title { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.pricing-price { font-size: 2.1rem; font-weight: 800; color: var(--orange); margin: 14px 0 6px; }
.pricing-price small { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 22px; }
.pricing-feats { text-align: left; margin-bottom: 26px; }
.pricing-feats li { display: flex; align-items: center; gap: 8px; padding: 8px 0; font-size: 0.88rem; color: var(--text); border-bottom: 1px solid var(--border); }
.pricing-feats li:last-child { border-bottom: none; }
.pricing-feats li::before { content: '✓'; color: var(--orange); font-weight: 800; }
