/* ==========================================================================
   Zink Management - Theme Stylesheet
   Vanilla CSS mit Custom Properties; ohne Framework-Abhängigkeit.
   ========================================================================== */

:root {
  --brand-900: #0e1a26;
  --brand-800: #142639;
  --brand-700: #1b3650;
  --brand-600: #28547a;
  --brand-500: #4a6f8e;
  --brand-300: #95acc1;
  --brand-100: #dde5ed;
  --brand-50:  #f3f6f9;

  --accent-700: #8a5b21;
  --accent-600: #a86c25;
  --accent-500: #c8841f;
  --accent-400: #dca54a;
  --accent-100: #f6e6cc;
  --accent-50:  #fbf5e9;

  --text:        #16212d;
  --text-muted:  #54667a;
  --text-light:  #94a4b6;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255,255,255,.78);

  --bg:        #ffffff;
  --bg-grey:   #f6f8fb;
  --bg-dark:   var(--brand-900);

  --border:    #e5ebf1;
  --border-strong: #c8d3df;

  --shadow-sm: 0 1px 2px rgba(14,26,38,.06);
  --shadow-md: 0 8px 24px rgba(14,26,38,.08);
  --shadow-lg: 0 16px 48px rgba(14,26,38,.12);

  --radius-sm: .375rem;
  --radius:    .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --container:        1200px;
  --container-narrow: 880px;
  --gap:              clamp(1rem, 1.2vw, 1.5rem);

  --header-height: 76px;
  --top-bar-height: 38px;

  --font-sans:    'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Source Serif 4', Georgia, "Times New Roman", serif;

  --transition: 200ms cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(.9375rem, .88rem + .3vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, picture, video { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-500); }
strong { font-weight: 600; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -.005em;
  color: var(--brand-900);
  margin: 0;
  line-height: 1.18;
}
h1 { font-size: clamp(2rem, 1.6rem + 2.2vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem); }
h4 { font-size: clamp(1rem, .95rem + .25vw, 1.15rem); }

p { margin: 0 0 1em; }

.skip-link {
  position: absolute; left: 1rem; top: -120%;
  background: var(--brand-900); color: #fff; padding: .5rem 1rem; border-radius: .5rem; z-index: 9999;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* Container =============================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.75rem);
}
.container--narrow { max-width: var(--container-narrow); }

/* Buttons ================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-size: .95rem; line-height: 1.2;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn .zm-icon { width: 1.05em; height: 1.05em; display: inline-flex; }
.btn .zm-icon__svg { width: 100%; height: 100%; }
.btn--primary { background: var(--brand-700); color: #fff; }
.btn--primary:hover { background: var(--brand-900); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--accent-500); color: var(--brand-900); }
.btn--accent:hover { background: var(--accent-600); color: var(--brand-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--brand-700); border-color: var(--border-strong); }
.btn--outline:hover { color: var(--brand-900); border-color: var(--brand-700); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.85); color: #fff; }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; }
.btn--sm { padding: .6rem 1.05rem; font-size: .85rem; }
.btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* Icons =================================================================== */
.zm-icon { display: inline-flex; width: 1.25rem; height: 1.25rem; color: currentColor; flex: none; }
.zm-icon__svg { width: 100%; height: 100%; }

/* Top Bar ================================================================= */
.top-bar {
  background: var(--brand-900);
  color: #fff;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--top-bar-height); padding-block: .25rem;
}
.top-bar__tagline { color: rgba(255,255,255,.7); letter-spacing: .02em; }
.top-bar__contact { display: flex; gap: 1.5rem; }
.top-bar__link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.top-bar__link:hover { color: var(--accent-400); }
.top-bar__link .zm-icon { width: 1rem; height: 1rem; }
@media (max-width: 768px) {
  .top-bar__tagline { display: none; }
  .top-bar__contact { gap: 1rem; }
  .top-bar__link span:not(.zm-icon) { display: none; }
  .top-bar__link .zm-icon { width: 1.1rem; height: 1.1rem; }
}

/* Header ================================================================== */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-height);
}
.header__logo {
  display: inline-flex; align-items: center; gap: .75rem;
  color: var(--brand-900); font-weight: 700; flex: 0 0 auto;
}
.header__logo:hover { color: var(--brand-700); }
.header__logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: #fff; border-radius: .65rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em;
  box-shadow: var(--shadow-sm);
}
.header__logo-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.header__logo-name { font-size: 1.15rem; font-family: var(--font-heading); font-weight: 700; color: var(--brand-900); }
.header__logo-sub  { font-size: .72rem; color: var(--text-muted); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-top: .15rem; }
.custom-logo { max-height: 52px; width: auto; }

