/* ========================================================== */
/*                  CSS RESET & BASE 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;
  vertical-align: baseline; box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #181e23;
  color: #EAEAEA;
}
ul, ol {
  list-style: none;
}
a { text-decoration: none; color: inherit; }
img {
  border-style: none; max-width: 100%; display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
button, input, select, textarea {
  font-family: inherit; font-size: inherit; box-sizing: border-box;
}

/* ========================================================== */
/*                     BRAND VARIABLES                       */
/* ========================================================== */
:root {
  --color-primary: #1E3744;
  --color-secondary: #FFB800;
  --color-accent: #F0F6F9;
  --color-bg: #181e23;
  --color-alt-bg: #232a2f;
  --color-metal-dark: #2F444B;
  --color-metal-light: #515B5E;
  --color-card: #232a2f;
  --color-border: #333E44;
  --color-shadow: rgba(30,39,52,0.22);
  --color-success: #5FD481;
  --color-danger: #E24848;
  --color-link: #FFB800;
  --font-display: 'Roboto Slab', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --shadow-card: 0 2px 16px 0 var(--color-shadow);
  --radius: 10px;
  --transition: 0.18s cubic-bezier(.4,.8,.55,1);
}

@media (max-width: 425px) {
  :root {
    --radius: 6px;
  }
}

/* ========================================================== */
/*                       TYPOGRAPHY                          */
/* ========================================================== */
body {
  font-family: var(--font-body);
  color: #EAEAEA;
  background: var(--color-bg);
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #FFB800;
  text-shadow: 0 1px 1px #1E374444;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.22;
}
h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.07rem;
  font-weight: 600;
}
p {
  color: #EAEAEA;
  font-size: 1.1rem;
  margin-bottom: 18px;
  line-height: 1.7;
}
strong { color: #FFB800; font-weight: 700; }
.text-section strong {
  color: #FFB800;
}

.text-section p,
.text-section ul,
.text-section li {
  color: #EAEAEA;
  font-size: 1rem;
}

.text-section ul {
  padding-left: 22px;
  list-style-type: disc;
  margin-bottom: 10px;
}

.text-section ul li {
  padding-left: 0;
  margin-bottom: 9px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem;}
  p { font-size:1rem; }
}

/* ===================== CONTAINER & GRID =================== */
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========================================================== */
/*                        HEADER                             */
/* ========================================================== */
header {
  background: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 6px 0 rgba(30,39,52,0.11);
  padding: 0 0 0 0;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  color: #FFF;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 2px;
  transition: color var(--transition);
  position: relative;
}
header nav a.primary-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.025rem;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 10px 24px;
  border: none;
  margin-left: 12px;
  box-shadow: 0 2px 6px rgba(30,55,68,0.06);
  letter-spacing: 1px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  outline: none;
}
header nav a.primary-btn:hover, .primary-btn:focus {
  background: #ffd74b;
  color: #1E3744;
  box-shadow: 0 4px 10px 0 rgba(255,184,0,0.18);
  outline: 2px solid #FFB80055;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
}
header img {
  height: 50px;
  width: auto;
}
@media (max-width: 1024px) {
  header .container {
    gap: 10px;
    padding: 0 10px;
  }
  header nav {
    gap: 10px;
  }
  header img { height: 42px; }
}

/* ========================================================== */
/*                      MOBILE NAV MENU                      */
/* ========================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFB800;
  font-size: 2.2rem;
  position: absolute;
  top: 10px;
  right: 22px;
  z-index: 210;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 5px;
  transition: background var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #232a2f;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(24,30,35,0.98);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.57,.29,.42,.99);
  z-index: 300;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #FFB800;
  position: absolute;
  top: 24px; right: 24px;
  z-index: 310;
  cursor: pointer;
  padding: 9px 12px;
  border-radius: 6px;
  transition: background var(--transition); 
  font-family: var(--font-display);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #232a2f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 72px 0 0 0;
  padding: 32px 44px 32px 32px;
  width: 100vw;
  max-width: 330px;
}
.mobile-nav a {
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  background: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  padding: 10px 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ========================= MAIN SPACING =================== */
main {
  min-height: 50vh;
  background: var(--color-bg);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 5px;
    margin-bottom: 38px;
  }
}

/* ===================== FLEX CONTENT STRUCTURES ============ */
.card-container,
.card-grid {
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
}
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding: 26px 18px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 18px 2px rgba(25,40,54,0.19);
  transform: translateY(-3px) scale(1.025);
}
.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: center; gap: 23px; }
  .content-grid { flex-direction: column; }
  .card-container, .card-grid { flex-direction: column; gap: 16px; }
}

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

/* ===================== SECTIONS & COMPONENTS ============== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}
section .container { margin-bottom: 0; }

/* ===== BUTTONS ===== */
.primary-btn {
  display: inline-block;
  border-radius: var(--radius);
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(255,184,0,0.08);
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  letter-spacing: 0.05em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  outline: none;
}
.primary-btn:hover,
.primary-btn:focus {
  background: #FFD74B;
  color: var(--color-primary);
  box-shadow: 0 6px 20px 0 rgba(255,184,0,0.18);
  outline: 2px solid #FFB80088;
}

