/* ============================================================
   GARWI Premium Design System v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,400&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --bg: #f6f9f6;
  --surface: #ffffff;
  --surface-soft: #f0f6f1;
  --surface-soft-2: #e8f1ea;
  --surface-alt: #f3f7f4;
  --line: #d6e3d9;
  --line-strong: #c0d2c4;
  --text: #14291d;
  --text-secondary: #2a4a34;
  --muted: #5b7062;
  --brand: #3c6b49;
  --brand-hover: #326040;
  --brand-strong: #1e3d29;
  --brand-soft: #ddf0e2;
  --brand-glow: rgba(60, 107, 73, .12);
  --accent: #e8be55;
  --danger: #a24747;
  --success: #256346;

  --shadow-xs: 0 1px 3px rgba(20, 41, 29, .04);
  --shadow-sm: 0 4px 12px rgba(20, 41, 29, .05);
  --shadow-card: 0 4px 16px rgba(20, 41, 29, .05), 0 1px 3px rgba(20, 41, 29, .04);
  --shadow-card-hover: 0 12px 32px rgba(20, 41, 29, .1), 0 2px 6px rgba(20, 41, 29, .04);
  --shadow-elevated: 0 20px 48px rgba(20, 41, 29, .1), 0 4px 12px rgba(20, 41, 29, .05);
  --shadow-btn: 0 2px 8px rgba(20, 41, 29, .12);
  --shadow-btn-hover: 0 6px 20px rgba(20, 41, 29, .18);

  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --section-pad: clamp(64px, 8vw, 112px);
  --section-pad-sm: clamp(42px, 5vw, 64px);
  --container: min(1160px, calc(100% - 2.5rem));
  --header-h: 76px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: "Inter", "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menuOpen { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ── Headings Font ───────────────────────────────────────── */
h1, h2, h3,
.navLink, .navDropdownTrigger,
.btn, .footerTitle,
label, .drawerLink, .drawerSubLink {
  font-family: "DM Sans", "Inter", system-ui, -apple-system, sans-serif;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3 { margin: 0; text-wrap: balance; color: var(--text); }
h1 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.06;
}
h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
}
h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
}
p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

/* ── Layout ──────────────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; }
.section { padding: var(--section-pad) 0; }
main { display: block; }

.sectionMuted {
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sectionRaised { position: relative; }
.sectionRaised::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(180deg, var(--brand-glow), transparent);
  pointer-events: none;
}
.sectionFaq { background: var(--surface-alt); }
.sectionCta { padding-top: 0; padding-bottom: var(--section-pad); }

.sectionHeader {
  display: grid;
  gap: .65rem;
  margin-bottom: 2.4rem;
  max-width: 64ch;
}
.sectionHeaderCenter { margin-inline: auto; text-align: center; }
.sectionHeader p,
.heroText,
.splitContent > p,
.contactCard > p,
.formCard > p { max-width: 64ch; }

.sectionHeader + .cardGrid,
.sectionHeader + .stepGrid,
.sectionHeader + .faqList { margin-top: 0; }

main > .section:nth-of-type(even):not(.sectionMuted):not(.sectionCta):not(.requestFlowSection) {
  background: linear-gradient(180deg, rgba(240, 246, 241, .65) 0%, rgba(246, 249, 246, .8) 100%);
  border-top: 1px solid rgba(214, 227, 217, .5);
  border-bottom: 1px solid rgba(214, 227, 217, .5);
}

/* ── Skip Link ───────────────────────────────────────────── */
.skipLink {
  position: absolute; left: 1rem; top: -4rem; z-index: 1000;
  background: var(--brand-strong); color: #fff;
  padding: .7rem 1.1rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: .875rem;
  transition: top .2s var(--ease);
}
.skipLink:focus { top: 1rem; }

