/* ==========================================================================
   Natali Krug – Kindertagespflege Bad Wünnenberg
   Design-System: Soft Pastell (Rosa / Mint / Pudergelb)
   ========================================================================== */

:root {
  /* Pastell-Flächenfarben */
  --rosa: #fbdde3;
  --rosa-dunkel: #f2a6b7;
  --mint: #d9f0e3;
  --mint-dunkel: #7ec9a3;
  --gelb: #fdefce;
  --gelb-dunkel: #f2c869;
  --lavendel: #e7e1f7;
  --lavendel-dunkel: #b8a6e0;

  /* Marken- und Aktionsfarben */
  --primary: #ef8c6c;          /* warmes Terrakotta/Koralle – CTA */
  --primary-dunkel: #e06f4b;
  --primary-hell: #fbeae3;

  /* Neutrale Farben */
  --creme: #fffaf4;            /* Seitenhintergrund */
  --weiss: #ffffff;
  --text: #4a4048;             /* warmes Anthrazit */
  --text-hell: #7a6f75;
  --heading: #3d2f37;
  --border: #f1e4e0;

  /* Typografie */
  --font-heading: "Baloo 2", "Quicksand", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 32px;
  --shadow: 0 20px 45px -20px rgba(61, 47, 55, 0.25);
  --shadow-s: 0 8px 20px -10px rgba(61, 47, 55, 0.2);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--creme);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1em; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Layout Helpers ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dunkel);
  background: var(--primary-hell);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-hell);
  font-size: 1.08rem;
}

.bg-mint { background: var(--mint); }
.bg-rosa { background: var(--rosa); }
.bg-gelb { background: var(--gelb); }
.bg-weiss { background: var(--weiss); }
.bg-creme { background: var(--creme); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--weiss);
  box-shadow: var(--shadow-s);
}

.btn-primary:hover {
  background: var(--primary-dunkel);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--weiss);
  color: var(--heading);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dunkel);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--weiss);
  color: var(--primary-dunkel);
}
.btn-light:hover { background: var(--primary-hell); transform: translateY(-2px); }

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 24px -14px rgba(61, 47, 55, 0.25);
  border-bottom-color: var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--heading);
}

.logo .logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo .logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dunkel);
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--heading);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading);
}

.header-phone svg { width: 18px; height: 18px; color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  position: relative;
  transition: all 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }

.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--weiss);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 500px; }
  .main-nav ul {
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header .container { height: 74px; }
  .header-actions { gap: 8px; }
  .header-actions .btn { padding: 10px 16px; font-size: 0.85rem; }
  .logo .logo-mark { width: 34px; height: 34px; }
  .logo { font-size: 1.05rem; gap: 8px; }
  .logo-text small { font-size: 0.56rem; }
}

.btn-label-short { display: none; }

@media (max-width: 480px) {
  .header-actions .btn .btn-label-full { display: none; }
  .header-actions .btn .btn-label-short { display: inline; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 150px 0 90px;
  background: linear-gradient(180deg, var(--rosa) 0%, var(--creme) 78%);
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--weiss);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--heading);
  box-shadow: var(--shadow-s);
}

.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--primary); }

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-hell);
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dunkel);
}

.hero-stats div span {
  font-size: 0.85rem;
  color: var(--text-hell);
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.hero-media-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--weiss);
  border-radius: var(--radius-m);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}

.hero-media-badge .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-media-badge .icon svg { width: 22px; height: 22px; color: var(--mint-dunkel); }

.hero-media-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--heading);
}
.hero-media-badge span { font-size: 0.78rem; color: var(--text-hell); }

@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .hero { padding-top: 120px; }
  .hero-media-badge { left: 12px; bottom: -18px; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 34px 0;
  background: var(--weiss);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--heading);
}
.trust-item .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item .icon svg { width: 19px; height: 19px; }
.trust-item:nth-child(1) .icon { background: var(--rosa); color: var(--rosa-dunkel); }
.trust-item:nth-child(2) .icon { background: var(--mint); color: var(--mint-dunkel); }
.trust-item:nth-child(3) .icon { background: var(--gelb); color: var(--gelb-dunkel); }
.trust-item:nth-child(4) .icon { background: var(--lavendel); color: var(--lavendel-dunkel); }

@media (max-width: 820px) {
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Über mich ---------- */
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius-l);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-quote {
  position: absolute;
  bottom: -26px;
  right: -18px;
  background: var(--gelb);
  border-radius: var(--radius-m);
  padding: 20px 22px;
  max-width: 240px;
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--heading);
  font-size: 0.95rem;
}

.about-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  color: var(--heading);
}

.about-list .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-list .check svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .about .container { grid-template-columns: 1fr; }
  .about-media { max-width: 380px; margin: 0 auto 40px; }
}

