:root {
  --bg: #f5f7fb;
  --text: #172033;
  --muted: #607089;
  --primary: #155dfc;
  --primary-dark: #0d2f77;
  --accent: #00b8d9;
  --dark: #081528;
  --card: #ffffff;
  --line: rgba(23, 32, 51, 0.12);
  --shadow: 0 20px 60px rgba(7, 20, 46, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 260px;
}

.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: 320px;
}

.brand-mark {
  display: none;
}

.brand strong {
  display: block;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
  background: rgba(21, 93, 252, 0.09);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--primary-dark);
  color: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(0, 184, 217, 0.34), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(21, 93, 252, 0.34), transparent 30%),
    radial-gradient(circle at 52% 78%, rgba(0, 184, 217, 0.16), transparent 34%),
    linear-gradient(135deg, #06111f 0%, #0b234b 48%, #06111f 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 184, 217, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 184, 217, 0.10) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 1px, transparent 1.6px);
  background-size:
    64px 64px,
    64px 64px,
    32px 32px;
  opacity: 0.42;
  mask-image: linear-gradient(to bottom, black 0%, black 58%, transparent 96%);
  animation: hero-tech-grid 28s linear infinite;
}

@keyframes hero-tech-grid {
  0% {
    background-position:
      0 0,
      0 0,
      0 0;
  }

  100% {
    background-position:
      64px 64px,
      64px 64px,
      32px 32px;
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(0, 184, 217, 0.08) 18% 18.4%, transparent 18.4% 100%),
    linear-gradient(65deg, transparent 0 28%, rgba(21, 93, 252, 0.10) 28% 28.35%, transparent 28.35% 100%),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.05) 42% 42.25%, transparent 42.25% 100%);
  background-size:
    520px 520px,
    420px 420px,
    680px 680px;
  opacity: 0.75;
  mask-image: linear-gradient(to bottom, black 0%, black 68%, transparent 96%);
  animation: hero-tech-lines 18s linear infinite;
}

@keyframes hero-tech-lines {
  0% {
    background-position:
      0 0,
      0 0,
      0 0;
  }

  100% {
    background-position:
      120px 80px,
      -100px 120px,
      80px -100px;
  }
}

.container-wide {
  width: min(100% - 40px, 1440px);
  margin: 0 auto;
}

.container-text {
  width: min(100% - 40px, 960px);
  margin: 0 auto;
}

.container-split {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.hero-content {
  position: relative;
  padding: 90px 0;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin: 0 0 14px;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 0 0 22px;
}

.hero-subtitle {
  max-width: 880px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,0.84);
  margin: 0 0 32px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button-row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(21, 93, 252, 0.3);
}

.btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.22);
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-light {
  background: #fff;
}

.section-muted {
  background: #f2f6fc;
}

.section-dark {
  background: var(--dark);
  color: white;
}

.section-dark p {
  color: rgba(255,255,255,0.78);
}

.section-heading {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 46px;
}

.section-heading h2,
.container-text h2,
.container-split h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 0 0 18px;
}

.section-heading p,
.container-text > p,
.container-split p {
  color: var(--muted);
  font-size: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card,
.highlight-panel,
.hours-box,
.feature-list > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.card h3,
.highlight-panel h3,
.hours-box h3,
.feature-list h3 {
  margin-top: 0;
  font-size: 22px;
}

.card p,
.hours-box p,
.feature-list p {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--primary);
  background: rgba(21, 93, 252, 0.1);
}

.card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(21, 93, 252, 0.28);
  box-shadow: 0 28px 70px rgba(7, 20, 46, 0.16);
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-link:hover {
  color: inherit;
}

.card-cta {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 900;
}

.card:hover .card-icon {
  transform: scale(1.12);
  background: linear-gradient(135deg, rgba(21, 93, 252, 0.14), rgba(0, 184, 217, 0.14));
}

.card-icon {
  transition: transform .22s ease, background .22s ease;
}

.highlight-panel {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  padding: 9px 0 9px 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.logo-strip span {
  padding: 18px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(7, 20, 46, 0.08);
  font-weight: 900;
  color: var(--primary-dark);
}

.hours-box {
  background: white;
}

.small {
  font-size: 14px !important;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.sitemap {
  display: grid;
  gap: 10px;
  font-size: 18px;
}

.sitemap a {
  color: var(--primary);
  font-weight: 800;
}

.legal {
  font-size: 18px;
}

.site-footer {
  background: #07101f;
  color: white;
  padding: 58px clamp(20px, 4vw, 56px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 34px;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.74);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 8px 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  width: min(100%, 1440px);
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .container-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    align-items: stretch;
  }
  .main-nav.open {
    display: grid;
  }
  .main-nav a {
    border-radius: 12px;
  }
  .hero {
    min-height: 520px;
  }
  .cards-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.section-heading .button-row,
.section-heading .button-row.center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section-light .btn-secondary,
.section-muted .btn-secondary {
  color: var(--primary-dark);
  background: #ffffff;
  border: 2px solid rgba(21, 93, 252, 0.42);
  box-shadow: 0 10px 26px rgba(21, 93, 252, 0.12);
}

.section-light .btn-secondary:hover,
.section-muted .btn-secondary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(21, 93, 252, 0.24);
}

.home-announcement-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 26px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5a5f, #ff8a3d);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255, 90, 95, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.home-announcement-badge::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: rotate(18deg);
  animation: badge-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-shine {
  0% {
    left: -80%;
  }

  45% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.home-announcement-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 90, 95, 0.36);
  filter: brightness(1.03);
}

