/* ===== CSS RESET & NORMALIZE ===== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ===== ROOT VARIABLES and BRAND COLORS ===== */
:root {
  --color-primary: #283593;
  --color-secondary: #23242a;
  --color-bg: #181920;
  --color-light-bg: #23242a;
  --color-surface: #23242a;
  --color-accent: #00bfae;
  --color-accent-dark: #009488;
  --color-metal: #76797e;
  --color-metal-light: #bdbdbd;
  --color-text-light: #fafbfc;
  --color-text: #E5E7EB;
  --color-text-dark: #1A2027;
  --color-shadow: rgba(0,0,0,0.6);
  --radius: 12px;
  --elevation: 0 4px 20px 0 rgba(0,0,0,0.11);
  --tt-display: 'Montserrat', 'Arial', 'Helvetica Neue', Arial, sans-serif;
  --tt-body: 'Open Sans', 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ===== BODY & BASE LAYOUT ===== */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--tt-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  padding-bottom: 80px; /* For cookie banner */
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1164px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, .hero h1 {
  font-family: var(--tt-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 18px;
  letter-spacing: -1.1px;
  line-height: 1.1;
}
h2 {
  font-family: var(--tt-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}
h3 {
  font-family: var(--tt-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
h4 {
  font-family: var(--tt-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-metal-light);
}
p {
  font-size: 1.08rem;
  color: var(--color-text);
  margin-bottom: 18px;
}
a {
  color: var(--color-accent);
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--color-accent-dark);
  text-decoration: underline;
}
strong {
  font-weight: 700;
  color: var(--color-accent-dark);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(90deg, #22242b 90%, #191a1e 100%);
  border-bottom: 2px solid var(--color-metal);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--tt-display);
  font-size: 1rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 0;
  transition: color 0.17s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.btn-primary {
  font-family: var(--tt-display);
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-radius: var(--radius);
  padding: 11px 32px;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: 0 1px 6px var(--color-shadow);
  border: none;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
  margin-left: 16px;
  box-shadow: 0 1px 16px 0 rgba(0,0,0,.19);
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent-dark);
  color: var(--color-text-light);
  box-shadow: 0 2px 24px 0 rgba(0,191,174,0.19);
}
.btn-secondary {
  font-family: var(--tt-display);
  font-weight: 700;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius);
  padding: 10px 28px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 2px solid var(--color-accent);
  box-shadow: 0 1px 9px 0 rgba(0,0,0,0.06);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Burger menu toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: 50%;
  border: none;
  font-size: 2.0rem;
  padding: 7px 13px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.07);
  z-index: 1200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-metal);
  color: var(--color-text-light);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,29,33,.96);
  color: var(--color-text-light);
  z-index: 1201;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.82,0,.3,1.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.25rem;
  margin: 24px 0 0 28px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 1251;
  transition: color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-metal-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin: 36px 0 0 38px;
}
.mobile-nav a {
  font-family: var(--tt-display);
  font-size: 1.32rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.20s, border-color 0.15s, background 0.19s;
  border-radius: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: rgba(65,69,77,0.17);
  border-bottom: 1px solid var(--color-accent);
}

