/* ================================================================
   ANGELIS BESTATTUNGEN GMBH – Haupt-Stylesheet
   Farben: #7a224c (Weinrot) | #FFF4F1 (Hellrosa) | #000000
   Fonts:  Raleway (Überschriften) | Open Sans (Fließtext)
   ================================================================ */

:root {
  /* Brand-Farben 1:1 aus Original angelis.de */
  --accent:       #7a224c;
  --accent-hover: #8f2959;
  --accent-light: rgba(122, 34, 76, 0.08);
  --dark:         #1a1a1a;
  --nav-bg:       rgba(18, 10, 14, 0.96);
  --cream:        #FFF8F5;   /* Leicht wärmer als Original, aber luftiger */
  --cream-dark:   #f0e4e8;
  --white:        #ffffff;
  --text:         #1a1a1a;
  --text-light:   #5a5a5a;
  --border:       #e2d4d8;

  /* Fonts aus Original angelis.de */
  --heading:  'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --body:     'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  --section-pad: 5rem 0;
  --transition:  0.3s ease;
  --radius:      3px;
}

/* ===== MOBILE PHONE BUTTON (Intent: Transactional – immer erreichbar) ===== */
.mobile-phone-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--accent);
  color: #ffffff;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px rgba(122,34,76,0.4);
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition), transform var(--transition);
}
.mobile-phone-btn:hover { background: var(--accent-hover); transform: scale(1.04); }

/* ===== HERO – Brand-Subline ===== */
.hero-brand {
  margin-top: 1.5rem;
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--accent);
  border-bottom: 2px solid rgba(0,0,0,0.15);
  padding: 0.9rem 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.8rem;
  border-right: 1px solid rgba(255,255,255,0.2);
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  color: #f0b8d0;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAFIE ===== */
h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  padding: 0 2rem;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 34, 76, 0.25);
  transition: height var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  height: 64px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  border: none;
}
.nav-cta:hover { background: var(--accent-hover) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,5,8,0.58) 0%,
    rgba(122,34,76,0.12) 55%,
    rgba(10,5,8,0.62) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 1.5rem;
  max-width: 860px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #f0b8d0;
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  font-weight: 800;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  padding: 0.88rem 2.2rem;
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
/* In Hero auf weißem Hintergrund */
.hero .btn-primary:hover { color: #f0b8d0; border-color: #f0b8d0; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 0.88rem 2.2rem;
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: #f0b8d0;
  color: #f0b8d0;
}

