/* ═══════════════════════════════════════════════════════
   support.imifactory.ch — style.css  v3.0
   Sauberes Design-System, keine Layout-Konflikte
═══════════════════════════════════════════════════════ */

/* ── Reset & Variablen ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
:root {
  --navy:    #0b3c5d;
  --navy2:   #1f6f9a;
  --dark:    #05263d;
  --teal:    #00bfae;
  --teal-d:  #00897b;
  --bg:      #f8fafc;
  --border:  #d1dce6;
  --muted:   #5a7080;
  --light:   #e7f3fd;
  --white:   #ffffff;
  --r-sm:    6px;
  --r-md:    12px;
  --r-lg:    20px;
  --sh-sm:   0 1px 4px rgba(5,38,61,.06), 0 2px 12px rgba(5,38,61,.05);
  --sh-md:   0 4px 20px rgba(5,38,61,.10);
  --sh-lg:   0 8px 40px rgba(5,38,61,.14);
  --tr:      .2s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: #2c3e50;
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }
img  {
  max-width: 100%; height: auto; display: block;
  /* Verhindert verpixelte/treppige Ränder bei border-radius in allen Browsern */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
a    { color: var(--navy); }

/* ── Skip-Link ─────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 6px;
  background: var(--teal); color: #fff;
  padding: 8px 14px; border-radius: var(--r-sm);
  font-weight: 700; z-index: 10000; text-decoration: none;
}
.skip-link:focus { left: 10px; }

/* ── Header ────────────────────────────────────────── */
.site-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  box-shadow: 0 2px 16px rgba(5,38,61,.3);
  position: sticky; top: 0; z-index: 1000;
}

.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px; height: 64px; gap: 16px;
}

/* Logo: Icon grösser, Text auf gleicher Baseline, alles weiss */
.site-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo img      { height: 40px; width: auto; flex-shrink: 0; }
.site-logo .logo-text { color: #fff; }

/* ── Nav Desktop ───────────────────────────────────── */
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none; font-size: 13.5px; font-weight: 600;
  padding: 8px 12px; border-radius: var(--r-sm);
  transition: background var(--tr), color var(--tr);
  white-space: nowrap;
}
.site-nav a:hover  { color: #fff; background: rgba(255,255,255,.1); }
.site-nav a.active { color: var(--teal); background: rgba(0,191,174,.12); }

/* ── Hamburger ─────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
  min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  position: relative; z-index: 1100;
}
.nav-toggle:focus-visible { outline: 2px solid var(--teal); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Overlay ────────────────────────────── */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1050;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: 72px;
    background: rgba(5,38,61,.97);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.open {
    opacity: 1; pointer-events: auto; transform: translateY(0);
  }
  .site-nav a {
    display: block; width: 100%;
    padding: 18px 28px; font-size: 17px; font-weight: 600;
    color: rgba(255,255,255,.82); border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    white-space: normal;
    transition: background .15s, color .15s, padding-left .15s;
  }
  .site-nav a:hover  { color: #fff; background: rgba(0,191,174,.12); padding-left: 36px; }
  .site-nav a.active {
    color: var(--teal); background: rgba(0,191,174,.1);
    border-left: 3px solid var(--teal); padding-left: 25px;
  }
  .site-nav a[href="kontakt.html"] {
    margin: 20px 28px 0; width: calc(100% - 56px);
    border-bottom: none; border-radius: var(--r-sm);
    background: var(--teal); color: #fff;
    text-align: center; font-weight: 700; padding: 16px 28px;
  }
  .site-nav a[href="kontakt.html"]:hover { background: var(--teal-d); padding-left: 28px; }
  .site-nav a[href="kontakt.html"].active { border-left: none; padding-left: 28px; }
}

/* ── Hero ──────────────────────────────────────────── */
/* Voller dunkler Hintergrund über die ganze Breite */
.hero-wrap {
  width: 100%;
  /* Bild als Vollbild-Hintergrund – füllt immer die volle Breite, egal wie breit */
  background:
    linear-gradient(to right,
      var(--dark) 0%,
      var(--dark) 18%,
      rgba(11,60,93,.88) 30%,
      rgba(11,60,93,.45) 48%,
      rgba(11,60,93,.08) 65%,
      transparent 78%),
    url('img/workspace.jpg') center center / cover no-repeat;
  background-color: var(--dark);
}

/* Inhalt auf 1280px zentriert — gleiche Breite wie Header */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  min-height: 520px;
}

