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

:root {
  --cream: #F5FBF8;
  --cream-2: #E7F5EE;
  --blush: #A8E0C9;
  --blush-soft: #DFF3EA;
  --terracotta: #3FA980;
  --terracotta-dark: #2E8A66;
  --sage: #4F9B78;
  --sage-soft: #DCF0E6;
  --brown: #2F3E38;
  --brown-soft: #66786F;
  --white: #FFFFFF;
  --border: rgba(47,62,56,0.1);
  --shadow-soft: 0 20px 45px rgba(63,169,128,0.18);
  --grad-1: linear-gradient(135deg, var(--terracotta) 0%, var(--blush) 100%);
  --grad-2: linear-gradient(135deg, var(--sage) 0%, var(--blush) 100%);
  --font-head: 'Fraunces', serif;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

::selection { background: var(--blush); color: var(--brown); }

/* ============ BACKGROUND SCENE ============ */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: drift 26s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: var(--blush); top: -8%; left: -8%; }
.blob-2 { width: 360px; height: 360px; background: var(--sage-soft); top: 45%; right: -10%; animation-delay: -8s; }
.blob-3 { width: 320px; height: 320px; background: var(--blush-soft); bottom: -10%; left: 25%; animation-delay: -16s; }

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.08); }
  66% { transform: translate(-20px,20px) scale(0.96); }
}

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-heart {
  font-size: 3.2rem;
  animation: pulse-load 1.4s ease-in-out infinite;
}
@keyframes pulse-load {
  0%, 100% { transform: scale(0.9); }
  50% { transform: scale(1.12); }
}
.loader p { color: var(--brown-soft); font-family: var(--font-head); font-style: italic; }
.dots span { animation: blink 1.4s infinite; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--grad-1);
  z-index: 9998;
  width: 0%;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(245,251,248,0.88);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 4px 24px rgba(47,62,56,0.06);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
}
.nav-inner .logo { justify-self: start; }
.nav-inner .nav-links { justify-self: center; }
.nav-inner .burger { justify-self: end; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; }
.logo-orb {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(63,169,128,0.3);
  overflow: hidden;
}
.logo-orb img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { font-size: 1.08rem; color: var(--brown); }
.logo-text em { display: block; font-style: normal; font-size: 0.6rem; font-weight: 600; color: var(--brown-soft); letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); }

.nav-links { display: flex; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 20px; font-size: 0.92rem; font-weight: 600;
  color: var(--brown-soft); transition: color 0.25s, background 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--terracotta-dark); background: var(--blush-soft); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 30px;
  font-weight: 700; font-size: 0.92rem; font-family: var(--font-body);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: var(--grad-1); color: var(--white);
  box-shadow: 0 10px 26px rgba(63,169,128,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(63,169,128,0.45); }
.btn-ghost {
  border: 2px solid var(--blush); color: var(--terracotta-dark);
  background: var(--white);
}
.btn-ghost:hover { background: var(--blush-soft); transform: translateY(-3px); }
.btn-nav { padding: 11px 22px; }
.btn-block { width: 100%; justify-content: center; }

.burger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.burger span { height: 2px; background: var(--brown); border-radius: 2px; transition: 0.3s; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 32px 80px;
  position: relative;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
  width: 100%;
}
.pill {
  display: inline-block; padding: 8px 18px; border-radius: 30px;
  background: var(--white); border: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 700; color: var(--terracotta-dark); margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(47,62,56,0.05);
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 20px; color: var(--brown);
}
.accent { font-style: italic; color: var(--terracotta); }
.hero-sub { color: var(--brown-soft); font-size: 1.08rem; max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  padding: 9px 16px; border-radius: 20px; background: var(--white);
  border: 1px solid var(--border); font-size: 0.85rem; font-weight: 700; color: var(--brown-soft);
  box-shadow: 0 4px 14px rgba(47,62,56,0.05);
}

/* --- hero visual --- */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 380px; }
.hero-circle {
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.5), transparent 60%), var(--grad-1);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  animation: floaty 6s ease-in-out infinite;
  position: relative;
}
.hero-circle::before {
  content: ''; position: absolute; inset: -16px; border-radius: 50%;
  border: 2px dashed rgba(63,169,128,0.25);
  animation: spin 40s linear infinite;
}
.hero-logo { width: 62%; height: 62%; object-fit: contain; filter: drop-shadow(0 10px 16px rgba(47,62,56,0.15)); }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.float-card {
  position: absolute; padding: 10px 16px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 700; color: var(--brown);
  box-shadow: 0 12px 28px rgba(47,62,56,0.08);
  animation: floaty 5s ease-in-out infinite;
}
.hf-1 { top: 4%; left: -2%; animation-delay: 0.3s; }
.hf-2 { bottom: 14%; left: -6%; animation-delay: 1.2s; }
.hf-3 { top: 46%; right: -6%; animation-delay: 0.7s; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--brown-soft); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.mouse-icon { width: 24px; height: 38px; border: 2px solid var(--border); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.wheel { width: 3px; height: 8px; background: var(--terracotta); border-radius: 2px; animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(10px); } }