/* ---------- Vergleich ---------- */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.compare-card {
  background: var(--weiss);
  border-radius: var(--radius-l);
  padding: 40px 32px;
  box-shadow: var(--shadow-s);
  border: 2px solid transparent;
}

.compare-card.highlight {
  border-color: var(--primary);
  background: var(--primary-hell);
  position: relative;
}

.compare-card .tag {
  display: inline-block;
  background: var(--primary);
  color: var(--weiss);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  position: absolute;
  top: -14px;
  left: 32px;
}

.compare-card h3 {
  margin-bottom: 22px;
  font-size: 1.3rem;
}

.compare-card ul { display: flex; flex-direction: column; gap: 16px; }

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
}

.compare-card .dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 8px;
}
.compare-card.highlight .dot { background: var(--primary); }
.compare-card:not(.highlight) .dot { background: #cfc4c9; }

.compare-note {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.98rem;
  color: var(--text-hell);
  background: var(--mint);
  border-radius: var(--radius-m);
  padding: 20px 28px;
}

@media (max-width: 780px) {
  .compare-wrap { grid-template-columns: 1fr; }
}

/* ---------- Ablauf (Timeline) ---------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-marker .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--weiss);
  color: var(--primary-dunkel);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-s);
  flex-shrink: 0;
}

.timeline-marker .line {
  width: 2px;
  flex: 1;
  background: repeating-linear-gradient(to bottom, var(--rosa-dunkel) 0 6px, transparent 6px 12px);
  margin-top: 8px;
}

.timeline-item:last-child .line { display: none; }

.timeline-content {
  padding-bottom: 48px;
}

.timeline-content .time {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary-dunkel);
  background: var(--primary-hell);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.timeline-content h3 { margin-bottom: 8px; }
.timeline-content p { color: var(--text-hell); margin-bottom: 0; }

.timeline-media {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.timeline-media img {
  border-radius: var(--radius-m);
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: var(--shadow-s);
}

@media (max-width: 640px) {
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .timeline-marker .num { width: 42px; height: 42px; font-size: 1rem; }
  .timeline-media { grid-template-columns: 1fr 1fr; }
}

/* Konzept-Box innerhalb Ablauf */
.concept-box {
  max-width: 880px;
  margin: 0 auto 64px;
  background: var(--weiss);
  border-radius: var(--radius-l);
  padding: 40px;
  box-shadow: var(--shadow-s);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.concept-box .item .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gelb);
  color: var(--gelb-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.concept-box .item .icon svg { width: 24px; height: 24px; }
.concept-box .item h4 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  margin-bottom: 6px;
  color: var(--heading);
}
.concept-box .item p { font-size: 0.92rem; color: var(--text-hell); margin: 0; }

@media (max-width: 780px) {
  .concept-box { grid-template-columns: 1fr; }
}

/* ---------- Ernährung ---------- */
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.food-images {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}
.food-images img:first-child {
  grid-row: span 2;
  aspect-ratio: 3/4.4;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow);
}
.food-images img:last-child {
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
}

.food-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}
.food-points .point {
  display: flex;
  gap: 16px;
}
.food-points .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--mint-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.food-points .icon svg { width: 22px; height: 22px; }
.food-points h4 { font-family: var(--font-heading); font-size: 1.02rem; margin-bottom: 4px; }
.food-points p { margin: 0; color: var(--text-hell); font-size: 0.95rem; }

@media (max-width: 900px) {
  .food-grid { grid-template-columns: 1fr; }
  .food-images { order: -1; max-width: 480px; margin: 0 auto; }
}

/* ---------- Qualifikation ---------- */
.quali-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quali-card {
  background: var(--weiss);
  border-radius: var(--radius-m);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-s);
}

.quali-card .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--primary-dunkel);
  margin-bottom: 6px;
}
.quali-card .label {
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 8px;
}
.quali-card p { font-size: 0.88rem; color: var(--text-hell); margin: 0; }

.quali-note {
  max-width: 820px;
  margin: 48px auto 0;
  background: var(--lavendel);
  border-radius: var(--radius-m);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.quali-note .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--weiss);
  color: var(--lavendel-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quali-note .icon svg { width: 20px; height: 20px; }
.quali-note p { margin: 0; font-size: 0.95rem; color: var(--heading); }

@media (max-width: 900px) {
  .quali-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .quali-grid { grid-template-columns: 1fr; }
  .quali-note { flex-direction: column; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: var(--weiss);
  background-size: cover;
  background-position: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(61,47,55,0.55), rgba(61,47,55,0.75));
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .eyebrow { background: rgba(255,255,255,0.16); color: var(--weiss); }
.cta-banner h2 { color: var(--weiss); max-width: 640px; margin: 0 auto 20px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; }

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: var(--radius-m);
  padding: 32px 26px;
  box-shadow: var(--shadow-s);
}
.service-card:nth-child(6n+1) { background: var(--rosa); }
.service-card:nth-child(6n+2) { background: var(--mint); }
.service-card:nth-child(6n+3) { background: var(--gelb); }
.service-card:nth-child(6n+4) { background: var(--lavendel); }
.service-card:nth-child(6n+5) { background: var(--rosa); }
.service-card:nth-child(6n+6) { background: var(--mint); }

.service-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--weiss);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card .icon svg { width: 23px; height: 23px; color: var(--heading); }
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: var(--text-hell); margin: 0; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--weiss);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--heading);
  cursor: pointer;
}

