/* ========================================
   STUGGI-Umzüge — Original 1:1 Copy
   ======================================== */

/* Self-hosted Inter (variable) — DSGVO-konform, kein Google-Fonts-CDN */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #F5E642;
  --brand-dark: #E0D030;
  --brand-light: #FAF2A0;
  --brand-bg: #FDFAEA;
  --dark: #1a1a1a;
  --ink: #222222;
  --ink-2: #444444;
  --ink-3: #666666;
  --border: #d0d0d0;
  --bg: #ffffff;
  --bg-2: #f5f5f5;
  --green-wa: #7CB342;
  /* Legacy-Aliase (Seite war früher grün) → jetzt auf die gelbe Marke gemappt, damit
     alte var(--green)/var(--green-bg) Referenzen (about/preise) korrekt + lesbar rendern */
  --green-bg: var(--brand-bg);
  --green: var(--dark);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.12);
  --transition: .25s ease;
  --max-w: 1200px;
  --nav-h: 80px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 6px 0;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; height: 96px; overflow: hidden; }
.nav-logo img { height: 240px; width: auto; max-width: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--ink-2); font-weight: 500; font-size: .95rem;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--ink);
  position: absolute; left: 6px; transition: all .3s;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: var(--brand);
  padding: 40px 0 48px;
}
.hero-inner {
  display: flex; align-items: center; gap: 56px;
}
.hero-text { flex: 1; text-align: center; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem; line-height: 1.7;
  color: var(--ink-2); margin-bottom: 28px;
}
.hero-cta-label {
  font-weight: 700; font-style: italic;
  font-size: 1.1rem; margin-bottom: 20px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-img { flex: 0 0 560px; }
.hero-img img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}

