/* Lokale Schrift "Jost" (Variable Font, selbst gehostet) */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/jost.woff2") format("woff2");
}

/* ============================================================
   QAdvance Consulting GmbH — Design-Tokens & Komponenten
   Quelle CI: Benutzerguide (LOQUI 2022)
   Farben:  #164D68 (Blau) · #F4C60B (Gelb) · #7F6B3D (Bronze) · #7C8488 (Grau)
   Schrift: Futura BT (Book/Bold) — Web-Fallback: Jost
   ============================================================ */

:root {
  /* CI-Farben */
  --qa-blue: #164D68;
  --qa-blue-deep: #0E3850;      /* abgedunkelt für Verläufe/Hover (oklch-nah an CI-Blau) */
  --qa-blue-soft: #2A6485;      /* aufgehellt für Hover/Sekundärflächen */
  --qa-yellow: #F4C60B;
  --qa-yellow-deep: #D9AF06;
  --qa-bronze: #7F6B3D;
  --qa-gray: #7C8488;

  /* Abgeleitete Flächen */
  --qa-ink: #16303F;            /* Fließtext, blaustichiges Anthrazit */
  --qa-ink-soft: #4A5E6B;       /* Sekundärtext */
  --qa-bg: #FFFFFF;
  --qa-bg-tint: #F3F6F8;        /* helle Sektion */
  --qa-line: #DFE6EA;

  /* Typografie */
  --qa-font: "Futura", "Futura BT", "Jost", "Century Gothic", "Trebuchet MS", sans-serif;

  /* Layout */
  --qa-container: 1160px;
  --qa-pad-x: clamp(20px, 4vw, 48px);
  --qa-section-y: clamp(64px, 9vw, 112px);
  --qa-radius: 10px;
  --qa-shadow: 0 10px 30px rgba(22, 77, 104, 0.10);
  --qa-shadow-soft: 0 4px 16px rgba(22, 77, 104, 0.07);
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--qa-font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--qa-ink);
  background: var(--qa-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--qa-blue); }

.container {
  max-width: var(--qa-container);
  margin: 0 auto;
  padding-left: var(--qa-pad-x);
  padding-right: var(--qa-pad-x);
}