/* ===== HERO SECTION ===== */
.hero {
  background: url('../assets/bg-industrial-texture.jpg') center/cover, linear-gradient(115deg, #24252b 94%, #293361 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-metal);
  margin-bottom: 30px;
  box-shadow: 0 2px 18px rgba(5,13,24,0.20);
}
.hero .container {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: left;
  max-width: 660px;
  margin-left: 0;
}
.hero h1 {
  color: var(--color-accent);
  margin-bottom: 18px;
}
.hero p {
  color: var(--color-metal-light);
  font-size: 1.15rem;
  margin-bottom: 26px;
}

/* ===== SECTIONS & LAYOUTS ===== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.13);
}
.content-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  gap: 16px;
}

/* ===== FLEX PATTERNS (MANDATORY, DO NOT REMOVE) ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-light-bg);
  border-radius: var(--radius);
  box-shadow: 0 1px 7px 0 rgba(0,0,0,.14);
  margin-bottom: 20px;
  padding: 24px 20px 28px 26px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.22s;
  border: 1.5px solid transparent;
}
.card:hover, .card:focus-within {
  box-shadow: 0 2px 18px 0 rgba(0,191,174,0.11), 0 2px 12px 0 #13182428;
  border: 1.5px solid var(--color-accent-dark);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fafbfc;
  color: #23242a;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.12);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 5px solid var(--color-accent);
  transition: box-shadow 0.19s, border-color 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: var(--color-accent-dark);
  box-shadow: 0 2px 18px 0 rgba(0,191,174,0.07);
}
.testimonial-card p {
  color: #222431;
}
.testimonial-card span {
  color: var(--color-accent);
  font-family: var(--tt-display);
  font-size: 1.02rem;
  font-weight: 600;
  align-self: flex-end;
  opacity: 0.94;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== FEATURE & SERVICE GRIDS ===== */
.feature-grid, .service-cards, .project-list, .team-list, .case-study-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-cards > div, .project-list > div, .team-list > div, .case-study-snippets > div {
  flex: 1 1 260px;
  background: var(--color-light-bg);
  padding: 27px 18px 21px 22px;
  border-radius: var(--radius);
  box-shadow: 0 1px 7px 0 rgba(22,29,44,0.10);
  margin-bottom: 20px;
  min-width: 240px; /* For mobile wrapping */
  transition: box-shadow 0.18s, border 0.15s;
  border: 1.5px solid transparent;
  position: relative;
}
.feature-grid > div:hover, .service-cards > div:hover {
  box-shadow: 0 2px 20px 0 rgba(0,191,174,0.09), 0 2px 14px #2e343d22;
  border: 1.5px solid var(--color-accent);
}
.feature-grid img, .service-cards img {
  height: 50px;
  width: 50px;
  margin-bottom: 14px;
  filter: grayscale(34%) brightness(0.93);
}
.service-cards > div h3, .feature-grid > div h3, .team-list > div h3 {
  margin-bottom: 10px;
}

/* ===== ACCORDION ===== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion > div {
  background: #22232b;
  border-radius: 8px;
  box-shadow: 0 1px 7px 0 rgba(21,23,30,0.10);
  padding: 22px 18px;
  margin-bottom: 14px;
  border-left: 4px solid var(--color-metal);
  transition: border-color 0.2s;
}
.faq-accordion > div:hover {
  border-left: 4px solid var(--color-accent);
}

/* ===== CTA SECTION ===== */
.cta {
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px 0 rgba(18,22,35,0.13);
  border-radius: var(--radius);
  margin-bottom: 50px;
}
.cta .btn-primary {
  margin-top: 14px;
  background: var(--color-text-light);
  color: var(--color-accent);
  border: none;
}
.cta .btn-primary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* ===== CARDS AND BLOCKS ===== */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 16px 0 24px 0;
}
.company-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.contact-details > div, .contact-details span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-metal-light);
  font-size: 1rem;
}
.contact-details img {
  width: 20px;
  opacity: 0.8;
}
.map-embed {
  background: #23242b;
  color: #E5E7EB;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(21,23,30,0.10);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 18px 0;
}
.map-embed img {
  width: 42px;
  border-radius: 5px;
  box-shadow: 0 1px 4px #23242b80;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #23242b;
  border-radius: var(--radius);
  box-shadow: 0 1px 9px 0 rgba(22,29,44,0.10);
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 14px 13px;
  text-align: left;
  color: var(--color-text);
}
.comparison-table th {
  background: #23242a;
  color: var(--color-accent);
  font-weight: 700;
  font-family: var(--tt-display);
  font-size: 1rem;
}
.comparison-table tr:nth-child(even) td {
  background: #232539;
}
.comparison-table tr:nth-child(odd) td {
  background: #282A3F;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(90deg, #23242a 91%, #1b1b20 100%);
  color: var(--color-text-light);
  font-size: 1em;
  border-top: 2px solid var(--color-metal);
  margin-top: 60px;
  padding: 38px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}
.footer-nav a {
  color: var(--color-metal-light);
  font-family: var(--tt-display);
  text-transform: uppercase;
  font-size: 0.95em;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-metal-light);
  font-size: 0.93em;
  margin-top: 2px;
  text-align: center;
}

/* ===== TABLES & LISTS ===== */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 13px 11px;
  text-align: left;
  font-size: 1em;
}
ul {
  margin-left: 0;
  list-style-type: disc;
  color: var(--color-accent);
  margin-bottom: 14px;
  margin-top: 2px;
}
ul li {
  margin-left: 24px;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 1em;
}
ol {
  margin-left: 34px;
  margin-bottom: 14px;
}
ol li {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 1em;
}

