/* Germany Cleaning – Stadtteil-Landingpages
   Eigenständiges Layout, abgeleitet aus der CI (Navy + Cyan), bewusst anders
   strukturiert als die Startseite und als Wettbewerber. */

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

:root {
  --navy:  #1a2b3c;
  --navy2: #243d52;
  --cyan:  #1baee4;
  --cyan2: #3fc3f5;
  --bg:    #f4f8fc;
  --bg2:   #e8f2f9;
  --text:  #111827;
  --muted: #4b5a6e;
  --light: #d5e4f0;
  --radius: 14px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: #fff; line-height: 1.6; }

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.dnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--light);
}
.dnav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.dnav-logo img { height: 30px; width: auto; }
.dnav-links { display: flex; gap: 26px; list-style: none; }
.dnav-links a { text-decoration: none; font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.dnav-links a:hover { color: var(--navy); }
.dnav-right { display: flex; align-items: center; gap: 14px; }
.dnav-phone { font-size: 0.88rem; font-weight: 600; color: var(--navy); text-decoration: none; }
.btn-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2)); color: #fff;
  padding: 9px 18px; border-radius: 10px; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: transform .15s, box-shadow .15s; white-space: nowrap;
}
.btn-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(27,174,228,.35); }

/* ── BREADCRUMB ── */
.crumb { background: var(--bg); border-bottom: 1px solid var(--light); }
.crumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: var(--muted); padding: 11px 0; }
.crumb a { text-decoration: none; color: var(--muted); }
.crumb a:hover { color: var(--cyan); }
.crumb li[aria-current] { color: var(--navy); font-weight: 600; }
.crumb .sep { opacity: .5; }

/* ── HERO ── */
.dhero { background: linear-gradient(165deg, var(--navy) 0%, #0e2032 70%, #0c2e4a 100%); color: #fff; padding: 56px 0 48px; }
.dhero-badge {
  display: inline-block; background: rgba(27,174,228,.15); border: 1px solid rgba(27,174,228,.35);
  color: var(--cyan2); font-size: .76rem; font-weight: 600; letter-spacing: .3px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.dhero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; }
.dhero h1 span { color: var(--cyan2); }
.dhero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 640px; margin-bottom: 28px; }
.dhero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2)); color: #fff;
  padding: 14px 30px; border-radius: 12px; font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(27,174,228,.4); }
.btn-ghost {
  background: transparent; color: #fff; padding: 14px 30px; border-radius: 12px;
  font-size: 1rem; font-weight: 600; text-decoration: none; border: 2px solid rgba(255,255,255,.35);
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.facts { display: flex; flex-wrap: wrap; gap: 14px; }
.fact {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 12px 18px; min-width: 140px;
}
.fact-label { font-size: .72rem; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.fact-value { font-size: .95rem; font-weight: 700; color: #fff; }

/* ── SECTIONS ── */
section { padding: 64px 0; }
.sec-alt { background: var(--bg); }
.eyebrow { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--cyan); margin-bottom: 10px; }
h2.sec-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 900; color: var(--navy); letter-spacing: -.5px; line-height: 1.2; margin-bottom: 16px; }
.lead { font-size: 1.02rem; color: var(--muted); max-width: 720px; }
.lead + .lead { margin-top: 14px; }

/* ── LOCAL INTRO ── */
.intro-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.landmark-card { background: #fff; border: 1px solid var(--light); border-radius: var(--radius); padding: 24px; }
.landmark-card h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.landmark-list { list-style: none; }
.landmark-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: .92rem; color: var(--navy); font-weight: 500; }
.landmark-list svg { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; }

/* ── SERVICES ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 36px; }
.svc { background: #fff; border: 1px solid var(--light); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 14px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.sec-alt .svc { background: #fff; }
.svc:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(27,174,228,.1); }
.svc-ic { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--navy), var(--navy2)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc-ic svg { width: 18px; height: 18px; color: var(--cyan2); }
.svc span { font-size: .9rem; font-weight: 700; color: var(--navy); }

/* ── OFFERS ── */
.offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 36px; }
.offer { background: #fff; border: 1.5px solid var(--light); border-radius: var(--radius); padding: 24px; position: relative; }
.offer.hot { border-color: var(--cyan); background: linear-gradient(160deg, var(--navy), var(--navy2)); }
.offer-tag { font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); background: var(--bg); padding: 4px 10px; border-radius: 6px; display: inline-block; margin-bottom: 14px; }
.offer.hot .offer-tag { background: rgba(27,174,228,.18); }
.offer h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.offer.hot h3 { color: #fff; }
.offer p { font-size: .84rem; color: var(--muted); margin-bottom: 16px; }
.offer.hot p { color: rgba(255,255,255,.6); }
.price { display: flex; align-items: baseline; gap: 6px; }
.price .from { font-size: .78rem; color: var(--muted); }
.offer.hot .price .from { color: rgba(255,255,255,.5); }
.price .amt { font-size: 1.9rem; font-weight: 900; color: var(--cyan); line-height: 1; }
.price .unit { font-size: .78rem; color: var(--muted); }
.offer.hot .price .unit { color: rgba(255,255,255,.5); }
.offer .octa { display: block; text-align: center; margin-top: 18px; padding: 10px; border-radius: 9px; font-size: .85rem; font-weight: 700; text-decoration: none; background: var(--bg); color: var(--navy); }
.offer.hot .octa { background: linear-gradient(135deg, var(--cyan), var(--cyan2)); color: #fff; }

/* ── PREIS + ABLAUF ── */
.price-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 28px; align-items: stretch; margin-top: 36px; }
.price-layout .offer { margin: 0; }
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--light); border-radius: 14px; padding: 18px 20px; transition: border-color .2s, box-shadow .2s; }
.step:hover { border-color: var(--cyan); box-shadow: 0 8px 22px rgba(27,174,228,.1); }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--cyan2)); color: #fff; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.step-body p { font-size: .9rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) { .price-layout { grid-template-columns: 1fr; gap: 20px; } }