/* ── Topbar ──────────────────────────────────────────────── */
.topbar {
  background: var(--brand-strong); color: #dceede;
  font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: none;
}
.topbarInner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbarInner p { margin: 0; }
.topbarLinks { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbarLinks a { color: #fff; font-weight: 700; }

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 300;
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  background: rgba(246, 249, 246, .88);
  border-bottom: 1px solid rgba(20, 41, 29, .08);
  box-shadow: 0 1px 0 rgba(20, 41, 29, .04);
}
.headerInner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.brand img { width: min(200px, 40vw); height: auto; }

/* ── Desktop Nav ─────────────────────────────────────────── */
.nav { display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }
.navReinwerk { display: flex; align-items: center; gap: .15rem; flex-wrap: nowrap; }

.navLink {
  padding: .6rem .9rem; border-radius: var(--radius-md);
  font-weight: 700; color: var(--text);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.navReinwerk .navLink {
  padding: .5rem .7rem; border-radius: var(--radius-sm);
  color: var(--muted); font-weight: 600;
  min-height: 40px; display: inline-flex; align-items: center;
  font-size: .9rem; letter-spacing: -.01em;
}
.navReinwerk .navLink:hover,
.navReinwerk .navLink:focus-visible {
  color: var(--brand-strong); background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.navLink.isActive { background: var(--brand-soft); color: var(--brand-strong); }
.navAnfrageBtn { margin-left: .4rem; white-space: nowrap; }

.navReinwerk > a[href="einsatzgebiet.html"],
.drawerInner > a.drawerLink[href="einsatzgebiet.html"] { display: none; }

/* ── Nav Dropdown ────────────────────────────────────────── */
.navDropdown { position: relative; display: flex; align-items: center; }
.navDropdownTrigger {
  min-height: 40px; display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .7rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; background: transparent;
  color: var(--muted); font-weight: 600; font-size: .9rem;
  cursor: pointer; letter-spacing: -.01em;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.navDropdownTrigger::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .25s var(--ease);
}
.navDropdown:hover .navDropdownTrigger,
.navDropdown:focus-within .navDropdownTrigger {
  color: var(--brand-strong); background: var(--surface); border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.navDropdown:hover .navDropdownTrigger::after,
.navDropdown:focus-within .navDropdownTrigger::after {
  transform: rotate(-135deg) translateY(-1px);
}
.navDropdownPanel {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 550;
  width: min(680px, 72vw); min-width: 540px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .35rem;
  padding: .65rem; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-elevated);
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.navDropdown:hover .navDropdownPanel,
.navDropdown:focus-within .navDropdownPanel {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.navDropdownItem {
  display: grid; gap: .15rem;
  padding: .65rem .75rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; min-height: 62px; align-content: center;
  transition: background .15s var(--ease), border-color .15s var(--ease);
}
.navDropdownItem strong { color: var(--brand-strong); font-size: .88rem; line-height: 1.35; }
.navDropdownItem span { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.navDropdownItem:hover,
.navDropdownItem:focus-visible { background: var(--surface-soft); border-color: var(--line); }

/* ── Header Quick Actions ────────────────────────────────── */
.headerQuick { display: flex; align-items: center; gap: .65rem; }
.quickCall {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 .9rem; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 700; font-size: .88rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.quickCall:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }

/* ── Menu Toggle ─────────────────────────────────────────── */
.menuToggle {
  display: none; width: 44px; height: 44px; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-xs); cursor: pointer; padding: 0;
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
}
.menuToggle span {
  display: block; width: 18px; height: 1.5px; border-radius: var(--radius-pill);
  background: var(--text); transition: transform .25s var(--ease), opacity .15s var(--ease);
}
.menuToggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menuToggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menuToggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── Mobile Drawer ───────────────────────────────────────── */
.drawer { border-top: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-elevated); }
.drawerInner { display: grid; gap: .45rem; padding: .85rem 0 1.1rem; }
.drawerLink {
  display: flex; align-items: center; min-height: 48px; padding: .85rem 1rem;
  border-radius: var(--radius-md); font-weight: 700;
  border: 1px solid var(--line); background: var(--surface-alt);
  transition: background .15s var(--ease);
}
.drawerLink.isActive { background: var(--brand-soft); border-color: #bdd8c6; color: var(--brand-strong); }
.drawerLinkCta { background: var(--brand); color: #fff; border-color: transparent; }
.drawerMeta { display: flex; gap: 1rem; flex-wrap: wrap; padding: .25rem .1rem 0; color: var(--muted); font-size: .9rem; }
.drawerGroup { display: grid; gap: .4rem; }
.drawerGroupSummary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.drawerGroupSummary::-webkit-details-marker { display: none; }
.drawerGroupSummary::after {
  content: "+"; font-size: 1.05rem; font-weight: 700; line-height: 1;
  color: var(--brand-strong); transition: transform .2s var(--ease);
}
.drawerGroup[open] .drawerGroupSummary::after { transform: rotate(45deg); }
.drawerSubmenu { display: grid; gap: .35rem; padding: .05rem .15rem .25rem .85rem; }
.drawerSubLink {
  display: flex; align-items: center; min-height: 44px;
  padding: .65rem .85rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface);
  color: var(--text); font-weight: 600; font-size: .9rem;
  transition: background .15s var(--ease);
}
.drawerSubLink:hover, .drawerSubLink:focus-visible { background: var(--surface-soft); }

/* ── Hero Sections ───────────────────────────────────────── */
.hero, .pageHero { position: relative; overflow: hidden; }
.homeHero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.homeHero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-garwi.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.homeHero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 41, 29, 0.52);
  z-index: 1;
}

.homeHero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.homeHero .heroGrid {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.homeHero .heroMedia,
.homeHero .visualCard {
  display: none;
}

.homeHero h1 {
  color: #ffffff;
}

.homeHero .heroText {
  color: rgba(255, 255, 255, 0.88);
}

.homeHero .heroFacts li {
  color: rgba(255, 255, 255, 0.9);
}

.homeHero .heroFacts li::before {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 3.5px rgba(255, 255, 255, 0.8);
}

.homeHero .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.homeHero .btnGhost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.homeHero .btnGhost:hover,
.homeHero .btnGhost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
}

.heroGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
  padding: clamp(36px, 4.5vw, 64px) 0;
}
.heroCopy { display: grid; gap: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; width: fit-content;
  padding: .4rem .8rem; border-radius: var(--radius-pill);
  background: var(--brand-soft); color: var(--brand-strong);
  font-size: .75rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}
.eyebrowSoft { background: var(--surface); border: 1px solid var(--line); }

.heroText { max-width: 60ch; font-size: 1.05rem; line-height: 1.7; }

.heroActions, .ctaActions, .stackActions {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .25rem;
}

.heroFacts { display: grid; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.heroFacts li {
  position: relative; padding-left: 1.65rem;
  color: var(--text-secondary); font-weight: 600; line-height: 1.5; font-size: .95rem;
}
.heroFacts li::before {
  content: ""; position: absolute; left: 0; top: .42rem;
  width: .8rem; height: .8rem; border-radius: var(--radius-pill);
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 3.5px var(--brand);
}
.heroFactsLarge { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .85rem 1rem; }

.heroMedia { position: relative; }
.visualCard {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: clamp(10px, 2vw, 20px);
  box-shadow: var(--shadow-elevated);
}
.visualCard img { width: 100%; height: auto; border-radius: var(--radius-md); background: var(--surface-alt); }

/* ── Metric Row ──────────────────────────────────────────── */
.metricRow {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem; margin-top: .5rem; align-items: stretch;
}
.metricCard {
  padding: 1.15rem 1.2rem; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-card); height: 100%;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.metricCard strong { display: block; font-size: .95rem; line-height: 1.4; color: var(--text); }
.metricCard span { display: block; margin-top: .2rem; color: var(--muted); font-size: .82rem; font-weight: 600; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 1.15rem;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  font-weight: 700; letter-spacing: .02em; font-size: .8rem; text-transform: uppercase;
  box-shadow: var(--shadow-btn);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease);
  cursor: pointer;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
}
.btnPrimary {
  background: var(--brand); color: #fff;
  border-color: rgba(20, 41, 29, .1);
}
.btnPrimary:hover, .btnPrimary:focus-visible {
  background: var(--brand-hover);
}
.btnGhost {
  background: var(--surface); color: var(--brand-strong); border-color: var(--line);
}
.btnGhost:hover, .btnGhost:focus-visible {
  border-color: var(--brand); background: var(--surface-soft);
}
.btnHeader { min-height: 42px; padding: 0 1rem; font-size: .78rem; }
.btnSubmit { width: 100%; min-height: 50px; margin-top: .4rem; font-size: .84rem; }

/* ── Cards ───────────────────────────────────────────────── */
.cardGrid { display: grid; gap: 1rem; align-items: stretch; }
.cardGrid.cols2 { grid-template-columns: repeat(2, 1fr); }
.cardGrid.cols3 { grid-template-columns: repeat(3, 1fr); }
.cardGridCompact .card { padding: 1.1rem; }

.card {
  display: flex; flex-direction: column; gap: .85rem; min-width: 0;
  padding: 1.35rem; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cardSoft { background: var(--surface-soft); border-color: rgba(214, 227, 217, .7); }
.cardCompact { padding: 1.1rem; }
.cardImage {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-alt);
}

/* Alle Bilder in Cards explizit 4:3 */
.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface-alt);
  display: block;
}
.metricRow > .metricCard,
.stepGrid > .stepCard,
.requestFlowGrid > .requestFlowItem { height: 100%; }

