/* =================================================================
   Schaaf Federn – Conversion Landingpage
   Designsystem: Industriell, B2B, vertrauensvoll
   - Primärfarbe Anthrazit/Schwarz (Industrie)
   - Akzentrot (Schaaf-Brand-Anlehnung, Conversion-Farbe)
   - Klare Typografie (Inter), viel Weißraum
   ================================================================= */

:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f5f6f8;
  --c-bg-dark: #0e1116;
  --c-text: #16191f;
  --c-text-soft: #4b5563;
  --c-text-light: #9aa3b2;
  --c-border: #e5e7eb;

  --c-primary: #0e1116;          /* Anthrazit */
  --c-primary-2: #1a2230;
  --c-accent: #4D6B8A;           /* Schaaf CI-Blau */
  --c-accent-2: #3a526b;         /* CI-Blau dunkler (Hover) */
  --c-accent-soft: #eef2f7;      /* CI-Blau sehr hell (Backgrounds) */
  --c-accent-border: #c9d6e3;    /* CI-Blau Soft Border */
  --c-accent-light: #8aa6c2;     /* CI-Blau hell (Text auf Dark) */

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15,17,22,0.06), 0 1px 3px rgba(15,17,22,0.04);
  --shadow-md: 0 6px 24px rgba(15,17,22,0.08), 0 2px 6px rgba(15,17,22,0.04);
  --shadow-lg: 0 20px 60px rgba(15,17,22,0.18);

  --container: 1280px;
}

/* Sicherheits-Reset: Theme-Body kann von Oxygen Custom-Properties bekommen.
   Borlabs Cookie und andere Cookie-/Tracking-Container ausnehmen, damit deren
   eigene Reset-Regeln (z. B. position:fixed für das Widget) nicht überschrieben werden. */
.invictus-lp-body { margin: 0 !important; padding: 0 !important; }
.invictus-lp-body :not(.brlbs-cmpnt-container):not(.brlbs-cmpnt-container *):not(#BorlabsCookieBox):not(#BorlabsCookieBox *):not(#BorlabsCookieWidget):not(#BorlabsCookieWidget *) {
  box-sizing: border-box;
}