/* ── CTA Buttons ── */
.btn-kontakt {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  background: var(--dark); color: #fff;
  font-weight: 700; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .5px;
  border: 2px solid var(--dark);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn-kontakt:hover { background: #333; color: #fff; }
.btn-kontakt svg { width: 18px; height: 18px; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  background: var(--green-wa); color: #fff;
  font-weight: 700; font-size: .95rem;
  border: 2px solid var(--green-wa);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn-whatsapp:hover { background: #689F38; border-color: #689F38; color: #fff; }
.btn-whatsapp svg { width: 18px; height: 18px; }

.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  background: #fff; color: var(--ink);
  font-weight: 700; font-size: .95rem;
  border: 2px solid var(--border);
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn-phone:hover { border-color: var(--ink); }
.btn-phone svg { width: 18px; height: 18px; }

.cta-btns-large .btn-kontakt,
.cta-btns-large .btn-whatsapp,
.cta-btns-large .btn-phone {
  padding: 16px 36px; font-size: 1.05rem;
}

/* ── Sections ── */
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-sub {
  color: var(--ink-3); font-size: 1.05rem;
  max-width: 640px; margin: 8px auto 0;
}

/* ── Service Cards ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; align-items: center;
}
.svc-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-lg);
}
.svc-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--brand-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-icon svg { width: 28px; height: 28px; color: var(--brand-dark); }
.svc-card h3 { margin-bottom: 10px; font-weight: 700; }
.svc-card p { color: var(--ink-3); font-size: .925rem; flex: 1; margin-bottom: 16px; }
.svc-link {
  display: inline-block; padding: 8px 20px; border-radius: 6px;
  border: 1px solid var(--border);
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  transition: all var(--transition);
}
.svc-card:hover .svc-link { border-color: var(--ink); color: var(--ink); }

/* ── Warum STUGGI? ── */
.section-warum {
  background: var(--brand);
  padding: 0;
  color: var(--ink);
  overflow: hidden;
}
.section-warum .container {
  max-width: 100%; padding: 0;
}
.warum-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; height: 580px;
}
.warum-grid > div:first-child {
  padding: 48px 48px 48px 64px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.warum-grid h2 {
  margin-bottom: 20px; font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--ink);
}
.warum-grid > div:first-child p {
  color: var(--ink-2); margin-bottom: 32px; line-height: 1.8;
  font-size: 1.05rem;
}
.warum-list { list-style: disc; padding-left: 24px; }
.warum-list li {
  margin-bottom: 18px;
  font-size: 1.05rem; color: var(--ink);
  font-weight: 500; line-height: 1.5;
}
.warum-list li::before { display: none; }
.warum-img {
  overflow: hidden;
  height: 580px;
}
.warum-img img {
  width: 100%; height: 580px; object-fit: cover;
  border-radius: 0;
  display: block;
}

/* ── Steps ── */
.section-steps {
  background: var(--bg);
  padding: 64px 0;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--brand);
  border: 1px solid var(--brand-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid var(--ink); background: transparent; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700;
  margin: 0 auto 20px;
}
.step-card h3 { margin-bottom: 12px; font-weight: 700; }
.step-card p { color: var(--ink-2); font-size: .95rem; line-height: 1.7; }

/* ── CTA Section ── */
.cta-section {
  text-align: center; padding: 48px 0;
  background: var(--bg);
}
.cta-section h2 { margin-bottom: 24px; font-weight: 700; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Reviews (Carousel like Original) ── */
.reviews-section {
  padding: 0;
  background: var(--bg);
}
.reviews-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 520px;
}
.reviews-photo { overflow: hidden; }
.reviews-photo img {
  width: 100%; height: 520px;
  object-fit: cover;
}
.reviews-content {
  padding: 56px 56px;
  display: flex; flex-direction: column;
  justify-content: center; text-align: center;
}
.reviews-content h2 { font-weight: 800; margin-bottom: 32px; }

/* Carousel */
.review-carousel {
  position: relative; overflow: hidden;
  min-height: 260px;
}
.review-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s ease;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.review-slide.active { opacity: 1; position: relative; }
.review-slide-stars { display: flex; gap: 3px; margin-bottom: 20px; justify-content: center; }
.review-slide-stars svg { width: 28px; height: 28px; }
.review-slide-text {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-2); margin-bottom: 24px;
  max-width: 500px;
}
.review-slide-author {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
}
.review-slide-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #B0BEC5; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .85rem; color: #fff;
  flex-shrink: 0;
}
.review-slide-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-slide-meta { text-align: left; }
.review-slide-name { font-weight: 700; font-size: .95rem; color: var(--ink); }
.review-slide-date {
  font-size: .8rem; color: var(--ink-3);
  display: flex; align-items: center; gap: 4px;
}

/* Dots */
.review-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 28px;
}
.review-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ddd; cursor: pointer;
  transition: background .3s;
  border: none; padding: 0;
}
.review-dot.active { background: var(--ink); }

/* Bottom text */
.reviews-bottom-text {
  margin-top: 20px; font-size: .9rem;
  color: var(--ink-3); line-height: 1.7;
}
.reviews-google-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; padding: 8px 20px; border-radius: 8px;
  background: #fff; border: 1px solid var(--border);
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  transition: all var(--transition); text-decoration: none;
}
.reviews-google-link:hover { border-color: var(--ink); color: var(--ink); }
.reviews-loading {
  text-align: center; padding: 40px; color: var(--ink-3);
}

/* ── FAQ (Enterprise Accordion) ── */
.section-faq {
  background: var(--bg);
  padding: 72px 0;
}
.section-faq .section-header { margin-bottom: 40px; }
.section-faq h2 { font-weight: 800; }
.section-faq .section-sub { color: var(--ink-3); }

.faq-list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: #ccc; }
.faq-item.open {
  border-color: var(--brand);
  box-shadow: 0 2px 12px rgba(200,210,0,.15);
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: 1rem; font-weight: 600;
  color: var(--ink); text-align: left; gap: 16px;
  font-family: inherit; line-height: 1.4;
}
.faq-q:hover { color: var(--ink); }
.faq-q-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.faq-q-icon svg {
  width: 16px; height: 16px; color: var(--ink-3);
  transition: transform .3s;
}
.faq-item.open .faq-q-icon {
  background: var(--brand);
}
.faq-item.open .faq-q-icon svg {
  transform: rotate(180deg); color: var(--ink);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--ink-2); line-height: 1.7; font-size: .95rem;
}
.faq-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--brand-bg); color: var(--brand-dark);
  font-weight: 700; font-size: .8rem; flex-shrink: 0;
  margin-right: 12px;
}

