/* ==========================================================================
   ZUBER UMZÜGE – Design System
   Wird NACH den Webflow-Stylesheets geladen und vereinheitlicht die Seite.
   Reihenfolge: normalize → webflow → neptun.webflow → zuber-design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marke.
     --zu-orange ist der Markenton für Flächen und Icons.
     --zu-orange-text ist derselbe Ton abgedunkelt: Nur so erreicht orange
     Schrift auf Weiss die 4.5:1 aus WCAG AA (#ff580a schafft lediglich 3.16:1). */
  --zu-orange:        #ff580a;
  --zu-orange-text:   #c94300;
  --zu-orange-600:    #e64a00;
  --zu-orange-400:    #ff8a2b;
  --zu-amber:         #ffad0e;
  --zu-gradient:      linear-gradient(100deg, #f04d00 0%, #ff7a00 100%);
  --zu-gradient-hover:linear-gradient(100deg, #d94400 0%, #f06e00 100%);

  /* Navy */
  --zu-navy:          #101828;
  --zu-navy-700:      #1a1a2e;
  --zu-navy-500:      #2d2d50;

  /* Neutral */
  --zu-ink:           #101828;
  --zu-body:          #475467;
  --zu-muted:         #667085;
  --zu-quiet:         #98a2b3;
  --zu-line:          #e4e7ec;
  --zu-line-soft:     #f1f3f6;
  --zu-surface:       #ffffff;
  --zu-surface-alt:   #f7f8fa;

  /* Radien */
  --zu-r-sm:  10px;
  --zu-r-md:  14px;
  --zu-r-lg:  20px;
  --zu-r-xl:  28px;
  --zu-r-pill: 999px;

  /* Schatten */
  --zu-shadow-xs: 0 1px 2px rgba(16, 24, 40, .05);
  --zu-shadow-sm: 0 2px 8px rgba(16, 24, 40, .06);
  --zu-shadow-md: 0 8px 24px rgba(16, 24, 40, .08);
  --zu-shadow-lg: 0 20px 48px rgba(16, 24, 40, .12);
  --zu-shadow-cta: 0 8px 20px rgba(255, 88, 10, .28);

  /* Layout */
  --zu-max:     1240px;
  --zu-gutter:  clamp(20px, 5vw, 48px);
  --zu-section: clamp(64px, 8vw, 104px);

  /* Typo */
  --zu-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --------------------------------------------------------------------------
   2. Basis
   -------------------------------------------------------------------------- */
/* Der Webflow-Export setzte p und h3 auf "Noto Sans Anatolian Hieroglyphs" und
   weitere Elemente auf Dosis bzw. Droid Sans. Die Hieroglyphen-Schrift enthält
   keine lateinischen Zeichen, weshalb der Fliesstext still auf eine System-Sans
   zurückfiel – Überschriften und Text passten dadurch nie zusammen.
   Hier läuft alles auf Montserrat. */
body,
p,
.title6,
.price,
.paragraph-2,
input, select, textarea, button {
  font-family: var(--zu-font);
}

body {
  font-family: var(--zu-font);
  color: var(--zu-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: var(--zu-surface);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--zu-font);
  overflow-wrap: break-word;
  color: var(--zu-ink);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-top: 0;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.3; }
h4 { font-size: 1.125rem; }

p  { color: var(--zu-body); }

.white, .white h1, .white h2, .white h3, h1.white, h2.white, h3.white, p.white { color: #fff; }

/* Sichtbarer Fokus – überall */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--zu-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  [class*="slideup-"],
  [class*="fade-"] { opacity: 1 !important; transform: none !important; }
}

/* Einheitliche Container-Breite */
.container-w1,
.container-w2,
.zu-container {
  width: 100%;
  max-width: var(--zu-max);
  margin-left: auto;
  margin-right: auto;
}
.gutter-outside { padding-left: var(--zu-gutter); padding-right: var(--zu-gutter); }

/* Eyebrow / Section-Label */
.zu-eyebrow,
p.title6 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--zu-orange);
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
.navbar.w-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--zu-line);
  box-shadow: none;
  padding: 0;
  transition: box-shadow .25s ease;
}
.navbar.zu-scrolled { box-shadow: var(--zu-shadow-sm); }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.w-nav-brand .image-15 { height: 44px; width: auto; display: block; }

.nav-menu.w-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
}

.nav-link.w-nav-link {
  font-size: .95rem;
  font-weight: 600;
  color: var(--zu-ink);
  padding: 10px 14px;
  border-radius: var(--zu-r-sm);
  transition: color .18s ease, background-color .18s ease;
}
.nav-link.w-nav-link:hover { color: var(--zu-orange); background: var(--zu-surface-alt); }
.nav-link.w-nav-link.w--current { color: var(--zu-ink); background: transparent; }
.nav-link.w-nav-link.zu-current { color: var(--zu-orange); background: transparent; }
.nav-link.w-nav-link.zu-current:hover { color: var(--zu-orange); }

