/* ==========================================================================
   Pfeiler Wohnwerte GmbH — Design System v2
   Einheitliches Farbschema: Stahlblau / Grau / Weiß (alle Seiten identisch)
   ========================================================================== */

@font-face {
  font-family: "GT Walsheim";
  src: url("../fonts/GT-Walsheim-Regular.woff2") format("woff2"),
       url("../fonts/GT-Walsheim-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim";
  src: url("../fonts/GT-Walsheim-Medium.woff2") format("woff2"),
       url("../fonts/GT-Walsheim-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim";
  src: url("../fonts/GT-Walsheim-Bold.woff2") format("woff2"),
       url("../fonts/GT-Walsheim-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Condensed";
  src: url("../fonts/GT-Walsheim-Condensed-Medium.woff2") format("woff2"),
       url("../fonts/GT-Walsheim-Condensed-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Condensed";
  src: url("../fonts/GT-Walsheim-Condensed-Bold.woff2") format("woff2"),
       url("../fonts/GT-Walsheim-Condensed-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Walsheim Condensed";
  src: url("../fonts/GT-Walsheim-Condensed-Black.woff2") format("woff2"),
       url("../fonts/GT-Walsheim-Condensed-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Markenfarben (aus dem Logo) — einziges Farbschema aller Seiten */
  --blue: #36648b;
  --blue-dark: #274a66;
  --blue-deep: #1c3549;
  --blue-light: #eaf0f5;
  --grey: #a9a8a8;
  --grey-light: #f4f4f2;
  --grey-dark: #6e7174;   /* Fließtext: mittleres Grau statt Schwarz */
  --ink: #4d5053;         /* Überschriften: dunkleres Grau zur Abhebung */
  --white: #ffffff;

  /* WhatsApp — einzige Fremdfarbe, nur für WhatsApp-Elemente */
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;

  --font: "GT Walsheim", Arial, sans-serif;
  --font-condensed: "GT Walsheim Condensed", Arial, sans-serif;

  --container: 1180px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(33, 37, 39, 0.10);
  --shadow-sm: 0 2px 10px rgba(33, 37, 39, 0.06);
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--grey-dark); }
.lede { font-size: 1.2rem; color: var(--grey-dark); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--grey { background: var(--grey-light); }
.section--bluelight { background: var(--blue-light); }
.section--blue { background: var(--blue); color: var(--white); }
.section--blue h2, .section--blue h3, .section--blue p { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.center { text-align: center; }
.intro { max-width: 680px; margin: 0 auto 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--blue-light); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-outline-white { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--blue); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn svg { flex-shrink: 0; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(33, 37, 39, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
  gap: 20px;
}
.logo img { height: 68px; width: auto; }
.main-nav ul { display: flex; gap: 26px; align-items: center; }
.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); border-color: var(--blue); }
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.98rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--blue-dark); }
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}
.header-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  .main-nav ul { gap: 18px; }
  .header-phone span { display: none; }
}
@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .site-header .container { height: 88px; }
  .logo img { height: 52px; }
  .main-nav {
    position: fixed;
    inset: 88px 0 0 0;
    background: var(--white);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    padding: 28px 24px;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ---- Vollbild-Hero (Startseite) ---- */
.hero-full {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,53,73,0.55) 0%, rgba(28,53,73,0.65) 60%, rgba(28,53,73,0.82) 100%);
}
.hero-full .container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-logo {
  height: clamp(72px, 11vw, 130px);
  width: auto;
  margin: 0 auto 30px;
  filter: brightness(0) invert(1);
}
.hero-full h1 {
  color: var(--white);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.hero-full .lede {
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-contactline {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}
.hero-contactline a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.95;
}
.hero-contactline a:hover { opacity: 1; text-decoration: underline; }
.hero-contactline svg { flex-shrink: 0; }

/* ---- Unterseiten-Hero mit Bild ---- */
.page-hero {
  position: relative;
  padding: 96px 0;
  background: var(--blue-light);
  background-size: cover;
  background-position: center;
}
.page-hero--img { color: var(--white); }
.page-hero--img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,53,73,0.55), rgba(28,53,73,0.75));
}
.page-hero .container { position: relative; z-index: 1; max-width: 860px; }
.page-hero--img h1, .page-hero--img .lede, .page-hero--img .eyebrow { color: var(--white); }
.page-hero--img .lede { color: rgba(255,255,255,0.92); }