/* ============ QUOTE BANNER ============ */
.quote-banner {
  max-width: 900px; margin: 0 auto; padding: 60px 32px;
  text-align: center;
}
.quote-mark { font-family: var(--font-head); font-size: 4rem; color: var(--blush); line-height: 0.5; margin-bottom: 10px; }
.quote-text {
  font-family: var(--font-head); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--brown); line-height: 1.5;
}

/* ============ SECTIONS ============ */
.section { max-width: 1240px; margin: 0 auto; padding: 90px 32px; position: relative; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(168,224,201,0.15), transparent); }
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.tag {
  display: inline-block; padding: 6px 16px; border-radius: 30px;
  background: var(--sage-soft); color: var(--sage);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.section-head h2, .warum-text h2, .contact-info h2 {
  font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; margin-bottom: 14px; letter-spacing: -0.01em;
  color: var(--brown);
}
.section-head p { color: var(--brown-soft); }

/* ============ SERVICE GRID ============ */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 20px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--blush); }
.service-icon { font-size: 1.4rem; flex-shrink: 0; }
.service-item p { color: var(--brown); font-size: 0.95rem; }

/* ============ WARUM / ÜBER MICH ============ */
.warum-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.warum-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.portrait-orb {
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--grad-1);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  animation: floaty 7s ease-in-out infinite;
  padding: 6px;
}
.portrait-orb img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; object-position: top center;
  border: 3px solid var(--white);
}
.fc-1 { top: 8%; left: -2%; animation-delay: 0.3s; }
.fc-2 { bottom: 14%; left: -6%; animation-delay: 1.2s; }
.fc-3 { top: 44%; right: -4%; animation-delay: 0.7s; }
.lead { font-size: 1.05rem; color: var(--brown-soft); margin-bottom: 24px; }
.check-list { margin-bottom: 30px; }
.check-list li { display: flex; gap: 10px; margin-bottom: 12px; color: var(--brown-soft); }
.check { color: var(--sage); font-weight: 700; }

/* ============ TIMELINE ============ */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 20px; }
.timeline-track {
  position: absolute; top: 26px; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blush), var(--sage-soft), transparent);
}
.timeline-step {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px 22px 26px;
  position: relative; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.timeline-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.step-node {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-1); color: var(--white); font-family: var(--font-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(63,169,128,0.35);
}
.timeline-step h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 10px; color: var(--brown); }
.timeline-step p { color: var(--brown-soft); font-size: 0.88rem; }

/* ============ PREISE ============ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; align-items: start; }
.price-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 22px;
  padding: 34px 28px; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.price-icon { font-size: 2rem; display: inline-block; margin-bottom: 12px; }
.price-card h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--brown); margin-bottom: 14px; }
.price-amount { font-family: var(--font-head); font-size: 2rem; font-weight: 600; color: var(--terracotta-dark); }
.price-amount span { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--brown-soft); }
.price-detail { margin-top: 10px; color: var(--brown-soft); font-size: 0.85rem; }
.price-explainer { margin-top: 12px; color: var(--brown-soft); font-size: 0.85rem; line-height: 1.55; text-align: left; }
.price-notes { max-width: 960px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 10px; }
.price-notes li {
  background: var(--sage-soft); border-radius: 14px; padding: 14px 20px;
  color: var(--brown); font-size: 0.9rem; font-weight: 600;
}
.price-fineprint {
  max-width: 960px; margin: 16px auto 0; text-align: center;
  color: var(--brown-soft); font-size: 0.78rem; font-style: italic; line-height: 1.5;
}

/* ============ SLIDER / WISSENSWERTES ============ */
.slider { max-width: 780px; margin: 0 auto; position: relative; overflow: hidden; }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(.65,0,.35,1); }
.testimonial {
  min-width: 100%; padding: 44px 48px; text-align: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.tip-icon { font-size: 2.4rem; margin-bottom: 18px; }
.testimonial p { font-size: 1.1rem; color: var(--brown); line-height: 1.6; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, transform 0.25s;
}
.slider-btn:hover { background: var(--blush-soft); transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.3s, transform 0.3s; }
.dot.active { background: var(--grad-1); transform: scale(1.3); }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.faq-q { width: 100%; padding: 20px 26px; display: flex; align-items: center; justify-content: space-between; font-weight: 700; text-align: left; color: var(--brown); }
.faq-plus { transition: transform 0.3s; color: var(--terracotta); font-size: 1.3rem; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 26px; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 26px 22px; }
.faq-a p { color: var(--brown-soft); font-size: 0.95rem; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
.contact-grid-solo { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; text-align: center; }
.contact-grid-solo .contact-list { align-items: center; }
.contact-grid-solo .social-row { justify-content: center; }
.contact-list { margin: 26px 0; display: flex; flex-direction: column; gap: 12px; color: var(--brown-soft); }
.contact-list a { color: var(--terracotta-dark); font-weight: 700; }
.contact-list a:hover { text-decoration: underline; }
.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border); font-size: 1.2rem;
  transition: transform 0.25s, background 0.25s;
}
.social-btn:hover { background: var(--blush-soft); transform: translateY(-4px); }