/* Express-Anfrage in der Nav – zweiter, leichterer Einstieg neben dem Haupt-CTA */
.zu-nav-express {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--zu-font);
  font-size: .95rem;
  font-weight: 700;
  color: var(--zu-ink);
  background: transparent;
  padding: 10px 18px;
  border: 1px solid var(--zu-line);
  border-radius: var(--zu-r-pill);
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.zu-nav-express:hover { border-color: var(--zu-orange); color: var(--zu-orange-text); background: #fff7f2; }
.zu-nav-express svg { width: 16px; height: 16px; flex: none; color: var(--zu-orange); }

.nav-padding.button-main {
  margin-left: 4px;
  white-space: nowrap;
  flex: none;
}
.zu-nav-express { flex: none; }

.menu-button.w-nav-button { border-radius: var(--zu-r-sm); padding: 12px; }
.menu-button.w-nav-button.w--open { background: var(--zu-navy); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.button-main,
.button-main.w-button,
.zu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--zu-gradient);
  background-image: var(--zu-gradient);
  color: #fff !important;
  font-family: var(--zu-font);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  padding: 15px 28px;
  border: 0;
  border-radius: var(--zu-r-pill);
  box-shadow: var(--zu-shadow-cta);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-image .18s ease;
}
.button-main:hover,
.zu-btn:hover {
  background-image: var(--zu-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 88, 10, .34);
  color: #fff !important;
}
.button-main:active, .zu-btn:active { transform: translateY(0); }

.button-main.big, .zu-btn.zu-btn-lg { padding: 18px 36px; font-size: 1.06rem; }
.button-main.nav-padding { padding: 13px 24px; font-size: .95rem; box-shadow: var(--zu-shadow-cta); }

/* Sekundär – Outline */
.zu-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  padding: 15px 28px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  border-radius: var(--zu-r-pill);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.zu-btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff !important;
}
.zu-btn-ghost.zu-on-light {
  color: var(--zu-ink) !important;
  border-color: var(--zu-line);
}
.zu-btn-ghost.zu-on-light:hover { background: var(--zu-surface-alt); border-color: var(--zu-ink); color: var(--zu-ink) !important; }

/* Textlink mit Pfeil */
.zu-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--zu-orange) !important;
  text-decoration: none !important;
}
.zu-link-arrow svg { transition: transform .2s ease; }
.zu-link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Hero mit Offerten-Formular
   -------------------------------------------------------------------------- */
.zu-hero {
  position: relative;
  isolation: isolate;
  background: var(--zu-navy);
  padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.zu-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../images/Group-1.png');
  background-size: cover;
  background-position: 34% 42%;
}
.zu-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(92deg, rgba(16, 24, 40, .94) 0%, rgba(16, 24, 40, .82) 38%, rgba(16, 24, 40, .42) 70%, rgba(16, 24, 40, .3) 100%);
}

.zu-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 400px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.zu-hero__copy { max-width: 620px; }

.zu-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  padding: 8px 16px 8px 10px;
  border-radius: var(--zu-r-pill);
  backdrop-filter: blur(6px);
  margin-bottom: 26px;
}
.zu-rating svg { color: var(--zu-amber); flex: none; }

.zu-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.07;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.zu-hero__lead {
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  max-width: 34em;
  margin-bottom: 32px;
}

.zu-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.zu-hero__assurances {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  font-weight: 500;
  list-style: none;
  padding: 0;
  margin: 0;
}
.zu-hero__assurances li { display: flex; align-items: center; gap: 8px; }
.zu-hero__assurances li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--zu-orange);
  flex: none;
}

/* Formular-Karte */
.zu-quote {
  background: #fff;
  border-radius: var(--zu-r-xl);
  padding: clamp(24px, 2.4vw, 32px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
  scroll-margin-top: 96px;
}
.zu-quote h2 {
  font-size: 1.6rem;
  letter-spacing: -.025em;
  margin-bottom: 4px;
}
.zu-quote__sub {
  font-size: .92rem;
  color: var(--zu-muted);
  margin: 0 0 22px;
}

.zu-field { margin-bottom: 15px; }
.zu-field > label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--zu-ink);
  margin-bottom: 6px;
}

.zu-input-wrap { position: relative; display: block; }
.zu-input-wrap > svg {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--zu-quiet);
  pointer-events: none;
}

