/* ============================================================
   GRODT Gebäudereinigung — Design System
   Premium, Apple-inspiriert: klare Hierarchie, viel Weißraum,
   präzise Typografie, subtile Motion.
   ============================================================ */

:root {
  /* Farben */
  --navy: #0a1a2f;
  --navy-soft: #10263f;
  --ink: #17253a;
  --body: #45536a;
  --muted: #6b7a90;
  --line: #e6ebf2;
  --cloud: #f5f8fb;
  --white: #ffffff;
  --blue: #1fa2e0;
  --blue-dark: #1285c0;
  --blue-soft: #e8f5fc;
  --green: #8dc63f;
  --green-dark: #6fa32c;
  --shadow-sm: 0 1px 2px rgba(10, 26, 47, .05), 0 4px 12px rgba(10, 26, 47, .06);
  --shadow-md: 0 4px 8px rgba(10, 26, 47, .05), 0 16px 40px rgba(10, 26, 47, .10);
  --shadow-lg: 0 8px 16px rgba(10, 26, 47, .06), 0 32px 72px rgba(10, 26, 47, .16);

  /* Typografie */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fs-hero: clamp(2.5rem, 5.4vw, 4.25rem);
  --fs-h2: clamp(1.9rem, 3.4vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-lead: clamp(1.075rem, 1.5vw, 1.25rem);

  /* Rhythmus */
  --radius: 18px;
  --radius-sm: 12px;
  --section: clamp(4.5rem, 9vw, 8rem);
  --container: 1160px;

  --ease: cubic-bezier(.22, .68, .26, .99);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: var(--ink); }
:focus-visible { outline: 3px solid rgba(31, 162, 224, .45); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.12;
}
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
h3 { font-size: var(--fs-h3); font-weight: 700; }

.container { width: min(var(--container), calc(100% - 3rem)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--cloud { background: var(--cloud); }
.section--navy { background: var(--navy); color: #b9c7d8; }
.section--navy h2, .section--navy h3 { color: var(--white); }

/* Eyebrow / Label über Überschriften */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue-dark);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }
.section--navy .eyebrow { color: var(--blue); }

.lead { font-size: var(--fs-lead); line-height: 1.65; color: var(--body); max-width: 56ch; }
.section--navy .lead { color: #b9c7d8; }
.center { text-align: center; }
.center .lead, .center p { margin-inline: auto; }
.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(31, 162, 224, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(31, 162, 224, .45); color: #fff; }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .16); color: #fff; transform: translateY(-2px); }
.btn--outline {
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
  background: var(--white);
}
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue-dark); transform: translateY(-2px); }
.btn--green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(141, 198, 63, .35);
}
.btn--green:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(141, 198, 63, .45); color: #fff; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.075rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(10, 26, 47, .06);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { width: 44px; height: 44px; }
.brand-name { font-weight: 800; font-size: 1.3rem; letter-spacing: .04em; color: #fff; transition: color .3s; }
.brand-name small { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--green); }
.site-header.is-scrolled .brand-name, .site-header--solid .brand-name { color: var(--ink); }

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  padding: .55rem .9rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: rgba(255, 255, 255, .88);
  transition: color .25s, background .25s;
}
.main-nav a:hover { color: #fff; background: rgba(255, 255, 255, .12); }
.main-nav a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .14); }
.site-header.is-scrolled .main-nav a, .site-header--solid .main-nav a { color: var(--ink); }
.site-header.is-scrolled .main-nav a:hover { background: var(--blue-soft); color: var(--blue-dark); }
.site-header.is-scrolled .main-nav a[aria-current="page"], .site-header--solid .main-nav a[aria-current="page"] { background: var(--blue-soft); color: var(--blue-dark); }

.header-cta { display: flex; align-items: center; gap: .75rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .95rem; color: #fff;
  padding: .55rem .9rem; border-radius: 999px;
  transition: background .25s, color .25s;
}
.header-phone svg { width: 16px; height: 16px; }
.header-phone:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.site-header.is-scrolled .header-phone, .site-header--solid .header-phone { color: var(--ink); }
.site-header.is-scrolled .header-phone:hover, .site-header--solid .header-phone:hover { background: var(--blue-soft); color: var(--blue-dark); }
.header-cta .btn { padding: .75rem 1.35rem; font-size: .925rem; }

/* Dropdown (Leistungen) */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: .35rem; }
.nav-drop > a svg { width: 12px; height: 12px; transition: transform .25s; }
.nav-drop:hover > a svg, .nav-drop:focus-within > a svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 6px;
  min-width: 280px; padding: .6rem;
  background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), translate .25s var(--ease), visibility .25s;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; translate: -50% 0; }