.nav { flex: 1 1 auto; }
.nav__list { list-style: none; padding: 0; margin: 0; display: flex; gap: .25rem; justify-content: center; }
.nav__link {
  display: inline-flex; padding: .6rem .9rem; border-radius: .55rem;
  color: var(--text); font-weight: 500; font-size: .95rem;
}
.nav__link:hover { background: var(--brand-50); color: var(--brand-900); }
.nav__link--active { color: var(--brand-900); background: var(--brand-50); }

.header__cta { flex: 0 0 auto; }

.mobile-toggle {
  display: none; background: transparent; border: 0; padding: .5rem;
  width: 44px; height: 44px; cursor: pointer;
  flex: 0 0 auto;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--brand-900);
  margin: 4px auto; border-radius: 2px; transition: transform var(--transition), opacity var(--transition);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .mobile-toggle { display: block; margin-left: auto; }
}

/* Mobile Nav ============================================================== */
.mobile-nav {
  position: fixed; inset: var(--header-height) 0 0 0;
  background: #fff; z-index: 99; padding: 1.5rem 1.25rem 2rem;
  transform: translateY(-110%);
  transition: transform var(--transition);
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav .nav__link {
  padding: 1rem 1rem;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.mobile-nav__cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }

/* Hero =================================================================== */
.hero {
  position: relative;
  background: var(--brand-900);
  color: #fff;
  overflow: hidden;
}
.hero--front { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem); }
.hero--inner { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,132,31,.18), transparent 45%),
    radial-gradient(circle at 85% 110%, rgba(40, 84, 122, .55), transparent 50%),
    linear-gradient(135deg, #0a1622 0%, #112739 55%, #1b3a55 100%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.8), transparent 75%);
}
.hero__inner {
  position: relative;
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.35fr 0.95fr; align-items: center; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem .85rem;
  background: rgba(200,132,31,.16);
  color: var(--accent-400);
  border: 1px solid rgba(200,132,31,.35);
  border-radius: 999px;
  font-size: .8rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero__eyebrow-dot {
  width: .45rem; height: .45rem; border-radius: 999px;
  background: var(--accent-500); box-shadow: 0 0 0 4px rgba(200,132,31,.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .55 } }

.hero__title {
  color: #fff;
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.85rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 1rem;
}
.hero__title-accent { color: var(--accent-400); font-style: italic; }
.hero__desc {
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, .95rem + .4vw, 1.18rem);
  max-width: 640px;
  margin-bottom: 1.75rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero__proof {
  list-style: none; margin: 0; padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem;
}
.hero__proof li { color: var(--text-on-dark-muted); font-size: .92rem; }
.hero__proof strong { color: var(--accent-400); font-family: var(--font-heading); font-size: 1.45rem; display: block; line-height: 1; margin-bottom: .15rem; }

.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.hero__card-eyebrow {
  display: inline-block; font-size: .72rem; color: var(--accent-400);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: .4rem;
}
.hero__card-title { color: #fff; font-size: 1.5rem; margin-bottom: .5rem; }
.hero__card-desc  { color: var(--text-on-dark-muted); font-size: .95rem; margin-bottom: 1.5rem; }
.hero__card-phone, .hero__card-mail {
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem .95rem; margin-bottom: .55rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .65rem;
  color: #fff; font-weight: 500;
}
.hero__card-phone:hover, .hero__card-mail:hover {
  background: rgba(255,255,255,.12); color: var(--accent-400); border-color: rgba(255,255,255,.25);
}
.hero__card-phone .zm-icon, .hero__card-mail .zm-icon { color: var(--accent-400); }
.hero__card .btn { margin-top: 1rem; }

.hero--inner .hero__title { margin-bottom: .25rem; }
.hero--inner .hero__desc { color: var(--text-on-dark-muted); max-width: 760px; }

/* Section ================================================================= */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section--sm { padding: clamp(2rem, 4vw, 3.5rem) 0; }
.section--grey { background: var(--bg-grey); }
.section--dark { background: var(--brand-900); color: var(--text-on-dark); }
.section--dark p { color: var(--text-on-dark-muted); }
.section--blue-gradient {
  background: radial-gradient(circle at 15% 0%, rgba(200,132,31,.16), transparent 55%), linear-gradient(135deg, #102237 0%, #1b3a55 50%, #28547a 100%);
  color: var(--text-on-dark);
}
.section--blue-gradient p { color: var(--text-on-dark-muted); }
.section--cta { padding: 0 0 4rem; }

.section__header { max-width: 760px; margin: 0 auto clamp(2rem, 3vw, 3rem); text-align: center; }
.section__label {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-600);
  background: var(--accent-50); border: 1px solid var(--accent-100);
  padding: .35rem .85rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.section__label--light { color: var(--accent-400); background: rgba(200,132,31,.12); border-color: rgba(200,132,31,.3); }
.section__title { margin-bottom: 1rem; }
.section__title--light { color: #fff; }
.section__desc { font-size: 1.05rem; color: var(--text-muted); margin: 0 auto; max-width: 660px; }
.section__desc--light { color: var(--text-on-dark-muted); }
.section__footer-cta { text-align: center; margin-top: 2.25rem; }

/* Grids =================================================================== */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px)  {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Cards =================================================================== */
.card {
  display: flex; flex-direction: column; gap: .85rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.2vw, 1.85rem);
  text-decoration: none; color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.card__icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brand-50), #fff);
  border: 1px solid var(--border);
  border-radius: .8rem;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-700);
}
.card__icon .zm-icon { width: 1.4rem; height: 1.4rem; }
.card__title { color: var(--brand-900); margin: 0; }
.card__desc  { color: var(--text-muted); margin: 0; }
.card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--brand-700); font-size: .92rem;
}
.card:hover .card__link { color: var(--accent-600); }
.card__list { list-style: none; padding: 0; margin: .25rem 0 0; font-size: .92rem; color: var(--text-muted); }
.card__list li { padding-left: 1.1rem; position: relative; margin-bottom: .35rem; }
.card__list li::before {
  content: ''; position: absolute; left: 0; top: .55em; width: .35rem; height: .35rem;
  background: var(--accent-500); border-radius: 999px;
}

