/* ==== CSS RESET & MODERN NORMALIZE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181f23;
  color: #F4F6F7;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: 16px;
}
img, video {
  max-width: 100%;
  height: auto;
}
a {
  color: #7FB800;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #e5e722;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
button, input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #F4F6F7;
  text-shadow: 0 2px 8px rgba(30,38,46,0.23);
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #F4F6F7;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
}

/* === Brand Colors as CSS Variables === */
:root {
  --primary: #154360;
  --secondary: #7FB800;
  --accent: #F4F6F7;
  --bg-dark: #181f23;
  --bg-light: #23292e;
  --metal: #adb6bd;
  --metal-dark: #49515a;
  --cta-shadow: 0 2px 6px rgba(0,0,0,0.22);
  --card-shadow: 0 4px 24px rgba(28, 34, 38, 0.17);
  --border-radius: 10px;
  --transition: .23s cubic-bezier(.29,.62,.57,1.21);
}

/* =========== LAYOUT CONTAINER STYLES =========== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Section Spacing (mandatory pattern) */
.section,
.hero,
.features,
.about,
.services,
.cta,
.legal,
.thankyou,
.contact,
.blog-list,
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
}
@media (max-width: 992px) {
  .section,
  .hero,
  .features,
  .about,
  .services,
  .cta,
  .legal,
  .thankyou,
  .contact,
  .blog-list,
  .testimonials {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
}

/* =========== HEADER & NAVIGATION =========== */
header {
  width: 100%;
  background: #161b20;
  box-shadow: 0 4px 16px #12161a2a;
  border-bottom: 2px solid var(--metal-dark);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 74px;
  width: 100%;
}
header img {
  height: 40px;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
nav a {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  position: relative;
  transition: background .2s, color .2s;
}
nav a.cta {
  background: var(--secondary);
  color: #181f23;
  box-shadow: var(--cta-shadow);
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 1.07rem;
  font-family: inherit;
  font-weight: 700;
  border: 2px solid var(--secondary);
  margin-left: 10px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
nav a.cta:hover, nav a.cta:focus {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
nav a:hover,
nav a:focus {
  background: var(--metal-dark);
  color: var(--secondary);
}

/* Hide on mobile/Show mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.2rem;
  margin-left: 20px;
  z-index: 1102;
  border-radius: var(--border-radius);
  padding: 0 13px;
  transition: background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #21292f;
  outline: 2px solid var(--secondary);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =========== MOBILE SLIDE-IN NAV MENU =========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 330px;
  max-width: 97vw;
  height: 100vh;
  background: #171c20;
  box-shadow: -4px 0 32px #0008;
  transform: translateX(110%);
  transition: transform .38s cubic-bezier(.29,.62,.57,1.21);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 26px 26px 26px;
  gap: 30px;
  opacity: 1;
}
.mobile-menu.is-active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--secondary);
  font-size: 2rem;
  align-self: flex-end;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px 9px;
  transition: background .12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #23292e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.14rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin: 0;
  padding: 12px 6px;
  border-radius: 6px;
  transition: background 0.22s, color 0.18s;
  text-align: left;
  background: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--metal-dark);
  color: var(--secondary);
}

/* Overlay fade when mobile menu is open */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #101418cc;
  transition: opacity .26s;
}
.mobile-menu.is-active ~ .mobile-menu-backdrop {
  display: block;
  opacity: 1;
}

@media (max-width: 668px) {
  .mobile-menu {
    width: 97vw;
    padding: 18px 8px 12px 12px;
  }
  .mobile-menu-close {
    font-size: 1.5rem;
  }
  .mobile-nav a {
    font-size: 1.09rem;
    padding: 11px 3px;
  }
}

/* =========== MAIN HERO SECTION =========== */
.hero {
  background: linear-gradient(97deg, #23292e 65%, #1d2428 100%);
  margin-top: 30px;
  box-shadow: 0 8px 32px #0006;
  text-align: left;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--secondary);
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.hero p {
  font-size: 1.22rem;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero .cta {
  margin-top: 6px;
}

/* =========== CTAs & BUTTONS =========== */
.cta,
button.cta {
  display: inline-block;
  background: var(--secondary);
  color: #181f23;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 32px;
  border-radius: 26px;
  border: 2px solid var(--secondary);
  box-shadow: var(--cta-shadow);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  margin: 14px 0 0 0;
  letter-spacing: .02em;
}
.cta:hover, .cta:focus, button.cta:hover, button.cta:focus {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 4px 14px #7FB80049;
  outline: none;
}


/* Card containers */
.card-container, .feature-grid, .post-preview-grid, .service-cards, .features-row, .benefit-grid, .tipps-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
/* Above rule satisfies: .card-container { display: flex; flex-wrap: wrap; gap: 24px; } */
.features-row, .benefit-grid {
  gap: 32px;
}

/* Card element styles */
.card, .feature, .service-card, .tip-card, .benefit, .post-preview, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 18px 20px 18px;
  background: #191f22;
  border: 1px solid #293038;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  min-width: 220px;
  min-height: 160px;
  transition: box-shadow .23s, border-color .17s, transform .19s;
}
.card:hover, .feature:hover, .service-card:hover, .tip-card:hover, .benefit:hover, .post-preview:hover {
  box-shadow: 0 4px 22px #7FB80024, 0 8px 44px #121a2533;
  border-color: var(--secondary);
  transform: translateY(-5px) scale(1.012);
}

.service-card h3 a,
.post-preview h3,
.tip-card h3 {
  color: var(--secondary);
  font-size: 1.22rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 7px;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-weight: bold;
}
.service-card h3 a:hover,
.service-card h3 a:focus {
  color: #e5f772;
  text-decoration: underline;
}


/* =========== FLEX CONTENT GRIDS =========== */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .container {
    gap: 10px;
  }
}

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

/* Testimonial Card Styles */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f4f6f7;
  color: #181f23;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px #181f2344;
  border: 1px solid #dadada;
  min-width: 230px;
  transition: box-shadow .22s, border-color .18s;
}
.testimonial-card .user {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  font-weight: 700;
}
.testimonial-card .stars {
  font-size: 1.17rem;
  color: #F7B801;
  letter-spacing: 0.08em;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 682px) {
  .feature-grid,
  .post-preview-grid,
  .service-cards,
  .testimonial-slider,
  .features-row,
  .benefit-grid,
  .tipps-cards {
    flex-direction: column;
    gap: 18px;
  }
  .card, .feature, .service-card, .tip-card, .benefit, .testimonial-card, .post-preview {
    min-width: unset;
    min-height: 130px;
  }
}

/* ======= BLOG SPECIFIC ======= */
.category-filter {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.category-filter span {
  color: var(--metal);
  font-weight: 600;
}
.category-filter a {
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  padding: 4px 13px;
  border-radius: 16px;
  background: #20282d;
  font-size: 1rem;
  margin-right: 3px;
  transition: background .18s, color .18s;
}
.category-filter a:hover, .category-filter a:focus {
  background: var(--secondary);
  color: #181f23;
}

.post-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-preview {
  margin-bottom: 20px;
  background: #262e34;
  border: 1px solid #37444d;
  border-radius: 8px;
  min-width: 230px;
  min-height: 140px;
  box-shadow: 0 2px 10px #1c22260f;
}
.post-preview h3 {
  margin-bottom: 9px;
}
.post-preview a {
  color: var(--secondary);
  font-weight: bold;
  margin-top: 12px;
  display: inline-block;
  border-bottom: 1.5px solid var(--secondary);
  transition: color .22s, border-color .18s;
}

/* ============ SERVICE & FEATURE ICONS ============ */
.feature img, .benefit img, .service-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
  filter: contrast(1.05) grayscale(30%) brightness(0.94) drop-shadow(0 1px 2px #0006);
}

/* ========== LISTS & CHECKLISTS ========== */
ul {
  margin-bottom: 14px;
  color: #c5cbd1;
}
li {
  font-size: 1rem;
  margin-bottom: 6px;
}
.checklisten ul li img {
  width: 18px; height: 18px;
  margin-right: 6px;
}

/* ======= TRUST ELEMENTS ======= */
.trust-elements {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 14px;
}
.trust-elements img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  vertical-align: middle;
  filter: grayscale(40%) brightness(1.03);
}
.trust-elements span {
  color: #c5cbd1;
  font-size: 1rem;
  margin-right: 16px;
}

/* ======= CONTACT PAGE STYLES ======= */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 22px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--accent);
  font-size: 1.09rem;
}
.contact-info img {
  width: 20px;
  height: 20px;
  filter: contrast(1.15) grayscale(64%) brightness(1.15);
}
.map-embed {
  background: #181f23;
  border-radius: 6px;
  padding: 18px 13px;
  margin-top: 10px;
  color: #c5cbd1;
  font-size: 0.99rem;
  min-width: 155px;
}