/* ============ LEGAL PAGES ============ */
.legal-page { padding-top: 140px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 600;
  color: var(--brown); margin-bottom: 28px;
}
.legal-content h2 {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  color: var(--brown); margin: 34px 0 12px;
}
.legal-content p { color: var(--brown-soft); margin-bottom: 12px; }
.legal-content a { color: var(--terracotta-dark); font-weight: 700; }
.legal-content a:hover { text-decoration: underline; }
.legal-content ul { margin: 0 0 14px 0; padding-left: 4px; }
.legal-content li {
  color: var(--brown-soft); padding-left: 22px; position: relative; margin-bottom: 8px;
}
.legal-content li::before {
  content: '•'; position: absolute; left: 4px; color: var(--terracotta);
}
.legal-note {
  margin-top: 36px; padding: 16px 20px; background: var(--sage-soft); border-radius: 14px;
  font-size: 0.85rem; font-style: italic;
}

/* ============ FOOTER ============ */
.footer { padding: 50px 32px 30px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-inner p { color: var(--brown-soft); font-size: 0.85rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--brown-soft); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--terracotta-dark); }

/* ============ TO TOP ============ */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-1); color: var(--white); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(63,169,128,0.35);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 10px 26px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.15); }
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 300px; }
  .warum-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { display: none; }
}

@media (max-width: 720px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { position: fixed; top: 68px; left: 16px; right: 16px; flex-direction: column;
    background: rgba(245,251,248,0.98); border: 1px solid var(--border);
    border-radius: 18px; padding: 14px; gap: 4px;
    transform: translateY(-20px); opacity: 0; visibility: hidden; transition: 0.3s;
    box-shadow: 0 20px 40px rgba(47,62,56,0.12); }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .burger { display: flex; }
  .btn-nav { display: none; }

  .hero { padding: 110px 20px 60px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-badges { gap: 8px; }

  .hero-visual { height: 240px; }
  .hero-circle { width: 200px; height: 200px; }
  .float-card { font-size: 0.72rem; padding: 7px 11px; }
  .hf-1 { top: 2%; left: 6%; }
  .hf-2 { bottom: 6%; left: 2%; }
  .hf-3 { top: 42%; right: 2%; }

  .section { padding: 60px 20px; }
  .warum-visual { height: 280px; }
  .portrait-orb { width: 180px; height: 180px; }
  .fc-1 { top: 2%; left: 8%; }
  .fc-2 { bottom: 8%; left: 4%; }
  .fc-3 { top: 40%; right: 4%; }

  .quote-banner { padding: 40px 20px; }

  .timeline { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card { padding: 26px 22px; }
  .testimonial { padding: 30px 22px; }
  .faq-q { padding: 18px 20px; }
  .service-item { padding: 18px 20px; }

  .to-top { width: 44px; height: 44px; bottom: 18px; right: 18px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; left: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 560px) {
  .float-card { display: none; }
  .hero-visual { height: 220px; }
  .hero-circle { width: 180px; height: 180px; }
  .warum-visual { height: 220px; }
  .portrait-orb { width: 200px; height: 200px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.9rem; }
  .section-head h2, .warum-text h2, .contact-info h2 { font-size: 1.45rem; }
  .quote-text { font-size: 1.05rem; }
  .logo-text { font-size: 0.95rem; }
  .pill { font-size: 0.76rem; padding: 7px 14px; }
}