/* ===== LINKS ===== */
a, .link, .text-link {
  color: var(--color-link);
  transition: color var(--transition);
}
a:hover, .text-link:hover { color: #FFD74B; text-decoration: underline; }

ul li, ol li {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px; font-size: 1.06rem;
}
ul li img, ol li img {
  height: 29px; width: 29px;
  background: #252F36;
  border-radius: 7px;
  box-shadow: 0 2px 5px 0 #141a1f25;
  padding: 7px;
  margin-right: 6px;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 10px 0;
  background: var(--color-card);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 1rem;
}
thead tr {
  background: var(--color-metal-dark);
  color: #FFB800;
}
td, th {
  border-bottom: 1px solid #292f35;
  padding: 13px 8px;
  text-align: left;
}
tbody tr:nth-child(odd) { background: #20272b; }
tbody tr:nth-child(even) { background: #232a2f; }
tbody td {
  color: #F0F6F9;
}
table th:first-child, table td:first-child {
  font-style: italic;
  font-weight: 600;
}

/* ===== SERVICE BOXES ===== */
.service-box {
  background: #232a2f;
  border: 1.5px solid #323e47;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 1px rgba(25,35,46,0.13);
  min-width: 220px;
  flex: 1 1 230px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-box img {
  height: 42px; width: 42px; background: #212C31; border-radius: 15%; margin-bottom: 8px;
}
.service-box h3 {
  margin-bottom: 7px;
}
.service-box .price {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.04rem;
  margin-top: auto;
  font-weight: 600;
}
.service-box:hover, .service-box:focus-within {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 4px 24px 2px rgba(80,100,115,0.21);
  border-color: #ffb80088;
}
@media (max-width: 1024px) {
  .service-box { min-width: unset; padding: 22px 12px; }
}

/* ========= TAGS & BADGES ========= */
.tag {
  font-size: 0.85em;
  display: inline-block;
  background: #FFB800;
  color: #1E3744;
  border-radius: 7px;
  padding: 2px 10px 2px 10px;
  margin-left: 9px;
  box-shadow: 0 1px 2px #2b354033;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
}

/* ==== MAP PLACEHOLDER ===== */
.map-placeholder {
  background: #232a2f;
  color: #FFB800;
  border: 1px dashed #FFB80080;
  border-radius: var(--radius);
  text-align: center;
  padding: 18px;
  font-size: 1rem;
  box-shadow: 0 2px 6px 1px #181e237a;
  margin-bottom: 22px;
}

/* ======= CTA BANNER ======= */
.cta-banner, section.cta-banner, .cta-section {
  background: linear-gradient(90deg, #232a2f 40%, #232a2f 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ===================== TESTIMONIALS ======================= */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  padding-bottom: 18px;
  background: #FAFAFA;
  color: #1e3744;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px 0 rgba(30,55,68,0.055);
  min-width: 250px;
  max-width: 375px;
  flex: 1 1 335px;
  margin-bottom: 20px;
  border-left: 6px solid #ffb800;
  position: relative;
  font-family: var(--font-body);
  font-size: 1.04rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card p {
  color: #232a2f;
  margin-bottom: 0;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}
.testimonial-card span {
  color: #747c85;
  font-size: 0.95em;
  font-family: var(--font-body);
  margin-bottom: 0;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 5px 18px 3px rgba(60, 60, 60, 0.13);
  border-color: #ffd74b;
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%; min-width: unset;
  } 
  .testimonials-grid { gap: 14px; }
}

/* ========== PROJECTS & REFERENCE LISTS ========== */
.project-info {
  background: #1e3744;
  color: #ffd74b;
  border-radius: 9px;
  padding: 18px 15px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px #11192138;
}
.project-info h3 {
  margin-bottom: 7px;
  color: #ffd74b;
}
.project-info p {
  color: #f9f9f9;
  font-size: 1rem;
}

/* ====================== FOOTER ========================= */
footer {
  padding: 40px 0 18px 0;
  background: #22282e;
  border-top: 1.5px solid #323e47;
  color: #AFB6BF;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 42px;
}
footer img {
  height: 45px;
  filter: grayscale(50%) brightness(0.91);
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 30px;
}
footer nav a {
  color: #FFB800;
  font-family: var(--font-body);
  font-size: 0.99rem;
  margin-bottom: 4px;
  transition: color var(--transition);
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
footer .text-section {
  font-size: 0.94rem;
  color: #bfcbd9;
  line-height: 1.65;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  footer img { margin-bottom: 10px; }
}

/* ========================================================== */
/*                 COOKIE CONSENT BANNER                     */
/* ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: rgba(36,38,41,0.98);
  color: #fff;
  border-top: 2px solid #FFB800;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  padding: 22px 9px 22px 18px;
  box-shadow: 0 -2px 12px #11192640;
  font-size: 1rem;
  transition: transform var(--transition), opacity var(--transition);
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 350px;
  max-width: 900px;
  color: #fff;
  line-height: 1.5;
  margin-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-right: 4px;
}
.cookie-banner button {
  border: none;
  outline: none;
  border-radius: 24px;
  padding: 7px 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  background: #232a2f;
  color: #ffd74b;
  margin-right: 2px;
  margin-bottom: 3px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 4px #242f3450;
}
.cookie-banner button.accept {
  background: #ffd74b;
  color: #1E3744;
}
.cookie-banner button.accept:focus,
.cookie-banner button.accept:hover {
  background: #1E3744;
  color: #FFD74B;
}
.cookie-banner button.reject:focus,
.cookie-banner button.reject:hover {
  background: #E24848;
  color: #fff;
}
.cookie-banner button.settings:focus,
.cookie-banner button.settings:hover {
  background: #FFB800;
  color: #181e23;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    max-width: 100%;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    font-size: 1rem;
  }
}

/* =============== COOKIE CONSENT MODAL ==================== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 23, 26, 0.90);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1; pointer-events: all;
  transition: opacity 0.16s;
}
.cookie-modal-overlay.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: #232a2f;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 42px 0 #111a1e66;
  min-width: 330px;
  max-width: 95vw;
  padding: 36px 32px 25px 32px;
  color: #FFB800;
  border: 2px solid #FFD74B;
  display: flex; flex-direction: column;
  gap: 12px;
  position: relative;
  animation: cookiePopup 0.5s cubic-bezier(.53,.06,.48,.96);
}
@keyframes cookiePopup {
  0% { transform: scale(0.8) translateY(25px); opacity:0; }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  color: #FFB800;
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 15px 0 26px 0;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #252f36;
  border-radius: 7px;
  padding: 12px 10px 11px 8px;
  color: #F0F6F9;
  box-shadow: 0 1px 8px #141e2f20;
  font-size: 1rem;
}
.cookie-category label {
  font-size: 1.05rem;
  color: #FFB800;
  font-weight: 700;
  margin-bottom: 2px;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  margin-top: 4px;
  accent-color: #FFD74B;
  width: 18px; height: 18px;
}
.cookie-category[data-essential="true"] {
  opacity: 0.65;
  pointer-events: none;
  border-left: 4px solid #FFB800;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 9px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #ffd74b;
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  padding: 3px 11px;
  border-radius: 5px;
  transition: background var(--transition);
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: #ffb80022;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: unset;
    padding: 25px 10px 16px 10px;
    font-size: 1rem;
  }
}

/* ====================== FORMS (for completeness) ======================= */
input, select, textarea {
  font-family: var(--font-body);
  background: #181e23;
  color: #fff;
  border: 1.5px solid #232a2f;
  border-radius: 7px;
  padding: 12px 13px;
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #ffb80088;
  border-color: #ffb800;
  box-shadow: 0 1px 5px #ffd74b55;
}
label { color: #FFB800; font-weight: 600; margin-bottom: 6px; }

/* =================== RESPONSIVE MEDIA ==================== */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; padding: 0 1vw; }
  section, .section { padding: 30px 5px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 2vw; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.09rem; }
  section, .section { padding: 17px 3px; }
  .content-wrapper { gap: 13px; }
}

/* =================== MICRO-ANIMATIONS ==================== */
.card, .service-box, .testimonial-card {
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:active, .service-box:active, .testimonial-card:active {
  transform: scale(0.98);
}
.primary-btn, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close, .tag {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), outline var(--transition);
}
.primary-btn:active, .cookie-banner button:active {
  transform: scale(0.97);
}

/* ============ MISCELLANEA: DL/DT/DD, OL, BLOCKS =========== */
dl {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.04rem;
  margin-bottom: 16px;
}
dl dt {
  color: #FFB800;
  font-weight: 700;
  margin-right: 7px;
}
dl dd { margin-left: 18px; margin-bottom: 9px; color: #EAEAEA; }

ol {
  counter-reset: industrial-counter;
}
ol li {
  counter-increment: industrial-counter;
  position: relative;
}
ol li:before {
  content: counter(industry-counter, decimal) ". ";
  color: #ffb800;
  font-weight: bold;
  margin-right: 6px;
}

/* ================= INDUSTRIAL MODERN ACCENTS ============== */
.card, .service-box, .testimonial-card, .section, .map-placeholder {
  border-radius: var(--radius);
}
.card, .service-box, .testimonial-card {
  border: 1.25px solid #353b40;
  backdrop-filter: blur(0.5px);
}

/* ============ SCROLLBAR STYLES (for modern look only) ============ */
body::-webkit-scrollbar {
  width: 9px;
  background: #242F36;
}
body::-webkit-scrollbar-thumb {
  background: #20272b;
  border-radius: 6px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #1e3744;
}

/* =============== ACCESSIBILITY: FOCUS RINGS =============== */
*:focus {
  outline: 2px solid #FFD74B;
  outline-offset: 2px;
}

/* ========== PRINT ========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu {display: none !important;}
  main { background: none !important; color: #111; }
}
