/* ----------------- RESET & NORMALIZE ----------------- */
/* Box sizing reset */
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #181D22;
  color: #F8F6F3;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #F8F6F3;
  letter-spacing: 0.01em;
}

h1   { font-size: 2.5rem; margin-bottom: 20px; }
h2   { font-size: 2rem; margin-bottom: 18px; }
h3   { font-size: 1.3rem; margin-bottom: 10px; }

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}

.subheadline {
  color: #90A4AE;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 22px;
}

/* ----------------- COLOR PALETTE & FONTS ----------------- */
:root {
  --primary: #224A63;
  --primary-light: #2e617d;
  --secondary: #3AB2C5;
  --accent: #F8F6F3;
  --dark-bg: #181D22;
  --metal-gray: #7B8A97;
  --slate: #36434F;
  --card-bg: #22272C;
  --button-metal: #344952;
  --border-metal: #4E5A61;
  --error: #e53935;
  --shadow-metal: rgba(34,74,99,0.10);
  --shadow-strong: rgba(34,74,99,0.28);
  --success: #4cac8d;
  --testimonial-bg: #F8F6F3;
  --testimonial-text: #224A63;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* Industrial Modern font treatment */
body,
p, li, ul, ol, label, .service-price, .feature p, .team-section p, .testimonial-author, .footer-contact {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

h1, h2, h3, .cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ----------------- LAYOUT CONTAINERS ----------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

main {
  flex: 1 0 auto;
}

/* Main section pattern */
section {
  background: none;
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--shadow-metal);
  margin-bottom: 60px;
  padding: 40px 20px;
  transition: box-shadow 0.2s;
}

.content-wrapper {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 0;
  }
  section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
}

/* Cards containers */
.card-container, 
.features-grid, 
.services-list, 
.about-grid, 
.testimonials-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.card, .feature, .service, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
}

/* For layouts with image and text */
.text-image-section, .about-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .about-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------- HEADER ----------------- */
header {
  width: 100%;
  background: var(--card-bg);
  box-shadow: 0 4px 10px var(--shadow-metal);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 66px;
  padding: 12px 20px;
}

header a img {
  height: 36px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

header nav a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.18s;
}

header nav a:hover, header nav a:focus {
  color: var(--secondary);
}

.cta-btn {
  padding: 10px 26px;
  border-radius: 28px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 2px 10px var(--shadow-metal);
  letter-spacing: 0.05em;
  transition: background 0.19s, transform 0.13s;
  margin-left: 28px;
  margin-top: 0;
  cursor: pointer;
  outline: none;
}

.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px var(--shadow-strong);
}

@media (max-width: 992px) {
  header .container {
    flex-direction: column;
    gap: 12px;
  }
  nav {
    order: 2;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  header nav, .cta-btn {
    display: none;
  }
}

/* ----------------- MOBILE BURGER MENU ----------------- */
.mobile-menu-toggle {
  position: fixed;
  top: 16px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: none;
  z-index: 100;
  border: 2px solid var(--border-metal);
  justify-content: center;
  align-items: center;
  transition: background 0.19s, box-shadow 0.16s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--secondary);
  box-shadow: 0 0 10px var(--shadow-strong);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(100deg, var(--card-bg) 85%, #1b2126);
  box-shadow: 0 4px 32px 2px var(--shadow-strong);
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(0.82,0,0.18,1);
  will-change: transform;
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  background: var(--metal-gray);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--border-metal);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.16s;
  z-index: 121;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--secondary);
  color: #1a2328;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding: 34px 28px 38px 34px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-left: 4px solid transparent;
  padding: 8px 0 8px 14px;
  transition: color 0.13s, border-color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  border-left: 4px solid var(--secondary);
  background: var(--card-bg);
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----------------- FEATURES & CARDS ----------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: var(--card-bg);
  border: 1px solid var(--border-metal);
  border-radius: 14px;
  padding: 32px 22px 28px;
  min-width: 210px;
  max-width: 292px;
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 3px 12px var(--shadow-metal);
  transition: box-shadow 0.18s, border 0.21s, background 0.24s;
}
.feature img {
  height: 44px;
  width: 44px;
  filter: grayscale(0.5) brightness(1.6) drop-shadow(0 1px 3px var(--shadow-strong));
}
.feature h3 {
  margin-bottom: 8px;
  font-size: 1.17rem;
  letter-spacing: 0.01em;
}
.feature p {
  color: #B0BEC5;
  font-size: 1rem;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 32px var(--shadow-strong);
  border-color: var(--secondary);
  background: #232C33;
}

