/* ─── Reset ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a,
button,
input,
textarea,
select,
label,
[role="button"] {
  touch-action: manipulation;
}

/* ─── Variables ─────────────────────────────────── */
:root {
  --navy: #0f172a;
  --blue: #2563eb;
  --blue-h: #1d4ed8;
  --green: #22c55e;
  --green-h: #16a34a;
  --gray: #f3f4f6;
  --gray-2: #e5e7eb;
  --gray-3: #d1d5db;
  --text: #1e293b;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --red: #ef4444;
}

/* ─── Base ───────────────────────────────────────── */
body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Layout ─────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.wrap-sm {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ─── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fu {
  animation: fadeUp 0.55s ease both;
}
.fu2 {
  animation: fadeUp 0.55s 0.12s ease both;
}
.fu3 {
  animation: fadeUp 0.55s 0.24s ease both;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.spin {
  animation: spin 0.8s linear infinite;
}

/* ─── Icons ─────────────────────────────────────── */
.ic {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.ic-sm {
  width: 1rem;
  height: 1rem;
}
.ic-lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ─── Logo ──────────────────────────────────────── */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.logo-mark svg {
  flex-shrink: 0;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo-name-light {
  font-weight: 800;
  color: var(--navy);
}
.logo-name-blue {
  font-weight: 800;
  color: var(--blue);
}
.logo-tagline {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}
.logo-mark--white .logo-name-light {
  color: var(--white);
}
.logo-mark--white .logo-name-blue {
  color: #93c5fd;
}
.logo-mark--white .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-2);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
  gap: 1rem;
}
.tel-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  border: 2px solid var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background 0.15s,
    color 0.15s;
}
.tel-link:active {
  background: var(--navy);
  color: var(--white);
}
.tel-full {
  display: none;
}
.tel-short {
  display: inline;
}
@media (min-width: 480px) {
  .tel-full {
    display: inline;
  }
  .tel-short {
    display: none;
  }
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  background: var(--light);
  padding-block: 2.5rem 3rem;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--gray-2);
}
.hero-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero {
    padding-block: 4.5rem 5.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eff6ff;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  margin-bottom: 1rem;
}
.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

.hero-h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 0.875rem;
}
.hero-h1 span {
  color: var(--blue);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.hero-sub strong {
  color: var(--text);
  font-weight: 700;
}

/* Trust checklist */
.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.trust-dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-dot svg {
  width: 0.75rem;
  height: 0.75rem;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

/* ─── Social Proof Bar ───────────────────────── */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 1.25rem;
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  border-radius: 0.875rem;
  margin-bottom: 0;
}
.proof-stat {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.proof-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.2rem;
}
.proof-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--gray-2);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   FORM CARD
════════════════════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: 1.25rem;
  border: 1px solid var(--gray-2);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 40px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.card-header {
  background: var(--navy);
  padding: 1.25rem 1.5rem;
}
.card-header-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.card-header-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.card-body {
  padding: 1.5rem;
}
@media (min-width: 480px) {
  .card-body {
    padding: 1.75rem;
  }
}

/* Fields */
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.req {
  color: var(--red);
}
.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--gray-2);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background: var(--light);
  color: var(--text);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray-3);
  font-weight: 400;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: var(--white);
}
.field textarea {
  resize: none;
}
.ferr {
  font-size: 0.72rem;
  color: var(--red);
  margin-top: 0.25rem;
  display: none;
  font-weight: 600;
}
.ferr.show {
  display: block;
}

/* Buttons */
.btn-green {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.1s;
  -webkit-user-select: none;
  user-select: none;
}
.btn-green:active {
  background: var(--green-h);
  transform: scale(0.99);
}
.btn-green:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-green .arrow {
  font-size: 1.1rem;
}

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  -webkit-user-select: none;
  user-select: none;
}
.btn-blue:active {
  background: var(--blue-h);
}

.btn-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-banner:active {
  background: var(--green-h);
}
@media (min-width: 480px) {
  .btn-banner {
    width: auto;
    display: inline-flex;
  }
}

.legal {
  font-size: 0.68rem;
  text-align: center;
  color: var(--muted);
  margin-top: 0.75rem;
  font-weight: 500;
}
.legal a {
  color: var(--blue);
  text-decoration: none;
}

/* Success state */
#ok {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  gap: 0.5rem;
}
#ok.show {
  display: flex;
}
.ok-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ok-icon svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
}
.ok-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.ok-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 16rem;
  font-weight: 500;
}

/* ════════════════════════════════════════════════
   TRUST STRIP (Städte)
════════════════════════════════════════════════ */
.cities {
  background: var(--navy);
  padding-block: 1.25rem;
  overflow: hidden;
}
.cities-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.cities-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.city-chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}
.city-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.svcs {
  background: var(--light);
  padding-block: 4rem;
  border-top: 1px solid var(--gray-2);
}
.sec-h {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  text-align: center;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.sec-sub {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.svc-tile {
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  border-radius: 0.875rem;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
}
.svc-tile:active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
@media (hover: hover) {
  .svc-tile:hover {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
  }
}
.svc-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
}
.svc-tile span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════ */
.how {
  background: var(--white);
  border-top: 1px solid var(--gray-2);
  padding-block: 4rem;
}
.steps {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--light);
  border-radius: 1rem;
  border: 1px solid var(--gray-2);
}
.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.step-body {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 500;
}