/* ========== THANK YOU PAGE ========== */
.thankyou {
  background: #1b2327;
  color: var(--accent);
  box-shadow: 0 2px 16px #232d3450;
}
.next-steps-info ul {
  margin-top: 14px;
  margin-bottom: 18px;
}
.next-steps-info li {
  color: #bfdcfa;
}

/* ========== FOOTER ========== */
footer {
  background: #15191c;
  color: #97a2aa;
  font-size: 0.97rem;
  border-top: 2px solid var(--metal-dark);
  box-shadow: 0 0 32px #090e1147 inset;
  padding: 38px 0 16px 0;
  min-height: 120px;
}
footer .container {
  flex-direction: row;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 18px;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-links a {
  color: var(--metal);
  text-decoration: underline;
  font-size: 1rem;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--secondary);
}
.footer-contact p a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* === LEGAL & MODAL SECTIONS ==== */
.legal {
  background: #23292e;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  color: #d2dbe2;
}

.legal a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 600;
}
.legal a:hover {
  color: #e5e722;
}

/* =========== COOKIE CONSENT STYLES =========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #262e34;
  color: #f4f6f7;
  z-index: 3001;
  padding: 20px 7vw 20px 7vw;
  box-shadow: 0 -4px 22px #121a2533;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  width: 100vw;
  border-top: 2px solid var(--secondary);
  transition: transform .27s;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 1.04rem;
}
.cookie-consent-banner__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 18px;
  font-size: 0.97rem;
  border-radius: 22px;
  font-weight: 800;
  box-shadow: 0 1px 6px #0a182455;
  border: 2px solid var(--secondary);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-width: 120px;
  margin-right: 3px;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #181f23;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #b2f308;
  color: #161b20;
}
.cookie-btn.reject {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: var(--metal-dark);
  color: #eccd00;
}
.cookie-btn.settings {
  background: var(--metal-dark);
  color: #d7e8f7;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #2e373f;
  color: var(--secondary);
}
@media (max-width: 770px) {
  .cookie-consent-banner {
    gap: 13px;
    padding: 18px 3vw;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent-banner__actions {
    gap: 10px;
    width: 100%;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #14181b99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #23292e;
  color: #f4f6f7;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 36px #191f2644;
  min-width: 320px;
  max-width: 97vw;
  padding: 34px 24px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.cookie-modal-close {
  position: absolute;
  top: 9px;
  right: 13px;
  color: var(--secondary);
  background: none;
  border: none;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 3px 7px;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #161b20;
}
.cookie-modal h2 {
  font-size: 1.19rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  background: #1c2226;
  border-radius: 8px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.11rem;
}
.cookie-category label {
  flex: 1;
  color: #f4f6f7;
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--secondary);
  cursor: pointer;
}
.cookie-category input[disabled] {
  accent-color: var(--secondary);
  background: #bbb;
  cursor: not-allowed;
}

.cookie-modal .cookie-btn {
  min-width: 90px;
  margin-top: 10px;
  margin-right: 8px;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 17px 5vw;
    min-width: 150px;
  }
}

/* ====== ANIMATIONS & TRANSITIONS ====== */
.section, .hero, .features, .about, .services, .cta, .legal, .thankyou, .contact, .blog-list, .testimonials, .card, .feature, .service-card, .tip-card, .benefit, .post-preview, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.13s, background 0.24s, color 0.13s, transform .22s;
}
.card:hover, .feature:hover, .service-card:hover, .tip-card:hover, .benefit:hover, .post-preview:hover, .testimonial-card:hover {
  transform: translateY(-4px) scale(1.01) !important;
  box-shadow: 0 4px 24px #7FB80033, 0 0 31px #1543600b;
}