.zu-quote input,
.zu-quote select {
  width: 100%;
  height: 50px;
  font-family: var(--zu-font);
  font-size: .96rem;
  color: var(--zu-ink);
  background: var(--zu-surface-alt);
  border: 1.5px solid var(--zu-line);
  border-radius: var(--zu-r-md);
  padding: 0 16px 0 44px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  appearance: none;
  -webkit-appearance: none;
}
.zu-quote select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.zu-quote input:hover,
.zu-quote select:hover { border-color: #d0d5dd; }
.zu-quote input:focus,
.zu-quote select:focus {
  outline: none;
  background: #fff;
  border-color: var(--zu-orange);
  box-shadow: 0 0 0 4px rgba(255, 88, 10, .12);
}
.zu-quote input::placeholder { color: var(--zu-quiet); }
.zu-quote input[type="date"] { padding-left: 44px; }
.zu-quote input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0; cursor: pointer; }

.zu-field.zu-invalid input,
.zu-field.zu-invalid select { border-color: #d92d20; background: #fffbfa; }
.zu-field__error {
  display: none;
  font-size: .8rem;
  font-weight: 600;
  color: #d92d20;
  margin-top: 5px;
}
.zu-field.zu-invalid .zu-field__error { display: block; }

.zu-quote__submit { width: 100%; margin-top: 8px; }
.zu-quote__note {
  text-align: center;
  font-size: .82rem;
  color: var(--zu-muted);
  margin: 12px 0 0;
}

/* --------------------------------------------------------------------------
   6. Trust-Leiste
   -------------------------------------------------------------------------- */
.zu-trustbar { background: var(--zu-navy-700); }
.zu-trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  align-items: center;
}
.zu-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}
.zu-trust:first-child { border-left: 0; }
.zu-trust__icon { color: var(--zu-orange); flex: none; }
.zu-trust__icon svg { width: 34px; height: 34px; display: block; }
.zu-trust > span:last-child { min-width: 0; }
.zu-trust__value {
  display: block;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.zu-trust__label {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: .84rem;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   7. Sektionen – einheitlicher Rhythmus
   -------------------------------------------------------------------------- */
.zu-section { padding: var(--zu-section) 0; }
.zu-section--alt { background: var(--zu-surface-alt); }
.zu-section--navy { background: var(--zu-navy); }

.zu-section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}
.zu-section__head p { font-size: 1.05rem; margin-bottom: 0; }
.zu-section__head h2 { margin-bottom: 14px; }

.zu-accent { color: var(--zu-orange); }
.text-span { color: var(--zu-orange); }

/* Unterstrichener Akzent unter dem Keyword */
.zu-underline {
  position: relative;
  color: var(--zu-orange);
  white-space: nowrap;
}
.zu-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.12em;
  height: 4px;
  border-radius: 2px;
  background: var(--zu-gradient);
  opacity: .85;
}

/* --------------------------------------------------------------------------
   8. Schritte (1 → 2 → 3)
   -------------------------------------------------------------------------- */
.zu-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}
.zu-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--zu-line);
  border-radius: var(--zu-r-lg);
  padding: 34px 30px 30px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.zu-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--zu-shadow-md);
  border-color: #fcd9c4;
}
.zu-step__num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--zu-gradient);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--zu-shadow-cta);
}
.zu-step__icon {
  width: 62px;
  height: 62px;
  margin: 8px auto 18px;
  display: grid;
  place-items: center;
  background: #fff4ec;
  color: var(--zu-orange);
  border-radius: var(--zu-r-md);
}
.zu-step__icon svg { width: 30px; height: 30px; }
.zu-step h3 { margin-bottom: 10px; }
.zu-step p { font-size: .96rem; margin: 0; }

/* --------------------------------------------------------------------------
   9. Karten – Services & Vorteile
   -------------------------------------------------------------------------- */
.benfit-landing-grid-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid var(--zu-line);
  border-radius: var(--zu-r-lg);
  padding: 32px 26px;
  height: 100%;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.benfit-landing-grid-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--zu-shadow-md);
  border-color: #fcd9c4;
}
.benfit-landing-grid-wrapper img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: none;
  margin: 0 0 18px;
}
.benfit-landing-grid-wrapper h3 { margin-bottom: 8px; }
.benfit-landing-grid-wrapper p { font-size: .95rem; margin-bottom: 0; }
.benfit-landing-grid-wrapper.no-boarder { border: 1px solid var(--zu-line); }