/* ===== Borlabs Cookie – defensiv erzwingen, dass Widget & Modal als Overlays liegen ===== */
.invictus-lp-body #BorlabsCookieWidget,
.invictus-lp-body #BorlabsCookieBox {
  position: static !important;
  height: 0 !important;
}
.invictus-lp-body .brlbs-cmpnt-widget {
  position: fixed !important;
  z-index: 999998 !important;
}
.invictus-lp-body .brlbs-cmpnt-widget.brlbs-bottom-0 { bottom: 24px !important; }
.invictus-lp-body .brlbs-cmpnt-widget.brlbs-left-0   { left:   24px !important; }
.invictus-lp-body .brlbs-cmpnt-widget.brlbs-right-0  { right:  24px !important; }
.invictus-lp-body .brlbs-cmpnt-widget.brlbs-top-0    { top:    24px !important; }
/* Cookie-Banner-Modal: Backdrop & Dialog dürfen Vollbild fixed bleiben */
.invictus-lp-body #BorlabsCookieBox .brlbs-cmpnt-dialog-backdrop:before,
.invictus-lp-body .brlbs-cmpnt-container .brlbs-cmpnt-dialog-backdrop:before {
  position: fixed !important;
  z-index: 999997 !important;
}
.invictus-lp-body #BorlabsCookieBox .brlbs-cmpnt-dialog,
.invictus-lp-body .brlbs-cmpnt-container .brlbs-cmpnt-dialog {
  z-index: 999998 !important;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 .5em;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; color: var(--c-text-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .9rem;
}
.eyebrow--light { color: var(--c-accent-light); }

.accent { color: var(--c-accent); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn--primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(77,107,138,0.35);
}
.btn--primary:hover { background: var(--c-accent-2); color: #fff; box-shadow: 0 6px 20px rgba(77,107,138,0.45); }

.btn--ghost {
  background: #fff;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--ghost:hover { background: #f3f4f6; color: var(--c-text); }

.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); color: #fff; }

.btn--lg { padding: 15px 26px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ----- Topbar ----- */
.topbar {
  background: var(--c-primary);
  color: #d8dde6;
  font-size: .85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c9d1de;
}
.topbar__item svg {
  width: 16px; height: 16px; fill: var(--c-accent);
}
.topbar__phone {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
}
.topbar__phone:hover { color: #fff; text-decoration: underline; }
.topbar__phone svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 720px) {
  .topbar__item:nth-child(3) { display: none; }
  .topbar__phone { margin-left: 0; }
}

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.header__logo img { height: 50px; width: auto; }
.header__nav {
  display: flex;
  gap: 22px;
  margin-left: 18px;
  flex: 1;
}
.header__nav a {
  color: var(--c-text);
  font-weight: 500;
  font-size: .95rem;
}
.header__nav a:hover { color: var(--c-accent); text-decoration: none; }
.header__cta { white-space: nowrap; }

@media (max-width: 900px) {
  .header__nav { display: none; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(77,107,138,0.08), transparent 60%),
    linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  padding: 56px 0 72px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  border: 1px solid var(--c-accent-border);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 18px;
}
.hero__title { margin-bottom: 18px; }
.hero__sub  { font-size: 1.1rem; max-width: 56ch; margin-bottom: 22px; color: var(--c-text-soft); }

.hero__usps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}
.hero__usps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--c-text);
}
.hero__usps svg { width: 18px; height: 18px; fill: #16a34a; flex: none; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
}
.hero__iso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 10px 16px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  background: var(--c-bg-alt);
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
}
.hero__iso svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: var(--c-accent);
}
.hero__trust-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-text);
}
.hero__trust-item span {
  font-size: .85rem;
  color: var(--c-text-soft);
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__usps { grid-template-columns: 1fr; }
  .hero__trust { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .hero__trust { grid-template-columns: 1fr; }
  .hero__iso { white-space: normal; text-align: center; }
}

/* ----- Form-Card ----- */
.form-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--c-accent), #7e9bb8);
}
.form-card__head {
  padding: 24px 24px 8px;
}
.form-card__head h2 {
  font-size: 1.4rem;
  margin: 8px 0 6px;
}
.form-card__head p {
  font-size: .95rem;
  margin: 0;
}
.badge {
  display: inline-block;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  font-weight: 600;
  font-size: .8rem;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge--accent {
  background: #fff;
  color: var(--c-accent);
}

.lead-form { padding: 16px 24px 24px; }
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.lead-form label { display: block; margin: 10px 0; font-size: .9rem; color: var(--c-text); font-weight: 500; }
.lead-form label > span { display: block; margin-bottom: 6px; }

/* ===== CF7-Kompatibilität: CF7 wickelt Inhalte automatisch in <p> + <br>. ===== */
.lead-form--cf7 .wpcf7 { margin: 0; }
.lead-form--cf7 form { margin: 0; }
.lead-form--cf7 .screen-reader-response,
.lead-form--cf7 fieldset.hidden-fields-container { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
/* Honeypot komplett verstecken */
.lead-form--cf7 .website-wrap,
.lead-form--cf7 .hp-message,
.lead-form--cf7 .hp-website { position: absolute !important; left: -9999px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
/* 2-Spalten-Layout: das auto-eingefügte <p> in .lead-form__row wird selbst zum Grid */
.lead-form--cf7 .lead-form__row { display: block; }
.lead-form--cf7 .lead-form__row > p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin: 0 0 4px;
  align-items: start;
}
.lead-form--cf7 .lead-form__row > p > br { display: none; }
.lead-form--cf7 .lead-form__row > p > label { margin: 8px 0; min-width: 0; }
/* Einzeilige Felder unterhalb der Zeilen — bündig dazu */
.lead-form--cf7 > .wpcf7 > form > p { margin: 8px 0; }
.lead-form--cf7 .wpcf7-form-control-wrap { display: block; width: 100%; }
.lead-form--cf7 .wpcf7-form-control-wrap > input,
.lead-form--cf7 .wpcf7-form-control-wrap > select,
.lead-form--cf7 .wpcf7-form-control-wrap > textarea { width: 100%; min-width: 0; }
.lead-form--cf7 .wpcf7-form-control.wpcf7-submit {
  display: block; width: 100%; padding: 14px 22px; margin-top: 30px;
  background: var(--c-accent); color: #fff; border: none; border-radius: var(--radius);
  font-weight: 600; font-size: 1.05rem; cursor: pointer;
  transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
  box-shadow: 0 4px 14px rgba(77,107,138,0.35);
}
.lead-form--cf7 .wpcf7-form-control.wpcf7-submit:hover { background: var(--c-accent-2); box-shadow: 0 6px 20px rgba(77,107,138,0.45); transform: translateY(-1px); }
/* Acceptance-Checkbox: CF7 verschachtelt hier mehrere Labels, deshalb gezielt innen layouten. */
.lead-form--cf7 .lead-form__check { display: block; margin: 0; font-size: .88rem; color: var(--c-text-soft); line-height: 1.28; }
.lead-form--cf7 .lead-form__check .wpcf7-list-item { margin: 0; display: block; }
.lead-form--cf7 .lead-form__check .wpcf7-list-item > label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0;
}
.lead-form--cf7 .lead-form__check .wpcf7-list-item-label { display: block; font-weight: 400; padding-top: 0; }
.lead-form--cf7 .lead-form__check input[type="checkbox"] { width: 16px; height: 16px; margin: 2px 0 0; }
/* Der <p> der die Acceptance umschließt soll mehr Abstand nach unten haben */
.lead-form--cf7 > .wpcf7 > form > p:has(.lead-form__check) { margin: 10px 0 34px !important; }
/* Fallback ohne :has() — wir geben dem Submit-<p> oben mehr Luft */
.lead-form--cf7 > .wpcf7 > form > p:has(.wpcf7-submit) { margin-top: 26px; }
/* Validation-/Response-Messages */
.lead-form--cf7 .wpcf7-not-valid-tip { color: #d11f1f; font-size: .82rem; margin-top: 4px; }
.lead-form--cf7 .wpcf7-response-output { margin: 14px 0 0; padding: 12px 14px; border-radius: var(--radius); font-size: .9rem; }
.lead-form--cf7 .wpcf7 form.invalid .wpcf7-response-output,
.lead-form--cf7 .wpcf7 form.unaccepted .wpcf7-response-output { border-color: #d11f1f; background: #fff1f1; color: #b00020; }
.lead-form--cf7 .wpcf7 form.sent .wpcf7-response-output { border-color: #16a34a; background: #ecfdf3; color: #166534; }

/* Mobile: alle 2-Spalten-Zeilen fallen zurück auf 1 Spalte */
@media (max-width: 720px) {
  .lead-form--cf7 .lead-form__row > p { grid-template-columns: 1fr; gap: 0; }
}

.lead-form label > span em {
  font-style: normal;
  font-weight: 400;
  color: var(--c-text-light);
  font-size: .8rem;
  margin-left: 4px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 11px 12px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--c-text);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(77,107,138,0.18);
}
.lead-form input[type="file"] { padding: 8px; }
.lead-form__file small { display: block; margin-top: 6px; color: var(--c-text-soft); font-size: .8rem; }

.lead-form__check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--c-text-soft);
  font-weight: 400 !important;
}
.lead-form__check input { width: auto; margin-top: 3px; }

.lead-form__note {
  text-align: center;
  font-size: .85rem;
  margin-top: 14px;
  color: var(--c-text-soft);
}

.form-success {
  padding: 32px 24px;
  text-align: center;
  background: #f0fdf4;
  border-top: 4px solid #16a34a;
}
.form-success h3 { color: #166534; }

/* ----- Trustbar ----- */
.trustbar {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 22px 0;
}
.trustbar__title {
  text-align: center;
  margin: 0 0 12px;
  color: var(--c-text-soft);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trustbar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}
.trustbar__list li {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-text);
}

/* ----- Sections ----- */
.section { padding: 80px 0; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-bg-dark); color: #fff; }
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: #c9d1de; }

.section__head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__head p { color: var(--c-text-soft); font-size: 1.05rem; }

.section__cta { text-align: center; margin-top: 32px; }

/* ----- Cards ----- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 26px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #d4d8e0;
}
/* Ganze Kachel klickbar: der card__link überdeckt per ::after die komplette Kachel. */
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--c-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--c-accent);
}
.card__icon svg { width: 30px; height: 30px; fill: currentColor; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .95rem; margin-bottom: 14px; }
.card__link { font-weight: 600; }