/* ===== MODALS & OVERLAYS ===== */
.modal {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(4,9,19,.70);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.38s;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal-content {
  background: #fafbfc;
  color: #23242a;
  border-radius: 16px;
  padding: 32px 25px 27px 25px;
  width: 94vw;
  max-width: 410px;
  box-shadow: 0 4px 42px 0 rgba(15,22,35,0.20);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.modal-content h2 {
  color: var(--color-primary);
  margin-bottom: 6px;
}
.close-modal {
  position: absolute;
  right: 16px;
  top: 13px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-accent);
  cursor: pointer;
  z-index: 2;
  transition: color 0.18s;
}
.close-modal:hover, .close-modal:focus {
  color: var(--color-metal);
}

/* ===== COOKIE CONSENT BANNER & SETTINGS ===== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1400;
  background: linear-gradient(90deg, #23242a 90%, #272835 100%);
  color: #fafbfc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--tt-body);
  padding: 22px 30px 24px 20px;
  box-shadow: 0 -3px 18px 0 rgba(0,0,0,0.12);
  gap: 30px;
  border-top: 2.5px solid var(--color-accent);
  transition: transform 0.34s cubic-bezier(.83,0,.37,1);
}
.cookie-consent-banner.hidden {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-text {
  flex: 1;
  font-size: 1.01em;
  color: #fafbfc;
  margin-right: 32px;
  line-height: 1.4;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--tt-display);
  font-size: 1em;
  border-radius: var(--radius);
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  background: var(--color-accent);
  color: #23242a;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.15s, color 0.14s;
  margin-right: 0;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-text-dark);
}
.cookie-btn.reject {
  background: #eef2f4;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  margin-left: 6px;
}
.cookie-btn.settings {
  background: none;
  color: var(--color-accent);
  text-decoration: underline;
  border: none;
  margin-left: 6px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent-dark);
  color: var(--color-text-light);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f8d7da;
  color: var(--color-primary);
  border-color: var(--color-accent-dark);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #2e353f;
  color: var(--color-accent);
  text-decoration: none;
}
/* Cookie Category Toggles in modal */
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size:1.01em;
}
.cookie-category input[type="checkbox"] {
  height: 20px;
  width: 20px;
  accent-color: var(--color-accent);
}
.cookie-category.essential label {
  color: var(--color-accent-dark);
  font-weight: 700;
}
.cookie-category input[disabled] {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 9px;
}

/* ===== PRICING HIGHLIGHTS ===== */
.pricing-highlights {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--tt-display);
  border-radius: var(--radius);
  padding: 13px 22px;
  font-size: 1.1em;
  font-weight: 700;
  margin: 18px 0 18px 0;
  box-shadow: 0 1px 8px 0 rgba(0,191,174,0.08);
  display: inline-block;
}

/* ===== TABLET & MOBILE RESPONSIVE ===== */
@media (max-width: 1164px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 990px) {
  .content-wrapper, .text-section {
    max-width: 96vw;
  }
  .feature-grid > div, .service-cards > div, .project-list > div {
    min-width: 45vw;
    flex: 1 1 190px;
  }
  .footer-contact {
    font-size: 0.91em;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    gap: 10px;
    min-height: 56px;
    padding: 0 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 1251;
  }
  .content-wrapper, .text-section {
    padding: 0;
    gap: 16px;
  }
  .section, section {
    margin-bottom: 38px;
    padding: 20px 6px;
  }
  .hero .container {
    min-height: 146px;
    padding: 0 7px;
  }
  .feature-grid, .service-cards, .project-list, .team-list, .case-study-snippets, .testimonial-cards {
    gap: 13px;
    flex-direction: column;
  }
  .feature-grid > div, .service-cards > div, .project-list > div, .team-list > div, .case-study-snippets > div {
    min-width: 92vw;
  }
  .contact-details {
    flex-direction: column;
    gap: 11px;
  }
  .map-embed {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 9px;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
  .footer-contact {
    font-size: 0.90em;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 14.2px;
  }
  .hero h1 {
    font-size: 1.37rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  .btn-primary, .btn-secondary {
    font-size: 0.91rem;
    padding: 9px 15px;
  }
  .modal-content {
    padding: 19px 6vw 20px 6vw;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 11px 6vw 12px 6vw;
  }
  .cookie-consent-banner .cookie-text {
    margin-right: 0;
    font-size: 1em;
  }
  .cookie-buttons {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 450px) {
  .map-embed, .testimonial-card, .card, .faq-accordion > div {
    padding: 9px 6px;
  }
  .modal-content {
    max-width: 98vw;
  }
  .testimonial-card {
    font-size: 0.99em;
  }
}

/* ===== ANIMATIONS & INTERACTIONS ===== */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.22s;
}
.card, .feature-grid > div, .service-cards > div, .team-list > div {
  transition: box-shadow 0.2s, border-color 0.17s;
}
.card:hover, .feature-grid > div:hover, .service-cards > div:hover, .team-list > div:hover {
  box-shadow: 0 3px 18px 0 rgba(0,191,174,0.07);
  border: 1.5px solid var(--color-accent-dark);
}

input:focus, button:focus, a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== DARK SCROLLBARS ===== */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-metal) var(--color-bg);
}
::-webkit-scrollbar {
  width: 8px;
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-metal);
  border-radius: 6px;
}