.cardGrid > .card { height: 100%; }

.cardGrid > .card:has(> .cardImage) {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  height: auto;
  justify-content: flex-end;
  gap: .55rem;
  padding: 1rem;
  isolation: isolate;
  background: #183122;
}

.cardGrid > .card:has(> .cardImage)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 23, 17, 0.08) 0%, rgba(12, 23, 17, 0.34) 38%, rgba(12, 23, 17, 0.92) 100%);
}

.cardGrid > .card:has(> .cardImage) > .cardImage {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: inherit;
  background: transparent;
}

.cardGrid > .card:has(> .cardImage) > :not(.cardImage) {
  position: relative;
  z-index: 2;
}

.cardGrid > .card:has(> .cardImage) h2,
.cardGrid > .card:has(> .cardImage) h3 {
  color: #fff;
  line-height: 1.2;
}

.cardGrid > .card:has(> .cardImage) p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: .88rem;
  line-height: 1.5;
}

.cardGrid > .card:has(> .cardImage) .featureList {
  gap: .32rem;
}

.cardGrid > .card:has(> .cardImage) .featureList li {
  color: rgba(255, 255, 255, 0.92);
  font-size: .82rem;
  padding-left: 1rem;
}

.cardGrid > .card:has(> .cardImage) .featureList li::before {
  top: .46rem;
  background: rgba(255, 255, 255, 0.96);
}