/* ── CTA Enterprise ── */
.cta-enterprise {
  padding: 56px 0;
  background: var(--bg);
  text-align: center;
}
.cta-ent-inner {
  max-width: 600px; margin: 0 auto;
}
.cta-enterprise h2 {
  color: var(--ink); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}
.cta-enterprise p {
  color: var(--ink-3); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 28px;
}
.cta-ent-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: var(--dark); color: #fff;
  font-weight: 700; font-size: 1.05rem;
  border-radius: 8px; border: none;
  text-decoration: none;
  transition: all .3s;
}
.cta-ent-btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.cta-ent-btn svg { width: 20px; height: 20px; transition: transform .3s; }
.cta-ent-btn:hover svg { transform: translateX(4px); }

/* ── Footer CTA ── */
.footer-cta {
  text-align: center; padding: 48px 0;
  background: var(--bg);
}
.footer-cta h2 { margin-bottom: 24px; font-weight: 700; }

/* ── Footer Enterprise ── */
.footer {
  background: var(--dark);
  padding: 0; text-align: left;
  color: #ccc;
  overflow: hidden;
}
.footer-main {
  padding: 64px 0 48px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  color: #999; font-size: .9rem; line-height: 1.7;
  margin-top: 20px;
}
.footer-brand img {
  height: 100px; width: auto;
}
.footer h4 {
  color: #fff; font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; background: var(--brand);
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul a {
  color: #999; font-size: .9rem;
  transition: color .2s, padding-left .2s;
}
.footer ul a:hover {
  color: #fff; padding-left: 4px;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  color: #999; font-size: .9rem;
}
.footer-contact-item svg {
  width: 18px; height: 18px; color: var(--brand);
  flex-shrink: 0; margin-top: 2px;
}
.footer-contact-item a {
  color: #999; transition: color .2s;
}
.footer-contact-item a:hover { color: #fff; }
.footer-social {
  display: flex; gap: 12px; margin-top: 24px;
}
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.footer-social a:hover {
  background: var(--brand); transform: translateY(-2px);
}
.footer-social a svg {
  width: 18px; height: 18px; color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #666;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  color: #666; font-size: .85rem;
  transition: color .2s;
}
.footer-legal a:hover { color: #fff; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }

/* ── Page Header ── */
.page-header {
  background: var(--brand);
  padding: calc(var(--nav-h) + 48px) 0 48px;
  text-align: center;
}
.page-header h1 { margin-bottom: 8px; }
.page-header p { color: var(--ink-2); font-size: 1.05rem; }

/* ── Content Pages ── */
.page-content { padding: 56px 0 80px; }
.page-content .container { max-width: 800px; }
.prose h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.4rem; }
.prose h3 { margin-top: 28px; margin-bottom: 12px; font-size: 1.15rem; }
.prose p { margin-bottom: 16px; color: var(--ink-2); }
.prose ul, .prose ol { margin-bottom: 16px; padding-left: 24px; }
.prose li { margin-bottom: 8px; color: var(--ink-2); list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--ink); text-decoration: underline; }
.prose strong { color: var(--ink); }

/* ── Service Detail ── */
.svc-detail { padding: 56px 0 80px; }
.svc-detail .container { max-width: 900px; }
.svc-detail-intro { font-size: 1.1rem; color: var(--ink-2); line-height: 1.8; margin-bottom: 40px; }
.svc-benefits {
  background: var(--brand-bg); border-radius: var(--radius-lg);
  padding: 32px; margin: 32px 0;
}
.svc-benefits h3 { margin-bottom: 20px; }
.svc-benefits li {
  list-style: none; padding: 8px 0;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 1rem; color: var(--ink);
}

/* ── Generic Buttons (subpages) ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px;
  font-weight: 700; font-size: .95rem; font-family: inherit;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; border: 2px solid transparent;
}
.btn-green {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.btn-green:hover { background: #333; color: #fff; }
.btn-white {
  background: #fff; color: var(--ink); border-color: var(--border);
}
.btn-white:hover { border-color: var(--ink); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--ink); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ── FAQ direct SVG fix (subpage faq.html) ── */
.faq-q > svg {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--ink-3); transition: transform .3s;
}
.faq-item.open .faq-q > svg {
  transform: rotate(180deg); color: var(--ink);
}