/* ---- Wegweiser-Kacheln ---- */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.path-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(33,37,39,0.08);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.path-card .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: var(--blue-light);
  color: var(--blue);
}
.path-card h3 { margin-bottom: 10px; }
.path-card p { flex-grow: 1; }
.path-card .btn { margin-top: 18px; align-self: flex-start; }
@media (max-width: 860px) {
  .path-grid { grid-template-columns: 1fr; }
}

/* ---- Trust bar ---- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-bar .stat-number {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--blue);
  display: block;
  line-height: 1.1;
}
.section--blue .trust-bar .stat-number { color: var(--white); }
.section--blue .trust-bar .stat-label { color: rgba(255,255,255,0.85); }
.trust-bar .stat-label { font-size: 0.92rem; color: var(--grey-dark); }
.trust-bar--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) {
  .trust-bar, .trust-bar--3 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Split-Sektionen (Bild + Text abwechselnd) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split-media--portrait img { aspect-ratio: 3/4; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split-media { order: 0; }
}

/* ---- Was wir suchen ---- */
.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.search-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 5px solid var(--blue);
  box-shadow: var(--shadow-sm);
  padding: 32px 30px;
}
.search-card h3 { color: var(--blue); }
.search-card ul { margin-top: 14px; }
.search-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--grey-dark);
}
.search-card li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
}
@media (max-width: 700px) {
  .search-grid { grid-template-columns: 1fr; }
}

/* ---- Galerie (Startseite) ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- FAQ ---- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  border: 1px solid rgba(33,37,39,0.08);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 20px 54px 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-condensed);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--blue);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  padding: 0 24px 20px;
  margin: 0;
}

/* ---- Steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(33,37,39,0.08);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--white);
  background: var(--blue);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---- Cards / grids ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(33,37,39,0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.card .card-body { padding: 24px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

/* ---- Prämien-Karte (Partnerschaft) ---- */
.premium-box {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.premium-box .premium-amount {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.05;
  display: block;
}
.premium-box p { color: rgba(255,255,255,0.92); }

/* ---- Vorher/Nachher gallery ---- */
.project { margin-bottom: 64px; }
.project-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.project-head .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.compare-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.compare {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  background: var(--white);
}
.compare-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.compare-imgs img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.compare-imgs span {
  position: absolute;
  top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(33,37,39,0.55);
}
.compare-imgs span.after { right: 10px; background: rgba(54,100,139,0.9); }
.compare-imgs span.before { left: 10px; }
.compare-caption {
  padding: 12px 14px;
  font-size: 0.92rem;
  color: var(--grey-dark);
}
@media (max-width: 900px) { .compare-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .compare-row { grid-template-columns: 1fr; } }

/* ---- Forms ---- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(33,37,39,0.16);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--grey); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 500;
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}

/* ---- Quote ---- */
.quote {
  font-family: var(--font-condensed);
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.4;
  color: var(--ink);
}
.quote-attr { margin-top: 18px; font-family: var(--font); font-size: 0.95rem; color: var(--grey-dark); }

/* ---- Team / person ---- */
.person {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}
.person img { border-radius: var(--radius); box-shadow: var(--shadow); }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 20px; }
.credentials li { position: relative; padding-left: 24px; color: var(--grey-dark); }
.credentials li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
}
@media (max-width: 860px) {
  .person { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr; }
}

/* ---- Kontakt ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, background 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.07); background: var(--whatsapp-dark); }
.whatsapp-fab svg { width: 32px; height: 32px; }

/* ---- Lightbox (Vorher/Nachher vergrößert) ---- */
.compare-imgs img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(28, 53, 73, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 30px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox figure {
  margin: 0;
  max-width: min(1100px, 96vw);
  text-align: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  margin: 0 auto;
}
.lightbox figcaption {
  color: var(--white);
  font-weight: 700;
  margin-top: 14px;
  font-size: 1.02rem;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.site-footer .logo img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--white); }
.site-footer li { margin-bottom: 10px; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Utilities ---- */
.mt-0 { margin-top: 0; }
.text-grey { color: var(--grey); }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge-list li {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue-dark);
}