/* ---------- Typo-System ---------- */
h1, h2, h3, h4 { font-family: var(--qa-font); color: var(--qa-blue); margin: 0 0 0.5em 0; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.4rem); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.2; font-weight: 700; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.3rem); line-height: 1.35; font-weight: 700; }
p { margin: 0 0 1em 0; text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); line-height: 1.6; color: var(--qa-ink-soft); }
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--qa-bronze); margin-bottom: 14px;
}
.overline::before { content: ""; width: 26px; height: 3px; background: var(--qa-yellow); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.on-dark p, .on-dark .lead { color: rgba(255,255,255,0.82); }
.on-dark .overline { color: var(--qa-yellow); }

/* ---------- Sektionen ---------- */
.section { padding-top: var(--qa-section-y); padding-bottom: var(--qa-section-y); }
.section-tint { background: var(--qa-bg-tint); }
.section-dark { background: var(--qa-blue); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }

/* ---------- Buttons (Platzhalter: data-platzhalter, Links folgen) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  font-family: var(--qa-font); font-size: 1rem; font-weight: 700; letter-spacing: 0.02em;
  text-decoration: none; border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--qa-yellow); color: var(--qa-blue); }
.btn-primary:hover { background: var(--qa-yellow-deep); }
.btn-secondary { background: transparent; color: var(--qa-blue); border-color: var(--qa-blue); }
.btn-secondary:hover { background: var(--qa-blue); color: #fff; }
.on-dark .btn-secondary, .btn-secondary.on-dark { color: #fff; border-color: rgba(255,255,255,0.7); }
.on-dark .btn-secondary:hover, .btn-secondary.on-dark:hover { background: #fff; color: var(--qa-blue); border-color: #fff; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.98rem; color: var(--qa-blue); text-decoration: none;
}
.btn-link::after { content: "»"; color: var(--qa-yellow-deep); font-size: 1.1em; transition: transform 0.18s ease; }
.btn-link:hover::after { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.topbar { background: var(--qa-blue); color: rgba(255,255,255,0.9); font-size: 0.85rem; }
.topbar .container { display: flex; justify-content: flex-end; gap: 28px; padding-top: 7px; padding-bottom: 7px; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; gap: 7px; align-items: center; }
.topbar a:hover { color: var(--qa-yellow); }

.site-header { background: #fff; border-bottom: 1px solid var(--qa-line); position: sticky; top: 0; z-index: 50; }
.site-header .container { display: flex; align-items: center; gap: 32px; min-height: 78px; }
.brand { margin-right: auto; display: flex; align-items: center; }
.brand img { height: 60px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; }
.main-nav li { position: relative; }
.main-nav a, .main-nav button {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--qa-font); font-size: 1rem; font-weight: 500; color: var(--qa-ink);
  background: none; border: 0; padding: 10px 14px; text-decoration: none; cursor: pointer; border-radius: 6px;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > button:hover { color: var(--qa-blue); background: var(--qa-bg-tint); }
.main-nav .caret { font-size: 0.7em; color: var(--qa-gray); }
.sub {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--qa-line); border-radius: 8px;
  box-shadow: var(--qa-shadow); list-style: none; margin: 6px 0 0; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: block; padding: 9px 12px; border-radius: 6px; width: 100%; }
.sub a:hover { background: var(--qa-bg-tint); color: var(--qa-blue); }
.nav-cta { margin-left: 10px; }
.nav-cta .btn { min-height: 44px; padding: 0 20px; font-size: 0.95rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--qa-blue); margin: 5px 0; border-radius: 2px; }

@media (max-width: 980px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--qa-line); box-shadow: var(--qa-shadow);
    padding: 12px var(--qa-pad-x) 20px;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 14px; }
  .nav-cta { margin: 10px 0 0; }
  .nav-toggle { display: block; }
  .topbar .container { justify-content: center; }
}

/* ---------- Karten ---------- */
.card-grid { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1020px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--qa-line); border-radius: var(--qa-radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--qa-shadow-soft); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--qa-shadow); }
.card h3 { margin: 0; }
.card p { color: var(--qa-ink-soft); font-size: 0.97rem; margin: 0; }
.card .btn-link { margin-top: auto; padding-top: 12px; }
.card-icon { width: 56px; height: 56px; margin-bottom: 6px; }

/* Branchen-Karte mit Bild */
.branche-card {
  position: relative; border-radius: var(--qa-radius); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end; text-decoration: none;
  box-shadow: var(--qa-shadow-soft); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.branche-card:hover { transform: translateY(-4px); box-shadow: var(--qa-shadow); }
.branche-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.branche-card .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,56,80,0) 32%, rgba(14,56,80,0.88) 100%);
}
.branche-card .label { position: relative; padding: 26px 26px 24px; width: 100%; }
.branche-card h3 { color: #fff; margin: 0 0 4px; }
.branche-card p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0 0 10px; }
.branche-card .btn-link { color: var(--qa-yellow); }
.branche-card:hover h3 { text-decoration: underline; text-decoration-color: var(--qa-yellow); text-underline-offset: 5px; }

/* ---------- Vorgehen / Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; list-style: none; margin: 0; padding: 0; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.steps li { counter-increment: step; padding-top: 14px; border-top: 3px solid var(--qa-line); position: relative; }
.steps li::before {
  content: "0" counter(step);
  font-weight: 700; font-size: 0.9rem; color: var(--qa-bronze); letter-spacing: 0.08em;
  display: block; margin-bottom: 6px;
}
.steps li strong { display: block; color: var(--qa-blue); font-size: 1.05rem; margin-bottom: 4px; }
.steps li span { color: var(--qa-ink-soft); font-size: 0.92rem; line-height: 1.5; display: block; }
.steps li:first-child { border-top-color: var(--qa-yellow); }

/* ---------- CTA-Band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band .veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,56,80,0.96) 0%, rgba(22,77,104,0.82) 55%, rgba(22,77,104,0.55) 100%); }
.cta-band .container { position: relative; }
.cta-inner { max-width: 640px; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.cta-phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.cta-phone:hover { color: var(--qa-yellow); }

/* ---------- Footer ---------- */
.site-footer { background: var(--qa-blue-deep); color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-top: 64px; padding-bottom: 48px; }
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-main { grid-template-columns: 1fr; } }
.footer-main img.footer-logo { height: 42px; width: auto; margin-bottom: 18px; }
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.site-footer a:hover { color: var(--qa-yellow); }
.footer-contact { display: grid; gap: 6px; font-style: normal; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }

/* ---------- Unterseiten-Hero ---------- */
.page-hero { background: linear-gradient(180deg, #FFFFFF 0%, var(--qa-bg-tint) 100%); border-bottom: 1px solid var(--qa-line); }
.page-hero .container {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-top: clamp(48px, 6.5vw, 88px); padding-bottom: clamp(48px, 6.5vw, 88px);
}
.page-hero.no-photo .container { grid-template-columns: minmax(0, 780px); }
.page-hero .visual { position: relative; }
.page-hero .visual img { border-radius: var(--qa-radius); box-shadow: var(--qa-shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.page-hero .visual::after {
  content: ""; position: absolute; left: -14px; bottom: -14px; width: 36%; height: 44%;
  border-left: 6px solid var(--qa-yellow); border-bottom: 6px solid var(--qa-yellow);
  border-radius: 0 0 0 var(--qa-radius);
}
@media (max-width: 920px) {
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero .visual { order: -1; }
}

/* ---------- Listen mit CI-Bulletpoint ---------- */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 34px; color: var(--qa-ink-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  background: url("../assets/icons/icon-bulletpoint.svg") no-repeat center / contain;
}
.check-list li strong { color: var(--qa-blue); }
.check-list.two-col { grid-template-columns: 1fr 1fr; column-gap: 36px; }
@media (max-width: 760px) { .check-list.two-col { grid-template-columns: 1fr; } }

/* ---------- Text/Bild-Zeile ---------- */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split-row img { border-radius: var(--qa-radius); box-shadow: var(--qa-shadow-soft); width: 100%; object-fit: cover; }
@media (max-width: 860px) { .split-row { grid-template-columns: 1fr; } }

/* ---------- Formular ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: grid; gap: 7px; }
.form-field label { font-weight: 700; font-size: 0.9rem; color: var(--qa-blue); }
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--qa-font); font-size: 1rem; color: var(--qa-ink);
  padding: 13px 14px; border: 1px solid var(--qa-line); border-radius: 6px; background: #fff; width: 100%;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 2px solid var(--qa-blue); outline-offset: 1px; border-color: var(--qa-blue);
}
.form-hint { font-size: 0.85rem; color: var(--qa-gray); }

/* ---------- Hilfen ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.badge {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--qa-line);
  color: var(--qa-ink-soft); background: #fff;
}
.on-dark .badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.9); }
[data-platzhalter] { cursor: pointer; }

/* ---------- Hero (Variante A: Split-Hero, helle Flächen) ---------- */
.hero-a { background: linear-gradient(180deg, #FFFFFF 0%, var(--qa-bg-tint) 100%); border-bottom: 1px solid var(--qa-line); }
.hero-a .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px);
}
.hero-a .visual { position: relative; }
.hero-a .visual img { border-radius: var(--qa-radius); box-shadow: var(--qa-shadow); aspect-ratio: 4 / 3.7; object-fit: cover; width: 100%; }
.hero-a .visual::after {
  content: ""; position: absolute; left: -16px; bottom: -16px; width: 38%; height: 46%;
  border-left: 6px solid var(--qa-yellow); border-bottom: 6px solid var(--qa-yellow);
  border-radius: 0 0 0 var(--qa-radius);
}
@media (max-width: 920px) {
  .hero-a .container { grid-template-columns: 1fr; }
  .hero-a .visual { order: -1; }
}

/* Schlüsselwort-Hervorhebung: gelber CI-Akzent als Marker hinter dem Wort */
.hl {
  background-image: linear-gradient(transparent 58%, rgba(244, 198, 11, 0.55) 58%);
  background-repeat: no-repeat;
  padding: 0 0.04em;
}

/* Lange deutsche Komposita (z. B. „Qualitätsmanagement") auf schmalen
   Screens sauber umbrechen statt überlaufen lassen. */
h1, h2 { overflow-wrap: break-word; hyphens: auto; }

/* ---------- Kontaktformular: Einwilligung, Honeypot, Status ---------- */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.check-consent { display: flex; gap: 11px; align-items: flex-start; font-size: 0.92rem; line-height: 1.5; color: var(--qa-ink-soft); cursor: pointer; }
.check-consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--qa-blue); }
.check-consent a { color: var(--qa-blue); }
.form-status { border-radius: 6px; padding: 14px 16px; font-weight: 500; }
.form-status.ok { background: #E8F3EC; border: 1px solid #BBD9C4; color: #1E6B3A; }
.form-status.err { background: #FBEAEA; border: 1px solid #E6BFBF; color: #9B2C2C; }

/* ---------- Rechtsseiten (Impressum, Datenschutz) ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(1.25rem, 2vw, 1.55rem); margin: 1.8em 0 0.5em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--qa-ink-soft); }
.legal ul { padding-left: 1.2em; display: grid; gap: 6px; margin: 0 0 1em; }
.legal a { color: var(--qa-blue); }
.legal .todo { color: var(--qa-yellow-deep); font-weight: 700; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card img { width: 100%; aspect-ratio: 4 / 3.5; object-fit: cover; object-position: 50% 22%; border-radius: var(--qa-radius); box-shadow: var(--qa-shadow-soft); }
.team-card h3 { margin: 18px 0 2px; }
.team-card .role { color: var(--qa-bronze); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 8px; }
.team-card .role.todo { color: var(--qa-yellow-deep); }
.team-card p { color: var(--qa-ink-soft); font-size: 0.95rem; margin: 0; }
.team-avatar { width: 100%; aspect-ratio: 4 / 3.5; border-radius: var(--qa-radius); background: var(--qa-bg-tint); border: 1px solid var(--qa-line); box-shadow: var(--qa-shadow-soft); display: flex; align-items: center; justify-content: center; }
.team-avatar span { font-size: 2.6rem; font-weight: 700; color: var(--qa-blue); letter-spacing: 0.04em; }

/* ---------- FAQ (Akkordeon) ---------- */
.faq { max-width: 840px; display: grid; gap: 12px; }
.faq details { border: 1px solid var(--qa-line); border-radius: var(--qa-radius); background: #fff; }
.faq summary { cursor: pointer; padding: 18px 20px; font-weight: 700; color: var(--qa-blue); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--qa-yellow-deep); font-size: 1.5em; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--qa-line); }
.faq .faq-body { padding: 16px 20px; color: var(--qa-ink-soft); }

/* ---------- Hinweis-Box ---------- */
.callout { background: #fff; border: 1px solid var(--qa-line); border-left: 4px solid var(--qa-yellow); border-radius: 6px; padding: 18px 22px; box-shadow: var(--qa-shadow-soft); }
.callout p { margin: 0; color: var(--qa-ink-soft); }
.callout strong { color: var(--qa-blue); }

/* ---------- Sprachumschalter (Topbar) ---------- */
.lang-switch { margin-right: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; }
.lang-switch a, .lang-switch span { font-weight: 700; }
.lang-switch a { color: rgba(255,255,255,0.7); text-decoration: none; }
.lang-switch a:hover { color: var(--qa-yellow); }
.lang-switch .active { color: #fff; }
.lang-switch .sep { color: rgba(255,255,255,0.35); font-weight: 400; }

/* Consent-Banner */
.qa-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: #fff; box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  border-top: 4px solid var(--qa-yellow, #F4C60B);
  transform: translateY(110%); transition: transform .3s ease; }
.qa-consent.is-open { transform: translateY(0); }
.qa-consent__inner { max-width: 1100px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.qa-consent__text { margin: 0; flex: 1 1 320px; font-size: .95rem;
  color: #33424b; line-height: 1.5; }
.qa-consent__text a { color: var(--qa-blue, #164D68); }
.qa-consent__actions { display: flex; gap: 12px; flex-shrink: 0; }
.qa-consent__btn { border: 0; border-radius: 6px; padding: 11px 22px;
  font-weight: 700; font-family: inherit; font-size: .95rem; cursor: pointer; }
.qa-consent__btn--accept { background: var(--qa-blue, #164D68); color: #fff; }
.qa-consent__btn--accept:hover { background: #0f3a50; }
.qa-consent__btn--decline { background: #eef1f3; color: var(--qa-blue, #164D68); }
.qa-consent__btn--decline:hover { background: #e2e7ea; }
@media (max-width: 640px) {
  .qa-consent__inner { padding: 16px; }
  .qa-consent__actions { width: 100%; }
  .qa-consent__btn { flex: 1; }
}
