/* =========================================================
   X-ren — Wiederverwendbares Design-System (Vorlage)
   Kopiert aus x-ren-nordpunkt-consulting, Stand 2026-08-11.
   Ausgangspunkt für jedes neue Themen-Repo (siehe INFRASTRUCTURE.md,
   Abschnitt 3.4) — Farben/Wording pro Thema anpassen, Grundstruktur
   (Radii, Spacing, Container-Breite, Typografie) beibehalten.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&family=Source+Serif+4:ital,wght@0,600;0,700;1,500&display=swap');

:root {
  /* Colors — petrol navy + a single muted jade accent */
  --navy-950: #0a1620;
  --navy-900: #14293a;
  --navy-800: #1c3347;
  --navy-700: #24425c;
  --navy-600: #33587d;
  --teal-500: #0f6e5c;
  --teal-400: #159c81;
  --teal-050: #e6f6f1;
  --amber-500: #0f6e5c;
  --amber-400: #159c81;
  --gray-900: #131a24;
  --gray-700: #3d4a5c;
  --gray-500: #6b7789;
  --gray-300: #cdd5e0;
  --gray-200: #e4e9f0;
  --gray-100: #f2f5f9;
  --white: #ffffff;

  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(20, 41, 58, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 41, 58, 0.10);
  --shadow-lg: 0 24px 64px rgba(20, 41, 58, 0.16);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { color: var(--gray-700); }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--teal-500);
  display: inline-block;
}
.lede {
  font-size: 1.15rem;
  color: var(--gray-700);
  max-width: 640px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--gray-100); }
.section--navy { background: var(--navy-900); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.72); }
.section-head { max-width: 700px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--amber-500); color: var(--white); box-shadow: 0 10px 24px rgba(15,110,92,0.35); }
.btn--primary:hover { background: var(--amber-400); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--dark { background: var(--navy-900); color: var(--white); }
.btn--dark:hover { background: var(--navy-800); }
.btn--outline { background: transparent; border-color: var(--navy-900); color: var(--navy-900); }
.btn--outline:hover { background: var(--navy-900); color: var(--white); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(20,41,58,0.08);
}
.header-top { background: var(--navy-950); }
.header-top-inner {
  max-width: 1360px; margin: 0 auto; padding: 9px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.78rem; color: rgba(255,255,255,0.68);
}
.header-top-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; color: rgba(255,255,255,0.68); transition: color .15s; }
a.header-top-item:hover { color: var(--teal-400); }
.header-top-right { display: flex; align-items: center; gap: 22px; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 14px 24px; max-width: 1360px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--navy-900); flex-shrink: 0; white-space: nowrap; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-500), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(15,110,92,0.3);
}
.main-nav { display: flex; align-items: center; min-width: 0; }
.main-nav > ul { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 10px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem; color: var(--navy-800);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.main-nav > ul > li > a:hover { background: var(--gray-100); color: var(--teal-500); }
.main-nav > ul > li.active > a { color: var(--teal-500); }
.caret { width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); opacity: .55; flex-shrink: 0; }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
  padding: 10px; min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.main-nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--gray-700); white-space: nowrap; }
.dropdown a:hover { background: var(--teal-050); color: var(--teal-500); }
.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.mobile-contact { display: none; }
.nav-toggle {
  display: none; width: 40px; height: 40px; flex-shrink: 0;
  align-items: center; justify-content: center;
  border: 1px solid var(--gray-200); border-radius: 8px; background: var(--white);
  font-size: 1.05rem; cursor: pointer; color: var(--navy-900);
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(1100px 500px at 85% -10%, rgba(15,110,92,0.30), transparent 60%),
              linear-gradient(160deg, var(--navy-950), var(--navy-800) 60%, var(--navy-700));
  color: var(--white);
  padding: 110px 0 100px;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
/* Hero-Badge: macht neue Tools (z. B. den Prüfstand) sofort im ersten
   Bildschirm sichtbar, ohne dass man erst scrollen muss. */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 14px; margin-bottom: 20px;
  border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  color: var(--white); font-size: 0.85rem; font-weight: 600;
  backdrop-filter: blur(6px);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.hero-badge:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-400);
  box-shadow: 0 0 0 rgba(21,156,129,0.6);
  animation: hero-badge-pulse 1.8s ease-out infinite;
}
.hero-badge-arrow { opacity: 0.75; transition: transform .15s ease; }
.hero-badge:hover .hero-badge-arrow { transform: translateX(3px); }
@keyframes hero-badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(21,156,129,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(21,156,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(21,156,129,0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge-dot { animation: none; }
}
.hero h1 { color: var(--white); max-width: 800px; }
.hero .lede { color: rgba(255,255,255,0.78); margin: 22px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 72px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.14);
}
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal-400); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* Page hero (subpages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white); padding: 76px 0 64px;
}
.page-hero h1 { color: var(--white); }
.breadcrumb { display: flex; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--teal-400); }

/* Cards */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 32px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-050); color: var(--teal-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 0.88rem; color: var(--navy-900); }
.card-link .arrow { transition: transform .15s; }
.card:hover .card-link .arrow { transform: translateX(4px); }