@media (max-width: 576px) {
  .feature {
    min-width: 90%;
    padding: 20px 10px 18px;
  }
  .features-grid {
    gap: 16px;
  }
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service {
  background: var(--card-bg);
  border: 1px solid var(--border-metal);
  border-radius: 14px;
  padding: 26px 16px 22px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 12px var(--shadow-metal);
}
.service img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  filter: brightness(1.7) grayscale(0.3);
}
.service-price {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

@media (max-width: 576px) {
  .service {
    min-width: 90%;
    max-width: 95vw;
    padding: 18px 7px 16px;
  }
  .services-list {
    gap: 14px;
  }
}

/* Card container generic styles for future-proofing */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 1px 8px var(--shadow-metal);
  border: 1px solid var(--border-metal);
  padding: 24px 14px;
  transition: box-shadow 0.18s, border 0.18s;
}
.card:hover, .card:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 8px 32px var(--shadow-strong);
}

/* ----------------- ABOUT GRID & TEXT SECTIONS ----------------- */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-bottom: 20px;
}
.text-section, .team-section {
  background: transparent;
  border-left: 4px solid var(--metal-gray);
  padding: 20px 22px;
  min-width: 200px;
  border-radius: 8px;
  color: #CFD8DC;
}
.text-section ul {
  padding-left: 20px;
  color: #BABABA;
  margin: 12px 0 0 0;
}
.text-section li {
  margin-bottom: 6px;
  list-style: disc;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .text-section, .team-section {
    padding: 13px 8px 11px 14px;
  }
}

/* ----------------- TESTIMONIALS ----------------- */
.testimonials-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--testimonial-bg);
  color: var(--testimonial-text);
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--shadow-strong);
  padding: 20px 30px;
  min-width: 210px;
  max-width: 330px;
  flex: 1 1 250px;
  border: 1px solid var(--primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.2s, transform 0.17s, border 0.22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 28px var(--shadow-strong);
  border-color: var(--secondary);
  transform: translateY(-2px) scale(1.03);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--testimonial-text);
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 8px;
}

@media (max-width: 576px) {
  .testimonial-card {
    min-width: 88vw;
    max-width: 98vw;
    padding: 12px 10px 10px 14px;
    gap: 12px;
  }
  .testimonials-group {
    gap: 13px;
  }
}

/* ----------------- CONTACT DETAILS ----------------- */
.contact-details {
  background: var(--card-bg);
  border: 1px solid var(--border-metal);
  border-radius: 10px;
  padding: 18px 22px 10px;
  margin-bottom: 22px;
  font-size: 1.01rem;
  color: #B0BEC5;
  line-height: 1.7;
}
.contact-details strong {
  color: var(--secondary);
}

/* ----------------- FOOTER ----------------- */
footer {
  background: var(--card-bg);
  color: var(--metal-gray);
  padding: 48px 0 20px;
  border-top: 1.5px solid var(--primary);
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.15s;
  font-size: 1rem;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.97rem;
  color: #B0BEC5;
  line-height: 1.7;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .footer-brand img {
    margin-bottom: 6px;
  }
}

/* ----------------- BUTTONS & INTERACTIONS ----------------- */
button, .cta-btn {
  transition: background 0.18s, color 0.15s, box-shadow 0.15s, transform 0.14s;
}

/* Universal button for modals, cookies, form etc. */
.button-default {
  display: inline-block;
  background: var(--button-metal);
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: 2px solid var(--border-metal);
  border-radius: 8px;
  padding: 11px 26px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-right: 14px;
  margin-bottom: 8px;
  box-shadow: 0 1px 7px var(--shadow-metal);
  transition: background 0.15s, border 0.14s, color 0.14s, box-shadow 0.16s;
}
.button-default:hover, .button-default:focus {
  background: var(--secondary);
  color: #1e2630;
  border-color: var(--secondary);
  box-shadow: 0 3px 18px var(--shadow-strong);
}
.button-danger {
  background: #2C1E1C;
  border: 2px solid var(--error);
  color: var(--error);
  font-weight: 700;
}
.button-danger:hover, .button-danger:focus {
  color: #fff;
  background: var(--error);
  border-color: var(--error);
}
.button-success {
  background: #1E2C22;
  border: 2px solid var(--success);
  color: var(--success);
}
.button-success:hover, .button-success:focus {
  color: #fff;
  background: var(--success);
}

