/* ==========================================================================
   Demmrich Vertriebs UG – Gebäudereinigung Dresden
   Haupt-Stylesheet  (kritisches CSS ist inline im <head> der index.html)
   ========================================================================== */

/* ---------- Design Tokens ------------------------------------------------ */
:root {
  /* Farbwelt: tiefes Petrol + frischer Teal/Mint-Akzent + neutrale Töne */
  --c-ink:        #0B2027;
  --c-petrol:     #0E3A46;
  --c-petrol-600: #11525F;
  --c-teal:       #14808D;
  --c-accent:     #21BFAE;
  --c-accent-600: #169C8E;
  --c-accent-tint:#E6F7F4;
  --c-mist:       #F4F8F9;
  --c-card:       #FFFFFF;
  --c-line:       #E2EBED;
  --c-text:       #16323A;
  --c-muted:      #5B7178;
  --c-white:      #FFFFFF;
  --c-amber:      #F4B740;

  /* Typo */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --maxw: 1180px;
  --gut: clamp(1.1rem, 4vw, 2rem);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(11,32,39,.06), 0 2px 6px rgba(11,32,39,.05);
  --shadow-md: 0 6px 22px rgba(11,32,39,.08), 0 2px 8px rgba(11,32,39,.05);
  --shadow-lg: 0 22px 60px rgba(11,32,39,.16);

  /* Transitions */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / Base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
img { border-radius: inherit; }
a { color: var(--c-teal); text-decoration: none; }
a:hover { color: var(--c-accent-600); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- Typografie --------------------------------------------------- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -.02em; color: var(--c-ink); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.28rem; letter-spacing: -.01em; }
p { color: var(--c-text); }
.lead { font-size: clamp(1.08rem, 2.2vw, 1.28rem); color: var(--c-muted); }

/* ---------- Layout-Helfer ------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
.section--mist { background: var(--c-mist); }
.section--ink {
  background: radial-gradient(120% 120% at 80% -10%, #14525f 0%, var(--c-petrol) 45%, var(--c-ink) 100%);
  color: #D7E6E9;
}
.section--ink h2, .section--ink h3 { color: #fff; }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-accent-600); margin-bottom: .85rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--c-accent); border-radius: 2px; }
.section--ink .eyebrow { color: var(--c-accent); }
.section--ink .lead { color: #B9D0D4; }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--c-accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .92rem 1.55rem; border-radius: 999px;
  font-weight: 600; font-size: 1rem; letter-spacing: -.01em;
  background: var(--btn-bg); color: #042e2a;
  box-shadow: 0 8px 22px rgba(33,191,174,.32);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
  white-space: nowrap; will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(33,191,174,.42); background: var(--c-accent-600); color: #042e2a; }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: transparent; color: var(--c-petrol);
  box-shadow: inset 0 0 0 1.5px var(--c-line);
}
.btn--ghost:hover { background: var(--c-white); color: var(--c-petrol); box-shadow: inset 0 0 0 1.5px var(--c-accent); }
.btn--light { background: #fff; color: var(--c-petrol); box-shadow: var(--shadow-md); }
.btn--light:hover { background: #fff; color: var(--c-accent-600); }
.btn--on-dark { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }
.btn--on-dark:hover { background: rgba(255,255,255,.1); color: #fff; box-shadow: inset 0 0 0 1.5px #fff; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.06rem; }
.btn .ic { width: 18px; height: 18px; }

/* ---------- Header / Navigation ----------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--c-line);
}
.nav { display: flex; align-items: center; gap: 1.4rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; color: var(--c-ink); letter-spacing: -.02em; }
.brand .logo { width: 40px; height: 40px; flex: none; }
.brand b { font-size: 1.12rem; line-height: 1; }
.brand small { display: block; font-size: .72rem; font-weight: 600; color: var(--c-muted); letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav-links a {
  color: var(--c-petrol); font-weight: 500; font-size: .98rem;
  padding: .5rem .8rem; border-radius: 9px; transition: background-color .2s, color .2s;
}
.nav-links a:hover { background: var(--c-accent-tint); color: var(--c-petrol); }
.nav-cta { display: flex; align-items: center; gap: .7rem; margin-left: .4rem; }
.nav-tel { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--c-petrol); padding: .5rem .6rem; border-radius: 9px; }
.nav-tel:hover { background: var(--c-accent-tint); color: var(--c-petrol); }
.nav-tel .ic { width: 18px; height: 18px; color: var(--c-accent-600); }

.nav-toggle { display: none; width: 46px; height: 46px; margin-left: auto; border-radius: 12px; align-items: center; justify-content: center; color: var(--c-petrol); }
.nav-toggle:hover { background: var(--c-accent-tint); }
.nav-toggle .bars { position: relative; width: 22px; height: 14px; }
.nav-toggle .bars span { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }
body.nav-open .nav-toggle .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle .bars span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(7rem, 16vw, 9.5rem); padding-bottom: clamp(3rem, 8vw, 5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(33,191,174,.16), transparent 55%),
    radial-gradient(70% 90% at 0% 100%, rgba(20,128,141,.12), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--c-mist) 100%);
}
.hero::after { /* feines Punktraster, GPU-freundlich */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(14,58,70,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.7rem); letter-spacing: -.03em; }
.hero h1 .hl { color: var(--c-teal); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em; background: var(--c-accent); opacity: .25; border-radius: 4px; z-index: -1; }
.hero p.lead { margin-top: 1.15rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.3rem; margin-top: 2.2rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .95rem; color: var(--c-petrol); }
.hero-trust .ic { width: 20px; height: 20px; color: var(--c-accent-600); flex: none; }