.landing-service-grid-wrapper {
  background: #fff;
  border: 1px solid var(--zu-line);
  border-radius: var(--zu-r-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.landing-service-grid-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--zu-shadow-lg);
  border-color: #fcd9c4;
}
.landing-service-grid-wrapper > a { display: block; overflow: hidden; }
.landing-service-grid-wrapper > a > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}
.landing-service-grid-wrapper:hover > a > img { transform: scale(1.05); }
.landing-service-grid-content-wrapper {
  padding: 24px 24px 26px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.landing-service-grid-content-wrapper h3 { margin-bottom: 8px; }
.landing-service-grid-content-wrapper h3 a { color: var(--zu-ink) !important; text-decoration: none !important; }
.landing-service-grid-content-wrapper h3 a:hover { color: var(--zu-orange) !important; }
.landing-service-grid-content-wrapper p { font-size: .95rem; margin-bottom: 0; }
.landing-service-grid-content-wrapper .image {
  width: 26px;
  height: auto;
  margin: auto auto 0;
  transition: transform .2s ease;
}
.landing-service-grid-wrapper:hover .image { transform: translateX(4px); }

.produkt-grid-wrapper {
  background: #fff;
  border: 1px solid var(--zu-line);
  border-radius: var(--zu-r-lg);
  padding: 28px 24px;
  height: 100%;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.produkt-grid-wrapper:hover { transform: translateY(-4px); box-shadow: var(--zu-shadow-md); border-color: #fcd9c4; }
.produkt-grid-wrapper img { width: 42px; height: 42px; object-fit: contain; }
.produkt-grid-wrapper .price { color: var(--zu-orange); font-size: 1.2rem; font-weight: 800; margin: 0; }
.produkt-grid-wrapper .copy-small { color: var(--zu-muted); font-size: .82rem; margin: 2px 0 0; }

/* Bild-/Text-Blöcke */
.landing-about img,
.landing-benefit img,
.hero-about.picture img { border-radius: var(--zu-r-lg); }

/* --------------------------------------------------------------------------
   10. FAQ / Accordion
   -------------------------------------------------------------------------- */
.accordion-item-wrapper---brix { max-width: 860px; margin: 0 auto; }
.accordion-item---brix {
  background: #fff;
  border: 1px solid var(--zu-line) !important;
  border-radius: var(--zu-r-md);
  margin-bottom: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.accordion-item---brix:hover { border-color: #d0d5dd !important; box-shadow: var(--zu-shadow-xs); }
.accordion-trigger---brix { padding: 20px 24px; cursor: pointer; }
.accordion-item-title---brix {
  font-family: var(--zu-font);
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--zu-ink);
  letter-spacing: -.01em;
}
.accordion-arrow-wrap---brix {
  background: var(--zu-surface-alt) !important;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  flex: none;
}
.accordion-paragraph---brix {
  font-size: .98rem;
  color: var(--zu-body);
  padding: 0 24px 22px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. CTA-Band
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  isolation: isolate;
  background-color: var(--zu-navy);
  background-size: cover;
  background-position: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 24, 40, .88) 0%, rgba(16, 24, 40, .92) 100%);
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .82); max-width: 46em; margin-left: auto; margin-right: auto; }

.strich {
  height: 4px;
  border-radius: 2px;
  background: var(--zu-gradient);
  margin: 0 auto;
}
.strich._80 { width: 80px; }
.strich._60 { width: 60px; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.footer-dark {
  background: var(--zu-navy) !important;
  border: none !important;
  padding: clamp(56px, 6vw, 76px) var(--zu-gutter) 24px !important;
}
.footer-dark .container { max-width: var(--zu-max); margin: 0 auto; }
.footer-dark .footer-wrapper-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}
.footer-dark .footer-brand img { height: 42px; width: auto; }
.footer-dark .footer-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, auto));
  gap: 48px;
}
.footer-dark a { transition: color .18s ease; }
.footer-dark a:hover { color: var(--zu-orange) !important; }


/* --------------------------------------------------------------------------
   14. Webflow-Layout einfangen
   Der Export positioniert einzelne Blöcke absolut bzw. mit negativen Offsets,
   passend zum alten Hero. Hier werden sie zu regulären Sektionen begradigt.
   -------------------------------------------------------------------------- */
.benefits-landing-wrapper,
.benefits-landing-wrapper.container-w2.gutter-outside {
  position: static;
  inset: auto;
  bottom: auto;
  margin-top: 0;
  background-color: transparent;
  box-shadow: none;
  padding-top: 0;
  padding-bottom: 0;
}

/* Grid-Zellen dehnen, damit Karten in einer Reihe gleich hoch sind */
.w-layout-cell { align-items: stretch; width: 100%; }
/* Buttons behalten ihre natürliche Breite, statt mitgedehnt zu werden */
.w-layout-cell .button-main,
.w-layout-cell .zu-btn,
.w-layout-cell .zu-link-arrow { align-self: flex-start; width: auto; }
.w-layout-cell.centered .button-main,
.landing-service-grid-content-wrapper .zu-link-arrow { align-self: center; }
.w-layout-cell > div,
.w-layout-cell > .benfit-landing-grid-wrapper,
.w-layout-cell > .landing-service-grid-wrapper,
.w-layout-cell > .produkt-grid-wrapper { width: 100%; }

/* Webflow-Abstandshalter innerhalb von Karten – die Karten bringen ihren
   eigenen Rhythmus über Margins mit. */