/* ── Kontakt ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-size: .95rem; font-family: inherit;
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--ink);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-check {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 16px; font-size: .85rem; color: var(--ink-2);
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--dark);
}
.form-check a { color: var(--ink); text-decoration: underline; }

/* ── Contact Info Cards ── */
.contact-info-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.contact-info-card h3 { font-size: 1.1rem; font-weight: 700; }
.contact-info-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e8e8e8;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h4 { font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.contact-info-item p { font-size: .9rem; color: var(--ink-2); margin: 0; }
.contact-info-item a { color: var(--ink-2); text-decoration: none; }
.contact-info-item a:hover { color: var(--ink); }

/* ── Preise Steps ── */
.preis-step {
  display: flex; gap: 24px; align-items: flex-start;
  margin-bottom: 40px;
}
.preis-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid var(--ink); background: transparent; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
}
.preis-step h3 { font-weight: 700; margin-bottom: 8px; }
.preis-step p { color: var(--ink-2); line-height: 1.7; font-size: .95rem; margin-bottom: 8px; }
.preis-highlight {
  background: var(--brand-bg); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; margin-top: 48px;
}
.preis-highlight h3 { margin-bottom: 16px; }

/* ── Section SM (about, preise, faq) ── */
.section-sm { padding: 40px 0; }

/* ── Responsive ── */

/* Tablet */
@media (max-width: 1024px) {
  .hero-img { flex: 0 0 420px; }
  .hero-img img { height: 400px; }
  .warum-grid > div:first-child { padding: 48px 40px; }
  .warum-grid { height: 520px; }
  .warum-img, .warum-img img { height: 520px; }
  .reviews-content { padding: 32px 24px; }
}

