/* ===================
   CSS RESET & 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%;
  vertical-align: baseline;
}
body {
  line-height: 1.6;
  font-family: Arial, 'Montserrat', sans-serif;
  background: #181f1a;
  color: #F6F5F2;
  min-height: 100vh;
  /* Futuristic subtle dark bg */
}
html {
  scroll-behavior: smooth;
  background: #101511;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
a {
  color: #8CB46C;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #ffffff;
  text-shadow: 0 0 4px #8CB46C, 0 0 12px #67ffb1;
}
strong, b {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F6F5F2;
  margin-bottom: 8px;
  line-height: 1.1;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  text-shadow: 0 0 8px #284E36, 0 0 32px #8CB46C55;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #EAEADE;
}
blockquote {
  font-style: italic;
  color: #23281e;
  background: #F6F5F2;
  border-left: 4px solid #8CB46C;
  padding: 18px 20px;
  margin: 0 0 12px 0;
  border-radius: 7px 28px 17px 7px;
  box-shadow: 0 3px 16px 2px #21403518;
  font-family: 'Montserrat', Arial, sans-serif;
}
blockquote span {
  display: block;
  font-size: 0.96em;
  font-weight: 600;
  margin-top: 8px;
  color: #284E36;
}

/* ===============
   GENERAL LAYOUT CONTAINERS
================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.text-section {
  background: rgba(40,78,54, 0.16);
  border-radius: 16px;
  padding: 36px 22px;
  margin-bottom: 28px;
  box-shadow: 0 8px 32px 0 #11190F42;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===============
   HEADER & NAV
================== */
header {
  width: 100%;
  background: #181f1a;
  box-shadow: 0 4px 32px 0 #10151150;
  position: relative;
  z-index: 999;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  flex-wrap: wrap;
}
header nav img {
  height: 38px;
  margin-right: 24px;
}
header nav a {
  color: #F6F5F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  position: relative;
}
header nav a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg,#8CB46C 0,#284E36 100%);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 1px;
}
header nav a:hover:after,
header nav a:focus:after {
  opacity: 1;
}
header nav .cta-primary {
  background: #8CB46C;
  color: #181f1a;
  box-shadow: 0 0 0 2px #8CB46C, 0 0 14px #90e78163;
  font-weight: 800;
  border: none;
  letter-spacing: 0.02em;
}
header nav .cta-primary:hover,
header nav .cta-primary:focus {
  background: #7CB460;
  color: #ffffff;
  box-shadow: 0 2px 18px 0 #8CB46C99;
  text-shadow: 0 0 8px #fcfead82;
}
.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #8CB46C;
  cursor: pointer;
  margin-right: 6px;
  z-index: 1200;
  padding: 5px 14px;
  transition: color 0.2s, transform 0.17s;
}
.mobile-menu-toggle:active {
  color: #F6F5F2;
  transform: scale(1.14);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,31,26,.97);
  z-index: 2000;
  flex-direction: column;
  padding: 0;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.86,.01,.3,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #8CB46C;
  font-size: 2.2rem;
  padding: 11px 20px 6px 20px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.13s, transform 0.15s;
  z-index: 2100;
}
.mobile-menu-close:hover {
  color: #F6F5F2;
  transform: scale(1.08) rotate(-6deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: 100%;
  margin-top: 34px;
  padding: 0 34px;
}
.mobile-nav a {
  color: #F6F5F2;
  font-size: 1.25rem;
  padding: 15px 0 8px 2px;
  border-bottom: 1px solid #284E36;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #8CB46C;
}
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  header nav {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline;
    position: absolute;
    right: 0;
    top: 13px;
  }
  .mobile-menu {
    padding-top: 24px;
    padding-bottom: 64px;
  }
}

/* Sticky header shadow on scroll */
header.sticky {
  box-shadow: 0 6px 24px 0 #101511BB;
}