.benfit-landing-grid-wrapper .p-xs-end,
.benfit-landing-grid-wrapper .p-sm-start,
.landing-service-grid-content-wrapper .p-xs-end,
.produkt-grid-wrapper .p-xs-end { padding: 0; }
.landing-service-grid-content-wrapper .p-sm-start { padding-top: 16px; }

/* Einheitliche Grid-Abstände statt Webflow-Standard */
.quick-stack,
.quick-stack-2,
.quick-stack-4,
.quick-stack-5 { gap: clamp(20px, 2.4vw, 28px); }

/* Sektions-Abstände der Webflow-Sektionen angleichen */
.landing-service,
.landing-about,
.landing-benefit,
.landing-faq,
.landing-verpackung { padding: var(--zu-section) 0; }
.landing-service .p-xl-start,
.landing-about .p-xl-start,
.landing-benefit .p-xl-start,
.landing-faq .p-xl-start,
.landing-verpackung .p-xl-start,
.landing-service .p-md-start,
.landing-about .p-md-start,
.landing-benefit .p-md-start,
.landing-faq .p-md-start,
.landing-verpackung .p-md-start { padding: 0; }
.cta .p-xl-start { padding-top: clamp(64px, 7vw, 92px); }

/* Text-/Bild-Blöcke: vertikal zentriert statt oben bündig */
.bild-links > .w-layout-cell,
.quick-stack-5 > .w-layout-cell { justify-content: center; }
.landing-about img,
.landing-benefit img { width: 100%; height: auto; display: block; }


/* --------------------------------------------------------------------------
   15. Links im Fliesstext
   Bis anhin über neun leicht abweichende Inline-Blöcke pro Seite geregelt –
   hier einmal zentral.
   -------------------------------------------------------------------------- */
a { color: var(--zu-orange-text); }
a:hover { color: var(--zu-orange-600); }

section p a,
.accordion-paragraph---brix a,
.ratgeber-content a {
  color: var(--zu-orange-text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
section p a:hover,
.accordion-paragraph---brix a:hover,
.ratgeber-content a:hover { color: var(--zu-orange); }

/* Auf dunklen Flächen: Links hell, damit sie lesbar bleiben */
.zu-hero a:not(.button-main):not(.zu-btn-ghost),
.hero-landing a:not(.button-main),
.hero-about a:not(.button-main),
.cta a:not(.button-main),
.cta p a {
  color: #ffc48a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.zu-hero a:not(.button-main):not(.zu-btn-ghost):hover,
.hero-landing a:not(.button-main):hover,
.hero-about a:not(.button-main):hover,
.cta a:not(.button-main):hover { color: #fff; }

/* Buttons bleiben immer weiss auf Orange */
.button-main, .button-main:hover, .cta .button-main, .hero-about .button-main { color: #fff !important; text-decoration: none !important; }

/* Links in Karten-Beschreibungen ruhig halten – die Karte selbst führt weiter */
.landing-service-grid-content-wrapper p a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 88, 10, .45);
  text-underline-offset: 3px;
}
.landing-service-grid-content-wrapper p a:hover {
  color: var(--zu-orange-text);
  text-decoration-color: var(--zu-orange);
}

/* --------------------------------------------------------------------------
   16. Wiederkehrende Bausteine der Unterseiten
   -------------------------------------------------------------------------- */
.footer-block.hide { display: block; }
.footer-block.hide .footer-link { display: block; margin-bottom: 8px; }
.footer-brand { margin-right: 40px; min-width: 140px; }
.footer-wrapper-2 { gap: 32px; }

/* FAQ-Karten */
.faq-card {
  background: #fff;
  border: 1px solid var(--zu-line);
  border-left: 4px solid var(--zu-orange);
  border-radius: var(--zu-r-md);
  padding: 24px 28px;
  margin-bottom: 14px;
}
.faq-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.faq-card p { margin-bottom: 0; }

/* Preistabellen – auf schmalen Displays scrollt die Tabelle statt der Seite */
.zu-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}
.zu-table-scroll .price-table { margin: 0; min-width: 520px; }

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  border: 1px solid var(--zu-line);
  border-radius: var(--zu-r-md);
  overflow: hidden;
  font-size: .96rem;
}
.price-table th,
.price-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--zu-line); }
.price-table th {
  background: var(--zu-navy);
  color: #fff;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 0;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: var(--zu-surface-alt); }
.price-table .price-highlight { font-weight: 800; color: var(--zu-ink); }
.price-table a { color: var(--zu-orange-text); font-weight: 600; }

/* Kennzahlen */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 40px 0;
}
.stat-item h3 { font-size: clamp(2rem, 3.4vw, 2.6rem); color: var(--zu-orange); margin-bottom: 6px; }
.stat-item p { color: var(--zu-muted); font-size: .95rem; margin: 0; }