/* ════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq {
  background: var(--light);
  padding-block: 4rem;
  border-top: 1px solid var(--gray-2);
}
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-2);
  border-radius: 0.875rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--blue);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  transition: background 0.15s;
}
.faq-q:hover {
  background: var(--light);
}
.faq-chevron {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 500;
  padding: 0 1.25rem;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.25rem 1.1rem;
}

/* ════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════ */
.banner {
  background: var(--navy);
  padding-block: 4rem;
}
.banner-inner {
  text-align: center;
}
.banner h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.ftr {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.5rem;
}
.ftr-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}
@media (min-width: 540px) {
  .ftr-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.ftr-links {
  display: flex;
  gap: 1.25rem;
}
.ftr-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-weight: 600;
}
.ftr-links a:active {
  color: rgba(255, 255, 255, 0.8);
}

/* ════════════════════════════════════════════════
   STICKY MOBILE CTA
════════════════════════════════════════════════ */
.sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.875rem 1.25rem;
  padding-bottom: max(0.875rem, env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--gray-2);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .sticky {
    display: block;
  }
  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }
}

/* ════════════════════════════════════════════════
   WHATSAPP FAB
════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.75rem 1.1rem 0.75rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  -webkit-user-select: none;
  user-select: none;
}
.wa-fab:active {
  transform: scale(0.96);
}
.wa-fab svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: #fff;
  flex-shrink: 0;
}
.wa-fab-label {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .wa-fab {
    bottom: calc(4.75rem + env(safe-area-inset-bottom) + 0.75rem);
    padding: 0.85rem;
    border-radius: 50%;
  }
  .wa-fab-label {
    display: none;
  }
}
@media (min-width: 768px) {
  .wa-fab {
    bottom: 2rem;
    right: 2rem;
  }
}

/* ════════════════════════════════════════════════
   MOBILE FIXES
════════════════════════════════════════════════ */

/* Kein Tap-Highlight-Flash auf iOS/Android */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Kein horizontaler Scroll auf der ganzen Seite */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

/* Grid-Blowout verhindern: alle Grid-Kinder brauchen min-width:0 */
.svc-grid > *,
.steps > *,
.hero-grid > *,
.faq-list > * {
  min-width: 0;
}

/* Wrap nie breiter als Viewport */
.wrap,
.wrap-sm {
  min-width: 0;
  max-width: min(100%, 1100px);
}
.wrap-sm {
  max-width: min(100%, 720px);
}

/* Alle Top-Level-Blöcke auf 100% begrenzen */
section,
header,
footer,
.cities,
.banner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Mindest-Tappgröße 44px auf allen interaktiven Elementen */
a,
button,
[role="button"] {
  min-height: 44px;
}

/* Buttons nie breiter als ihr Container —
   wichtig wenn padding des Elternteils eng wird */
.btn-green,
.btn-blue,
.btn-banner {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Verhindert dass langer Text den Button sprengt */
  word-break: break-word;
  overflow-wrap: break-word;
  /* Mindest-Tappgröße bereits durch padding erfüllt, explizit sichern */
  min-height: 48px;
}

/* Auf kleinen Phones (≤ 390px) Innenabstand der Card reduzieren
   damit Button nicht an den Rand stößt */
@media (max-width: 390px) {
  .card-body {
    padding: 1rem;
  }
  .card-header {
    padding: 1rem;
  }
}

/* Proof-Bar auf sehr kleinen Screens nicht überlaufen lassen */
.proof-bar {
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
@media (max-width: 360px) {
  .proof-bar {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  .proof-num {
    font-size: 1.1rem;
  }
  .proof-divider {
    display: none;
  }
}

/* Hero H1 auf sehr kleinen Phones etwas kleiner */
@media (max-width: 360px) {
  .hero-h1 {
    font-size: 1.75rem;
  }
}

/* Städte-Strip: Label in eigene Zeile auf Mobile */
@media (max-width: 480px) {
  .cities-inner {
    justify-content: flex-start;
    padding-inline: 1.25rem;
  }
  .cities-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
}

/* Service-Tiles: Text nie abschneiden, lieber umbrechen */
.svc-tile span {
  white-space: normal;
  word-break: break-word;
  overflow: visible;
  text-overflow: unset;
}

/* FAQ-Antwort auf langen Texten genug Platz lassen */
@media (max-width: 480px) {
  .faq-item.open .faq-a {
    max-height: 300px;
  }
  .faq-q {
    font-size: 0.82rem;
    padding: 0.95rem 1rem;
  }
}

/* Sticky-Bar: Safe-Area korrekt auf iPhone mit Home-Indicator */
.sticky {
  padding-bottom: max(0.875rem, env(safe-area-inset-bottom, 0px));
}

/* WA-FAB nicht über Sticky-Bar */
@media (max-width: 767px) {
  .wa-fab {
    bottom: calc(
      4.75rem + max(0px, env(safe-area-inset-bottom, 0px)) + 0.75rem
    );
  }
}

/* Formular-Inputs: kein iOS-Zoom beim Fokus (bereits font-size:1rem,
   hier explizit nochmal sichern) */
.field input,
.field textarea,
.field select {
  font-size: max(1rem, 16px);
}

/* Kein Text-Selection-Highlight auf Buttons */
.btn-green,
.btn-blue,
.btn-banner,
.wa-fab,
.tel-link {
  -webkit-user-select: none;
  user-select: none;
}

/* Banner-Button auf Mobile immer volle Breite */
@media (max-width: 479px) {
  .btn-banner {
    width: 100%;
    display: flex;
  }
}