.result-highlight {
  border-width: 2px; border-left-width: 8px; border-left-color: var(--gray-300);
  background: var(--gray-100);
  animation: result-pop .35s ease;
}
.result-highlight--danger { border-left-color: #b3261e; background: #fdecea; }
.result-highlight--warn { border-left-color: var(--teal-500); background: var(--teal-050); }
.result-highlight--muted { border-left-color: var(--gray-400, var(--gray-300)); background: var(--white); }
.result-icon { font-size: 2.6rem; line-height: 1; margin-bottom: 6px; }
.result-highlight h2 { font-size: 1.7rem; }
@keyframes result-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.pill {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--teal-050); color: var(--teal-500);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
}
.pill--danger { background: #fbe9e7; color: #b3261e; }
.pill--muted { background: var(--gray-100); color: var(--gray-500); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media {
  border-radius: var(--radius-lg); aspect-ratio: 4/3;
  background: linear-gradient(155deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--teal-500) 135%);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 30px;
  color: rgba(255,255,255,0.92); font-family: var(--font-display); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.6;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.split-media::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(200deg, rgba(0,0,0,0.9), transparent 62%);
}
.split-media::after {
  content: ""; position: absolute; top: 26px; right: 26px;
  width: 30px; height: 30px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.32);
}
.checklist li { display: flex; gap: 12px; padding: 10px 0; font-size: 0.98rem; color: var(--gray-700); align-items: flex-start; }
.checklist li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-050); color: var(--teal-500); font-weight: 800; font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* Numbered steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); }
.step-num {
  width: 40px; height: 40px; border-radius: 12px; background: var(--navy-900); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-display);
  margin-bottom: 16px;
}

/* Stat bar */
.trust-bar { background: var(--navy-900); padding: 22px 0; }
.trust-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-item { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }

/* Testimonial / quote */
.quote-block { background: var(--teal-050); border-radius: var(--radius-lg); padding: 48px; position: relative; }
.quote-block p { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: var(--navy-900); font-weight: 500; line-height: 1.5; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item summary {
  cursor: pointer; padding: 22px 0; font-weight: 700; font-size: 1rem;
  color: var(--navy-900); display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--teal-500); font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding-bottom: 22px; max-width: 720px; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--teal-500), var(--navy-800));
  border-radius: var(--radius-lg); padding: 56px; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.85); }

/* Form */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-800); }
.form-field input, .form-field textarea, .form-field select {
  padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--gray-200);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--gray-100);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--teal-500); background: var(--white); }

/* Table */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--gray-200); }
th { background: var(--gray-100); font-family: var(--font-display); color: var(--navy-900); }
tr:last-child td { border-bottom: none; }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-grid a:hover { color: var(--teal-400); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem;
}
.social-row { display: flex; gap: 10px; margin-top: 14px; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { background: var(--teal-500); }

/* Sticky mini CTA */
.mini-cta {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  background: var(--navy-900); color: white; padding: 14px 20px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg);
  font-weight: 700; font-size: 0.85rem;
}
.mini-cta:hover { background: var(--teal-500); }

/* Utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.gap-12 { gap: 12px; }

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Header collapses to a single, deliberate breakpoint — either the full
   nav fits, or it's a proper off-canvas panel. No in-between overlap. */
@media (max-width: 1240px) {
  .header-top-item:not(.header-top-phone) { display: none; }
  .header-top-inner { justify-content: center; }

  .nav-toggle { display: flex; }
  .header-inner { padding: 12px 20px; }

  .main-nav {
    order: 3; flex-basis: 100%; width: 100%;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .main-nav.open { max-height: 82vh; opacity: 1; overflow-y: auto; margin-top: 14px; }

  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; padding-bottom: 8px; flex-wrap: wrap; }
  .main-nav > ul > li > a {
    width: 100%; padding: 15px 4px; border-radius: 0;
    font-size: 1rem; justify-content: space-between;
    border-bottom: 1px solid var(--gray-100);
  }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; min-width: 0;
    padding: 2px 0 10px 14px; background: transparent;
  }
  .dropdown a { padding: 9px 8px; font-size: 0.92rem; }

  .mobile-contact {
    display: flex; flex-direction: column; gap: 12px;
    padding: 18px 4px 4px; margin-top: 4px; border-top: 1px solid var(--gray-200);
  }
  .mobile-contact a { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; color: var(--navy-800); }
}
@media (max-width: 560px) {
  .header-top-inner { font-size: 0.72rem; }
}
@media (max-width: 720px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--navy-950); color: rgba(255,255,255,0.88);
  padding: 20px 24px; box-shadow: 0 -8px 30px rgba(0,0,0,0.28);
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1180px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.cookie-banner p { color: rgba(255,255,255,0.78); font-size: 0.85rem; max-width: 640px; margin: 0; }
.cookie-banner a { color: var(--teal-400); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 560px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}
/* Keep the sticky mini-CTA clear of the cookie banner while it's showing */
body.cookie-banner-visible .mini-cta { bottom: 100px; }
@media (max-width: 560px) {
  body.cookie-banner-visible .mini-cta { bottom: 150px; }
}
