/* =====================================================================
   CSS RESET & BASELINE NORMALIZATION
   ===================================================================== */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #23272c;
  color: #F8FBFA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}

/* =====================================================================
   BRAND TYPEFACES & HIERARCHY
   ===================================================================== */
body, p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #F8FBFA;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #B1C14E;
  text-transform: none;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #B1C14E;
  letter-spacing: 0.03em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #F8FBFA;
  border-left: 4px solid #B1C14E;
  padding-left: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #B1C14E;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #B1C14E;
}
strong {
  font-weight: 700;
}
em {
  color: #B1C14E;
  font-style: normal;
}

/* =====================================================================
   LAYOUT CONTAINERS & SPACING (FLEXBOX ONLY)
   ===================================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23272c;
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(24,33,38,0.08);
  border: 1px solid #343942;
  transition: box-shadow 0.3s;
}
.section:last-child {
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23272c;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(24,33,38,0.10);
  border: 1px solid #3d4148;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.14s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 320px;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(50, 73, 107, 0.18);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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;
  padding: 20px;
  background: #F8FBFA;
  color: #1c232c;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(34, 38, 42, 0.10);
  border: 1px solid #dfe6e9;
  position: relative;
  z-index: 1;
}
.testimonial-card blockquote {
  font-size: 1.14rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-style: italic;
  font-weight: 600;
  color: #284563;
  margin-bottom: 6px;
  border-left: 5px solid #B1C14E;
  padding-left: 16px;
}
.testimonial-card p {
  color: #757980;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.hero {
  background: #23272c url('../assets/hero-industrial-bg.jpg') top center/cover no-repeat;
  border-bottom: 1px solid #2e3640;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: row;
}
.hero .content-wrapper {
  background: rgba(32,42,55,0.90);
  border-radius: 16px;
  padding: 48px 28px;
  box-shadow: 0 6px 36px 0 rgba(40,69,99,0.10);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero .content-wrapper {
    padding: 28px 10px;
    border-radius: 12px;
  }
}

/* =====================================================================
   MAIN NAV & MOBILE MENU
   ===================================================================== */
header {
  width: 100%;
  background: #23272c;
  box-shadow: 0 2px 14px 0 rgba(32,42,55,0.14);
  z-index: 100;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 16px 20px;
}
.main-nav img {
  height: 40px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  color: #F8FBFA;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B1C14E;
}
.main-nav .cta-button {
  margin-left: 32px;
}
.mobile-menu-toggle {
  display: none;
  background: #23272c;
  color: #B1C14E;
  font-size: 2rem;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 200;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #353e4a;
  color: #F8FBFA;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(20,22,30,0.96);
  z-index: 4004;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.7,0,.35,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
  will-change: transform;
  box-shadow: 3px 0 25px 2px rgba(40,69,99,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #B1C14E;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 0 20px 16px 0;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 4005;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F8FBFA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 20px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: #F8FBFA;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 8px 0;
  margin-bottom: 2px;
  border-left: 3px solid transparent;
  transition: color 0.16s, border-color 0.18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B1C14E;
  border-left: 3px solid #B1C14E;
  background: #23272c;
}

@media (max-width:990px) {
  .main-nav ul,
  .main-nav .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =====================================================================
   CTA BUTTONS
   ===================================================================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 8px;
  background: #343942;
  color: #F8FBFA;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.8px solid #B1C14E;
  box-shadow: 0 2px 14px -4px rgba(40,69,99,0.16);
  margin-top: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s, border 0.20s;
  text-align: center;
}
.cta-button.primary {
  background: #B1C14E;
  color: #23272c;
  border-color: #B1C14E;
  box-shadow: 0 4px 20px -2px rgba(177,193,78,0.12);
}
.cta-button:focus, .cta-button:hover {
  background: #23272c;
  color: #B1C14E;
  border-color: #B1C14E;
  outline: none !important;
}
.cta-button.primary:focus, .cta-button.primary:hover {
  background: #284563;
  color: #F8FBFA;
  border-color: #284563;
}

/* List with bullets for features etc. */
ul:not(.main-nav):not(.footer-nav):not(.mobile-nav) li, ol:not(.main-nav):not(.footer-nav):not(.mobile-nav) li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #F8FBFA;
}
ul:not(.main-nav):not(.footer-nav):not(.mobile-nav) li:before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #B1C14E;
  border-radius: 2px;
  box-shadow: 0 0 4px rgba(177,193,78,0.12);
}


/* =====================================================================
   FEATURE GRID ETC (RESPONSIVE)
   ===================================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature-grid > div {
  background: #23272c;
  border-radius: 15px;
  border: 1px solid #353942;
  box-shadow: 0 1px 10px 0 rgba(40, 69, 99, 0.09);
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 18px 18px 18px;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 26px 0 rgba(177,193,78,0.12);
  transform: translateY(-2px) scale(1.03);
}
.feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
}

@media (max-width: 940px) {
  .feature-grid {
    justify-content: center;
  }
  .feature-grid > div {
    min-width: 160px;
    max-width: 90vw;
    padding: 22px 10px;
  }
}

/* =====================================================================
   FOOTER SECTION
   ===================================================================== */
