/* ========================================
   RÖHRS SANITÄR — Demo Website
   Design: Dunkelgrün + Cremeweiß + Kupfer
   ======================================== */

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg:          #f7f4ef;
  --bg-dark:     #1a2e1a;
  --bg-mid:      #243624;
  --accent:      #b87333;
  --accent-soft: rgba(184,115,51,.15);
  --accent-dark: #9a5f20;
  --text:        #1a1a1a;
  --text-muted:  #5a5a5a;
  --text-light:  #f7f4ef;
  --border:      rgba(26,46,26,.12);
  --white:       #ffffff;
  --radius:      10px;
  --radius-lg:   20px;
  --shadow:      0 12px 40px rgba(26,46,26,.12);
  --shadow-sm:   0 4px 16px rgba(26,46,26,.08);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body:   'Outfit', system-ui, sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;
  --max-w:       1200px;
  --section-gap: 5.5rem;
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- CONTAINER --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-heading em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* --- EYEBROW --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.eyebrow-light {
  color: rgba(184,115,51,0.85);
}

.eyebrow-copper {
  color: var(--accent);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,115,51,.35);
}

.btn-outline {
  background: transparent;
  color: var(--bg-dark);
  border-color: var(--bg-dark);
}

.btn-outline:hover {
  background: var(--bg-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-copper {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-size: 1rem;
  padding: 1rem 2.25rem;
}

.btn-copper:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,115,51,.4);
}

.btn-full {
  width: 100%;
}

/* --- ANIMATIONS --- */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal         { transform: translateY(32px); }
.reveal-left    { transform: translateX(-40px); }
.reveal-right   { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* --- DEMO BANNER --- */
.demo-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 200;
}

.demo-banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.demo-banner a:hover {
  opacity: 0.85;
}

/* --- NAVIGATION --- */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(26,46,26,.08);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  margin-left: 0.5rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.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); }

/* --- HERO --- */
.hero {
  padding: 5rem 0 4rem;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.08;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hero Image */
.hero-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 4px var(--accent), var(--shadow);
}

.hero-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(184,115,51,.45);
  z-index: 2;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--bg-dark);
  padding: 3.5rem 0;
}

.trust-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 0 1rem;
}

.trust-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(247,244,239,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 60px;
  background: rgba(247,244,239,0.12);
}

/* --- ABOUT --- */
.about {
  padding: var(--section-gap) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 4px 4px 0 var(--accent), var(--shadow);
}

.about-content .section-heading {
  margin-bottom: 1.25rem;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.check-icon {
  flex-shrink: 0;
}

/* --- LEISTUNGEN --- */
.leistungen {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(247,244,239,0.6) 100%);
}

.leistungen-list {
  border-top: 1px solid var(--border);
}

.leistung-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  cursor: default;
}

.leistung-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.leistung-row:hover::before {
  transform: scaleY(1);
}

.leistung-row:hover {
  padding-left: 1rem;
}

.leistung-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  padding-top: 0.15rem;
  transition: opacity var(--transition);
}

.leistung-row:hover .leistung-num {
  opacity: 1;
}

.leistung-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 0.4rem;
}

.leistung-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- BILD-SEKTION --- */
.bild-sektion {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bild-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.bild-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,26,.82) 0%, rgba(26,46,26,.65) 100%);
  z-index: 1;
}

.bild-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
}

.bild-quote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  font-weight: 600;
}

/* --- ABLAUF --- */
.ablauf {
  padding: var(--section-gap) 0;
  background: var(--bg);
}

.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.ablauf-grid::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(184,115,51,0.3) 100%);
  z-index: 0;
}

.ablauf-step {
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}

.ablauf-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg);
  padding: 0 0.5rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.ablauf-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--bg-dark);
  margin-bottom: 0.6rem;
}

.ablauf-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- TESTIMONIALS --- */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-loc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- NOTDIENST --- */
.notdienst {
  background: var(--bg-dark);
  padding: var(--section-gap) 0;
}

.notdienst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.notdienst-heading {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.notdienst-sub {
  font-size: 1rem;
  color: rgba(247,244,239,0.65);
  line-height: 1.75;
  max-width: 420px;
}

.notdienst-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.notdienst-phone {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  transition: opacity var(--transition);
}

.notdienst-phone:hover {
  opacity: 0.85;
}

.notdienst-hint {
  font-size: 0.85rem;
  color: rgba(247,244,239,0.5);
}

/* --- FAQ --- */
.faq {
  padding: var(--section-gap) 0;
}

.faq-list {
  max-width: 760px;
  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;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-muted);
  border-radius: 2px;
  transition: var(--transition);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

details[open] .faq-icon {
  border-color: var(--accent);
  transform: rotate(45deg);
}

details[open] .faq-icon::before,
details[open] .faq-icon::after {
  background: var(--accent);
}

details[open] .faq-question {
  color: var(--accent);
}

.faq-answer {
  overflow: hidden;
  animation: faq-open 0.3s ease forwards;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  padding: 0 0 1.5rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --- KONTAKT --- */
.kontakt {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(247,244,239,0.5) 100%);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: 0.5rem;
}

.kontakt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.kontakt-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontakt-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.kontakt-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

a.kontakt-value:hover {
  color: var(--accent);
}

/* --- CONTACT FORM --- */
.kontakt-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235a5a5a' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-dark);
  padding: 4rem 0 0;
  color: rgba(247,244,239,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,244,239,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo span {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(247,244,239,0.55);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.875rem;
  color: rgba(247,244,239,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(247,244,239,0.4);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom a {
  color: rgba(247,244,239,0.55);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

/* --- STICKY CTA --- */
.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(184,115,51,.45);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background var(--transition);
  white-space: nowrap;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.sticky-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
  flex-shrink: 0;
}

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

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-gap: 4rem;
  }

  .hero {
    padding: 3.5rem 0 3rem;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image-wrap {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-img {
    height: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-img {
    height: 360px;
  }

  .ablauf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ablauf-grid::before {
    display: none;
  }

  .trust-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    row-gap: 2.5rem;
  }

  .trust-divider {
    display: none;
  }

  .notdienst-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sticky-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247,244,239,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    font-size: 0.95rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --section-gap: 3.5rem;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .ablauf-grid {
    grid-template-columns: 1fr;
  }

  .trust-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .leistung-row {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .bild-sektion {
    height: 360px;
  }

  .bild-quote {
    font-size: 1.3rem;
  }

  .kontakt-form-wrap {
    padding: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .trust-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badge {
    right: 0;
    top: -10px;
  }
}