.nav-drop-menu a {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .7rem .9rem !important; border-radius: 10px !important;
  color: var(--ink) !important; background: none !important;
}
.nav-drop-menu a:hover { background: var(--blue-soft) !important; }
.nav-drop-menu a strong { font-size: .95rem; }
.nav-drop-menu a span { font-size: .8rem; color: var(--muted); font-weight: 500; }

/* Burger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px; border-radius: 12px;
  position: relative; z-index: 102;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; border-radius: 2px;
  background: #fff; transition: all .3s var(--ease);
}
.site-header.is-scrolled .nav-toggle span, .site-header--solid .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 22px; rotate: 45deg; background: var(--ink); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 22px; rotate: -45deg; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92svh, 900px);
  display: flex; align-items: center;
  color: #fff;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(6, 18, 34, .88) 0%, rgba(6, 18, 34, .62) 42%, rgba(6, 18, 34, .18) 75%, rgba(6, 18, 34, .05) 100%);
}
.hero__inner { padding-block: 9rem 6rem; max-width: 660px; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--green); }
.hero .lead { color: rgba(255, 255, 255, .88); margin-bottom: 2.25rem; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem 1rem; border-radius: 999px;
  background: rgba(255, 255, 255, .1); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
  font-size: .85rem; font-weight: 600; color: #fff;
  margin-bottom: 1.5rem;
}
.hero__badge svg { width: 15px; height: 15px; color: var(--green); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.hero-trust li { display: flex; align-items: center; gap: .65rem; font-size: .925rem; font-weight: 600; color: rgba(255, 255, 255, .9); }
.hero-trust svg { width: 20px; height: 20px; color: var(--green); flex: none; }

/* Kompaktes Hero für Unterseiten */
.page-hero {
  position: relative;
  padding: 10.5rem 0 5.5rem;
  color: #fff;
  isolation: isolate;
  background: var(--navy);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,18,34,.4), rgba(6,18,34,.75));
}
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 1rem; max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,.85); margin-bottom: 2rem; }

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .85rem; font-weight: 600; margin-bottom: 1.75rem; color: rgba(255,255,255,.65); }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden] { opacity: .5; }

/* ---------- Trust-Bar ---------- */
.trustbar { background: var(--navy); color: #cdd9e6; padding-block: 1.4rem; }
.trustbar ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem; }
.trustbar li { display: flex; align-items: center; gap: .6rem; font-size: .925rem; font-weight: 600; }
.trustbar svg { width: 19px; height: 19px; color: var(--green); }

/* ---------- Cards / Leistungen ---------- */
.grid { display: grid; gap: 1.75rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__img { aspect-ratio: 3 / 2; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { display: flex; flex-direction: column; gap: .7rem; padding: 1.6rem 1.6rem 1.75rem; flex: 1; }
.service-card__body h3 { font-size: 1.2rem; }
.service-card__body p { font-size: .95rem; flex: 1; }
.service-card__link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .925rem; color: var(--blue-dark);
  margin-top: .35rem;
}
.service-card__link svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ---------- USP / Warum wir ---------- */
.usp-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue-dark);
  margin-bottom: 1.25rem;
}
.usp-card__icon svg { width: 26px; height: 26px; }
.usp-card h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.usp-card p { font-size: .95rem; }

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.split--rev > .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 2; object-fit: cover; width: 100%;
}
.split__media::before {
  content: ""; position: absolute; inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border-radius: var(--radius); z-index: -1;
  background: linear-gradient(135deg, var(--blue-soft), rgba(141,198,63,.12));
}
.split--rev .split__media::before { inset: 1.25rem 1.25rem -1.25rem -1.25rem; }
.split__text h2 { margin-bottom: 1.25rem; }
.split__text p + p { margin-top: 1rem; }

.checklist { margin-top: 1.75rem; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 600; color: var(--ink); font-size: .975rem; }
.checklist svg { width: 22px; height: 22px; color: var(--green-dark); flex: none; margin-top: .1rem; }