/* Mobile */
@media (max-width: 768px) {
  /* ── Nav ── */
  .nav { padding: 8px 0; }
  .nav-logo { height: 60px; }
  .nav-logo img { height: 150px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 100px 32px 40px;
    gap: 0; z-index: 99;
    align-items: stretch;
  }
  .nav-links.open a {
    padding: 18px 0;
    font-size: 1.15rem; font-weight: 600;
    color: var(--ink); text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    text-underline-offset: 0;
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open .nav-cta {
    margin-top: 24px; text-align: center;
    background: var(--dark); color: #fff;
    border-radius: 10px; padding: 16px;
    font-size: 1rem;
  }
  .nav-toggle { z-index: 101; }

  /* ── Hero ── */
  .hero { padding: 0 0 36px; }
  .hero .container { padding: 0; }
  .hero-inner {
    flex-direction: column; text-align: center;
    gap: 0;
  }
  .hero-img { flex: none; width: 100%; order: -1; }
  .hero-img img {
    height: 420px; width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-text { padding: 28px 24px 0; }
  .hero h1 { font-size: 2rem; font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
  .hero-sub { font-size: 1rem; line-height: 1.6; margin-bottom: 24px; }
  .hero-btns {
    flex-direction: column; align-items: stretch;
    gap: 10px; padding: 0 24px;
    justify-content: center;
  }
  .hero-btns .btn-kontakt,
  .hero-btns .btn-phone {
    width: 100%; justify-content: center;
    padding: 16px 24px; font-size: 1rem;
    border-radius: 10px;
    min-height: 52px;
  }
  .hero-btns .btn-kontakt {
    font-size: 1.05rem; letter-spacing: .3px;
  }

  /* ── Sections general ── */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 1.6rem; }
  .section-sub { font-size: .95rem; }

  /* ── Service Cards ── */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-card {
    padding: 24px 16px; border-radius: 16px;
  }
  .svc-icon { width: 52px; height: 52px; margin-bottom: 12px; }
  .svc-icon svg { width: 24px; height: 24px; }
  .svc-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .svc-card p { font-size: .85rem; margin-bottom: 12px; line-height: 1.5; }
  .svc-link { padding: 6px 14px; font-size: .8rem; }

  /* ── Steps ── */
  .section-steps { padding: 48px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { padding: 28px 20px; border-radius: 16px; }
  .step-num {
    width: 48px; height: 48px; font-size: 1.2rem;
    border-width: 2.5px; margin-bottom: 16px;
  }
  .step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .step-card p { font-size: .9rem; }

  /* ── Warum STUGGI ── */
  .section-warum { position: relative; background: none; }
  .section-warum .container { max-width: 100%; padding: 0; }
  .warum-grid {
    display: block; position: relative;
    height: auto; min-height: 560px;
  }
  .warum-img {
    position: absolute; inset: 0;
    height: 100%; z-index: 0;
  }
  .warum-img img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .warum-grid > div:first-child {
    position: relative; z-index: 1;
    padding: 48px 24px 56px;
    background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.75) 100%);
    color: #fff;
    min-height: 560px;
    display: flex; flex-direction: column; justify-content: flex-end;
    overflow: visible;
  }
  .warum-grid h2 {
    font-size: 1.8rem; margin-bottom: 16px;
    color: #fff;
  }
  .warum-grid > div:first-child p {
    font-size: .95rem; margin-bottom: 20px;
    color: rgba(255,255,255,.85);
  }
  .warum-list li {
    font-size: .95rem; margin-bottom: 12px;
    color: rgba(255,255,255,.9); font-weight: 400;
  }
  .warum-list li::marker { color: var(--brand); }

  /* ── CTA Enterprise ── */
  .cta-enterprise { padding: 40px 0; }
  .cta-enterprise h2 { font-size: 1.6rem; }
  .cta-enterprise p { font-size: .95rem; margin-bottom: 24px; }
  .cta-ent-btn {
    padding: 16px 32px; font-size: 1rem;
    border-radius: 10px; width: 100%; justify-content: center;
    max-width: 400px;
  }

  /* ── Reviews ── */
  .reviews-layout { grid-template-columns: 1fr; height: auto; }
  .reviews-photo img { height: 320px; }
  .reviews-content { padding: 40px 24px; }
  .reviews-content h2 { font-size: 1.5rem; margin-bottom: 24px; }
  .review-slide-text { font-size: .95rem; max-width: 100%; }
  .review-slide-stars svg { width: 24px; height: 24px; }
  .reviews-bottom-text { font-size: .85rem; }

  /* ── FAQ ── */
  .section-faq { padding: 48px 0; }
  .faq-q { padding: 18px 20px; font-size: .95rem; gap: 12px; }
  .faq-num { width: 26px; height: 26px; font-size: .75rem; margin-right: 10px; }
  .faq-q-icon { width: 28px; height: 28px; }
  .faq-a-inner { padding: 0 20px 18px; font-size: .9rem; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-main { padding: 48px 0 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand img { margin: 0 auto; height: 100px; }
  .footer-brand p { max-width: 400px; margin: 16px auto 0; }
  .footer-social { justify-content: center; }
  .footer h4::after { left: 0; }
  .footer-bottom {
    flex-direction: column; gap: 12px; text-align: center;
    padding: 20px 0;
  }
  .footer-legal { flex-direction: row; gap: 16px; justify-content: center; }

  /* ── WhatsApp Float ── */
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }

  /* ── Page Header (subpages) ── */
  .page-header { padding: calc(var(--nav-h) + 32px) 0 32px; }
  .page-header h1 { font-size: 1.6rem; }
  .page-header p { font-size: .95rem; }

  /* ── Service Detail (subpages) ── */
  .svc-detail { padding: 40px 0 56px; }
  .svc-detail-intro { font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
  .svc-benefits { padding: 24px 20px; border-radius: 16px; }
  .svc-benefits li { font-size: .95rem; }
}

/* Small phones */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { text-align: left; }
  .footer-brand img { margin: 0; }
  .footer-brand p { margin: 16px 0 0; }
  .footer-social { justify-content: flex-start; }
  .footer h4::after { left: 0; }
}

/* ── Scroll Reveal Animations ── */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.rv.vis {
  opacity: 1;
  transform: translateY(0);
}
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .25s; }
.rv-d3 { transition-delay: .4s; }

/* ========================================
   SEO / GEO Komponenten (2026)
   ======================================== */

/* ── Def-Box: KI-zitierbare Direktantwort oben auf jeder Seite ── */
.def-box {
  background: var(--brand-bg);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
}
.def-box strong { color: var(--ink); }

/* ── Breadcrumb ── */
.breadcrumb { font-size: .85rem; color: var(--ink-3); padding: 4px 0 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: '\203A'; color: var(--ink-3); }
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb li:last-child { color: var(--ink); font-weight: 600; }

/* ── Region / Einzugsgebiet (Stadt-Links, Startseite) ── */
.region-section { padding: 64px 0; background: var(--bg-2); }
.region-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px; margin-top: 32px;
}
.region-link {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 18px; font-weight: 600; color: var(--ink);
  transition: all var(--transition);
}
.region-link:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.region-link svg { width: 18px; height: 18px; color: var(--brand-dark); flex-shrink: 0; }