.faq-question .plus {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-hell);
  color: var(--primary-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.25s ease;
}
.faq-question .plus::before { width: 12px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 12px; }

.faq-item.open .faq-question .plus::after { transform: rotate(90deg) scaleX(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 26px 24px;
  color: var(--text-hell);
  font-size: 0.97rem;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--weiss);
  border-radius: var(--radius-m);
  padding: 32px 28px;
  box-shadow: var(--shadow-s);
  position: relative;
}

.testi-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary-hell);
  line-height: 1;
  margin-bottom: 6px;
}

.testi-card p.text {
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--weiss);
}
.testi-card:nth-child(3n+1) .avatar { background: var(--rosa-dunkel); }
.testi-card:nth-child(3n+2) .avatar { background: var(--mint-dunkel); }
.testi-card:nth-child(3n+3) .avatar { background: var(--gelb-dunkel); }

.testi-author strong { display: block; font-size: 0.92rem; color: var(--heading); }
.testi-author span { font-size: 0.8rem; color: var(--text-hell); }

.testi-placeholder-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-hell);
  font-style: italic;
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ---------- Einsatzgebiet ---------- */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}
.area-chip {
  background: var(--weiss);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--heading);
}

.map-placeholder {
  border-radius: var(--radius-l);
  background: var(--mint);
  aspect-ratio: 4/3.4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 30px;
  box-shadow: var(--shadow-s);
}
.map-placeholder svg { width: 46px; height: 46px; color: var(--mint-dunkel); }
.map-placeholder strong { font-family: var(--font-heading); color: var(--heading); }
.map-placeholder span { font-size: 0.85rem; color: var(--text-hell); max-width: 260px; }

@media (max-width: 900px) {
  .area-wrap { grid-template-columns: 1fr; }
  .map-placeholder { order: -1; }
}

/* ---------- Kontakt ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info {
  background: var(--heading);
  color: var(--weiss);
  border-radius: var(--radius-l);
  padding: 44px 36px;
}
.contact-info h3 { color: var(--weiss); }
.contact-info p { color: rgba(255,255,255,0.75); }

.contact-info ul { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .icon svg { width: 19px; height: 19px; color: var(--gelb); }
.contact-info strong { display: block; font-size: 0.95rem; }
.contact-info span { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

.contact-info .whatsapp-btn {
  margin-top: 8px;
  background: #ffffff1a;
  border: 1px solid rgba(255,255,255,0.3);
}
.contact-info .whatsapp-btn:hover { background: rgba(255,255,255,0.22); }

.contact-form {
  background: var(--weiss);
  border-radius: var(--radius-l);
  padding: 44px 40px;
  box-shadow: var(--shadow-s);
}

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

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--heading);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--creme);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--weiss);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-hell);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: var(--mint);
  color: var(--heading);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.92rem;
}
.form-success.show { display: block; }

@media (max-width: 940px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 22px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--heading);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-grid .logo { color: var(--weiss); margin-bottom: 14px; }
.footer-grid p { font-size: 0.92rem; }

.footer-col h4 {
  color: var(--weiss);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: var(--weiss); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.85rem;
}
.footer-bottom ul { display: flex; gap: 20px; }

/* ---------- Legal pages ---------- */
.legal-page {
  padding: 150px 0 90px;
  max-width: 820px;
  margin: 0 auto;
}
.legal-page h1 { margin-bottom: 8px; }
.legal-page .updated { color: var(--text-hell); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2 { margin-top: 44px; font-size: 1.3rem; }
.legal-page h3 { margin-top: 24px; font-size: 1.05rem; }
.legal-page p, .legal-page li { color: var(--text); }
.legal-page ul { padding-left: 20px; list-style: disc; margin-bottom: 1em; }
.legal-page a { color: var(--primary-dunkel); text-decoration: underline; }
.legal-page .placeholder,
.placeholder-inline {
  background: var(--gelb);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
  color: var(--heading);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-dunkel);
}

/* ---------- Utility ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--weiss);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 2000;
}
.skip-link:focus { left: 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
