/* Cleanfree – Premium Cleaning Company Stylesheet */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #14b8a6;
  --teal-soft: #ccfbf1;
  --navy: #1e293b;
  --navy-deep: #0f172a;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dark: #a68419;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1120px;
  --header-h: 96px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", "Palatino Linotype", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
}
.logo:hover { color: var(--navy); }
.logo-img {
  height: 72px;
  width: auto;
  max-width: min(380px, 70vw);
  object-fit: contain;
  display: block;
}
.logo-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  line-height: 1;
}
.logo-name {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.logo-slogan {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-600);
  white-space: nowrap;
}

/* Light plate behind navy logo text on dark backgrounds */
.footer-brand .logo,
.legal-header-simple .logo {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 0.35rem 0.65rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.footer-brand .logo-img,
.legal-header-simple .logo-img {
  height: 48px;
}
.footer-brand .logo-mark,
.legal-header-simple .logo-mark {
  width: 40px;
  height: 40px;
}
.footer-brand .logo-name,
.legal-header-simple .logo-name {
  color: var(--navy);
  font-size: 1.25rem;
}
.footer-brand .logo-slogan,
.legal-header-simple .logo-slogan {
  color: var(--gray-600);
  letter-spacing: 0.12em;
  font-size: 0.58rem;
}


.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-desktop a:hover {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
  line-height: 1.3;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}
.btn-header { display: none; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1.05rem; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--navy);
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-radius: 8px;
}
.nav-mobile a:hover { background: var(--teal-soft); color: var(--teal-dark); }
.nav-mobile .btn { margin-top: 0.5rem; width: 100%; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .btn-header { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.52) 0%, rgba(19, 78, 74, 0.42) 40%, rgba(15, 118, 110, 0.38) 100%),
    url("assets/hero.jpg") center 40% / cover no-repeat;
  color: var(--white);
  padding: 6.5rem 0 7rem;
  overflow: hidden;
  min-height: min(88vh, 820px);
  width: 100%;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.28) 42%, rgba(10, 22, 40, 0.12) 100%),
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 162, 39, 0.08), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(70% 100% at 50% 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--teal-light); }

.hero-brandline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light);
  margin: 0.15rem 0 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.hero-slogan {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.hero-ctas a.link-secondary {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.5rem;
}
.hero-ctas a.link-secondary:hover { color: var(--white); }

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 1.85rem 0;
  margin-top: -1px;
}
.trust-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}
.trust-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  justify-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  text-align: center;
  width: 100%;
  max-width: 220px;
}
.trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  display: block;
  margin: 0 auto;
}
.trust-item strong {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
.trust-headline {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin: 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 600px) {
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }
}
@media (min-width: 900px) {
  .trust-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    align-items: start;
  }
}

/* ========== SECTIONS ========== */
.section {
  padding: 4.5rem 0;
}
.section-alt { background: var(--off-white); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}
.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.15rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.about-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-content p:last-of-type { margin-bottom: 1.5rem; }
.about-visual {
  background:
    linear-gradient(160deg, rgba(15, 118, 110, 0.82) 0%, rgba(15, 23, 42, 0.78) 100%),
    url("assets/about.jpg") center / cover no-repeat;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-md);
}
.about-visual::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(20,184,166,0.35), transparent 70%);
  pointer-events: none;
}
.about-visual-quote {
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 1rem;
}
.about-visual-sub {
  position: relative;
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  height: 100%;
  transform-origin: center center;
}
a.service-card:hover {
  color: inherit;
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
  transform: scale(1.04);
}
a.service-card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}
.service-card .service-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
}
.services-section {
  position: relative;
}
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248,250,252,0.92), rgba(248,250,252,0.96)),
    url("assets/about.jpg") center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.services-section > .container { position: relative; z-index: 1; }
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fffbeb 0%, var(--white) 60%);
}
.service-card.featured::after {
  content: "Spezial";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal-dark);
}
.service-card.featured .service-icon {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-dark);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.services-quote {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--teal-dark);
}

/* ========== PROMO / AKTION ========== */
.promo {
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.88) 0%, rgba(19, 78, 74, 0.85) 50%, rgba(30, 41, 59, 0.88) 100%),
    url("assets/promo.jpg") center / cover no-repeat;
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(13,148,136,0.2), transparent 45%);
  pointer-events: none;
}
.promo .section-header { position: relative; }
.promo .section-label { color: var(--gold-light); }
.promo .section-header h2 { color: var(--white); }
.promo .section-header p { color: rgba(255,255,255,0.75); }