.cardGrid > .card:has(> .cardImage) .textLink {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cardGrid > .card:has(> .cardImage) .textLink:hover {
  color: #f3faee;
}

.cardFullWidth {
  grid-column: 1 / -1;
}

/* Card-Internal Typography */
.card h2 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); letter-spacing: -.018em; line-height: 1.22; }
.card h3 { font-size: clamp(1rem, 1.5vw, 1.15rem); letter-spacing: -.014em; line-height: 1.28; }
.card p { font-size: .94rem; line-height: 1.68; }

/* ── Feature Lists ───────────────────────────────────────── */
.featureList { list-style: none; display: grid; gap: .5rem; padding: 0; margin: 0; }
.featureList li { position: relative; padding-left: 1.4rem; color: var(--muted); font-size: .93rem; }
.featureList li::before {
  content: ""; position: absolute; left: 0; top: .52rem;
  width: .5rem; height: .5rem; border-radius: var(--radius-pill);
  background: var(--brand);
}
.textLink { font-weight: 800; color: var(--brand); margin-top: auto; font-size: .9rem; transition: color .15s var(--ease); }
.textLink:hover { color: var(--brand-hover); }

/* ── Split Section ───────────────────────────────────────── */
.splitSection {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 1.5rem; align-items: start;
}
.splitContent { display: grid; gap: 1rem; }
.splitVisual { margin-top: .4rem; }
.splitVisual img {
  width: 100%; height: auto; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: var(--surface-alt);
  box-shadow: var(--shadow-card);
}

/* ── Info Panel ──────────────────────────────────────────── */
.infoPanel {
  padding: 1.35rem; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-card); display: grid; gap: .9rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