/* Ratgeber-Fliesstext */
.ratgeber-content { max-width: 760px; margin: 0 auto; }
.ratgeber-content h2 { margin-top: 48px; }
.ratgeber-content h3 { margin-top: 28px; }
.ratgeber-content p { margin-bottom: 16px; }
.ratgeber-content ul, .ratgeber-content ol { margin-bottom: 20px; padding-left: 22px; }
.ratgeber-content li { margin-bottom: 8px; }

.check-list { padding-left: 22px; }
.check-list li { margin-bottom: 8px; }

/* Service-Karten: Inhalt sitzt unter dem Bild statt als zweite Box darüber */
.landing-service-grid-content-wrapper {
  background-color: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
}
.landing-service-grid-content-wrapper .zu-link-arrow { margin-top: auto; padding-top: 16px; }

/* --------------------------------------------------------------------------
   17. Dankeseite
   -------------------------------------------------------------------------- */
.thankyou-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px var(--zu-gutter);
  background: var(--zu-surface-alt);
}
.thankyou-card {
  background: #fff;
  border: 1px solid var(--zu-line);
  border-radius: var(--zu-r-xl);
  padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 44px);
  max-width: 600px;
  box-shadow: var(--zu-shadow-lg);
}
.thankyou-icon {
  width: 76px;
  height: 76px;
  background: var(--zu-gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: #fff;
}
.thankyou-card h1 { font-size: clamp(1.7rem, 3.4vw, 2.1rem); margin-bottom: 14px; }
.thankyou-card p { margin-bottom: 22px; }
.thankyou-card .highlight {
  background: #fff5ee;
  border-left: 4px solid var(--zu-orange);
  border-radius: var(--zu-r-sm);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 30px;
}
.thankyou-card .highlight strong { color: var(--zu-orange); }
.thankyou-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--zu-gradient);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: var(--zu-r-pill);
  box-shadow: var(--zu-shadow-cta);
  transition: transform .18s ease, box-shadow .18s ease;
}
.thankyou-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 88, 10, .34); }
.thankyou-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--zu-orange);
  text-decoration: none;
}


/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.zu-footer {
  background: var(--zu-navy);
  padding: clamp(56px, 6vw, 76px) var(--zu-gutter) 26px;
  color: rgba(255, 255, 255, .62);
}
.zu-footer__inner { max-width: var(--zu-max); margin: 0 auto; }
.zu-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: clamp(36px, 5vw, 72px);
}
.zu-footer__brand img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.zu-footer__address {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .62);
  margin: 18px 0 16px;
}
.zu-footer__phone {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zu-orange);
  text-decoration: none;
}
.zu-footer__mail {
  display: inline-block;
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  margin-top: 4px;
}
.zu-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}
.zu-footer__title {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.zu-footer__link {
  display: block;
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .18s ease;
}
.zu-footer__link:hover { color: var(--zu-orange); }
.zu-footer__link.is-accent { color: var(--zu-orange); font-weight: 600; }

.zu-footer__bottom {
  max-width: var(--zu-max);
  margin: 40px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}
.zu-footer__bottom a { color: var(--zu-orange); text-decoration: none; }

@media (max-width: 860px) {
  .zu-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .zu-footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 480px) {
  .zu-footer__cols { grid-template-columns: 1fr; }
}


/* --------------------------------------------------------------------------
   19. Unterseiten-Hero
   Gleiche Bildsprache wie die Startseite: Foto, dunkler Verlauf, klare Typo.
   -------------------------------------------------------------------------- */
.hero-about,
.hero-landing {
  position: relative;
  isolation: isolate;
  height: auto;
  min-height: 0;
  background-color: var(--zu-navy);
  background-size: cover;
  background-position: 50% 45%;
  background-repeat: no-repeat;
  padding: clamp(64px, 8vw, 104px) 0;
  text-align: center;
}
.hero-about::before,
.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 24, 40, .74) 0%, rgba(16, 24, 40, .84) 100%);
}
/* Das Panorama ist sehr breit – dieser Ausschnitt zeigt Team und Abendlicht. */
.hero-about.services { background-position: 33% center; background-repeat: no-repeat; }