.identity-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.identity-modal.is-open {
  display: flex;
}

.identity-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 46, 0.72);
  backdrop-filter: blur(6px);
}

.identity-modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(7, 20, 46, 0.32);
  text-align: center;
}

.identity-modal-logo {
  display: block;
  height: 160px;
  width: auto;
  max-width: 100%;
  margin: 0 auto 24px;
}

.identity-modal-card h2 {
  margin-bottom: 16px;
}

.identity-modal-card p {
  margin-left: auto;
  margin-right: auto;
}

.identity-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 93, 252, 0.08);
  color: var(--primary-dark);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 640px) {
  .identity-modal-card {
    padding: 28px 22px;
  }

  .identity-modal-logo {
    height: 96px;
  }
}

.identity-modal-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.identity-modal-actions .btn {
  margin: 0;
}

.hours-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.hours-title-row h3 {
  margin-bottom: 0;
}

.open-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.open-status-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
}

.open-status-badge.is-open {
  color: #0f7a35;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.24);
  animation: open-badge-pulse 2.4s ease-in-out infinite;
}

.open-status-badge.is-closed {
  color: #b42318;
  background: rgba(220, 38, 38, 0.10);
  border: 1px solid rgba(220, 38, 38, 0.22);
  animation: closed-badge-pulse 2.8s ease-in-out infinite;
}

@keyframes open-badge-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.28);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

@keyframes closed-badge-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.24);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.contact-location-card {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-location-text h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-location-text p {
  color: var(--muted);
  font-size: 17px;
}

.contact-map-link {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(7, 20, 46, 0.12);
}

.contact-map-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .25s ease, filter .25s ease;
}

.contact-map-link:hover img {
  transform: scale(1.035);
  filter: brightness(1.03);
}

@media (max-width: 900px) {
  .contact-location-card {
    grid-template-columns: 1fr;
  }
}

.audit-levels-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .audit-levels-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .audit-levels-grid {
    grid-template-columns: 1fr;
  }
}

.audit-duration-note {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
}

.legal-intro-card {
  margin-bottom: 42px;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(21, 93, 252, 0.08), rgba(0, 184, 217, 0.08));
  border: 1px solid rgba(21, 93, 252, 0.16);
  box-shadow: 0 16px 42px rgba(7, 20, 46, 0.08);
}

.legal-intro-card h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.legal-intro-card p {
  margin: 0 0 10px;
}

.legal-intro-card p:last-child {
  margin-bottom: 0;
}

.partners-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.msp-plans-grid {
  width: min(100%, 1120px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.msp-plans-note {
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
}

@media (max-width: 900px) {
  .msp-plans-grid {
    grid-template-columns: 1fr;
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(7, 20, 46, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease, box-shadow .22s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(7, 20, 46, 0.30);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(0, 184, 217, 0.35);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}

/* Menu spécial : Support */
.main-nav a[href="support.html"] {
  color: var(--primary-dark);
  background: rgba(0, 184, 217, 0.12);
  border: 1px solid rgba(0, 184, 217, 0.24);
  box-shadow: 0 8px 20px rgba(7, 20, 46, 0.08);
}

.main-nav a[href="support.html"]:hover,
.main-nav a[href="support.html"].active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(21, 93, 252, 0.24);
}

/* Animation légère du menu Support */
.main-nav a[href="support.html"] {
  animation: support-attention 5.5s ease-in-out infinite;
}

@keyframes support-attention {
  0%, 88%, 100% {
    transform: translateX(0);
    box-shadow: 0 8px 20px rgba(7, 20, 46, 0.08);
  }

  90% {
    transform: translateX(-1px);
  }

  92% {
    transform: translateX(2px);
    box-shadow: 0 12px 30px rgba(21, 93, 252, 0.26);
  }

  94% {
    transform: translateX(-2px);
  }

  96% {
    transform: translateX(1px);
  }

  98% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav a[href="support.html"],
  .header-info-dot {
    animation: none;
  }
}

/* Badge header : notes d'information */
.header-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-dark);
  background: rgba(0, 184, 217, 0.12);
  border: 1px solid rgba(0, 184, 217, 0.24);
  box-shadow: 0 8px 22px rgba(7, 20, 46, 0.08);
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-info-badge:hover {
  transform: translateY(-1px);
  background: rgba(0, 184, 217, 0.18);
  box-shadow: 0 12px 28px rgba(7, 20, 46, 0.12);
}

.header-info-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 184, 217, 0.16);
  animation: header-info-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes header-info-dot-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.22);
  }

  50% {
    transform: scale(1.25);
    box-shadow: 0 0 0 9px rgba(0, 184, 217, 0.02);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(0, 184, 217, 0.22);
  }
}

@media (max-width: 1080px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 54px;
    max-width: 230px;
  }

  .header-info-badge {
    display: inline-flex;
    margin-left: auto;
    margin-right: 8px;
    padding: 7px 11px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    height: 48px;
    max-width: 190px;
  }

  .header-info-badge {
    gap: 6px;
    padding: 7px 10px;
    font-size: 0;
  }

  .header-info-badge::after {
    content: "Info";
    font-size: 12px;
    font-weight: 800;
  }
}