/* ---------- Steps (Ablauf) ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.25rem 1.9rem 1.9rem;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -1.1rem; left: 1.6rem;
  font-size: .85rem; font-weight: 800; letter-spacing: .08em;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff;
  padding: .45rem .85rem; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(31,162,224,.35);
}
.step h3 { font-size: 1.1rem; margin: .5rem 0 .55rem; color: var(--navy); }
.step p { font-size: .95rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: .9rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 700; color: var(--ink); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq-icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue-dark);
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.faq summary .faq-icon svg { width: 14px; height: 14px; }
.faq details[open] summary .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq .faq-answer { padding: 0 1.5rem 1.4rem; font-size: .975rem; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 55%, #144a6b 100%);
  color: #fff;
  padding: clamp(2.75rem, 6vw, 4.5rem);
  text-align: center;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35;
}
.cta-band::before { width: 380px; height: 380px; background: var(--blue); top: -180px; right: -100px; }
.cta-band::after { width: 300px; height: 300px; background: var(--green); bottom: -180px; left: -80px; opacity: .18; }
.cta-band h2 { color: #fff; margin-bottom: .9rem; }
.cta-band p { color: #c4d3e2; max-width: 52ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; position: relative; z-index: 1; }
.cta-note { margin-top: 1.25rem; font-size: .875rem; color: #93a8bd; position: relative; z-index: 1; }

/* ---------- Formular ---------- */
.form-wrap {
  background: #fff; border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: grid; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .875rem; font-weight: 700; color: var(--ink); }
.field label small { font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .9rem 1.05rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cloud);
  transition: border-color .25s, background .25s, box-shadow .25s;
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2345536a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 162, 224, .14);
}
.form-privacy { font-size: .8rem; color: var(--muted); }
.form-privacy a { text-decoration: underline; }
.form-success {
  display: none;
  margin-top: 1rem; padding: 1rem 1.25rem; border-radius: var(--radius-sm);
  background: rgba(141, 198, 63, .14); color: var(--green-dark);
  font-weight: 600; font-size: .95rem;
}
.form-success.is-visible { display: block; }

/* Kontakt-Infokarten */
.contact-card {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card__icon {
  flex: none; width: 48px; height: 48px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue-dark);
}
.contact-card__icon svg { width: 23px; height: 23px; }
.contact-card h3 { font-size: 1.02rem; margin-bottom: .2rem; }
.contact-card p, .contact-card a { font-size: .95rem; }
.contact-card a { font-weight: 700; color: var(--blue-dark); display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #93a8bd; padding: 4.5rem 0 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer-brand img { width: 52px; margin-bottom: 1rem; }
.footer-brand .brand-name { font-size: 1.2rem; }
.footer-brand p { margin-top: .9rem; max-width: 34ch; }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { display: grid; gap: .6rem; }
.site-footer a { color: #93a8bd; transition: color .25s; }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green); flex: none; margin-top: .2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .85rem;
}
.footer-bottom nav { display: flex; gap: 1.5rem; }

/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr; gap: .75rem;
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(10, 26, 47, .12);
}
.mobile-cta .btn { padding: .95rem 1rem; font-size: .95rem; }

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .header-phone span { display: none; }
}
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 0; z-index: 101;
    flex-direction: column; justify-content: center; gap: .5rem;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden; translate: 0 -12px;
    transition: opacity .35s var(--ease), visibility .35s, translate .35s var(--ease);
  }
  body.nav-open .main-nav { opacity: 1; visibility: visible; translate: 0 0; }
  .main-nav a { font-size: 1.35rem; color: var(--ink) !important; padding: .8rem 1.6rem; }
  .main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--blue-soft) !important; color: var(--blue-dark) !important; }
  .nav-drop-menu {
    position: static; translate: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; background: transparent; padding: 0;
    display: none;
  }
  .nav-drop.is-open .nav-drop-menu { display: block; }
  .nav-drop:hover .nav-drop-menu { translate: none; }
  .header-cta .btn { display: none; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 76px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--rev > .split__media { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__inner { padding-block: 8rem 4.5rem; }
  .hero-trust { gap: .9rem 1.5rem; }
  .btn-row .btn { flex: 1 1 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: .8rem 1.4rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* Header auf hellen Unterseiten immer hell */
.site-header--solid {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(10, 26, 47, .05);
}
.page-head { padding: 9rem 0 4rem; background: var(--cloud); }
.page-head h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 1rem; max-width: 22ch; }
.page-head .lead { max-width: 62ch; }

/* Danke-Seite */
.thanks-box {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-md); padding: clamp(2.5rem, 6vw, 4rem);
}
.thanks-icon {
  width: 72px; height: 72px; margin: 0 auto 1.5rem; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(141, 198, 63, .15); color: var(--green-dark);
}
.thanks-icon svg { width: 34px; height: 34px; }

/* Rechtstexte */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.35rem; margin: 2.25rem 0 .75rem; }
.legal p + p { margin-top: .8rem; }