/* Linke Spalte: Text */
.hero-left {
  padding: 56px 48px 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Rechte Spalte: Bild */
.hero-right {
  position: relative;
  /* kein eigenes Bild – Hintergrundbild läuft über .hero-wrap */
}
/* direktes Bild (img-Tag) ausblenden – Bild läuft über hero-wrap Background */
.hero-right > img {
  display: none;
}
/* kein Pseudo-Element nötig – Gradient läuft über hero-wrap */
.hero-right::before {
  display: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,191,174,.10); border: 1px solid rgba(0,191,174,.25);
  color: rgba(0,191,174,.85); font-size: 10px; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 14px;
}
.hero-left h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  font-weight: 700; line-height: 1.18; color: #fff; margin-bottom: 0;
}
.hero-accent-line {
  width: 32px; height: 3px; background: rgba(0,191,174,.7); border-radius: 2px;
  margin: 12px 0 14px;
}
.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600; color: rgba(0,191,174,.8); margin-bottom: 14px; line-height: 1.3;
}
.hero-left > p {
  font-size: 1rem; color: rgba(255,255,255,.75);
  line-height: 1.75; max-width: 440px;
}
.hero-free-banner {
  display: inline-block;
  background: rgba(0,191,174,.08); border: 1px solid rgba(0,191,174,.22);
  color: rgba(214,250,247,.85); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  margin: 14px 0 20px;
}
.hero-portrait {
  position: absolute; bottom: 24px; right: 24px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(5,38,61,.75); backdrop-filter: blur(6px);
  border: 1px solid rgba(0,191,174,.25);
  border-radius: 50px; padding: 8px 20px 8px 8px;
}
.hero-portrait-img {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--teal); flex-shrink: 0;
}
.hero-portrait-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.hero-portrait-name  { font-size: 12.5px; font-weight: 700; color: #fff; line-height: 1.3; }
.hero-portrait-title { font-size: 10.5px; color: rgba(255,255,255,.6); }

/* ── Container ─────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── Seiten-Intro (Unterseiten) ─────────────────────── */
.page-intro { padding: 40px 0 0; }
.page-intro h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.page-intro p { color: var(--muted); font-size: 1rem; margin-bottom: 32px; }

/* Globale Überschriften */
h2 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); font-weight: 700; color: var(--navy); margin-bottom: 10px; }
p.lead { color: var(--muted); font-size: 1rem; margin-bottom: 28px; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 11px 24px; border: none;
  border-radius: var(--r-sm); cursor: pointer;
  font-size: 14px; font-weight: 700; font-family: inherit;
  min-height: 44px; text-decoration: none;
  transition: all var(--tr); white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn-primary { background: var(--navy); color: #fff; border: 2px solid var(--navy); }
.btn-primary:hover { background: #0e4d78; border-color: #0e4d78; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,60,93,.25); }
.btn-teal    { background: var(--teal); color: #fff; border: 2px solid var(--teal); }
.btn-teal:hover { background: var(--teal-d); border-color: var(--teal-d); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 13px; min-height: 36px; }
.btn-lg { padding: 14px 30px; font-size: 15px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ── Trust-Grid ────────────────────────────────────── */
.section-trust { padding: 40px 0 10px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--navy); border-radius: var(--r-md);
  padding: 22px 16px; text-align: center; box-shadow: var(--sh-sm);
}
.trust-item.ti-highlight { border-top-color: var(--teal); }
.ti-value { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.ti-highlight .ti-value { color: var(--teal-d); }
.ti-label { font-size: .8rem; color: var(--muted); }

/* ── Card-Grid ─────────────────────────────────────── */
.section-cards { padding: 48px 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card-img { width: 100%; height: 180px; overflow: hidden; flex-shrink: 0; background: var(--light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-content { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.card-content h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.card-content p  { font-size: .88rem; color: #4a5a68; line-height: 1.65; flex: 1; }
.card-meta { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); font-size: .76rem; color: var(--muted); }

/* ── Split-Section ─────────────────────────────────── */
.section-split {
  padding: 48px 0;
  display: flex;
  gap: 44px;
  align-items: center;
}
.split-text { flex: 1; min-width: 0; }
.split-text h2 { margin-bottom: 12px; }
.split-text p  { color: #4a5a68; line-height: 1.75; margin-bottom: 14px; }
/* Bild bewusst dezent gehalten: schmaler als der Text, ruhiger Schatten.
   Es stützt den Senioren-Abschnitt, dominiert ihn aber nicht. */
.split-img {
  flex: 0 0 300px; width: 300px;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.split-img img { width: 100%; height: 300px; object-fit: cover; object-position: center; display: block; }

.check-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 16px; margin-top: 12px;
}
.check-list li {
  font-size: .9rem; color: #4a5a68;
  display: flex; gap: 8px; align-items: flex-start; line-height: 1.5;
}
.check-list li::before { content: '✓'; color: var(--teal-d); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Situations-Block ──────────────────────────────── */
.section-situations {
  padding: 48px 0;
}
.section-situations > div {
  background: var(--white); border-radius: var(--r-lg);
  padding: 40px 36px; box-shadow: var(--sh-sm);
}
.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-bottom: 28px;
}
.sit-item {
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 14px 18px; background: var(--bg);
  transition: border-color var(--tr), background var(--tr);
}
.sit-item:hover { border-color: var(--teal); background: #f0fdfc; }
.sit-q { font-size: .91rem; color: #3a5060; line-height: 1.5; }
.sit-cta { font-size: .93rem; color: var(--muted); text-align: center; }
.sit-cta a { color: var(--navy); font-weight: 600; }

/* ── Person-Card ───────────────────────────────────── */
.section-person { padding: 40px 0 60px; }
.person-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px 40px;
  box-shadow: var(--sh-sm); display: flex; gap: 32px; align-items: flex-start;
}
.person-img {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  border: 4px solid var(--light); box-shadow: var(--sh-md); flex-shrink: 0;
}
.person-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.person-info { flex: 1; min-width: 0; }
.person-info h2 { font-size: 1.2rem; margin-bottom: 4px; }
.person-title { color: var(--muted); font-size: .85rem; margin-bottom: 10px; }
.person-info > p { font-size: .92rem; color: #4a5a68; line-height: 1.65; }

/* ── Chips ─────────────────────────────────────────── */
.chip-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.chip {
  background: var(--light); color: var(--navy);
  font-size: .79rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
  white-space: normal; word-break: break-word;
  max-width: 100%;
}
.chip.teal { background: rgba(0,191,174,.12); color: var(--teal-d); }

/* ── Info-Banner ───────────────────────────────────── */
.info-banner {
  background: linear-gradient(90deg, var(--light), #f0f8ff);
  border-left: 4px solid var(--teal);
  padding: 14px 20px; border-radius: var(--r-sm);
  font-size: .93rem; color: #3a5060; line-height: 1.6;
}

/* ── Preiskarten ───────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 20px; text-align: center;
  box-shadow: var(--sh-sm); position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--navy2); }
.price-card.featured { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--sh-md); }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 14px; border-radius: 50px; white-space: nowrap;
}
.price-label  { font-size: .76rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.price-amount { font-size: 2.3rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: .85rem; vertical-align: super; font-weight: 600; }
.price-unit   { font-size: .78rem; color: var(--muted); margin-bottom: 18px; }
.price-features { list-style: none; margin-bottom: 20px; text-align: left; flex: 1; }
.price-features li {
  font-size: .87rem; color: #4a5a68; padding: 4px 0;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── Angebots-Sektionen ────────────────────────────── */
.offer-section {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.offer-section:last-of-type { border-bottom: none; }
.offer-section > h2  { margin-bottom: 8px; }
.offer-section .section-desc { color: #4a5a68; font-size: .95rem; line-height: 1.7; margin-bottom: 26px; }

/* Starter-Karte */
.starter-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  border-radius: var(--r-lg); padding: 32px 36px;
  color: #fff; margin-bottom: 24px; box-shadow: var(--sh-lg);
}
.starter-card-top {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.starter-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; }
.starter-price { font-size: 2rem; font-weight: 700; color: var(--teal); margin-left: auto; white-space: nowrap; }
.starter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.starter-col h4 { font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.starter-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.starter-col li { font-size: .9rem; color: rgba(255,255,255,.82); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.starter-col li .c { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.starter-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* KI-Block */
.ki-block { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.ki-block .ki-img-wrap {
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-md);
}
.ki-block img { width: 100%; height: 240px; object-fit: cover; display: block; }
.ki-price-row { display: flex; align-items: center; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.price-pill { background: var(--light); border-radius: var(--r-sm); padding: 10px 22px; text-align: center; }
.price-pill .amount { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.price-pill .unit   { font-size: .75rem; color: var(--muted); }

/* AAL-Block */
.aal-block {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--teal); border-radius: var(--r-md);
  padding: 24px 28px; margin-top: 28px;
}
.aal-block h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.aal-block p  { font-size: .91rem; color: #4a5a68; line-height: 1.7; }

/* Feature-Liste */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 12px; }
.feature-list li {
  font-size: .9rem; color: #4a5a68;
  display: flex; gap: 9px; align-items: flex-start; line-height: 1.5;
}
.feature-list li::before { content: '✓'; color: var(--teal-d); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Werdegang / Timeline ──────────────────────────── */
.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--teal), var(--border));
}
.timeline-item { position: relative; margin-bottom: 26px; }
.timeline-item::before {
  content: ''; position: absolute; left: -23px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--teal);
}
.timeline-date  { font-size: .76rem; font-weight: 700; color: var(--teal-d); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.timeline-title { font-size: .96rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.timeline-sub   { font-size: .84rem; color: var(--muted); font-style: italic; margin-bottom: 5px; }
.timeline-body  { font-size: .88rem; color: #4a5a68; line-height: 1.65; }

/* ── Kontakt-Layout ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
  padding: 36px 0 56px;
}
.contact-direct {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
}
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 17px; height: 17px; fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-label { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.contact-value { font-size: .93rem; font-weight: 700; color: var(--navy); }
.contact-hint  { font-size: .8rem; color: var(--muted); margin-top: 2px; }

/* ── Kontakt: Portrait dezent ──────────────────────── */
.kontakt-portrait {
  width: 72px; height: 72px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--light);
  box-shadow: var(--sh-sm);
  flex-shrink: 0;
}
.kontakt-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }

/* ── Formular ──────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 5px; }
input[type=text], input[type=email], input[type=tel],
input[type=number], textarea, select {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 14px; font-family: inherit; background: var(--white); color: #2c3e50;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,60,93,.09);
}
/* WCAG 2.4.7: sichtbarer Fokus-Indikator für Tastatur-Navigation */
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--navy); outline-offset: 1px;
}
textarea { resize: vertical; min-height: 120px; }
.imi-honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.captcha-box {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 16px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.captcha-question { font-weight: 700; color: var(--navy); font-size: 1rem; }
.captcha-box input[type=number] { width: 80px; padding: 8px 10px; text-align: center; font-size: 1rem; font-weight: 700; }
.captcha-hint { font-size: .82rem; color: var(--muted); }

.form-msg { padding: 12px 16px; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600; margin-top: 14px; display: none; }
.form-msg.success { background: #d4f4e2; color: #145a32; border: 1px solid #a9dfbf; display: block; }
.form-msg.error   { background: #fdecea; color: #922b21; border: 1px solid #f1948a; display: block; }

/* ── Cookie-Banner ─────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--dark), var(--navy));
  color: #fff; border-top: 3px solid var(--teal);
  box-shadow: 0 -4px 24px rgba(5,38,61,.4);
  transform: translateY(100%); transition: transform .4s cubic-bezier(.22,.68,0,1.12);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1080px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 220px; font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.5; }
.cookie-text a { color: var(--teal); }
.cookie-text strong { color: #fff; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 8px 18px; border-radius: var(--r-sm); font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; min-height: 40px; border: none; transition: all .2s; }
.cookie-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.cookie-btn-accept  { background: var(--teal); color: #fff; }
.cookie-btn-accept:hover  { background: var(--teal-d); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25); }
.cookie-btn-decline:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ── Footer ────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 40px 24px 28px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px; margin-bottom: 28px;
}
.footer-brand .site-logo { margin-bottom: 12px; font-size: 18px; }
.footer-brand p { font-size: .84rem; line-height: 1.65; color: rgba(255,255,255,.5); margin-top: 8px; }
.footer-col h4 { color: #fff; font-size: .79rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .84rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px;
  font-size: .79rem; color: rgba(255,255,255,.35);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal); }

hr { border: none; border-top: 1px solid var(--border); margin: 22px 0; opacity: .5; }

/* ── Unterseiten: Bild+Text-Layouts ────────────────── */
.img-text-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.img-text-grid.img-left  { grid-template-columns: 320px 1fr; }
.img-text-grid.img-right { grid-template-columns: 1fr 340px; }
.img-text-grid.img-wide  { grid-template-columns: 1fr 420px; }

.img-text-grid img,
.img-text-grid .img-wrap img {
  width: 100%; object-fit: cover; display: block;
}
.img-text-grid .img-wrap {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md);
}

/* Projekt-Zeilen */
.projekt-row {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 24px; align-items: start; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.projekt-row:last-child { border-bottom: none; }
.projekt-row img { width: 100%; height: 170px; object-fit: cover; display: block; }
.projekt-row h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin: 8px 0 6px; }
.projekt-row p  { font-size: .9rem; color: #4a5a68; line-height: 1.65; }
.projekt-meta {
  display: block; font-size: .77rem; font-weight: 600;
  color: var(--muted); margin-bottom: 8px;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 960px) {
  .card-grid  { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .starter-grid { grid-template-columns: 1fr; }
  .ki-block   { grid-template-columns: 1fr; }
  .img-text-grid.img-left,
  .img-text-grid.img-right,
  .img-text-grid.img-wide  { grid-template-columns: 1fr; }
  .img-text-grid.img-right > *:first-child { order: 2; }
}

@media (max-width: 820px) {
  /* Bild nur über hero-right steuern – wrap hat kein eigenes Bild mehr */
  .hero-wrap {
    background-image: none;
    background-color: var(--dark);
  }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  /* hero-right zeigt das Bild direkt mit korrektem Ausschnitt */
  .hero-right {
    min-height: 280px;
    order: -1;
    background: url('img/workspace.jpg') center 40% / cover no-repeat;
    background-color: var(--navy);
  }
  .hero-right::before {
    display: block !important;
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      rgba(11,60,93,.1) 30%,
      rgba(11,60,93,.7) 80%,
      var(--dark) 100%);
    z-index: 1; pointer-events: none;
  }
  /* Text-Bereich: solider Hintergrund */
  .hero-left {
    padding: 32px 22px 36px;
    max-width: 100%;
    margin-left: 0;
    background: var(--dark);
  }
  .hero-portrait { bottom: 14px; right: 14px; }

  .section-split {
    flex-direction: column; gap: 28px;
  }
  .split-img { flex: none; width: 100%; }
  .split-img img { height: 220px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-layout { grid-template-columns: 1fr; }
  .projekt-row { grid-template-columns: 1fr; }

  .price-grid.three-col { grid-template-columns: 1fr; max-width: 380px; }
}

@media (max-width: 600px) {
  .card-grid  { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .person-card { flex-direction: column; padding: 22px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
  .starter-card { padding: 22px 18px; }
  /* Projekt-Zeilen: feste Spalten auf 1fr stacken */
  .projekt-row {
    grid-template-columns: 1fr;
  }
  .projekt-row img { height: 180px; }
  /* Qualifikationen nebeneinander → untereinander */
  .skills-grid { grid-template-columns: 1fr; }
  /* Über-mich Werdegang: breite Stats-Kacheln */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   v3.1 — Ergänzungen: Preis-Bündelung, UX-Feinschliff
═══════════════════════════════════════════════════════ */

/* Anker-Sprünge nicht unter dem Sticky-Header verstecken */
:target { scroll-margin-top: 84px; }

/* Bewegung reduzieren wenn vom System gewünscht */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Button-Hilfsklassen (ersetzen verstreute Inline-Styles) */
.btn-block { width: 100%; }
.btn-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.btn-row-center { justify-content: center; }

/* Dezenter Preis-Hinweistext unter Sektionen */
.price-note {
  margin-top: 16px; font-size: .82rem;
  color: var(--muted); line-height: 1.6;
}

/* ── Stundenansatz-Banner (CHF 70 — genau einmal genannt) ── */
.rate-banner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  border-radius: var(--r-lg); padding: 30px 34px; margin-bottom: 30px;
  box-shadow: var(--sh-md);
}
.rate-banner-price { display: flex; align-items: baseline; gap: 10px; flex-shrink: 0; }
.rate-banner-amount { font-size: 2.5rem; font-weight: 700; color: var(--teal); line-height: 1; }
.rate-banner-unit { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.7); }
.rate-banner-text {
  flex: 1; min-width: 260px;
  font-size: .92rem; color: rgba(255,255,255,.82); line-height: 1.7;
}

/* ── Leistungen zum Stundenansatz ── */
.rate-services {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}
.rate-service { display: flex; gap: 14px; align-items: flex-start; }
.rate-service-icon {
  width: 44px; height: 44px; border-radius: var(--r-md); flex-shrink: 0;
  background: rgba(0,191,174,.1);
  display: flex; align-items: center; justify-content: center;
}
.rate-service-icon svg {
  width: 22px; height: 22px; fill: none; stroke: var(--teal-d);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.rate-service h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.rate-service p  { font-size: .87rem; color: #4a5a68; line-height: 1.6; }
.rate-service a  { color: var(--navy); font-weight: 600; }

/* ── Starter-Karte Feinschliff ── */
.starter-lead {
  color: rgba(255,255,255,.74); font-size: .93rem;
  line-height: 1.7; margin-bottom: 22px;
}
.starter-card .btn-row { margin-top: 24px; }

/* ── Standard-Webseite: ausgewogene Zeile ── */
.web-extra {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 28px; margin-top: 20px;
}
.web-extra-main { flex: 1; min-width: 240px; }
.web-extra-main h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.web-extra-main p  { font-size: .89rem; color: #4a5a68; line-height: 1.6; }
.web-extra-price { flex-shrink: 0; text-align: right; }
.web-extra-amount { font-size: 1.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.web-extra-unit  { font-size: .76rem; color: var(--muted); margin: 4px 0 12px; }

/* ── Abschluss-CTA-Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  border-radius: var(--r-lg); padding: 50px 40px; margin: 12px 0 60px;
  text-align: center; box-shadow: var(--sh-md);
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p  {
  color: rgba(255,255,255,.8); font-size: .98rem;
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ── Kontaktformular: Sende-Status ── */
.btn[aria-busy="true"] { opacity: .65; cursor: progress; }
.form-msg.pending {
  background: var(--light); color: var(--navy);
  border: 1px solid var(--border); display: block;
}

/* ── Responsive Ergänzungen v3.1 ── */
@media (max-width: 760px) {
  .rate-services { grid-template-columns: 1fr; }
  .rate-banner { padding: 24px; gap: 18px; }
  .rate-banner-amount { font-size: 2.1rem; }
  .web-extra { flex-direction: column; align-items: flex-start; }
  .web-extra-price { text-align: left; }
  .cta-band { padding: 38px 22px; margin-bottom: 44px; }
}

/* ── v3.1 — Kontaktseite (ersetzt Inline-Styles) ── */
.contact-form-title { font-size: 1.15rem; margin-bottom: 6px; }
.contact-form-sub {
  font-size: .88rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 20px;
}
.contact-form-sub strong { color: var(--navy); }
.contact-form {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
}
.req { color: #c0392b; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-person {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
}
.contact-person-name { font-weight: 700; color: var(--navy); font-size: .97rem; }
.contact-person-meta { font-size: .81rem; color: var(--muted); margin-top: 2px; }

.kontakt-portrait { width: 64px; height: 64px; }

.contact-item-last { margin-bottom: 0; }
.contact-value-sm { font-size: .88rem; }
.contact-hours { line-height: 1.6; }

.contact-conditions {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px 22px;
}
.contact-conditions-title {
  font-size: .76rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.feature-list-tight { gap: 6px; }

.contact-privacy {
  background: var(--light); border-radius: var(--r-md);
  padding: 14px 18px; font-size: .81rem;
  color: #3a5060; line-height: 1.6;
}
.contact-privacy a { color: var(--navy); font-weight: 600; }

/* ── v3.1 — Über-mich: zusammenhängende Profilkarte ── */
.profil-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md);
}
.profil-card img {
  width: 100%; height: 320px; object-fit: cover;
  object-position: center 15%; display: block;
}
.profil-card.no-img { background: var(--light); }
.profil-card.no-img img { display: none; }
.profil-card.no-img::before {
  content: ''; display: block; height: 200px;
}
.profil-card-body { padding: 18px 20px; }
.profil-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.profil-meta { font-size: .82rem; color: var(--muted); margin-top: 4px; line-height: 1.55; }

/* ── v3.2 — Rechtsseiten (Impressum / Datenschutz) ── */
.legal { max-width: 760px; padding-bottom: 60px; }
.legal-block { margin-bottom: 28px; }
.legal-block h2 {
  font-size: 1.05rem; color: var(--navy);
  margin-bottom: 8px; padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.legal-block p {
  font-size: .92rem; color: #4a5a68;
  line-height: 1.75; margin-bottom: 10px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--navy); font-weight: 600; }
.legal-updated {
  font-size: .82rem; color: var(--muted);
  margin-top: 36px; padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ── v3.2 — 404-Seite ── */
.notfound { text-align: center; padding: 70px 20px 90px; }
.notfound-code {
  font-size: clamp(4rem, 14vw, 8rem); font-weight: 700;
  color: var(--teal); line-height: 1; letter-spacing: -.03em;
}
.notfound h1 { color: var(--navy); margin: 8px 0 12px; }
.notfound p {
  color: #4a5a68; font-size: 1rem; line-height: 1.7;
  max-width: 440px; margin: 0 auto 8px;
}

/* ── v3.5 — Über-mich Qualifikationen mobil ── */
@media (max-width: 600px) {
  .qual-grid { grid-template-columns: 1fr !important; }
}

/* ── v3.5 — Timeline mit Phasenbildern ── */
.timeline-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.timeline-phase {
  font-size: .72rem; font-weight: 700;
  color: var(--teal-d); text-transform: uppercase;
  letter-spacing: .08em; margin: 24px 0 10px;
  padding-left: 28px;
}
.timeline-phase:first-child { margin-top: 0; }

.timeline-imgs {
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 84px;
}
.timeline-img-block { display: flex; flex-direction: column; gap: 6px; }
.timeline-img-label {
  font-size: .72rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
}
.timeline-img-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md);
}
.timeline-img-block img {
  width: 100%; height: 150px; object-fit: cover;
  display: block;
}

@media (max-width: 820px) {
  .timeline-layout { grid-template-columns: 1fr; }
  .timeline-imgs {
    flex-direction: row; flex-wrap: wrap;
    position: static; gap: 12px;
  }
  .timeline-img-block { flex: 1; min-width: 140px; }
  .timeline-img-block img { height: 110px; }
}
@media (max-width: 500px) {
  .timeline-imgs { flex-direction: column; }
  .timeline-img-block { min-width: unset; }
  .timeline-img-block img { height: 160px; }
}

/* ── v3.6 — Utility-Klassen (ersetzen Inline-Styles, Prüfpunkt 35/94) ── */
.u-prose       { color: #4a5a68; line-height: 1.75; margin-bottom: 16px; }
.u-prose-sm    { color: #4a5a68; line-height: 1.75; margin-bottom: 12px; }
.u-prose-last  { color: #4a5a68; line-height: 1.75; }
.u-mt-16       { margin-top: 16px; }
.u-mt-20       { margin-top: 20px; }
.u-mt-22       { margin-top: 22px; }
.u-mb-8        { margin-bottom: 8px; }
.u-mb-18       { margin-bottom: 18px; }
.u-mb-20       { margin-bottom: 20px; }
.u-mb-24       { margin-bottom: 24px; }
.u-mb-28       { margin-bottom: 28px; }
.u-no-border   { border-bottom: none; }
.u-row-center  { justify-content: center; }
.u-section-label {
  font-size: .78rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.u-subhead {
  font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 36px 0 6px;
}
.u-strong-navy { font-weight: 700; color: var(--navy); }

/* Projekt/Schulung Hero-Bild */
.page-hero-img {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg); margin-bottom: 44px;
}
.page-hero-img img {
  width: 100%; height: 240px;
  object-fit: cover; display: block;
}
.page-hero-img.pos-30 img { object-position: center 30%; }
.page-hero-img.pos-40 img { object-position: center 40%; }

/* Kontakt-CTA-Band auf Unterseiten */
.closing-cta {
  margin-top: 36px;
  background: linear-gradient(90deg, var(--light), #f0f8ff);
  border-radius: var(--r-lg); padding: 32px 36px; text-align: center;
}
.closing-cta h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.closing-cta p { color: #4a5a68; margin-bottom: 20px; }

/* Hero-Kontakt-Button heller Rand */
.btn-on-dark { border-color: rgba(255,255,255,.5); color: #fff; }

/* Zwei-Spalten-Grid für Qualifikationen */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) { .cols-2 { grid-template-columns: 1fr; } }

/* trust-grid 2-spaltig (Über-mich) */
.trust-grid-2 { grid-template-columns: 1fr 1fr; }

/* ── v3.7 — fehlende Utility-Klassen (Prüflauf 26.05.2026) ── */
.u-mb-22 { margin-bottom: 22px; }
.u-mb-14 { margin-bottom: 14px; }
.u-mt-36 { margin-top: 36px; }

/* ── Fach-Kurs Kompaktliste (schulungen.html) ── */
.fach-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 20px;
}
.fach-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  transition: background var(--tr);
}
.fach-item:hover { background: var(--light); }
.fach-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(0,191,174,.1);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.fach-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--teal-d);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.fach-body h3 {
  font-size: .95rem; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.fach-body p {
  font-size: .84rem; color: #4a5a68;
  line-height: 1.55; margin-bottom: 6px;
}
.fach-body .chip-row { margin-top: 0; gap: 5px; }
.fach-body .chip { font-size: .72rem; padding: 2px 8px; }

@media (max-width: 700px) {
  .fach-list { grid-template-columns: 1fr; }
}