/* ── Region mit Karte (enterprise, Karte links + Einsatzgebiet rechts) ── */
.region-map-section { padding: 72px 0; background: var(--bg-2); }
.region-map-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.region-map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: #fff; line-height: 0; }
.region-map-embed iframe { display: block; width: 100%; height: 460px; border: 0; }
.region-eyebrow { font-size: .78rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-dark); margin-bottom: 12px; }
.region-map-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; line-height: 1.12; margin-bottom: 16px; }
.region-map-text > p { color: var(--ink-2); line-height: 1.8; font-size: 1.05rem; margin-bottom: 28px; }
.region-sub-label { font-size: .78rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-3); padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.region-gebiet { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.region-gebiet a { display: flex; align-items: center; gap: 10px; padding: 11px 0; color: var(--ink); font-weight: 600; font-size: .98rem; border-bottom: 1px solid #eaeaea; transition: color var(--transition); }
.region-gebiet a:hover { color: var(--brand-dark); }
.region-gebiet a svg { width: 18px; height: 18px; color: var(--brand-dark); flex-shrink: 0; }
@media (max-width: 900px) {
  .region-map-grid { grid-template-columns: 1fr; gap: 32px; }
  .region-map-embed iframe { height: 340px; }
}
@media (max-width: 480px) {
  .region-map-section { padding: 48px 0; }
  .region-gebiet { grid-template-columns: 1fr; }
}

/* ── Local Cross-Links (Nachbarstädte auf Stadtseiten) ── */
.local-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.local-links a {
  display: inline-block; background: var(--brand-bg); color: var(--ink);
  border: 1px solid var(--brand-dark); border-radius: 20px;
  padding: 6px 14px; font-size: .875rem; font-weight: 500;
  transition: all var(--transition);
}
.local-links a:hover { background: var(--brand); }

/* ── Info-Grid (lokale Fakten auf Stadtseiten) ── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.info-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.info-card .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-3); font-weight: 700; margin-bottom: 4px; }
.info-card .val { font-size: 1rem; color: var(--ink); font-weight: 500; }

/* ── Stadtteile-Chips ── */
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 8px; }
.chip-list span {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 5px 12px; font-size: .85rem; color: var(--ink-2);
}

/* ── Kostenfaktor-Tabelle (umzugskosten) ── */
.cost-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.cost-table th, .cost-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: .95rem; vertical-align: top; }
.cost-table th { background: var(--brand-bg); font-weight: 700; color: var(--ink); }
.cost-table td:first-child { font-weight: 600; color: var(--ink); }

@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr 1fr; }
  .region-section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .region-grid { grid-template-columns: 1fr; }
}