footer {
  width: 100%;
  background: #191e23;
  padding: 32px 0 16px 0;
  border-top: 1.5px solid #343942;
  box-shadow: 0 -2px 14px rgba(40,69,99,0.09);
  margin-top: 50px;
}
footer nav.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #B1C14E;
  font-family: 'Montserrat', sans-serif;
}
.footer-nav a {
  color: #B1C14E;
  transition: color 0.16s;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F8FBFA;
}
footer p {
  text-align: center;
  color: #8491a3;
  font-size: 0.97rem;
  margin-top: 7px;
}


/* =====================================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #23272c;
  color: #F8FBFA;
  box-shadow: 0 -2px 24px 0 rgba(40,69,99,0.13);
  z-index: 8888;
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  transition: transform 0.4s cubic-bezier(.54,0,.32,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner strong {
  color: #B1C14E;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  padding: 8px 22px;
  background: #284563;
  color: #F8FBFA;
  border-radius: 7px;
  border: 1.5px solid #B1C14E;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.14s, color 0.14s, border 0.15s;
  cursor: pointer;
  margin: 0 3px;
}
.cookie-btn.accept {
  background: #B1C14E;
  color: #23272c;
}
.cookie-btn.reject {
  background: #23272c;
  color: #B1C14E;
}
.cookie-btn.settings {
  background: #23272c;
  color: #B1C14E;
  border-style: dashed;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #343942;
  color: #F8FBFA;
  outline: 0;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #284563;
  color: #B1C14E;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%) scale(1);
  background: #23272c;
  color: #F8FBFA;
  border-radius: 18px;
  box-shadow: 0 4px 48px rgba(32,42,55,0.21);
  border: 1.2px solid #B1C14E;
  min-width: 320px;
  max-width: 96vw;
  min-height: 250px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 38px 28px 30px 28px;
  opacity: 1;
  pointer-events: auto;
  animation: cookieModalIn 0.35s cubic-bezier(0.7,0,0.35,1);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translateX(-50%) scale(0.95); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: #B1C14E;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-toggle input[type=checkbox] {
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-toggle label {
  color: #F8FBFA;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
}
.cookie-modal .cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 18px;
}

/* =====================================================================
   RESPONSIVE LAYOUTS, FLEX DIRECTION CHANGES
   ===================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 22px 4vw;
    margin-bottom: 44px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .hero {
    min-height: unset;
    padding: 0;
  }
  .hero .container {
    padding: 0;
  }
  .hero .content-wrapper {
    padding: 22px 8px;
    align-items: flex-start;
    border-radius: 9px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    gap: 13px;
    padding: 18px 8px;
    border-radius: 9px;
  }
  .main-nav {
    padding: 14px 2vw 13px 2vw;
  }
}
@media (max-width: 430px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.16rem; }
  .footer-nav { font-size: 0.89rem; }
  .cta-button, .cookie-btn { font-size: 0.97rem; padding: 9px 13px; }
  .cookie-modal { min-width: 90vw; padding: 26px 8px; }
}

/* =====================================================================
   INDUSTRIAL MODERN VISUAL ELEMENTS
   ===================================================================== */
.section, .feature-grid > div, .card, .testimonial-card, .cookie-modal {
  border: 1.7px solid #343942;
  box-shadow: 0 3px 22px 2px rgba(32,42,55,0.08);
}
.section {
  background: linear-gradient(122deg, #23272c 90%, #284563 170%);
}
hr {
  border: none;
  height: 1.5px;
  background: #3d4652;
  opacity: 0.66;
  margin: 28px 0;
}
::-webkit-scrollbar {
  width: 11px;
  background: #23272c;
}
::-webkit-scrollbar-thumb {
  background: #284563;
  border-radius: 9px;
  border: 2.5px solid #23272c;
}

/* Inputs, forms & selection (if needed later) */
input, textarea, select {
  background: #23272c;
  color: #F8FBFA;
  border: 1.5px solid #3d4652;
  border-radius: 7px;
  font-size: 1rem;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.15s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: #B1C14E;
}

/* =====================================================================
   PROPER SPACING, CARD STYLES, HIERARCHY
   ===================================================================== */
.text-section {
  max-width: 820px;
  margin: 0 auto;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}
.card:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

/* =====================================================================
   ANIMATIONS & TRANSITIONS
   ===================================================================== */
.section, .feature-grid > div, .card, .testimonial-card, .hero .content-wrapper {
  transition: box-shadow 0.25s, transform 0.22s, background 0.26s;
}

.cta-button, .cookie-btn {
  transition: background 0.18s, color 0.18s, border 0.14s, box-shadow 0.17s;
}

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

/* Spacers */
.mt-40 {
  margin-top: 40px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}

/* Z-INDEX fixes (mobile menu, cookie, nav) */
header, .main-nav { z-index: 101; }
.mobile-menu { z-index: 4004; }
.cookie-banner, .cookie-modal { z-index: 8888 !important; }

/* =====================================================================
   PRINT STYLES (essential only)
   ===================================================================== */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  footer {
    display: none !important;
  }
  header, main, .container, .section, .content-wrapper {
    box-shadow: none !important;
    background: #fff !important;
    color: #23272c;
  }
  h1, h2, h3, h4, h5, h6 { color: #23272c !important; }
}

/* END OF STYLE FILE */