/* ── Pill Row ────────────────────────────────────────────── */
.pillRow, .footerBadgeRow { display: flex; gap: .55rem; flex-wrap: wrap; }
.pillRow span, .footerBadgeRow span {
  display: inline-flex; align-items: center;
  min-height: 32px; padding: 0 .72rem;
  border-radius: var(--radius-pill); background: var(--surface);
  border: 1px solid var(--line); font-weight: 700; font-size: .8rem;
  color: var(--text-secondary);
}
.footerBadgeRow { display: none; }

/* ── Step Grid ───────────────────────────────────────────── */
.stepGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; align-items: stretch; }
.stepCard {
  position: relative; padding: 1.35rem; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-card); display: grid; gap: .65rem; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stepNumber {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--brand-soft); color: var(--brand-strong);
  font-weight: 800; font-size: .85rem; letter-spacing: .06em;
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faqList { display: grid; gap: .75rem; }
.faqEntry {
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  background: var(--surface); box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faqEntry[open] { border-color: #bdd8c6; box-shadow: var(--shadow-card-hover); }
.faqEntry summary {
  position: relative; list-style: none; cursor: pointer;
  padding: 1.15rem 3.5rem 1.15rem 1.25rem;
  font-weight: 700; color: var(--text); font-size: .98rem;
  transition: color .15s var(--ease);
}
.faqEntry summary::-webkit-details-marker { display: none; }
.faqEntry summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: var(--radius-pill);
  background: var(--surface-soft); color: var(--brand-strong);
  display: grid; place-items: center;
  font-size: 1.2rem; font-weight: 700;
  transition: background .15s var(--ease), transform .2s var(--ease);
}
.faqEntry[open] summary::after { content: "\2013"; background: var(--brand-soft); }
.faqEntry summary:hover::after { background: var(--brand-soft); }
.faqAnswer { padding: 0 1.25rem 1.15rem; }
.faqAnswer p { font-size: .95rem; line-height: 1.72; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb ol {
  display: flex; gap: .5rem; flex-wrap: wrap;
  list-style: none; margin: 0; padding: 0;
  color: var(--muted); font-size: .88rem; font-weight: 600;
}
.breadcrumb li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb li + li::before { content: "/"; opacity: .5; }
.breadcrumb a { transition: color .15s var(--ease); }
.breadcrumb a:hover { color: var(--brand); }

/* ── Contact Layout ──────────────────────────────────────── */
.contactLayout {
  display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: 1.2rem; align-items: start;
}
.contactSidebar { display: grid; gap: .85rem; }

.contactCard, .formCard, .noticePanel {
  padding: 1.5rem; border-radius: var(--radius-xl);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contactCard img {
  width: 100%; height: auto; border-radius: var(--radius-md);
  border: 1px solid var(--line); background: var(--surface-alt);
}
.contactList { display: grid; gap: .75rem; padding: 0; margin: 0; list-style: none; }
.contactList li { display: grid; gap: .15rem; }
.contactList strong {
  color: var(--brand-strong); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.contactList a { transition: color .15s var(--ease); }
.contactList a:hover { color: var(--brand); }

/* QR Contact Card */
.contactCardQr { display: grid; gap: .8rem; }
.contactCardQr img { max-width: 190px; height: auto; border-radius: var(--radius-md); border: 1px solid var(--line); }

/* ── Forms ────────────────────────────────────────────────── */
.contactForm { display: grid; gap: .95rem; }
.fieldGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.field { display: grid; gap: .35rem; }

label {
  font-size: .84rem; font-weight: 700;
  color: var(--brand-strong); letter-spacing: .01em;
}
input, select, textarea {
  width: 100%; padding: .8rem .95rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text);
  min-height: 48px; font-size: .95rem;
  box-shadow: inset 0 1px 2px rgba(20, 41, 29, .03);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
select { padding-right: 2rem; }
textarea { min-height: 172px; resize: vertical; line-height: 1.62; }
input:focus, select:focus, textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glow);
  outline: none;
}
.fieldHint { font-size: .82rem; color: var(--muted); }

.filePill {
  width: fit-content; max-width: 100%;
  padding: .5rem .75rem; border-radius: var(--radius-pill);
  background: var(--surface-soft); border: 1px solid var(--line);
  font-weight: 700; font-size: .88rem; color: var(--brand-strong);
  overflow-wrap: anywhere;
}
.checkRow {
  display: flex; gap: .7rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: .9rem 1rem; background: var(--surface-alt);
}
.checkRow input { width: 18px; height: 18px; margin-top: .15rem; flex: 0 0 auto; min-height: auto; }
.checkRow span { line-height: 1.55; font-size: .93rem; }

.statusMessage { border-radius: var(--radius-md); padding: 1rem; font-weight: 600; }
.statusMessage.isSuccess { background: #eaf7ee; border: 1px solid #c0dfc8; color: var(--success); }
.statusMessage.isError { background: #faf0f0; border: 1px solid #ebcece; color: var(--danger); }

.noscriptNote { padding: 1rem; border-radius: var(--radius-lg); background: var(--surface-soft); border: 1px solid var(--line); }
.honeypot {
  position: absolute !important; left: -9999px !important; top: auto !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}

/* ── Notice Panel ────────────────────────────────────────── */
.noticePanel { display: grid; gap: 1rem; background: var(--surface); }

/* ── CTA Panel ───────────────────────────────────────────── */
.ctaPanel {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #14291d 0%, #1e3d29 40%, #2a5236 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(14, 30, 20, .25), 0 4px 12px rgba(14, 30, 20, .1);
}
.ctaPanel p, .ctaPanel h2 { color: #fff; }
.ctaPanel h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
.ctaPanel p { color: rgba(255,255,255,.8); }
.ctaPanel .eyebrow { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.1); }
.ctaPanel .btn { box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.ctaPanel .btnPrimary { background: #fff; color: var(--brand-strong); border-color: transparent; }
.ctaPanel .btnPrimary:hover { background: #f0f6f1; }
.ctaPanel .btnGhost { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.ctaPanel .btnGhost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

/* ── Service USP Strip ───────────────────────────────────── */
.serviceUspStrip {
  padding: clamp(20px, 2.5vw, 32px) 0;
  background: var(--surface-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.serviceUspGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.serviceUspItem {
  display: grid; gap: .4rem; padding: 1.2rem; border-radius: var(--radius-xl);
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-card); height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.serviceUspItem strong { color: var(--brand-strong); font-size: .9rem; }
.serviceUspItem p { margin: 0; font-size: .88rem; line-height: 1.55; }

/* ── Related Services ────────────────────────────────────── */
.relatedServicesGrid .relatedServiceCard { height: 100%; }
.relatedServicesGrid .relatedServiceCard .textLink { margin-top: auto; }

/* ── Conversion Trust ────────────────────────────────────── */
.conversionTrustSection { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.conversionTrustGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.conversionTrustCard {
  display: grid; gap: .5rem; padding: 1.2rem; border-radius: var(--radius-xl);
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-card); height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.conversionTrustCard strong { color: var(--brand-strong); font-size: .95rem; }
.conversionTrustCard p { margin: 0; font-size: .9rem; line-height: 1.6; }
.conversionTrustActions { margin-top: 1rem; display: flex; gap: .7rem; flex-wrap: wrap; }

/* ── Request Flow ────────────────────────────────────────── */
.requestFlowSection { padding-top: 0; }
.requestFlowGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.requestFlowItem {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 1.35rem;
  box-shadow: var(--shadow-card); height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.requestFlowItem strong { display: block; color: var(--brand-strong); margin-bottom: .3rem; font-size: .95rem; }
.requestFlowItem p { margin: 0; font-size: .92rem; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #0f1f15; color: #c8ddd0;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 1.25rem;
  margin-top: var(--section-pad-sm);
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.4fr .9fr 1fr 1fr;
  gap: 1.5rem 1.2rem; align-items: start;
}
.footerLogo img { width: min(200px, 100%); height: auto; }
.footerTitle {
  font-size: .92rem; margin-bottom: .7rem; color: #fff;
  letter-spacing: .02em; font-weight: 700;
}
.footerBrand p { max-width: 52ch; font-size: .9rem; line-height: 1.6; color: #93ad9c; }
.footerList {
  list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem;
}
.footerList a, .footerList li { line-height: 1.6; font-size: .9rem; }
.footerList a { color: #a3bfad; transition: color .15s var(--ease); }
.footerList a:hover, .footerList a:focus-visible {
  color: #fff; text-decoration: underline; text-underline-offset: 3px;
}
.footerBottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(200, 221, 208, .1);
  margin-top: 1.25rem; padding-top: 1rem;
}
.footerBottom p { font-size: .84rem; color: #6a8a74; }

/* ── Mobile Quick Bar ────────────────────────────────────── */
.mobileQuickBar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  display: none;
  grid-template-columns: repeat(3, 1fr); gap: .5rem;
  padding: .65rem .75rem;
  background: rgba(15, 31, 21, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(200, 221, 208, .08);
}
.mobileQuickBar a {
  min-height: 46px; display: grid; place-items: center;
  background: var(--surface); color: var(--brand-strong);
  border-radius: var(--radius-md); font-weight: 700; font-size: .85rem;
  transition: transform .15s var(--ease);
}
.mobileQuickBar a:active { transform: scale(.97); }

/* ── Focus / Accessibility ───────────────────────────────── */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--brand); outline-offset: 2px;
}

/* ── Hover effects ───────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .card:hover, .metricCard:hover, .stepCard:hover,
  .contactCard:hover, .infoPanel:hover,
  .requestFlowItem:hover, .serviceUspItem:hover,
  .conversionTrustCard:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .navDropdownPanel { min-width: 500px; width: min(600px, 80vw); }
  .navReinwerk .navLink, .navDropdownTrigger { padding: .5rem .65rem; }
  .heroGrid { grid-template-columns: minmax(0, 1fr) minmax(300px, .92fr); }
}

@media (max-width: 1100px) {
  .section { padding: clamp(52px, 7vw, 88px) 0; }
  .headerInner { min-height: 72px; }
  .footerGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .navDropdownPanel { display: none; }
  .menuToggle { display: inline-flex; }

  .heroGrid, .splitSection, .contactLayout { grid-template-columns: 1fr; }
  .metricRow, .heroFactsLarge, .stepGrid, .cardGrid.cols3 { grid-template-columns: repeat(2, 1fr); }
  .cardGrid.cols2 { grid-template-columns: 1fr; }

  .topbarInner { min-height: unset; padding: .5rem 0; align-items: flex-start; flex-direction: column; }
  .quickCall { display: none; }
  .heroGrid { padding: 2rem 0 2.5rem; }

  .serviceUspGrid, .conversionTrustGrid { grid-template-columns: repeat(2, 1fr); }
  .requestFlowGrid { grid-template-columns: 1fr; }

  .sectionHeader { margin-bottom: 1.8rem; }

  .card, .contactCard, .formCard, .infoPanel, .noticePanel,
  .stepCard, .metricCard, .requestFlowItem,
  .serviceUspItem, .conversionTrustCard { padding: 1.15rem; }

  .footerGrid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .heroCopy { padding: 0; border: none; background: transparent; }
  .section { padding: clamp(48px, 6vw, 80px) 0; }
}

@media (max-width: 720px) {
  :root { --container: min(1160px, calc(100% - 1.75rem)); }
  .topbar { display: none; }
  .headerInner { min-height: 68px; }
  .brand img { width: min(170px, 52vw); }
  h1 { font-size: clamp(1.85rem, 9vw, 2.7rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  .heroFactsLarge, .metricRow, .stepGrid, .fieldGrid,
  .cardGrid.cols3, .cardGrid.cols2, .footerGrid,
  .serviceUspGrid, .conversionTrustGrid, .requestFlowGrid { grid-template-columns: 1fr; }

  .btn, .stackActions .btn, .heroActions .btn, .conversionTrustActions .btn { width: 100%; }
  .btn, .btnHeader, .btnSubmit { min-height: 48px; }
  .section { padding: var(--section-pad-sm) 0; }

  .card, .contactCard, .formCard, .infoPanel, .noticePanel,
  .stepCard, .metricCard, .faqEntry, .requestFlowItem,
  .ctaPanel, .serviceUspItem, .conversionTrustCard {
    border-radius: var(--radius-lg); padding: 1.05rem;
  }
  .contactCard, .formCard { padding: 1.15rem; }

  .ctaPanel { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .mobileQuickBar { display: grid; }
  body { padding-bottom: 82px; }
  .sectionHeader { gap: .5rem; margin-bottom: 1.4rem; }
  .drawerSubmenu { padding-left: .7rem; }
  .drawerSubLink { padding: .6rem .75rem; min-height: 42px; }
  .mobileQuickBar a { border-radius: var(--radius-md); }
  .faqEntry summary { padding: 1rem 3rem 1rem 1.1rem; font-size: .94rem; }
  .faqEntry summary::after { right: .9rem; width: 30px; height: 30px; font-size: 1.1rem; }
  .faqAnswer { padding: 0 1.1rem 1rem; }
  .heroActions { margin-top: .1rem; }
.homeHero { min-height: 70vh; }
.homeHero::before { background-position: center top; }
  .sectionHeader { max-width: 100%; }
  .footerGrid { gap: 1.2rem .8rem; }
}

@media (max-width: 480px) {
  :root { --container: min(1160px, calc(100% - 1.25rem)); }
  .ctaPanel { padding: 1.1rem; }
  .ctaPanel h2 { font-size: 1.3rem; }
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children in grids */
.cardGrid > .reveal:nth-child(2),
.stepGrid > .reveal:nth-child(2),
.metricRow > .reveal:nth-child(2),
.requestFlowGrid > .reveal:nth-child(2),
.faqList > .reveal:nth-child(2) { transition-delay: .07s; }

.cardGrid > .reveal:nth-child(3),
.stepGrid > .reveal:nth-child(3),
.metricRow > .reveal:nth-child(3),
.requestFlowGrid > .reveal:nth-child(3),
.faqList > .reveal:nth-child(3) { transition-delay: .14s; }

.cardGrid > .reveal:nth-child(4),
.stepGrid > .reveal:nth-child(4),
.faqList > .reveal:nth-child(4) { transition-delay: .21s; }

.faqList > .reveal:nth-child(5) { transition-delay: .28s; }
.faqList > .reveal:nth-child(6) { transition-delay: .32s; }

/* hero gets a slightly different reveal */
.heroGrid.reveal {
  transform: translateY(16px);
  transition-duration: .7s;
}

/* CTA panel gets subtle scale */
.ctaPanel.reveal {
  transform: translateY(18px) scale(.985);
}
.ctaPanel.revealed {
  transform: translateY(0) scale(1);
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
/* Samsung Motion Layer - animation only, no layout/size changes */
.reveal{
  opacity:0;
  transform:translate3d(0,24px,0);
  filter:blur(8px);
  will-change:opacity, transform, filter;
  transition:
    opacity .82s cubic-bezier(.16,1,.3,1),
    transform .96s cubic-bezier(.16,1,.3,1),
    filter .82s cubic-bezier(.16,1,.3,1);
}

.reveal.revealed{
  opacity:1;
  transform:translate3d(0,0,0);
  filter:blur(0);
}

.heroGrid.reveal{
  transform:translate3d(0,18px,0);
}

.heroGrid.reveal.revealed{
  transform:translate3d(0,0,0);
}

.ctaPanel.reveal{
  transform:translate3d(0,20px,0);
}

.ctaPanel.reveal.revealed{
  transform:translate3d(0,0,0);
}

.metricCard.reveal,
.card.reveal,
.stepCard.reveal,
.infoPanel.reveal,
.contactCard.reveal,
.formCard.reveal,
.noticePanel.reveal,
.faqEntry.reveal,
.serviceUspItem.reveal,
.conversionTrustCard.reveal,
.requestFlowItem.reveal{
  transform:translate3d(0,22px,0);
}

.metricCard.reveal.revealed,
.card.reveal.revealed,
.stepCard.reveal.revealed,
.infoPanel.reveal.revealed,
.contactCard.reveal.revealed,
.formCard.reveal.revealed,
.noticePanel.reveal.revealed,
.faqEntry.reveal.revealed,
.serviceUspItem.reveal.revealed,
.conversionTrustCard.reveal.revealed,
.requestFlowItem.reveal.revealed{
  transform:translate3d(0,0,0);
}

@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal.revealed,
  .heroGrid.reveal,
  .heroGrid.reveal.revealed,
  .ctaPanel.reveal,
  .ctaPanel.reveal.revealed{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
    transition:none !important;
  }
}
