/* ============================
   RESET & BASE STYLES
============================ */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F1EDEE;
  background-color: #181D1B;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
a {
  color: #98B949;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #D4E157;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #F1EDEE;
  margin-bottom: 16px;
  letter-spacing: 0.025em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }

p, blockquote, cite {
  color: #F1EDEE;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #98B949;
  padding-left: 18px;
  font-style: italic;
  background: rgba(28,70,54,0.18);
  margin-bottom: 12px;
}
cite {
  display: block;
  color: #C3C3C3;
  font-size: 0.97em;
  margin-top: 0;
  letter-spacing: 0.01em;
}

/* ============================
   BRANDING & INDUSTRIAL MODERN
============================ */
:root {
  --color-primary: #1C4636;
  --color-secondary: #F1EDEE;
  --color-accent: #98B949;
  --color-dark: #181D1B;
  --color-mid: #232C27;
  --color-gray: #3E4942;
  --color-metal: #B4B8B9;
  --shadow: 0 4px 14px 0 rgba(28,70,54,0.15);
  --radius: 10px;
}

body, html {
  background: var(--color-dark);
}

.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* ============================
   HEADER, NAVIGATION & BRAND
============================ */
header {
  background: var(--color-dark);
  border-bottom: 2px solid #232C27;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
}
.logo img {
  height: 48px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: #F1EDEE;
  letter-spacing: 0.035em;
  font-weight: 600;
  transition: color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
}
.cta-button {
  background: linear-gradient(90deg, #B4B8B9 0, #98B949 98%);
  color: #232C27;
  border: none;
  border-radius: var(--radius);
  padding: 15px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 1px 10px 0 rgba(28,70,54,0.10), 0 2px 6px 0 rgba(70,70,70,0.08);
  cursor: pointer;
  transition: all 0.18s cubic-bezier(.6,.4,0,1);
  outline: none;
  position: relative;
  z-index: 1;
  margin-left: 10px;
  text-align: center;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-accent);
  color: #1C4636;
  letter-spacing: 0.07em;
  box-shadow: 0 2px 16px 0 rgba(28,70,54,0.21);
  transform: translateY(-2px) scale(1.016);
}
/* ============================
   MOBILE NAVIGATION MENU
============================ */
.mobile-menu-toggle {
  display: none;
  background: #232C27;
  border: none;
  color: var(--color-accent);
  font-size: 2.3rem;
  padding: 10px 14px;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  z-index: 120;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-accent);
  background: #181D1B;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 400px;
  background: #232C27;
  box-shadow: -2px 0 32px 2px rgba(28,70,54,0.22);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.38,.7,0,1), opacity 0.23s;
  opacity: 0;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 22px 0 0;
  background: none;
  border: none;
  color: #F1EDEE;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus{
  color: #D4E157;
  outline: 2px solid var(--color-accent);
}
.mobile-nav {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 0 38px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #F1EDEE;
  border-bottom: 1px solid #3E4942;
  padding: 13px 0 9px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 700;
  transition: color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-accent);
}

/* Hide main nav on mobile */
@media (max-width: 950px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    justify-content: flex-start;
  }
}

/* Always show main nav on large */
@media (min-width: 951px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav,
  .cta-button {
    display: flex !important;
  }
}