/* ===============
   HERO & FEATURE
================== */
.hero-section {
  background: linear-gradient(120deg,#284E36 60%,#212b21 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  padding: 62px 0 48px 0;
  box-shadow: 0 10px 44px 0 #16261840;
  position: relative;
  z-index: 2;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero-section h1 {
  font-size: 2.4rem;
  color: #F6F5F2;
  margin-bottom: 7px;
  text-shadow: 0 1px 24px #8CB46C33, 0 3px 24px #232c1440;
}
.hero-section p {
  font-size: 1.19rem;
  margin-bottom: 16px;
  color: #e9f1da;
}
.feature-section > .container > h2,
.services-preview-section > .container > .content-wrapper > h2 {
  color: #8CB46C;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid > div {
  background: #283b2b;
  border-radius: 15px;
  padding: 32px 22px 22px 22px;
  flex: 1 1 250px;
  min-width: 245px;
  max-width: 360px;
  box-shadow: 0 4px 24px 0 #1015111b, 0 1.5px 7px #8CB46C22;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid > div img {
  width: 47px;
  height: 47px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 10px #8CB46C50);
}
.feature-grid h3 {
  color: #F6F5F2;
  font-size: 1.18rem;
  margin-bottom: 6px;
  margin-top: 2px;
}
.feature-grid p {
  color: #C6FDD3;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid>div {
    min-width: 180px;
    padding: 24px 14px 18px 14px;
  }
}
@media (max-width: 650px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid>div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ===============
   CARDS & FLEX WRAPPERS
================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  background: #23342A;
  border-radius: 18px;
  box-shadow: 0 4px 36px 0 #10151150;
  padding: 28px 18px 22px 18px;
  min-width: 215px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 64px 3px #8CB46C38;
  transform: translateY(-3px) scale(1.014);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }

  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ===============
   TESTIMONIALS
================== */
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials-section > .container > h2 {
  color: #8CB46C;
  margin-bottom: 24px;
}
.testimonials-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F5F2;
  border-radius: 17px 31px 11px 14px;
  box-shadow: 0 3px 16px 2px #21403530;
  color: #1c190c;
  margin-bottom: 20px;
  min-width: 255px;
  max-width: 420px;
}
.testimonial-card blockquote {
  color: #22311d;
  background: none;
  border-left: 3px solid #8CB46C;
  margin: 0;
  font-size: 1.08em;
  box-shadow: none;
  padding: 0 6px 0 20px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #284E36;
}

/* Testimonials ensure dark text for contrast */
.testimonial-card, .testimonial-card blockquote {
  color: #212b21 !important;
}

@media (max-width: 650px) {
  .testimonials-section .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}

/* ===============
   FEATURE/CASE/FAQ/BENEFITS/TEAM
================== */
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #283b2b;
  border-radius: 15px;
  padding: 24px 18px 14px 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px 0 #10151117;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 17px;
  }
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 8px 0;
}
.faq-list > div {
  flex: 1 1 270px;
  min-width: 245px;
  max-width: 390px;
  background: #253626;
  border-radius: 11px 22px 17px 6px;
  padding: 22px 18px 14px 22px;
  margin-bottom: 20px;
  color: #e7ffe7;
  box-shadow: 0 2px 14px 2px #263e2a21;
}
.faq-list h3 {
  margin-bottom: 7px;
}
@media (max-width: 700px) {
  .faq-list {
    flex-direction: column;
    gap: 12px;
  }
  .faq-list > div {
    min-width: 0;
    max-width: 100%;
  }
}

/* ===============
   BLOG
================== */
.blog-intro-section, .blog-list-section {
  margin-bottom: 52px;
  padding: 36px 20px 28px 20px;
}
.blog-intro-section .text-section {
  background: #23342A;
  box-shadow: 0 3px 20px #1015112f;
}
.blog-list-section ul {
  list-style: disc inside;
}
.blog-list-section li {
  margin-bottom: 22px;
  background: #283b2b;
  border-radius: 11px 11px 11px 19px;
  padding: 20px 18px 14px 23px;
  box-shadow: 0 2px 16px #1d282140;
  color: #D5FFE7;
}