/* ----------------- COOKIE CONSENT BANNER + MODAL ----------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--card-bg);
  color: var(--accent);
  box-shadow: 0 -4px 22px var(--shadow-strong);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 20px 18px 32px;
  gap: 18px;
  animation: cookieslideup 0.46s cubic-bezier(0.54,0.1,0.18,1);
}
@keyframes cookieslideup {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  max-width: 660px;
  line-height: 1.5;
  margin-right: 28px;
  color: #F8F6F3;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .button-default {
  font-size: 1rem;
  min-width: 130px;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 8px 11px 12px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    font-size: 0.96rem;
  }
  .cookie-banner .button-default {
    font-size: 0.97rem;
    min-width: 96px;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 28, 0.62);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinbg 0.23s;
}
@keyframes fadeinbg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--card-bg);
  border: 2px solid var(--secondary);
  border-radius: 18px;
  box-shadow: 0 4px 32px var(--shadow-strong);
  color: var(--accent);
  padding: 36px 32px 30px;
  max-width: 430px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: modalslidein 0.24s cubic-bezier(.5,.24,.15,1.3);
  position: relative;
}
@keyframes modalslidein {
  from { transform: scale(0.85) translateY(24px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 1.23rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #F8F6F3;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal .toggle-switch {
  width: 42px;
  height: 22px;
  background: #191F23;
  border-radius: 22px;
  position: relative;
  margin-right: 10px;
  flex-shrink: 0;
}
.cookie-modal .toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--metal-gray);
  transition: background 0.13s, left 0.21s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  left: 22px;
  background: var(--secondary);
}
.cookie-modal .cookie-category[data-locked] .toggle-switch {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 15px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 11px;
  right: 14px;
  font-size: 1.43rem;
  background: var(--metal-gray);
  color: #181D22;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  border: 2px solid var(--border-metal);
  text-align: center;
  transition: background 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--secondary);
  color: #08131B;
}
@media (max-width: 475px) {
  .cookie-modal {
    padding: 20px 7px 16px;
  }
}

/* ----------------- RESPONSIVE ----------------- */
@media (max-width: 950px) {
  .features-grid, .services-list, .card-container, .content-grid, .testimonials-group {
    gap: 12px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
    padding: 0 14px;
  }
  section {
    padding-left: 10px; padding-right: 10px;
  }
}

/* --------------- GENERAL SPACING ENFORCEMENT --------------- */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------- UTILITY CLASSES --------------- */
.text-left { text-align: left!important; }
.text-center { text-align: center!important; }
.text-right { text-align: right!important; }
.hidden { display: none!important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.w-full { width: 100%; }

/* --------------- MICRO-ANIMATIONS & INTERACTIVITY --------------- */
.feature, .service, .testimonial-card, .card, .cta-btn, .button-default {
  will-change: transform, box-shadow;
}

.cta-btn:active, .button-default:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px var(--shadow-metal);
}

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

/* --------------- FORMS --------------- */
input, textarea, select {
  background: #22272C;
  color: #F8F6F3;
  border: 1.5px solid var(--border-metal);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 1rem;
  transition: border 0.13s, box-shadow 0.13s;
  margin-bottom: 18px;
  max-width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 8px var(--shadow-metal);
}

label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

/* --------------- ACCENT LINES / METALLIC DETAILS --------------- */
h2, .feature h3, .service h3, .testimonial-author, .footer-brand img {
  position: relative;
}
h2:after, .feature h3:after, .service h3:after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--metal-gray) 65%, transparent 100%);
  border-radius: 1px;
  margin-top: 6px;
}

/* --------------- SCROLLBAR STYLING FOR MODERN METAL LOOK --------------- */
/* For chromium browsers */
::-webkit-scrollbar {
  width: 11px;
  background: var(--card-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--metal-gray);
  border-radius: 8px;
  border: 3px solid var(--card-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* For Firefox */
html {
  scrollbar-color: var(--metal-gray) var(--card-bg);
  scrollbar-width: thin;
}

/* --------------- ACCESSIBILITY HIGH CONTRAST FOR DARK BG --------------- */
@media (prefers-contrast: more) {
  body {
    background: #16191A;
    color: #FAFAFA;
  }
}

/* --------------- PRINT FRIENDLY --------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none!important;
  }
  body, main, section, .container {
    background: #fff !important;
    color: #12171C !important;
    box-shadow: none!important;
    border: none!important;
  }
}