/* ---------- Oryginalne logo GRODT (zamiast napisu) ---------- */
.header-inner { height: 124px; }
.brand { gap: 0; }
.brand .logo-img { height: 108px; width: auto; }
.brand .logo-for-light { display: none; }
.site-header.is-scrolled .logo-for-dark,
.site-header--solid .logo-for-dark,
body.nav-open .logo-for-dark { display: none; }
.site-header.is-scrolled .logo-for-light,
.site-header--solid .logo-for-light,
body.nav-open .logo-for-light { display: block; }
.footer-brand .footer-logo { width: 190px; height: auto; margin-bottom: 1.1rem; }
@media (max-width: 920px) {
  .brand .logo-img { height: 84px; }
}

/* ---------- Opinie Google ---------- */
.reviews-summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 1.25rem;
  margin-bottom: 2.5rem;
}
.stars { display: inline-flex; gap: .15rem; color: #f5a623; }
.stars svg { width: 22px; height: 22px; }
.reviews-summary strong { color: var(--ink); font-size: 1.1rem; }
.reviews-summary span { color: var(--muted); font-size: .95rem; }
.g-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-weight: 700; font-size: .9rem; color: var(--ink);
}
.review-card {
  display: flex; flex-direction: column; gap: .9rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.75rem;
}
.review-card__head { display: flex; align-items: center; gap: .9rem; }
.review-card__avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue-dark);
  font-weight: 800; font-size: 1.05rem;
}
.review-card__head strong { display: block; color: var(--ink); font-size: .975rem; }
.review-card__head time { font-size: .8rem; color: var(--muted); }
.review-card p { font-size: .95rem; flex: 1; }
.review-card .stars svg { width: 16px; height: 16px; }

/* ---------- Ratgeber / Blog ---------- */
.post-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.9rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card__cat {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-dark); margin-bottom: .6rem;
}
.post-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.post-card p { font-size: .93rem; flex: 1; }
.post-card .service-card__link { margin-top: 1rem; }

/* ---------- Ceny ---------- */
.price-hint {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--blue-soft); border: 1px solid rgba(31,162,224,.25);
  border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
  margin-top: 1.75rem;
}
.price-hint__price { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.price-hint__price small { display: block; font-size: .8rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-hint p { font-size: .9rem; flex: 1; min-width: 200px; }

/* ---------- Artykuł ---------- */
.article { max-width: 760px; }
.article h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin: 2.5rem 0 1rem; }
.article h3 { font-size: 1.2rem; margin: 1.75rem 0 .6rem; }
.article p + p { margin-top: 1rem; }
.article ul.dots { margin: 1rem 0; padding-left: 1.3rem; display: grid; gap: .5rem; }
.article ul.dots li { list-style: disc; }
.article a { text-decoration: underline; text-underline-offset: 3px; }
.article-cta {
  margin-top: 3rem; padding: 2rem;
  background: var(--cloud); border: 1px solid var(--line); border-radius: var(--radius);
  text-align: center;
}

/* Hero: dwa badge'e obok siebie */
.hero__badge { margin-bottom: 0; margin-right: .6rem; }
.hero__badge svg[fill="currentColor"] { color: #f5a623; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }

/* ---------- Vorher/Nachher Slider ---------- */
.ba {
  position: relative; max-width: 900px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow, 0 20px 50px rgba(10,26,47,.18));
  aspect-ratio: 3 / 2; background: var(--navy);
  --pos: 50%; touch-action: pan-y;
}
.ba__img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba__before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 3px; background: #fff; transform: translateX(-1.5px);
  box-shadow: 0 0 14px rgba(0,0,0,.4); pointer-events: none;
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.35); color: var(--blue);
}
.ba__knob svg { width: 26px; height: 26px; }
.ba__tag {
  position: absolute; top: 1rem; padding: .35rem .85rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .03em;
  background: rgba(10,26,47,.72); color: #fff; backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; }
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0; -webkit-appearance: none; appearance: none;
}
.ba:focus-within { outline: 3px solid var(--blue); outline-offset: 3px; }

/* ---------- Preis-Check (Kalkulator) ---------- */
.calc {
  max-width: 760px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(10,26,47,.10);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem; align-items: center;
}
.calc__fields { display: grid; gap: 1rem; }
.calc__result { text-align: center; border-left: 1px solid var(--line); padding-left: 1.5rem; }
.calc__price { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin: 0; }
.calc__note { font-size: .85rem; color: var(--muted); margin: .35rem 0 1.1rem; }
@media (max-width: 640px) {
  .calc { grid-template-columns: 1fr; }
  .calc__result { border-left: none; border-top: 1px solid var(--line); padding: 1.25rem 0 0; }
}