@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

/* ----- Branchen-Anwendungen ----- */
.appgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.appcard {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.appcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--c-accent);
}
.appcard__icon svg { width: 24px; height: 24px; fill: currentColor; }
.appcard h3 { margin-bottom: 6px; font-size: 1.05rem; }
.appcard p { font-size: .94rem; margin-bottom: 0; }
@media (max-width: 980px) { .appgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .appgrid { grid-template-columns: 1fr; } }

/* ----- Werkstoffe ----- */
.materials {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--c-accent-border);
  border-radius: var(--radius-lg);
  background: var(--c-accent-soft);
}
.materials__title { margin-bottom: 16px; font-size: 1.15rem; }
.materials__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.materials__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--c-text);
  font-size: .95rem;
}
.materials__list svg { width: 20px; height: 20px; flex: 0 0 auto; fill: var(--c-accent); margin-top: 1px; }
@media (max-width: 640px) { .materials__list { grid-template-columns: 1fr; } }

/* ----- USPs ----- */
.usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usp {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.usp__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 12px;
}
@media (max-width: 980px) { .usps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .usps { grid-template-columns: 1fr; } }

/* ----- Express Banner ----- */
.express {
  background: linear-gradient(135deg, var(--c-accent) 0%, #2c3f54 100%);
  color: #fff;
  padding: 56px 0;
}
.express__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.express h2 { color: #fff; margin: 12px 0 8px; }
.express p { color: rgba(255,255,255,0.9); margin: 0; max-width: 56ch; }
.express__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.express__ctas .btn--primary {
  background: #fff;
  color: var(--c-accent);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.express__ctas .btn--primary:hover { background: #f3f4f6; color: var(--c-accent-2); }
@media (max-width: 800px) {
  .express__inner { grid-template-columns: 1fr; }
  .express__ctas { justify-content: flex-start; }
}

/* ----- Steps ----- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.step__num {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(77,107,138,0.35);
}
.step h3 { margin-top: 18px; }
.step__note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--c-text-light);
  font-style: italic;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}

/* ----- Quotes ----- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.quote blockquote {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.6;
  position: relative;
}
.quote blockquote::before {
  content: "“";
  display: block;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--c-accent);
  margin-bottom: -10px;
}
.quote figcaption {
  font-size: .85rem;
  color: var(--c-text-soft);
  font-weight: 600;
}
@media (max-width: 980px) { .quotes { grid-template-columns: 1fr; } }

/* ----- FAQ ----- */
.faq {
  border-top: 1px solid var(--c-border);
  padding: 18px 0;
}
.faq:last-of-type { border-bottom: 1px solid var(--c-border); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--c-accent);
  transition: transform .2s ease;
}
.faq[open] summary::after {
  content: "−";
}
.faq p {
  margin: 14px 0 0;
  color: var(--c-text-soft);
}

/* ----- Kontakt ----- */
.kontakt {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.kontakt__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 16px;
  display: grid;
  gap: 16px;
}
.kontakt__list li {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.kontakt__list strong { color: #fff; font-size: 1.05rem; }
.kontakt__list span { color: #9aa3b2; font-size: .9rem; }
.kontakt__list a { color: #fff; font-weight: 600; }
.kontakt__list a:hover { color: var(--c-accent-light); }
.kontakt__address { color: #9aa3b2; font-size: .9rem; }

.kontakt__cta {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: 90px;
}
.kontakt__cta h3 { margin-bottom: 6px; }
.kontakt__cta .btn { margin-bottom: 10px; }

@media (max-width: 900px) {
  .kontakt { grid-template-columns: 1fr; }
  .kontakt__list li { grid-template-columns: 1fr; }
  .kontakt__cta { position: static; }
}

/* ----- Footer ----- */
.footer {
  background: #0a0c10;
  color: #b8bfca;
  padding: 56px 0 0;
  font-size: .92rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer a { color: #b8bfca; }
.footer a:hover { color: #fff; }
.footer__logo { background: #fff; padding: 8px 12px; border-radius: 8px; margin-bottom: 14px; max-width: 220px; }
.footer__bottom {
  margin-top: 36px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: .85rem;
  color: #6b7280;
}
@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ----- Sticky Mobile-CTA ----- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--c-border);
  padding: 10px 14px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
}
.sticky-cta__phone {
  background: #fff;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.sticky-cta__phone svg { width: 16px; height: 16px; fill: currentColor; }
.sticky-cta__form {
  background: var(--c-accent);
  color: #fff;
}
.sticky-cta__form:hover { color: #fff; text-decoration: none; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ----- Reduce-Motion ----- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