.promo-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media (min-width: 700px) {
  .promo-cards { grid-template-columns: 1fr 1fr; }
}
.promo-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.promo-card--aktion {
  background: linear-gradient(145deg, #0f172a, #1e3a3a);
  border: 1px solid rgba(201, 162, 39, 0.4);
}
.promo-card--praemie {
  background: linear-gradient(145deg, var(--teal-dark), #0d9488);
  border: 1px solid rgba(255,255,255,0.15);
}
.promo-ribbon {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.15rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.promo-card h3 {
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.promo-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.55;
}

.promo-steps {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
}
.promo-steps h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}
.steps-list {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .steps-list { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 700px) {
  .step { flex-direction: column; align-items: center; text-align: center; }
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}
.promo-trust {
  text-align: center;
  margin-top: 1.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  position: relative;
}

/* ========== VORTEILE ========== */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
}
.benefit-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}
.benefit-card:hover { box-shadow: var(--shadow-sm); }
.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--teal-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.benefit-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ========== KONTAKT ========== */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item a, .contact-item span {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-item a:hover { color: var(--teal); }
.contact-item small {
  display: block;
  font-weight: 400;
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 600px) {
  .contact-form-wrap { padding: 2.25rem; }
}
.contact-form-wrap h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.type-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 1.5rem;
}
.type-toggle button {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.type-toggle button.active {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--off-white);
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 500px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  line-height: 1.45;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.visible { display: block; }
.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--teal);
  margin: 0 auto 1rem;
}
.form-success h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.form-hidden { display: none; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
  }
}
.footer-brand .logo { color: var(--white); margin-bottom: 0.85rem; }
.footer-brand .logo:hover { color: var(--white); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 1rem;
}
.footer-slogan-sm {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
  padding: 1.15rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-bottom .leaf {
  color: var(--teal);
  font-size: 0.9rem;
}
.footer-copy {
  margin-top: 0.4rem;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(255,255,255,0.45) !important;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 3rem 0 4.5rem;
  min-height: 60vh;
}
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}
.legal-page .legal-meta {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}
.legal-page p, .legal-page li {
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.7;
  max-width: 720px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-page a { text-decoration: underline; text-underline-offset: 2px; }

.legal-header-simple {
  background: var(--navy);
  padding: 1rem 0;
}
.legal-header-simple .logo { color: var(--white); }
.legal-header-simple .logo:hover { color: var(--white); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ========== UTILS ========== */
.focus-ring:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}


/* ========== SERVICE DETAIL PAGES ========== */
.page-hero {
  position: relative;
  background-color: #0f172a;
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero.jpg");
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.48) 0%, rgba(10, 22, 40, 0.22) 45%, rgba(10, 22, 40, 0.10) 100%),
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(20, 184, 166, 0.16), transparent 55%);
  pointer-events: none;
}
/* Per-category hero photos */
body.page-buero .page-hero,
.page-hero--buero {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero-buero.jpg");
  background-position: center 35%;
}
body.page-praxis .page-hero,
.page-hero--praxis {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero-praxis.jpg");
  background-position: center 40%;
}
body.page-fitness .page-hero,
.page-hero--fitness {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero-fitness.jpg");
  background-position: center 45%;
}
body.page-fenster .page-hero,
.page-hero--fenster {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero-fenster.jpg");
  background-position: center 40%;
}
body.page-treppenhaus .page-hero,
.page-hero--treppenhaus {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero-treppenhaus.jpg");
  background-position: center 40%;
}
body.page-privat .page-hero,
.page-hero--privat {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero-privat.jpg");
  background-position: center 40%;
}
body.page-ferienwohnung .page-hero,
.page-hero--ferienwohnung {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero-ferienwohnung.jpg");
  background-position: center 40%;
}
body.page-autoreinigung .page-hero,
.page-hero--auto {
  background-image:
    linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(19, 78, 74, 0.45) 40%, rgba(15, 118, 110, 0.40) 100%),
    url("assets/hero-auto.jpg");
  background-position: center 45%;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--teal-light); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.page-hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  max-width: 560px;
}
.service-detail { padding: 3.5rem 0; }
.service-detail-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .service-detail-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}
.benefit-list { margin: 1.5rem 0 2rem; }
.benefit-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.benefit-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.why-box {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.why-box h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.why-box p { color: var(--gray-600); margin-bottom: 1.25rem; line-height: 1.6; }
.service-cta-bar {
  background: var(--teal-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.service-cta-bar p {
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}
.related-services {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.related-services h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.related-links a {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}
.related-links a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-soft);
}
@media (max-width: 560px) {
  .logo-img { height: 56px; max-width: min(300px, 72vw); }
  .hero { min-height: min(78vh, 640px); padding: 4.5rem 0 5rem; }
}

/* ========== Termin Modal ========== */
body.termin-modal-open {
  overflow: hidden;
}

.termin-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.termin-modal[hidden] {
  display: none !important;
}
@media (min-width: 640px) {
  .termin-modal {
    align-items: center;
    padding: 1.5rem;
  }
}

.termin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
  border: none;
  cursor: pointer;
}

.termin-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: min(92vh, 860px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.25rem 1.75rem;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) {
  .termin-modal__panel {
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 2rem;
  }
}

.termin-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.termin-modal__close:hover,
.termin-modal__close:focus-visible {
  background: var(--teal-soft);
  color: var(--teal-dark);
  outline: none;
}

.termin-modal__header {
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}
.termin-modal__header h2 {
  font-size: 1.45rem;
  margin: 0.25rem 0 0.5rem;
  color: var(--navy);
}
.termin-modal__header p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.termin-modal__success {
  display: none;
  text-align: center;
  padding: 1.5rem 0.5rem;
}
.termin-modal__success.visible {
  display: block;
}

.termin-form .optional,
.contact-form-wrap .optional {
  font-weight: 400;
  color: var(--gray-400);
  font-size: 0.85em;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.form-check input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}
.form-check label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 0;
  cursor: pointer;
}
.form-check a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.termin-sms-hint {
  text-align: center;
  margin-top: 0.85rem;
}

#termin {
  scroll-margin-top: calc(var(--header-h) + 16px);
}