.hero-about-wrapper,
.hero-landing-wrapper {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-about-wrapper > *,
.hero-landing-wrapper > * { max-width: 100%; }
.hero-about h1,
.hero-landing h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-about p,
.hero-landing p {
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  max-width: 46em;
  margin-bottom: 0;
}
.hero-about .button-main,
.hero-landing .button-main { margin-top: 30px; }
.hero-about .strich,
.hero-landing .strich { margin-bottom: 26px; }

/* Webflow-Abstandshalter im Hero: das Padding der Sektion regelt den Raum */
.hero-about .p-xl-start,
.hero-about .p-md-start,
.hero-about .p-sm-start,
.hero-landing .p-xl-start,
.hero-landing .p-md-start { padding: 0; }
.hero-about .p-xs-end,
.hero-landing .p-xs-end { padding: 0; }


/* --------------------------------------------------------------------------
   20. Fehlende Spaltendefinitionen
   Der Webflow-Export bringt die Spalten über generierte #w-node-Regeln mit.
   Auf den meisten Unterseiten fehlen diese IDs, wodurch jedes Raster einspaltig
   umbricht. Die Klassen bekommen deshalb hier verlässliche Vorgaben.
   -------------------------------------------------------------------------- */
.w-layout-layout.bild-links,
.w-layout-layout.bild-rechts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
}
.w-layout-layout.quick-stack-4,
.w-layout-layout.quick-stack-7,
.w-layout-layout.quick-stack-8,
.w-layout-layout.quick-stack-12,
.w-layout-layout.quick-stack-13 {
  grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 26vw, 300px), 1fr));
}
.w-layout-layout { padding: 0; }

/* Bilder in Text-/Bild-Blöcken: eigene Form beibehalten, nur Breite begrenzen */
.bild-links > .w-layout-cell > img,
.bild-rechts > .w-layout-cell > img {
  width: 100%;
  height: auto;
  max-width: 560px;
  display: block;
}

@media (max-width: 860px) {
  .w-layout-layout.bild-links,
  .w-layout-layout.bild-rechts { grid-template-columns: 1fr; }
  .bild-links > .w-layout-cell > img,
  .bild-rechts > .w-layout-cell > img { max-width: 460px; margin: 0 auto; }
}


/* --------------------------------------------------------------------------
   21. Kontaktformular
   -------------------------------------------------------------------------- */
.uui-field-label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--zu-ink);
  margin-bottom: 6px;
  display: block;
}
.uui-form_input-2,
.uui-form_input-2.w-input {
  width: 100%;
  min-height: 50px;
  font-family: var(--zu-font);
  font-size: .96rem;
  color: var(--zu-ink);
  background: var(--zu-surface-alt);
  border: 1.5px solid var(--zu-line);
  border-radius: var(--zu-r-md);
  padding: 13px 16px;
  margin-bottom: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.uui-form_input-2:hover { border-color: #d0d5dd; }
.uui-form_input-2:focus,
.uui-form_input-2.w-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--zu-orange);
  box-shadow: 0 0 0 4px rgba(255, 88, 10, .12);
}
.uui-form_input-2.text-area { min-height: 150px; resize: vertical; padding-top: 13px; }
.uui-form-field-wrapper { margin-bottom: 16px; }
.uui-contact03_form .button-main { width: 100%; margin-top: 8px; }

.zu-contact-icon { width: 26px; height: 26px; color: var(--zu-orange); flex: none; }
.grid-contact-wrapper { display: flex; align-items: center; gap: 14px; }
.link-block-12 { text-decoration: none; }
.link-block-12 .contact-link { color: var(--zu-ink); font-weight: 600; margin: 0; }
.link-block-12:hover .contact-link { color: var(--zu-orange); }
.div-block-26 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 560px) {
  .div-block-26 { grid-template-columns: 1fr; gap: 0; }
}


/* --------------------------------------------------------------------------
   22. Express-Anfrage
   Kurzer Rückruf-Wunsch: nur Name und Telefonnummer.
   -------------------------------------------------------------------------- */
.zu-express-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--zu-gutter);
  background: rgba(16, 24, 40, .6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .2s ease;
}
.zu-express-overlay[hidden] { display: none; }
.zu-express-overlay.is-open { opacity: 1; }

.zu-express {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--zu-r-xl);
  padding: clamp(28px, 4vw, 38px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
  transform: translateY(16px);
  transition: transform .25s cubic-bezier(.22, .61, .36, 1);
}
.zu-express-overlay.is-open .zu-express { transform: translateY(0); }

.zu-express h2 {
  font-size: 1.55rem;
  letter-spacing: -.025em;
  margin-bottom: 6px;
  padding-right: 36px;
}
.zu-express__sub {
  font-size: .93rem;
  color: var(--zu-muted);
  line-height: 1.55;
  margin: 0 0 24px;
}

.zu-express__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--zu-surface-alt);
  color: var(--zu-muted);
  font-size: 22px;
  line-height: 1;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.zu-express__close:hover { background: var(--zu-line); color: var(--zu-ink); }