/* ── AREA / STREETS ── */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 32px; }
.area-block h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); border-bottom: 1px solid var(--light); padding-bottom: 10px; margin-bottom: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: #fff; border: 1px solid var(--light); border-radius: 100px; padding: 6px 14px; font-size: .82rem; color: var(--navy); text-decoration: none; }
.sec-alt .tag { background: #fff; }
.tag.link:hover { background: var(--cyan); border-color: var(--cyan); color: #fff; }

/* ── FAQ ── */
.faq { max-width: 800px; margin: 32px auto 0; }
.faq details { background: #fff; border: 1px solid var(--light); border-radius: 12px; margin-bottom: 12px; padding: 4px 20px; }
.sec-alt .faq details { background: #fff; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--cyan); font-size: 1.4rem; font-weight: 400; }
.faq details[open] summary::after { content: '\2212'; }
.faq p { color: var(--muted); font-size: .95rem; padding: 0 0 18px; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--cyan), var(--navy)); color: #fff; border-radius: 22px; padding: 48px 40px; text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 26px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,.5); }

/* ── FOOTER ── */
.dfoot { background: #0b1825; color: rgba(255,255,255,.55); padding: 52px 0 28px; }
.dfoot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dfoot-logo { height: 28px; margin-bottom: 14px; }
.dfoot-desc { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.4); max-width: 320px; }
.dfoot address { font-style: normal; font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-top: 14px; }
.dfoot address a { color: rgba(255,255,255,.55); text-decoration: none; }
.dfoot address a:hover { color: var(--cyan2); }
.dfoot h4 { font-size: .76rem; text-transform: uppercase; letter-spacing: 1.4px; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.dfoot ul { list-style: none; }
.dfoot ul li { margin-bottom: 9px; }
.dfoot ul a { font-size: .87rem; color: rgba(255,255,255,.5); text-decoration: none; }
.dfoot ul a:hover { color: var(--cyan2); }
.dfoot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.3); padding-top: 24px; }
.dfoot-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.dfoot-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .dnav-links { display: none; }
  .dnav-phone { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .area-grid { grid-template-columns: 1fr; gap: 28px; }
  .dfoot-top { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  section { padding: 48px 0; }
  .cta-band { padding: 36px 22px; }
}

/* ── LEGAL (Impressum / Datenschutz) ── */
.legal-head { background: var(--bg); border-bottom: 1px solid var(--light); padding: 44px 0; }
.legal-head h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--navy); letter-spacing: -.5px; }
.legal-head p { color: var(--muted); margin-top: 8px; font-size: .95rem; }
.legal { padding: 48px 0 64px; }
.legal .wrap { max-width: 820px; }
.legal h2 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin: 34px 0 10px; }
.legal h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 22px 0 8px; }
.legal p { color: var(--muted); margin-bottom: 12px; }
.legal ul { color: var(--muted); margin: 0 0 12px 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--cyan); }
.legal strong { color: var(--navy); }
.legal .todo { background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; padding: 1px 7px; border-radius: 4px; font-weight: 600; font-size: .92em; }