/* Hero-Visual (Platzhalter-Bild) */
.hero-visual { position: relative; }
.hero-figure {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--c-petrol);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow-md);
  padding: .85rem 1.05rem; display: flex; align-items: center; gap: .7rem;
}
.hero-badge .num { font-size: 1.5rem; font-weight: 800; color: var(--c-petrol); line-height: 1; letter-spacing: -.03em; }
.hero-badge .lbl { font-size: .78rem; color: var(--c-muted); font-weight: 600; line-height: 1.2; }
.hero-badge--tl { top: 1.1rem; left: -1.1rem; }
.hero-badge--br { bottom: 1.2rem; right: -1rem; }
.hero-badge .ring { width: 38px; height: 38px; flex: none; }

/* ---------- Audience-Split (Gewerbe/Privat) ----------------------------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.split-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem); color: #eaf4f5;
  background: linear-gradient(135deg, var(--c-petrol-600), var(--c-petrol));
  box-shadow: var(--shadow-md); transition: transform .3s var(--ease);
}
.split-card:nth-child(2) { background: linear-gradient(135deg, var(--c-teal), #0e5d66); }
.split-card:hover { transform: translateY(-4px); }
.split-card h3 { color: #fff; margin-bottom: .5rem; }
.split-card p { color: #cfe5e7; font-size: .98rem; }
.split-card ul { margin: 1rem 0 1.3rem; display: grid; gap: .45rem; }
.split-card li { display: flex; gap: .55rem; align-items: flex-start; font-size: .95rem; color: #e2f1f2; }
.split-card li .ic { width: 18px; height: 18px; color: var(--c-accent); flex: none; margin-top: .18rem; }
.split-card .badge-ico { position: absolute; top: -10px; right: -10px; width: 120px; height: 120px; opacity: .12; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: #fff; }
.link-arrow .ic { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.split-card:hover .link-arrow .ic { transform: translateX(4px); }

/* ---------- Leistungen --------------------------------------------------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card {
  background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-ic {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--c-accent-tint); color: var(--c-accent-600); margin-bottom: 1.1rem;
}
.svc-ic svg { width: 28px; height: 28px; }
.svc-card h3 { margin-bottom: .45rem; }
.svc-card p { color: var(--c-muted); font-size: .98rem; }
.svc-card .tag { display: inline-block; margin-top: .9rem; font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: var(--c-accent-600); background: var(--c-accent-tint); padding: .2rem .6rem; border-radius: 999px; }
.is-placeholder { outline: 1px dashed rgba(33,191,174,.55); outline-offset: 4px; }

/* ---------- Preise ------------------------------------------------------- */
.pricing-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 1.5rem; align-items: start; }
.price-table-card { background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.price-table-card h3 { padding: 1.3rem 1.4rem .2rem; }
.price-table-card .sub { padding: 0 1.4rem 1rem; color: var(--c-muted); font-size: .95rem; }
table.prices { width: 100%; border-collapse: collapse; }
table.prices th, table.prices td { text-align: left; padding: .95rem 1.4rem; border-top: 1px solid var(--c-line); font-size: .98rem; }
table.prices thead th { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); background: var(--c-mist); }
table.prices tbody tr { transition: background-color .2s; }
table.prices tbody tr:hover { background: var(--c-accent-tint); }
table.prices .svc { font-weight: 600; color: var(--c-ink); }
table.prices .unit { color: var(--c-muted); }
table.prices .price { font-weight: 800; color: var(--c-petrol); white-space: nowrap; }
table.prices .price .ab { font-weight: 600; color: var(--c-muted); font-size: .82rem; }
.price-note { padding: 1rem 1.4rem; background: var(--c-mist); display: flex; gap: .6rem; align-items: flex-start; font-size: .86rem; color: var(--c-muted); }
.price-note .ic { width: 17px; height: 17px; flex: none; margin-top: .15rem; color: var(--c-accent-600); }