/* ===============
   CTA SECTIONS
================== */
.cta-section {
  background: #1c2519;
  text-align: center;
  margin-bottom: 60px;
  padding: 45px 18px 40px 18px;
  box-shadow: 0 7px 64px 0 #8CB46C23;
  border-radius: 22px 38px 20px 9px;
}
.cta-section h2 {
  color: #F6F5F2;
  font-size: 1.7rem;
}
.cta-section p {
  color: #cafff2;
  margin-bottom: 21px;
  font-size: 1.09rem;
}
.cta-section .cta-primary {
  margin-top: 14px;
}

/* ===============
   CTA BUTTONS
================== */
.cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.09rem;
  background: #8CB46C;
  color: #101511;
  border: none;
  border-radius: 22px;
  padding: 13px 34px 13px 34px;
  margin-top: 8px;
  box-shadow: 0 2px 18px 3px #8CB46C28, 0 0 4px #90e78149;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, box-shadow 0.22s, transform 0.19s;
  display: inline-block;
  position: relative;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #639c36;
  color: #fff;
  box-shadow: 0 2px 28px 4px #8CB46C4a, 0 0 4px #ecfee998;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: none;
  color: #8CB46C;
  border: 2px solid #8CB46C;
  font-weight: 700;
  transition: color 0.16s, background 0.18s, border-color .18s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #8CB46C;
  color: #181f1a;
  border-color: #8CB46C;
}

/* ===============
   FOOTER
================== */
footer {
  background: #181f1a;
  color: #8CB46C;
  margin-top: 60px;
  border-top: 2px solid #284E36;
  padding: 36px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  width: 100%;
}
footer nav a {
  color: #8CB46C;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  opacity: .9;
  transition: color 0.17s, opacity 0.18s;
}
footer nav a:hover {
  color: #fff;
  opacity: 1;
}
footer div {
  color: #F6F5F2;
  font-size: 0.97rem;
  margin-top: 6px;
}
footer strong {
  font-weight: 800;
  color: #8CB46C;
}

@media (max-width: 700px) {
  footer {
    align-items: stretch;
    font-size: 0.97rem;
  }
  footer nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
  }
}

/* ===============
   COOKIE CONSENT BANNER & MODAL
================== */
.cookie-banner {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #181f1a;
  color: #F6F5F2;
  box-shadow: 0 -3px 18px #8CB46C60;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 20px 10px 22px 10px;
  z-index: 3000;
  animation: slideUpBanner 0.5s cubic-bezier(.93,-0.01,.18,1.3);
}
@keyframes slideUpBanner {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #e3ffe0;
  margin: 0 10px 0 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner button {
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  margin-left: 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.19s;
  margin-right: 8px;
}
.cookie-banner .accept {
  background: #8CB46C;
  color: #101511;
  box-shadow: 0 1px 8px 1px #8CB46C30;
}
.cookie-banner .accept:hover {
  background: #65a93f;
  color: #fff;
}
.cookie-banner .settings {
  background: #F6F5F2;
  color: #284E36;
}
.cookie-banner .settings:hover {
  background: #8CB46C;
  color: #fff;
}
.cookie-banner .reject {
  background: none;
  color: #8CB46C;
  border: 2px solid #8CB46C;
  font-weight: 600;
}
.cookie-banner .reject:hover {
  background: #8CB46C;
  color: #181f1a;
}

/* Cookie modal/popup */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,29,17,0.90);
  z-index: 3100;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.28s ease;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #212b21;
  color: #F6F5F2;
  padding: 38px 32px 34px 32px;
  border-radius: 18px 34px 16px 19px;
  box-shadow: 0 3px 48px 2px #8CB46C88;
  min-width: 330px;
  max-width: 96vw;
  animation: scaleInModal 0.27s cubic-bezier(.18,1.39,.53,.96);
  position: relative;
}
@keyframes scaleInModal {
  0% { transform: scale(.88); opacity: 0.3; }
  100% {transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #90e781;
  font-size: 1.25em;
  margin-bottom: 16px;
}
.cookie-category {
  padding: 9px 0 12px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #284E36;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  flex: 1 1 auto;
  font-size: 1.06em;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #8CB46C;
  border-radius: 5px;
}
.cookie-category input[disabled], .cookie-category input[readonly] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 29px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  padding: 8px 22px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 8px 1px #8CB46C22;
  transition: background 0.15s, color 0.12s;
}
.cookie-modal .accept {
  background: #8CB46C;
  color: #101511;
}
.cookie-modal .accept:hover {
  background: #5E8E3C;
  color: #fff;
}
.cookie-modal .close {
  background: #F6F5F2;
  color: #284E36;
}
.cookie-modal .close:hover {
  background: #8CB46C;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0;
    padding: 18px 7vw 24px 7vw;
  }
}

