/* CSS RESET & BASE TYPOGRAPHY */
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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #131b24;
  color: #e5f2f7;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  --primary: #183153;
  --secondary: #36a399;
  --accent: #e5f2f7;
  --dark: #131b24;
  --mid: #29384c;
  --light: #e5f2f7;
  --metal: #7e8a99;
  --shadow: rgba(24, 49, 83, 0.15);
  --card-radius: 14px;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 1px 2px rgba(24, 49, 83, 0.12);
}
h1 { font-size: 2.5rem; margin-bottom: 14px; line-height: 1.16; }
h2 { font-size: 2rem; margin-bottom: 12px; line-height: 1.22; }
h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.22; color: var(--secondary); }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, ol, li { font-size: 1rem; }
a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
a:hover, a:focus {
  color: #fff;
  background: var(--secondary);
  border-radius: 6px;
  outline: none;
}
strong, b { color: var(--accent); font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 700; }
ul, ol { list-style: none; }

/* FLEX CONTAINER UTILITIES & MANDATORY SPACING */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--primary);
  border-radius: var(--card-radius);
  box-shadow: 0 6px 32px var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--mid);
  border-radius: var(--card-radius);
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px 24px;
  min-width: 250px;
  flex: 1 1 320px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(24,49,83,0.20);
  transform: translateY(-4px) scale(1.018);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--accent);
  color: #1b273a;
  padding: 20px;
  border-left: 6px solid var(--secondary);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(24,49,83,0.11);
  font-size: 1.1rem;
}
.testimonial-card p {
  color: #193b53;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-card strong {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID & SECTIONS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin: 20px 0 0 0;
}
.feature-grid > div {
  background: var(--mid);
  border-radius: var(--card-radius);
  box-shadow: 0 1.5px 13px 0 var(--shadow);
  padding: 28px 22px 24px;
  flex: 1 1 240px;
  min-width:220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
  border-left: 4px solid var(--metal);
  position: relative;
  overflow: hidden;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 7px 30px rgba(54,163,153,0.18);
  transform: translateY(-3px) scale(1.012);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  filter: grayscale(0.6) contrast(1.1) brightness(1.15);
}
.feature-grid h3 {
  margin-bottom: 8px;
  font-size: 1.19rem;
  color: var(--secondary);
}
.feature-grid p {
  color: var(--accent);
  margin-bottom: 12px;
}
.feature-grid a {
  margin-top: auto;
  padding: 4px 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  letter-spacing: 0.01em;
  background: none;
  color: var(--secondary);
  transition: color 0.18s, background 0.18s;
}
.feature-grid a:hover, .feature-grid a:focus {
  background: var(--secondary);
  color: #fff;
}

/* BUTTONS & CTA */
.cta, .card .cta, .feature-grid a.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 9px;
  border: none;
  background: linear-gradient(90deg, var(--secondary), var(--metal));
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 18px 0 rgba(54,163,153,0.13);
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.15s, box-shadow 0.22s, transform 0.14s;
  text-transform: uppercase;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, var(--metal), var(--secondary));
  box-shadow: 0 5px 32px 0 rgba(54,163,153,0.22);
  color: #fff;
  outline: none;
  transform: scale(1.04);
}