/* Preisrechner */
.calc {
  position: sticky; top: 92px;
  background: linear-gradient(160deg, var(--c-petrol-600), var(--c-petrol));
  color: #eaf4f5; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-md);
}
.calc h3 { color: #fff; }
.calc p.hint { color: #bfdade; font-size: .9rem; margin: .35rem 0 1.2rem; }
.calc label { display: block; font-size: .82rem; font-weight: 600; color: #bfdade; margin: .9rem 0 .4rem; }
.calc select, .calc input[type="number"] {
  width: 100%; padding: .8rem .9rem; border-radius: 11px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: #fff; font: inherit; font-size: 1rem;
}
.calc select option { color: #16323A; }
.calc input::placeholder { color: #9fc0c4; }
.calc-range { display: flex; align-items: baseline; gap: .5rem; margin-top: 1.4rem; }
.calc-range .from { font-size: .82rem; color: #bfdade; }
.calc-range .val { font-size: 2.1rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.calc-range .vat { font-size: .8rem; color: #9fc0c4; }
.calc .disc { font-size: .76rem; color: #9fc0c4; margin-top: .5rem; line-height: 1.5; }
.calc .btn { width: 100%; margin-top: 1.2rem; }

/* ---------- Ablauf / Steps ----------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; position: relative; }
.step {
  position: relative; background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm);
}
.step .no {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem; color: #fff;
  background: linear-gradient(135deg, var(--c-accent), var(--c-teal)); margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(20,128,141,.3);
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--c-muted); font-size: .97rem; }
.steps .connector { display: none; }

/* ---------- Über uns / Stats -------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.values { display: grid; gap: 1rem; margin-top: 1.6rem; }
.value { display: flex; gap: .9rem; }
.value .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(33,191,174,.18); color: var(--c-accent); }
.value .ic svg { width: 22px; height: 22px; }
.value h4 { color: #fff; font-size: 1.05rem; margin-bottom: .15rem; }
.value p { color: #b9d0d4; font-size: .94rem; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 1.4rem; }
.stat .num { font-size: clamp(1.9rem, 5vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; }
.stat .num .suf { color: var(--c-accent); }
.stat .lbl { color: #b9d0d4; font-size: .9rem; margin-top: .4rem; }
.badges-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.cert { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .9rem; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-size: .85rem; font-weight: 600; color: #eaf4f5; }
.cert .ic { width: 16px; height: 16px; color: var(--c-accent); }

/* ---------- Referenzen / Galerie ---------------------------------------- */
.ba-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem,4vw,2.5rem); align-items: center; }
/* Vorher-Nachher Slider */
.ba {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); user-select: none; touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .after { clip-path: inset(0 0 0 50%); }
.ba .ba-label { position: absolute; bottom: .8rem; padding: .3rem .7rem; border-radius: 999px; font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: rgba(11,32,39,.6); backdrop-filter: blur(4px); }
.ba .ba-label.l { left: .8rem; }
.ba .ba-label.r { right: .8rem; }
.ba .handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(11,32,39,.1); }
.ba .grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--c-petrol);
}
.ba input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

.testimonials { display: grid; gap: 1rem; }
.quote { background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm); }
.quote .stars { color: var(--c-amber); letter-spacing: .12em; font-size: .95rem; }
.quote p { font-size: 1.02rem; color: var(--c-ink); margin: .55rem 0 .9rem; }
.quote .who { display: flex; align-items: center; gap: .7rem; }
.quote .av { width: 38px; height: 38px; border-radius: 50%; background: var(--c-accent-tint); color: var(--c-accent-600); display: grid; place-items: center; font-weight: 800; font-size: .9rem; flex: none; }
.quote .who b { font-size: .92rem; color: var(--c-ink); }
.quote .who span { display: block; font-size: .82rem; color: var(--c-muted); }
.logos-row { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; align-items: center; margin-top: 2.5rem; opacity: .7; }
.logos-row span { font-weight: 800; color: var(--c-muted); letter-spacing: -.02em; font-size: 1.05rem; }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { max-width: 50rem; margin-inline: auto; }
.faq details { border: 1px solid var(--c-line); border-radius: var(--radius-sm); background: var(--c-card); margin-bottom: .8rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; color: var(--c-ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex: none; color: var(--c-accent-600); transition: transform .3s var(--ease); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 1.3rem 1.2rem; color: var(--c-muted); }

/* ---------- Kontakt / Formular ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; align-items: start; }
.form-card { background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: clamp(1.5rem,3vw,2.2rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--c-petrol); margin-bottom: .4rem; }
.field label .req { color: #d2473f; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem .95rem; border: 1px solid var(--c-line); border-radius: 11px;
  font: inherit; font-size: 1rem; color: var(--c-text); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(33,191,174,.18); }
.field .hint { font-size: .78rem; color: var(--c-muted); margin-top: .3rem; }
.file-drop { display: flex; align-items: center; gap: .7rem; padding: .82rem .95rem; border: 1.5px dashed var(--c-line); border-radius: 11px; color: var(--c-muted); font-size: .92rem; cursor: pointer; transition: border-color .2s, background-color .2s; }
.file-drop:hover { border-color: var(--c-accent); background: var(--c-accent-tint); }
.file-drop .ic { width: 20px; height: 20px; color: var(--c-accent-600); }
.file-drop input { display: none; }
.consent { display: flex; gap: .65rem; align-items: flex-start; margin: .4rem 0 1.1rem; }
.consent input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--c-accent-600); flex: none; }
.consent label { font-size: .85rem; color: var(--c-muted); }
.form-note { font-size: .8rem; color: var(--c-muted); margin-top: .8rem; text-align: center; }
.form-status { display: none; margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 11px; font-size: .92rem; font-weight: 600; }
.form-status.ok { display: block; background: var(--c-accent-tint); color: var(--c-accent-600); }
.form-status.err { display: block; background: #fdecea; color: #c0392b; }

.contact-aside { display: grid; gap: 1rem; }
.contact-box { background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.4rem 1.5rem; }
.contact-box h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.contact-item { display: flex; gap: .8rem; align-items: flex-start; padding: .55rem 0; }
.contact-item .ic { width: 40px; height: 40px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--c-accent-tint); color: var(--c-accent-600); }
.contact-item .ic svg { width: 20px; height: 20px; }
.contact-item b { display: block; color: var(--c-ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.contact-item a, .contact-item span { color: var(--c-text); font-size: 1rem; }
.map-embed { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--c-line); position: relative; background: var(--c-mist); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 1.5rem; background: linear-gradient(160deg,#eef4f5,#dfeaec); }
.map-consent p { font-size: .92rem; color: var(--c-muted); margin-bottom: .9rem; max-width: 22rem; }

/* ---------- CTA-Band ----------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; max-width: 38rem; margin-inline: auto; }
.cta-band p { color: #b9d0d4; margin: .8rem auto 1.8rem; max-width: 34rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ---------- Footer ------------------------------------------------------- */
.site-footer { background: var(--c-ink); color: #9fb6bb; padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer .brand b, .site-footer .brand { color: #fff; }
.site-footer .brand small { color: #8aa3a8; }
.footer-about { margin: 1rem 0 1.2rem; font-size: .94rem; max-width: 24rem; color: #9fb6bb; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { color: #9fb6bb; font-size: .95rem; }
.footer-col a:hover { color: var(--c-accent); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; margin-bottom: .55rem; }
.footer-contact .ic { width: 17px; height: 17px; color: var(--c-accent); flex: none; margin-top: .25rem; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #cfe0e2; transition: background-color .2s, color .2s, transform .2s; }
.social a:hover { background: var(--c-accent); color: #042e2a; transform: translateY(-2px); }
.social .ic { width: 19px; height: 19px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; font-size: .86rem; }
.footer-bottom a { color: #9fb6bb; }
.footer-bottom a:hover { color: var(--c-accent); }

/* ---------- Mobile Sticky CTA ------------------------------------------- */
.mobile-bar { display: none; }

/* ---------- Cookie-Banner ------------------------------------------------ */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 120; max-width: 760px; margin-inline: auto;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  transform: translateY(140%); transition: transform .45s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie p { font-size: .9rem; color: var(--c-muted); flex: 1 1 320px; }
.cookie .btns { display: flex; gap: .6rem; flex: none; }
.cookie .btn { padding: .7rem 1.2rem; font-size: .92rem; }

/* ---------- Reveal-Animation (IntersectionObserver) --------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Sub-Seiten (Impressum/Datenschutz) -------------------------- */
.legal { padding-top: clamp(7rem, 14vw, 9rem); }
.legal-content { max-width: 50rem; }
.legal-content h1 { font-size: clamp(1.9rem,5vw,2.7rem); margin-bottom: 1.2rem; }
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 .7rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.4rem 0 .5rem; }
.legal-content p, .legal-content li { color: var(--c-muted); margin-bottom: .8rem; }
.legal-content ul { list-style: disc; padding-left: 1.3rem; }
.legal-content a { color: var(--c-teal); word-break: break-word; }
.placeholder-block { background: var(--c-accent-tint); border: 1px dashed var(--c-accent); border-radius: var(--radius-sm); padding: 1rem 1.2rem; color: var(--c-accent-600); font-size: .92rem; margin: 1rem 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-figure { aspect-ratio: 16/11; }
  .hero-badge--tl { left: .6rem; } .hero-badge--br { right: .6rem; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .calc { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .ba-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: auto; }
  .nav-tel span { display: none; }
  /* Mobile-Menü */
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: .2rem;
    background: rgba(255,255,255,.97); backdrop-filter: blur(14px); padding: 1rem var(--gut) 1.5rem;
    box-shadow: var(--shadow-lg); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease); border-bottom: 1px solid var(--c-line);
  }
  body.nav-open .nav-links { display: flex; opacity: 1; transform: none; pointer-events: auto; }
  body.nav-open .nav-links .btn { display: inline-flex; margin-top: .6rem; }
  .nav-links a { padding: .85rem .8rem; font-size: 1.05rem; }
  .split-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about-grid { gap: 2rem; }
  /* Mobile Sticky-CTA-Leiste */
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-top: 1px solid var(--c-line);
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); gap: .6rem;
  }
  .mobile-bar .btn { flex: 1; padding: .85rem 1rem; }
  .mobile-bar .btn--ghost { flex: 0 0 auto; }
  body { padding-bottom: 70px; }
  .cookie { bottom: 78px; }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-trust { gap: .7rem 1.3rem; }
  table.prices th, table.prices td { padding: .8rem 1rem; }
  .hero-badge { padding: .7rem .85rem; }
  .cookie { flex-direction: column; align-items: stretch; }
  .cookie .btns { justify-content: stretch; } .cookie .btns .btn { flex: 1; }
}