/* ==================
   CONTACT SECTION, ICONS
=================== */
.contact-note {
  background: #283b2b;
  color: #fff;
  border-radius: 10px 24px 10px 7px;
  padding: 13px 18px;
  margin-top: 12px;
  font-size: 1.04em;
}
.text-section ul li img {
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 8px;
  filter: drop-shadow(0 2px 3px #8CB46C30);
}

/* ==================
   RESPONSIVE
=================== */
@media (max-width: 768px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .hero-section {
    min-height: 160px;
    padding: 38px 0 24px 0;
  }
  .section {
    margin-bottom: 38px;
    padding: 34px 8px;
  }
  .text-section {
    padding: 22px 8px;
  }
  .footer {
    font-size: 0.97em;
  }
}
@media (max-width: 430px) {
  .cta-primary, .cta-secondary {
    padding: 11px 18vw 11px 18vw;
    font-size: 1em;
  }
}

/* ===============
   MICRO-INTERACTIONS & EFFECTS
================== */
button, .cta-primary, .cta-secondary {
  outline: none;
  transition: box-shadow 0.14s, background 0.18s, color 0.18s, transform 0.15s;
}
button:focus, .cta-primary:focus, .cta-secondary:focus {
  box-shadow: 0 2px 18px 1px #8CB46C37, 0 0 0 2px #8CB46C;
}

/* Custom Neon Accent Effect for "tech_futuristic" */
.cta-primary {
  box-shadow:
    0 0 3px #8CB46C,
    0 0 24px 2px #90e78160,
    0 2px 15px 0 #8CB46C18;
  border: 1px solid #8CB46C88;
  text-shadow: 0 1px 10px #bbffd055;
}
.cta-primary:after {
  content: "▶";
  margin-left: 7px;
  font-size: 1.1em;
  vertical-align: middle;
  opacity: .72;
  color: #284E36;
  text-shadow: 0 0 6px #8CB46C38;
  transition: color 0.17s, opacity 0.17s;
}
.cta-primary:hover:after {
  opacity: 1;
  color: #fff;
}

/* ===============
   FOCUS STATES
================== */
:focus-visible {
  outline: 2.4px solid #8CB46C;
  outline-offset: 3px;
}

/* =======================
   SCROLLBAR THEMING
======================= */
::-webkit-scrollbar {
  width: 10px;
  background: #212b21;
}
::-webkit-scrollbar-thumb {
  background: #8CB46C;
  border-radius: 8px;
}

/* ===============
   TYPOGRAPHY SCALE
================== */
body {
  font-size: 16px;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.18rem; }
p, li, ul, ol { font-size: 1rem; }

@media (max-width: 800px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.09rem; }
}

/* ===============
   Z-INDEX MANAGEMENT
================== */
header, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { z-index: auto; }

/* ===============
   UTILITY CLASSES
================== */
.hide { display: none !important; }
.show { display: block !important; }

/* ===============
   COLOR SCHEME FOR SECTIONS
================== */
.about-preview-section, .services-preview-section, .case-studies-section, .team-section, .benefits-section {
  background: #23342A;
  border-radius: 18px 40px 18px 12px;
  box-shadow: 0 4px 32px 0 #10151138;
  margin-bottom: 38px;
  padding: 30px 18px 24px 18px;
}

/* ===============
   PRINT STYLES
================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
  body { background: #fff; color: #23281e; }
  a, a:visited { color: #23281e; }
}