.zu-express .zu-field > label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--zu-ink);
  margin-bottom: 6px;
}
.zu-express input {
  width: 100%;
  height: 50px;
  font-family: var(--zu-font);
  font-size: .96rem;
  color: var(--zu-ink);
  background: var(--zu-surface-alt);
  border: 1.5px solid var(--zu-line);
  border-radius: var(--zu-r-md);
  padding: 0 16px 0 44px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.zu-express input:hover { border-color: #d0d5dd; }
.zu-express input:focus {
  outline: none;
  background: #fff;
  border-color: var(--zu-orange);
  box-shadow: 0 0 0 4px rgba(255, 88, 10, .12);
}
.zu-express input::placeholder { color: var(--zu-quiet); }

.zu-express__submit { width: 100%; margin-top: 10px; }
.zu-express__note {
  text-align: center;
  font-size: .86rem;
  color: var(--zu-muted);
  margin: 14px 0 0;
}
.zu-express__legal {
  text-align: center;
  font-size: .76rem;
  line-height: 1.5;
  color: var(--zu-quiet);
  margin: 12px 0 0;
}
.zu-express__legal a { color: var(--zu-muted); text-decoration: underline; }
.zu-express__legal a:hover { color: var(--zu-orange-text); }
.zu-express__note a {
  color: var(--zu-orange-text);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.zu-express__note a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .zu-express { padding: 26px 20px; border-radius: var(--zu-r-lg); }
}


/* --------------------------------------------------------------------------
   23. Rechtstexte (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.zu-legal {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}
.zu-legal h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin-top: 52px;
  margin-bottom: 14px;
}
.zu-legal h2:first-of-type { margin-top: 0; }
.zu-legal h3 {
  font-size: 1.08rem;
  margin-top: 30px;
  margin-bottom: 8px;
}
.zu-legal p { margin-bottom: 16px; }
.zu-legal ul { margin: 0 0 18px; padding-left: 22px; }
.zu-legal li { margin-bottom: 9px; }
.zu-legal a { color: var(--zu-orange-text); }

.zu-legal__intro {
  background: var(--zu-surface-alt);
  border-left: 4px solid var(--zu-orange);
  border-radius: var(--zu-r-md);
  padding: 20px 24px;
  margin-bottom: 44px;
}
.zu-legal__intro p { margin-bottom: 0; }

/* Kontaktblock im Impressum */
.zu-legal__facts {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 10px 28px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.zu-legal__facts dt,
.zu-legal__facts > .zu-legal__key {
  font-weight: 700;
  color: var(--zu-ink);
}
.zu-legal__facts dd { margin: 0; }

.zu-legal__updated {
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--zu-line);
  font-size: .9rem;
  color: var(--zu-muted);
}

@media (max-width: 560px) {
  .zu-legal__facts { grid-template-columns: 1fr; gap: 2px 0; }
  .zu-legal__facts dd { margin-bottom: 14px; }
}

/* --------------------------------------------------------------------------
   13. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .zu-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .zu-hero__copy { max-width: none; }
  .zu-quote { max-width: 520px; }
  .zu-trustbar__grid { grid-template-columns: repeat(2, 1fr); justify-content: stretch; }
  .zu-trust:nth-child(3) { border-left: 0; }
  .zu-trust:nth-child(3), .zu-trust:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .1); }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .nav-menu.w-nav-menu { gap: 0; }
  .nav-link.w-nav-link { padding: 10px 9px; font-size: .9rem; }
  .zu-nav-express { padding: 10px 14px; font-size: .9rem; }
  .nav-padding.button-main { padding: 12px 18px; font-size: .9rem; }
}

@media (max-width: 991px) {
  .nav-menu.w-nav-menu {
    display: block;
    background: #fff;
    border-top: 1px solid var(--zu-line);
    box-shadow: var(--zu-shadow-md);
    padding: 12px var(--zu-gutter) 24px;
  }
  .nav-link.w-nav-link { display: block; padding: 14px 0; border-bottom: 1px solid var(--zu-line-soft); border-radius: 0; }
  .nav-link.w-nav-link:hover { background: transparent; }
  .zu-nav-express { display: inline-flex; margin: 16px 0 12px; }
  .nav-padding.button-main { display: block; margin: 0; text-align: center; }
  .zu-steps { grid-template-columns: 1fr; gap: 34px; }
  .zu-step { padding-top: 32px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .zu-hero { padding-top: 36px; }
  .zu-hero__bg { background-position: 70% center; }
  .zu-hero__scrim { background: linear-gradient(180deg, rgba(16, 24, 40, .72) 0%, rgba(16, 24, 40, .9) 55%, rgba(16, 24, 40, .94) 100%); }
  .zu-hero__actions .button-main,
  .zu-hero__actions .zu-btn-ghost { width: 100%; }
  .zu-trustbar__grid { grid-template-columns: 1fr; justify-content: stretch; }
  .zu-trust { border-left: 0 !important; border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 4px; }
  .zu-trust:first-child { border-top: 0; }
  .zu-quote { padding: 22px 20px; border-radius: var(--zu-r-lg); }
  .footer-dark .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .price-table { font-size: .88rem; }
  .price-table th, .price-table td { padding: 12px 14px; }
}