.card--dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: var(--text-on-dark);
}
.card--dark .card__title { color: #fff; }
.card--dark .card__desc { color: var(--text-on-dark-muted); }
.card--dark .card__list { color: var(--text-on-dark-muted); }
.card--dark:hover { border-color: rgba(200,132,31,.4); transform: translateY(-3px); background: rgba(255,255,255,.06); }
.card__icon--accent {
  background: linear-gradient(135deg, var(--accent-600), var(--accent-400));
  border-color: rgba(255,255,255,.1);
  color: var(--brand-900);
}

/* Split (Two-Col) ========================================================= */
.split { display: grid; gap: clamp(2rem, 3vw, 3rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 980px) { .split { grid-template-columns: 1.05fr .95fr; } }
.split__title { margin: .75rem 0 1rem; }
.split__lead  { font-size: 1.08rem; color: var(--text); margin-bottom: 1rem; }
.split__desc  { color: var(--text-muted); margin-bottom: 1.25rem; }

/* Feature list ============================================================ */
.feature-list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: .65rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .65rem; color: var(--text); }
.feature-list__icon {
  flex: none; width: 1.4rem; height: 1.4rem; border-radius: .35rem;
  background: var(--accent-50); color: var(--accent-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: .15rem;
}
.feature-list__icon .zm-icon { width: .9rem; height: .9rem; }

/* Quote card ============================================================== */
.quote-card {
  position: relative;
  background: linear-gradient(135deg, var(--bg-grey) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-500);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0;
}
.quote-card__icon { color: var(--accent-500); display: inline-flex; margin-bottom: .5rem; }
.quote-card__icon .zm-icon { width: 1.6rem; height: 1.6rem; }
.quote-card__text {
  font-family: var(--font-heading); font-style: italic;
  color: var(--brand-900); font-size: 1.12rem; line-height: 1.5; margin: 0 0 1rem;
}
.quote-card__author { display: flex; flex-direction: column; }
.quote-card__author strong { color: var(--brand-900); font-family: var(--font-heading); font-size: 1rem; }
.quote-card__author span { color: var(--text-muted); font-size: .87rem; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 1rem; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: .75rem; padding: 1rem .9rem; text-align: center; }
.stat-card strong { display: block; font-family: var(--font-heading); font-size: 1.4rem; color: var(--brand-900); }
.stat-card span { display: block; font-size: .78rem; color: var(--text-muted); margin-top: .2rem; }

/* Industry grid =========================================================== */
.industry-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .industry-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .industry-grid { grid-template-columns: repeat(3,1fr); } }
.industry-grid li {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.industry-grid li:hover { border-color: var(--accent-400); transform: translateY(-2px); }
.industry-grid strong { display: block; color: var(--brand-900); font-family: var(--font-heading); font-size: 1.08rem; margin-bottom: .25rem; }
.industry-grid span  { display: block; color: var(--text-muted); font-size: .87rem; }

/* Reasons (auf dunklem Hintergrund) ======================================= */
.grid--reasons .reason { text-align: left; padding: 1.5rem 1.25rem; background: rgba(255,255,255,.04); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.08); }
.reason__icon { display: inline-flex; width: 48px; height: 48px; background: rgba(200,132,31,.18); color: var(--accent-400); border-radius: .7rem; align-items: center; justify-content: center; margin-bottom: 1rem; }
.reason__icon .zm-icon { width: 1.3rem; height: 1.3rem; }
.reason__title { color: #fff; margin: 0 0 .5rem; font-size: 1.18rem; }
.reason__desc  { color: var(--text-on-dark-muted); margin: 0; }

/* CTA-Band ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  border-radius: var(--radius-xl);
  color: #fff;
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 60%; height: 180%;
  background: radial-gradient(closest-side, rgba(200,132,31,.25), transparent);
  pointer-events: none;
}
@media (min-width: 880px) {
  .cta-band { grid-template-columns: 1.3fr 1fr; align-items: center; }
}
.cta-band__title { color: #fff; margin: 0 0 .65rem; }
.cta-band__desc  { color: var(--text-on-dark-muted); margin: 0; font-size: 1.02rem; }
.cta-band__actions { display: flex; flex-direction: column; gap: .75rem; position: relative; z-index: 2; }
@media (min-width: 540px) { .cta-band__actions { flex-direction: row; flex-wrap: wrap; } }

/* FAQ ===================================================================== */
.faq { display: flex; flex-direction: column; gap: .65rem; max-width: 760px; margin-inline: auto; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq__item[open] { border-color: var(--brand-300); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; cursor: pointer; list-style: none;
  font-weight: 600; color: var(--brand-900); font-size: 1.02rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chev { transition: transform var(--transition); color: var(--brand-500); flex: none; }
.faq__item[open] .faq__chev { transform: rotate(180deg); color: var(--accent-600); }
.faq__a { padding: 0 1.25rem 1.25rem; color: var(--text-muted); }
.faq__a p:last-child { margin-bottom: 0; }

/* Page (prose) content ==================================================== */
.page-content { color: var(--text); font-size: 1.04rem; line-height: 1.75; }
.page-content > * + * { margin-top: 1.15em; }
.page-content h2 { margin-top: 2em; margin-bottom: .5em; color: var(--brand-900); }
.page-content h3 { margin-top: 1.75em; margin-bottom: .4em; color: var(--brand-900); }
.page-content ul, .page-content ol { padding-left: 1.5em; margin: 1em 0; }
.page-content li { margin-bottom: .35em; }
.page-content blockquote {
  border-left: 4px solid var(--accent-500); padding: 1em 1.25em; border-radius: .5rem;
  background: var(--bg-grey); color: var(--brand-900); font-style: italic; margin: 1.5em 0;
}
.page-content a { color: var(--accent-700); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--accent-500); }

/* Breadcrumbs ============================================================= */
.breadcrumbs { font-size: .85rem; color: var(--text-on-dark-muted); margin-bottom: 1rem; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0; list-style: none; }
.breadcrumbs__item { display: inline-flex; align-items: center; gap: .35rem; }
.breadcrumbs__item a { color: var(--text-on-dark-muted); }
.breadcrumbs__item a:hover { color: var(--accent-400); }
.breadcrumbs__sep { opacity: .55; }
.hero--inner .breadcrumbs { color: var(--text-on-dark-muted); }
.hero--inner .breadcrumbs__item a { color: var(--text-on-dark-muted); }

/* Post grid =============================================================== */
.post-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .post-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px) { .post-grid { grid-template-columns: repeat(3,1fr); } }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.post-card__image img { width: 100%; height: 220px; object-fit: cover; }
.post-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: .65rem; }
.post-card__title { font-size: 1.2rem; margin: 0; }
.post-card__title a { color: var(--brand-900); }
.post-card__excerpt { color: var(--text-muted); font-size: .95rem; margin: 0; }
.post-card__link { color: var(--brand-700); font-weight: 600; font-size: .9rem; display: inline-flex; gap: .35rem; align-items: center; margin-top: auto; }

.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { border-bottom: 1px solid var(--border); }
.link-list a { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; font-weight: 600; color: var(--brand-900); }
.link-list a:hover { color: var(--accent-600); }

/* Footer ================================================================== */
.footer {
  background: var(--brand-900);
  color: var(--text-on-dark-muted);
  padding: clamp(3rem, 5vw, 4.5rem) 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand { max-width: 460px; }
.footer__logo { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 1rem; color: #fff; }
.footer__logo-name { font-family: var(--font-heading); font-weight: 700; color: #fff; font-size: 1.18rem; line-height: 1.1; }
.footer__logo-sub  { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .15rem; }
.footer__desc { color: var(--text-on-dark-muted); margin-bottom: 1.25rem; font-size: .95rem; }
.footer__address { color: var(--text-on-dark-muted); font-style: normal; line-height: 1.55; font-size: .92rem; }
.footer__address strong { color: #fff; font-family: var(--font-heading); }

.footer__title { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 1rem; font-family: var(--font-sans); font-weight: 700; }
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; font-size: .94rem; }
.footer__list a { color: var(--text-on-dark-muted); display: inline-flex; align-items: center; gap: .5rem; }
.footer__list a:hover { color: var(--accent-400); }
.footer__list--contact span { color: var(--text-on-dark-muted); display: inline-flex; align-items: center; gap: .5rem; }
.footer__list--contact .zm-icon { color: var(--accent-400); }
.footer__cta { margin-top: 1rem; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer__legal { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal a { color: rgba(255,255,255,.65); }
.footer__legal a:hover { color: var(--accent-400); }

/* Pagination ============================================================== */
.pagination { margin-top: 2.5rem; display: flex; justify-content: center; }
.pagination .page-numbers {
  display: inline-flex; padding: .5rem .85rem; border-radius: .5rem;
  border: 1px solid var(--border); margin: 0 .15rem; color: var(--brand-700);
}
.pagination .page-numbers.current { background: var(--brand-700); color: #fff; border-color: var(--brand-700); }
.pagination .page-numbers:hover { border-color: var(--brand-500); color: var(--brand-900); }

/* Scroll-anker offset, weil Header sticky ist ============================= */
:target { scroll-margin-top: calc(var(--header-height) + 1rem); }

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