/* ============================
   HERO SECTION
============================ */
.hero {
  background: linear-gradient(100deg, #202B23 80%, #1C4636 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  padding-top: 54px;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.hero .subheadline {
  font-size: 1.35rem;
  color: #F1EDEE;
  margin-bottom: 22px;
  max-width: 520px;
  font-weight: 400;
}

/* ============================
   CARDS, FEATURES & SECTIONS
============================ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-card {
  background: #202B23;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(40,50,46,0.13);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 288px;
  min-width: 220px;
  min-height: 285px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #3E4942;
  transition: transform 0.17s, box-shadow 0.17s;
}
.feature-card > img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: grayscale(14%) contrast(1.1);
}
.feature-card h3 {
  font-size: 1.12rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 1rem;
}
.feature-card:hover {
  transform: translateY(-5px) scale(1.035);
  box-shadow: 0 6px 24px 0 #181d1b44;
  border-color: var(--color-accent);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.service-item {
  background: #202B23;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(40,50,46,0.17);
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 315px;
  margin-bottom: 20px;
  border: 1.3px solid #3E4942;
  position: relative;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.service-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  filter: grayscale(6%) brightness(1.1);
}
.service-item h2 {
  font-size: 1.18rem;
  color: var(--color-accent);
  margin: 0 0 7px 0;
}
.service-item p {
  font-size: 1rem;
}
.service-item span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #97c37c;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.service-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 26px #181d1b44;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #232C27;
  padding: 26px 20px;
}
.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;
  margin-bottom: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 950px) {
  .features-grid,
  .services-list,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .card, .feature-card, .service-item {
    width: 100%;
    min-width: 0;
    margin-bottom: 20px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section, section {
    padding: 26px 6px;
    margin-bottom: 34px;
  }
  .hero {
    min-height: unset;
    padding-top: 38px;
  }
  .hero h1 { font-size: 1.5rem; }
  h2 { font-size: 1.35rem; }
  h1 { font-size: 2rem; }
  .feature-card, .service-item, .card {
    padding: 18px 8px;
  }
  .feature-card, .service-item {
    min-height: unset;
  }
}
/* ============================
   ABOUT, TEAM, VALUES, LISTS
============================ */
.values ul, .team ul, .about-snippet ul, .features ul {
  list-style-type: disc;
  padding-left: 0;
  margin-left: 1.6em;
  color: #F1EDEE;
}
.values li strong, .team li strong {
  color: var(--color-accent);
  font-weight: 700;
}
.about-snippet a {
  color: #98B949;
  display: inline-block;
  background: #1C4636;
  padding: 8px 24px;
  border-radius: 7px;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.19s, color 0.15s;
}
.about-snippet a:hover { background: #98B949; color: #1C4636; }

/* ============================
   CTA SECTIONS
============================ */
.cta {
  background: linear-gradient(90deg, #1C4636 90%, #232C27 100%);
  text-align: center;
  box-shadow: 0 2px 28px rgba(28,70,54,0.13);
  border-radius: var(--radius);
}
.cta h2 {
  color: var(--color-secondary);
}
.cta .cta-button {
  margin: 0 auto;
  margin-top: 18px;
}

/* ============================
   TESTIMONIALS & EXPERIENCE
============================ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F1EDEE;
  color: #232C27;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px 0 rgba(28,70,54,0.075);
  margin-bottom: 22px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.testimonial-card blockquote {
  color: #232C27;
  border-left: 4px solid #98B949;
  background: #fff;
  font-style: italic;
  font-size: 1.08rem;
  margin-bottom: 4px;
  padding: 6px 12px 6px 20px;
  border-radius: 0 7px 7px 0;
  min-width: 200px;
}
.testimonial-card cite {
  color: #1C4636;
  font-size: 0.98rem;
  margin-left: 12px;
}
.testimonial-card .stars {
  color: #98B949;
  font-size: 1.45em;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
  font-weight: bold;
}
@media (min-width: 600px) {
  .testimonials .testimonial-card, .testimonials-snippet .testimonial-card {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }
  .testimonial-card blockquote { margin-bottom: 0; }
}

/* ============================
   BLOG/NEWS
============================ */
.blog-list .search-bar {
  width: 100%;
  max-width: 420px;
  margin: 0 0 20px 0;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #3E4942;
  font-size: 1rem;
  background: #232C27;
  color: #F1EDEE;
  transition: outline 0.18s, border-color 0.15s;
}
.blog-list .search-bar:focus {
  outline: 2px solid var(--color-accent);
  border-color: var(--color-accent);
}
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #98B949;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.categories-filter a {
  color: #F1EDEE;
  background: #232C27;
  border-radius: 5px;
  padding: 2px 11px;
  font-size: 0.97em;
  transition: background 0.17s;
}
.categories-filter a:hover,
.categories-filter a:focus {
  background: #98B949;
  color: #1C4636;
}
.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.post-preview-card {
  background: #202B23;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(40,50,46,0.13);
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  width: 290px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border: 1.5px solid #3E4942;
  transition: transform 0.13s, border-color 0.12s;
}
.post-preview-card h2 {
  font-size: 1.11rem;
  margin-bottom: 7px;
  color: #98B949;
}
.post-preview-card p {
  font-size: 1rem;
}
.post-preview-card a {
  align-self: flex-end;
  margin-top: 12px;
  color: #98B949;
  font-weight: 600;
  font-size: 0.98em;
}
.post-preview-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 5px 18px 0 #181d1b33;
}
@media (max-width: 850px) {
  .blog-posts {
    flex-direction: column;
    gap: 14px;
  }
  .post-preview-card {
    width: 100%;
    min-width: 0;
  }
}

/* ============================
   TABLES & PRICING
============================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px 0;
  background: #202B23;
  color: #F1EDEE;
  border-radius: var(--radius);
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  box-shadow: 0 1px 10px 0 #1c463617;
}
.price-table th, .price-table td {
  padding: 15px 10px;
  border-bottom: 1px solid #3E4942;
  text-align: left;
}
.price-table th {
  background: #1C4636;
  color: #F1EDEE;
  font-weight: bold;
  font-size: 1.07rem;
}
.price-table tr:last-child td{
  border-bottom: none;
}

/* ============================
   CONTACT & CONFIRMATION
============================ */
.contact-details, .address-map {
  background: #232C27;
  border-radius: var(--radius);
  padding: 15px 20px;
  margin-bottom: 18px;
  color: #F1EDEE;
  border-left: 3px solid #98B949;
}
.confirmation {
  background: linear-gradient(90deg, #232C27 65%, #1C4636 100%);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

/* ============================
   FOOTER
============================ */
footer {
  background: #202B23;
  border-top: 2px solid #232C27;
  padding: 26px 0 16px 0;
  margin-top: 50px;
  color: #B4B8B9;
}
.footer-menu {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #B4B8B9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.94em;
  transition: color 0.16s;
}
.footer-menu a:hover { color: var(--color-accent); }
.footer-contact {
  text-align: center;
  font-size: 0.97em;
  color: #B4B8B9;
  margin-bottom: 5px;
}

@media (max-width: 700px) {
  .footer-menu {
    flex-direction: column;
    gap: 11px;
  }
}

/* ============================
   COOKIE CONSENT BANNER
============================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #232C27;
  color: #F1EDEE;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 25px 12px 17px 12px;
  box-shadow: 0 -2px 28px 0 #1c46362a;
  z-index: 4200;
  font-size: 1.02rem;
  transition: transform 0.34s cubic-bezier(.47,.85,0,1);
  opacity: 1;
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-btn {
  margin-left: 7px;
  background: #98B949;
  color: #1C4636;
  border: none;
  border-radius: 7px;
  padding: 9px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-right: 7px;
  transition: background 0.17s, color 0.17s, box-shadow 0.15s;
}
.cookie-consent-banner .cookie-btn:hover,
.cookie-consent-banner .cookie-btn:focus {
  background: #B4B8B9;
  color: #232C27;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #B4B8B9;
  color: #232C27;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #98B949;
  color: #1C4636;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 38, 34, 0.67);
  z-index: 4250;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #232C27;
  border-radius: var(--radius);
  width: 92vw;
  max-width: 380px;
  color: #F1EDEE;
  padding: 26px 30px 18px 30px;
  box-shadow: 0 4px 26px 0 #1c46362d;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fadeInScale 0.32s cubic-bezier(.55,.14,.16,1);
}
.cookie-modal h3 {
  color: var(--color-accent);
  margin-bottom: 6px;
  font-size: 1.17rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.01rem;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #3E4942;
  border-radius: 18px;
  transition: 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #98B949;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  left: 4px;
  bottom: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: 0.18s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(24px);
  background: #1C4636;
}
.cookie-category .always-on {
  font-size: 0.97em;
  color: #98B949;
  font-style: italic;
  font-weight: 700;
  margin-left: 10px;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 12px;
  background: none;
  border: none;
  color: #98B949;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.13s;
  padding: 2px 6px;
  z-index: 1;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #F1EDEE;
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 7px 12px 7px;
    font-size: 0.97em;
    align-items: flex-start;
  }
  .cookie-modal {
    padding: 18px 12px 13px 12px;
  }
}

/* ============================
   FAQ & ACCORDION
============================ */
.faq dl {
  margin-bottom: 24px;
}
.faq dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #98B949;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 3px;
}
.faq dd {
  margin-left: 0;
  margin-bottom: 10px;
  color: #F1EDEE;
  font-size: 0.99rem;
}

/* ============================
   TABLES (General)
============================ */
table {
  border-collapse: collapse;
  width: 100%;
  background: #202B23;
  border-radius: var(--radius);
  box-shadow: 0 1px 7px #1c463610;
  margin-bottom: 20px;
}
table td, table th {
  border-bottom: 1px solid #3E4942;
  padding: 13px 12px;
  color: #F1EDEE;
}
table tr:last-child td {
  border-bottom: none;
}
table th {
  background: #232C27;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* ============================
   MICROINTERACTIONS & EFFECTS
============================ */
button, .cta-button, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.16s;
}
.card, .feature-card, .testimonial-card, .service-item, .post-preview-card {
  transition: box-shadow 0.18s, border-color 0.15s, transform 0.13s;
}
.card:hover, .feature-card:hover, .testimonial-card:hover, .service-item:hover, .post-preview-card:hover {
  box-shadow: 0 5px 22px 0 #1c46362c;
}

/* ============================
   SCROLLBARS (Industrial Look)
============================ */
::-webkit-scrollbar {
  width: 11px;
  background: #232C27;
}
::-webkit-scrollbar-thumb {
  background: #3E4942;
  border-radius: 7px;
  border: 2px solid #232C27;
}

/* ============================
    ACCESSIBILITY
============================ */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2.5px solid #98B949;
  outline-offset: 2px;
}

/* ============================
   FONTS IMPORT (Fallback only)
============================ */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans-Regular');
}