.hero-phone {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
  font-family: var(--heading);
}
.hero-phone a { color: #f0b8d0; font-weight: 700; font-size: 1rem; }

/* ===== LAYOUT ===== */
.section { padding: var(--section-pad); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark); color: #ffffff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: block;
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; color: var(--text); }
.section-dark .section-header h2 { color: #ffffff; }
.section-header p {
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
  font-size: 0.97rem;
}
.section-dark .section-header p { color: rgba(255,255,255,0.65); }
.divider {
  width: 44px; height: 2px;
  background: var(--accent);
  margin: 1rem auto 0;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(122,34,76,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(122,34,76,0.12);
}
.service-card-img { position: relative; height: 215px; overflow: hidden; }
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.service-card-body h3 {
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: 1.1rem;
}
.service-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== ABOUT (Homepage-Teaser) ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text .section-label { text-align: left; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.85; font-size: 0.97rem; }
.about-stats { display: flex; gap: 2.5rem; margin: 1.5rem 0 2rem; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--heading);
  font-size: 2.6rem;
  color: var(--accent);
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem; left: -2rem;
  width: 195px; height: 195px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

/* ===== ABOUT (Über-uns-Seite) ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-intro-text h2 { margin-bottom: 1.2rem; }
.about-intro-text p { color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; font-size: 0.97rem; }
.about-features { margin-top: 1.8rem; }
.about-feature {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.about-feature:last-child { border-bottom: none; }
.feature-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}
.feature-text strong { display: block; margin-bottom: 0.2rem; font-family: var(--heading); }
.feature-text span { font-size: 0.88rem; color: var(--text-light); }

.about-intro-imgs { display: flex; flex-direction: column; gap: 1rem; }
.about-intro-imgs img:first-child {
  width: 100%; height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-intro-imgs img:last-child {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.area-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.area-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--accent);
  font-family: var(--heading);
  font-weight: 600;
}

/* ===== CTA-BANNER ===== */
.cta-banner {
  background: var(--accent);
  padding: 3.5rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: #ffffff; margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 1.8rem; font-size: 1.05rem; }
.btn-white {
  display: inline-block;
  background: #ffffff;
  color: var(--accent);
  padding: 0.88rem 2.4rem;
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-white:hover { background: var(--dark); color: #ffffff; }

/* ===== PAGE HERO (Unterseiten) ===== */
.page-hero {
  height: 300px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 75px;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,5,8,0.72);
}
.page-hero-content {
  position: relative; z-index: 1;
  color: #ffffff;
  padding: 0 2rem;
}
.page-hero-content .section-label { display: block; margin-bottom: 0.75rem; color: #f0b8d0; }
.page-hero-content h1 { color: #ffffff; }

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-info h2 { margin-bottom: 0.5rem; }
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; line-height: 1.8; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.contact-item-text strong {
  display: block;
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.contact-item-text p { font-size: 0.95rem; line-height: 1.6; }
.contact-item-text a { color: var(--text); transition: var(--transition); }
.contact-item-text a:hover { color: var(--accent); }

.opening-hours { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.opening-hours h3 { margin-bottom: 1rem; font-size: 1.05rem; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--text); font-family: var(--heading); font-size: 0.88rem; }
.hours-note { margin-top: 0.75rem; font-size: 0.85rem; color: var(--accent); font-family: var(--heading); font-weight: 600; }

.map-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== KONTAKTFORMULAR ===== */
.contact-form h2 { margin-bottom: 0.5rem; }
.contact-form > p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.93rem; line-height: 1.8; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-family: var(--heading);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(122,34,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%;
  padding: 0.92rem;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 0.4rem;
}
.btn-submit:hover { background: var(--accent-hover); }
.form-message {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.form-message.success { background: #f0faf0; color: #2e7d32; border: 1px solid #c8e6c9; display: block; }
.form-message.error   { background: #fdf0f3; color: #7a224c; border: 1px solid #f0b8d0; display: block; }

/* ===== IMPRESSUM / DATENSCHUTZ ===== */
.legal-content { max-width: 800px; }
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--accent);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p { color: var(--text-light); line-height: 1.85; margin-bottom: 0.8rem; font-size: 0.94rem; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
.legal-content ul { margin: 0.5rem 0 0.8rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--text-light); font-size: 0.94rem; line-height: 1.8; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.68); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo img {
  height: 44px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.75);
}
.footer-about p { font-size: 0.87rem; line-height: 1.85; max-width: 280px; }
.footer-col h4 {
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f0b8d0;
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #f0b8d0; }
.footer-contact p { font-size: 0.87rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.62); transition: color var(--transition); }
.footer-contact a:hover { color: #f0b8d0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color var(--transition); }
.footer-bottom a:hover { color: #f0b8d0; }

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

/* --- Tablet & kleiner Laptop: Hamburger-Menü bei 6 Nav-Items --- */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 75px; left: 0; right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(122,34,76,0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.85rem;
  }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Kompakter Tablet (992px): Layouts auf 1-Spalte --- */
@media (max-width: 992px) {
  .about-grid,
  .about-intro,
  .contact-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Mobil (768px): volle mobile Ansicht --- */
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 0; }
  .mobile-phone-btn { display: flex; }
  .trust-item { padding: 0.4rem 0.9rem; font-size: 0.72rem; }
  .hero-brand { font-size: 0.7rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .situation-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .step-detail-item { flex-direction: column; gap: 1rem; }
  .emergency-bar-inner { flex-direction: column; text-align: center; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-intro-imgs { display: none; }
}

/* --- Kleines Mobil (480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ===== SCHRITTE GRID (Homepage + Trauerfall) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(122,34,76,0.06);
  transition: box-shadow var(--transition);
}
.step-card:hover { box-shadow: 0 6px 20px rgba(122,34,76,0.12); }
.step-num {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
}
.step-card h3 { font-size: 0.92rem; margin-bottom: 0.5rem; color: var(--text); }
.step-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }
.steps-cta { text-align: center; margin-top: 1.5rem; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--transition);
}
details[open] .faq-question { color: var(--accent); }
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.2rem;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 0.6rem;
}
.faq-answer p:last-child { margin-bottom: 0; }

/* ===== EMERGENCY BAR (Trauerfall-Seite) ===== */
.emergency-bar {
  background: var(--accent);
  padding: 1rem 0;
}
.emergency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.emergency-bar p {
  color: rgba(255,255,255,0.95);
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
}
.btn-white-sm {
  display: inline-block;
  background: #ffffff;
  color: var(--accent);
  padding: 0.6rem 1.4rem;
  font-family: var(--heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: var(--transition);
}
.btn-white-sm:hover { background: var(--dark); color: #ffffff; }

/* ===== SCHRITTE DETAIL (Trauerfall-Seite) ===== */
.steps-detail { max-width: 780px; margin: 0 auto; }
.step-detail-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.step-detail-item:last-child { border-bottom: none; }
.step-detail-num {
  width: 48px; height: 48px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.step-detail-content h3 { margin-bottom: 0.7rem; font-size: 1.1rem; }
.step-detail-content p { color: var(--text-light); font-size: 0.93rem; line-height: 1.85; margin-bottom: 0.7rem; }
.step-detail-content p:last-child { margin-bottom: 0; }
.step-phone-cta { margin-top: 1rem; }

/* ===== CHECKLISTE ===== */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.checklist-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 2px 10px rgba(122,34,76,0.05);
}
.checklist-card h3 {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--heading);
}
.checklist-items { list-style: none; margin: 0; padding: 0; }
.checklist-items li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.checklist-items li:last-child { border-bottom: none; }
.checklist-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ===== SITUATIONEN ===== */
.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.situation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: 0 2px 10px rgba(122,34,76,0.05);
}
.situation-card h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: var(--accent);
}
.situation-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ===== FORMULAR EXTRAS ===== */
.hp-field { display: none !important; visibility: hidden; position: absolute; }
.form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0.5rem 0 0.8rem;
  line-height: 1.6;
}
.form-privacy a { color: var(--accent); }

/* ===== BUTTONS EXTRA ===== */
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  padding: 0.88rem 2.2rem;
  font-family: var(--heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline-light:hover { border-color: #ffffff; color: #ffffff; }