/* Misc spacing utility */
.mt-3 { margin-top: 18px; }
.mt-5 { margin-top: 38px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 22px; }

/* Responsive font-size adjustment */
@media (max-width: 520px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.09rem; }
  body { font-size: 15px; }
  .card, .feature, .service-card, .tip-card, .benefit, .testimonial-card, .post-preview {
    padding: 13px 6px;
  }
}

/* ===== INDUSTRIAL FONT STYLE OVERRIDES ===== */
h1, h2, h3, h4, .cta, nav, .mobile-nav a, .cookie-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-variant: small-caps;
  letter-spacing: 0.01em;
}
/* Urban/industrial feel - metallic effect */
h1, h2, h3, .footer-links a, .section h2 {
  text-shadow: 0 1px 0 #303742, 0 3px 8px #020d1a32;
}

/* Metallic accent border for cards */
.card, .feature, .service-card, .tip-card, .benefit, .testimonial-card, .post-preview {
  border: 1.5px solid #242930;
}
.card:hover, .service-card:hover, .tip-card:hover, .post-preview:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 36px #b2f30829;
}

/* ========== MICRO-INTERACTIONS ========== */
.card:active,
.feature:active,
.service-card:active,
.tip-card:active,
.benefit:active,
.testimonial-card:active,
.post-preview:active {
  transform: scale(0.97) !important;
  box-shadow: 0 1px 9px #7FB80013;
}
.cta:active, .cookie-btn:active {
  transform: scale(.98);
}

/* =========== SCROLLBAR INDUSTRIAL =========== */
body, .mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #23292e;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #23292e;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #adb6bd 40%, #7FB800 100%);
  border-radius: 7px;
}

/* =========== Misc Accessibility =========== */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  z-index: 1111 !important;
}

/* =========== Prevent Content Overlap =========== */
.card, .feature, .service-card, .tip-card, .benefit, .testimonial-card, .post-preview {
  margin-bottom: 20px;
}
.section > *, .container > * {
  margin-bottom: 20px;
}
.content-wrapper > * {
  margin-bottom: 12px;
}

/* ================== END ================== */