/* TEXT SECTIONS & INFO BLOCKS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: none;
}
.text-section ul, .content-wrapper ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.text-section ul li, .content-wrapper ul li {
  margin-bottom: 10px;
  color: var(--accent);
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
}
.text-section ul li:before, .content-wrapper ul li:before {
  content: '•';
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top:0;
  font-size: 1.4em;
}
.text-section ul li img, .content-wrapper ul li img {
  width: 1em;
  height: 1em;
  object-fit: contain;
  margin-right: 7px;
  vertical-align: middle;
  display: inline;
  filter: grayscale(0.7) contrast(1.2);
  position: relative;
  top: 2px;
}
.text-section a {
  color: var(--secondary);
  font-weight: 600;
  border-bottom: 2px solid var(--secondary);
  transition: color 0.15s;
  background: none;
}
.text-section a:hover, .text-section a:focus {
  color: #fff;
  border-bottom-color: var(--metal);
  background: var(--secondary);
  border-radius: 4px;
  outline: none;
}

/* HEADER & NAVIGATION */
header {
  background: var(--primary);
  box-shadow: 0 2px 22px 0 var(--shadow);
  min-height: 76px;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 76px;
}
header img {
  height: 46px;
  width: auto;
  margin-right: 20px;
  filter: drop-shadow(0 2px 8px rgba(24, 49, 83, 0.13));
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav a {
  color: var(--accent);
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.13s;
  position: relative;
}
nav a.cta {
  background: linear-gradient(90deg, var(--secondary), var(--metal));
  color: #fff;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: 0 3px 12px 0 rgba(54,163,153,0.13);
  border-radius: 8px;
  text-transform: uppercase;
}
nav a.cta:hover, nav a.cta:focus {
  background: linear-gradient(90deg, var(--metal), var(--secondary));
  color: #fff;
  outline: none;
}
nav a:hover, nav a:focus {
  color: #fff;
  background: var(--secondary);
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.18s;
  z-index: 40;
}
.mobile-menu-toggle:focus {
  color: var(--secondary);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 29, 43, 0.97);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,.1,.5,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.3rem;
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 101;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 80px;
  margin-left: 40px;
  z-index: 102;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 7px;
  line-height: 1.6;
  transition: color 0.19s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  outline: none;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 0 24px;
  margin-top: 80px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  gap: 20px;
  margin: 10px 0 0 0;
}
footer nav a {
  color: var(--accent);
  font-size: 1rem;
  padding: 6px 7px;
}
.footer-contact {
  margin: 0 0 3px 0;
  color: var(--metal);
  font-size: 1rem;
}
.footer-hours {
  color: var(--secondary);
  font-size: 0.95rem;
}
footer img {
  height: 42px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--mid);
  color: var(--accent);
  border-radius: 13px;
  box-shadow: 0 3px 32px 0 rgba(24,49,83,0.25);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: var(--accent);
  font-size: 1rem;
  flex: 1 1 auto;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.cookie-banner button {
  padding: 9px 24px;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  box-shadow: 0 1px 9px 0 rgba(54,163,153,0.09);
}
.cookie-banner .cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #299b8d;
}
.cookie-banner .cookie-reject {
  background: #29384c;
  color: var(--accent);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: var(--metal);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: none;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
  padding: 8px 19px;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--secondary);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,49,83,0.7);
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
.cookie-modal-overlay.visible {
  display: flex;
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
.cookie-modal {
  background: var(--mid);
  color: var(--accent);
  padding: 36px 32px 30px 32px;
  border-radius: 21px;
  box-shadow: 0 7px 70px 0 rgba(24,49,83,0.22);
  min-width: 316px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1.04rem;
  color: var(--accent);
  flex: 1 1 auto;
}
.cookie-modal input[type=checkbox] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  border: 2px solid var(--metal);
  background: #212d3f;
  margin-right:8px;
  margin-left:0;
  outline:none;
  cursor:pointer;
  display:inline-block;
  vertical-align: middle;
  transition: border 0.13s, background 0.13s;
}
.cookie-modal input[type=checkbox]:checked {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-modal .cookie-essential[readonly], .cookie-modal .cookie-essential[disabled] {
  background: #7e8a99cc !important;
  border-color: var(--metal)!important;
  cursor:not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal button {
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal .cookie-accept:hover {
  background: #277d72;
}
.cookie-modal .cookie-reject {
  background: #29384c;
  color: var(--accent);
}
.cookie-modal .cookie-reject:hover {
  background: var(--metal);
  color: #fff;
}

/* GENERAL FORM ELEMENTS */
input, select, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 11px;
  border-radius: 7px;
  border: 1.4px solid var(--metal);
  background: #192335;
  color: var(--accent);
  margin-top: 8px;
  margin-bottom: 22px;
  transition: border 0.14s, box-shadow 0.16s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px var(--secondary)33;
  outline: none;
}

/* LAYOUT SPACING & RESPONSIVE BREAKPOINTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
main {
  margin: 0;
  padding: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* FLEX ADJUSTMENTS FOR MOBILE */
@media (max-width: 1024px) {
  .feature-grid > div, .card {
    flex: 1 1 340px;
    min-width:240px;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  nav {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .feature-grid, .content-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .section {
    padding: 28px 8px;
  }
  .testimonial-card {
    padding: 16px 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  nav {
    display: none;
  }
  header .container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .feature-grid > div, .card {
    padding: 16px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 6px 14px 12px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 24px 10px 24px 12px;
  }
}

/* SHADOWS AND INDUSTRIAL DETAILS */
.card, .feature-grid > div, .section {
  border-bottom: 2.5px solid var(--metal);
}
.card::before, .feature-grid > div::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--metal) 40%, transparent);
  opacity: 0.28;
  pointer-events:none;
}
.section {
  box-shadow: 0 3.5px 32px 0 rgba(24,49,83,0.19), 0 0px 0px 1px rgba(54,163,153,0.15) inset;
}

/* TYPOGRAPHIC SCALE (INDUSTRIAL MODERN) */
h1, .big-title { font-size: 2.1rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.19rem; }
@media (min-width: 600px) {
  h1, .big-title { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.33rem; }
}

/* SELECTION & SCROLLBAR STYLES */
::selection { background: var(--secondary); color: #fff; }
::-webkit-scrollbar {
  width: 11px;
  background: #192335;
}
::-webkit-scrollbar-thumb {
  background: var(--mid);
  border-radius: 10px;
  border: 2px solid #192335;
}

/* MICROTANSACTIONS: HOVER & FOCUS */
button, .cta, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  transition: box-shadow 0.17s, background 0.17s, color 0.15s, transform 0.09s;
}
button:active, .cta:active {
  transform: scale(0.97);
}
.card, .feature-grid > div, .testimonial-card, .section {
  transition: box-shadow 0.18s, transform 0.18s;
}

/* Z-INDEX FOR LAYERED ELEMENTS */
header { z-index: 20; }
.mobile-menu { z-index: 100; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay { z-index: 1300; }

/* PRINT BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* === END industrial_modern CSS === */
